:root {
  --charcoal: #171412;
  --espresso: #31251f;
  --cocoa: #6f5749;
  --camel: #b89478;
  --oat: #ede4d8;
  --linen: #fbf7f0;
  --cream: #fffaf3;
  --sage: #8b907b;
  --line: rgba(255, 250, 243, 0.2);
  --dark-line: rgba(49, 37, 31, 0.15);
  --container: min(100% - 44px, 1320px);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --home-image-radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--linen);
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--linen);
  color: var(--espresso);
  font-family: Helvetica, Arial, sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body.is-loading {
  overflow: hidden;
}

body.intro-disabled .experience {
  display: none;
}

body.intro-disabled .loader {
  display: none;
}

body.intro-disabled > .home-header {
  display: block;
}

body.intro-disabled .home-native > .home-header {
  display: none;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.94), transparent 28%),
    linear-gradient(135deg, #ffffff, #f1f1f1);
  color: #171412;
  transition: opacity 650ms ease, visibility 650ms ease;
}

body:not(.is-loading) .loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  width: min(520px, 100%);
  text-align: center;
}

.loader h2 {
  margin: 0 0 28px;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.94;
  font-weight: 600;
}

.loader-track {
  height: 2px;
  overflow: hidden;
  background: rgba(23, 20, 18, 0.14);
}

.loader-track span {
  display: block;
  width: 0%;
  height: 100%;
  background: #171412;
  transition: width 180ms ease;
}

.loader-status {
  margin: 16px 0 0;
  color: rgba(49, 37, 31, 0.58);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 16px;
  left: 0;
  right: 0;
  width: var(--container);
  min-height: 64px;
  margin: 0 auto;
  padding: 0 12px 0 18px;
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  align-items: center;
  border: 1px solid rgba(23, 20, 18, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #171412;
  box-shadow: 0 18px 54px rgba(23, 20, 18, 0.08);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-18px);
  transition:
    opacity 420ms ease,
    transform 520ms var(--ease),
    background 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.site-header.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-header.is-solid {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(23, 20, 18, 0.14);
  box-shadow: 0 18px 60px rgba(23, 20, 18, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 56px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.brand span {
  display: inline-flex;
  line-height: 1;
  font-size: 18px;
  font-weight: 760;
  letter-spacing: 0.02em;
}

nav {
  display: flex;
  justify-content: center;
  gap: 4px;
}

nav a {
  position: relative;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 12px;
  color: rgba(23, 20, 18, 0.76);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

nav a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 7px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms var(--ease);
}

nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 20px;
  background: #171412;
  color: #ffffff;
  font-size: 11px;
  font-weight: 840;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(49, 37, 31, 0.18);
  transition: transform 220ms var(--ease), background 220ms ease, box-shadow 220ms ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  background: #2a2724;
  box-shadow: 0 14px 32px rgba(23, 20, 18, 0.2);
}

.experience {
  position: relative;
  min-height: 820vh;
  background: linear-gradient(180deg, #ffffff, #f0f0f0);
}

.visual-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  isolation: isolate;
  background: #ffffff;
}

.scene-video,
.frame-canvas,
.video-poster,
.visual-shade,
.side-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.scene-video {
  z-index: -5;
  object-fit: cover;
  object-position: center 48%;
  background: #ffffff;
  transform: scale(1.005);
}

.frame-canvas {
  z-index: -4;
  opacity: 0;
  background: var(--linen);
  image-rendering: auto;
  transition: opacity 420ms ease;
}

body.frames-ready .frame-canvas {
  opacity: 1;
}

body.frames-ready .scene-video {
  opacity: 0;
}

body.video-scrub .frame-canvas {
  opacity: 0 !important;
}

body.video-scrub .scene-video {
  opacity: 1 !important;
}

.video-poster {
  z-index: -7;
  background:
    radial-gradient(circle at 24% 22%, rgba(255, 255, 255, 0.86), transparent 28%),
    radial-gradient(circle at 78% 16%, rgba(237, 228, 216, 0.9), transparent 34%),
    linear-gradient(135deg, #fffaf3, #eadbcb);
}

.visual-shade {
  z-index: -3;
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.16), rgba(255, 250, 243, 0) 38%, rgba(255, 250, 243, 0.16)),
    radial-gradient(circle at 86% 18%, rgba(255, 250, 243, 0.28), transparent 30%);
  pointer-events: none;
}

.side-overlay {
  z-index: -2;
  top: 0;
  bottom: 0;
  width: min(50vw, 760px);
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px);
  transition: opacity 520ms ease, transform 720ms var(--ease), background 520ms ease;
}

.visual-stage.has-intro-copy .side-overlay,
.visual-stage.has-scene-copy .side-overlay {
  opacity: 1;
  transform: translateX(0);
}

.visual-stage[data-overlay-side="right"] .side-overlay {
  left: auto;
  right: 0;
  background: linear-gradient(270deg, rgba(255, 250, 243, 0.54), rgba(255, 250, 243, 0.3) 42%, rgba(255, 250, 243, 0.08) 74%, transparent 100%);
}

.visual-stage[data-overlay-side="left"] .side-overlay {
  left: 0;
  right: auto;
  transform: translateX(-18px);
  background: linear-gradient(90deg, rgba(255, 250, 243, 0.54), rgba(255, 250, 243, 0.3) 42%, rgba(255, 250, 243, 0.08) 74%, transparent 100%);
}

.visual-stage.has-intro-copy[data-overlay-side="left"] .side-overlay,
.visual-stage.has-scene-copy[data-overlay-side="left"] .side-overlay {
  transform: translateX(0);
}

.intro-copy {
  position: absolute;
  left: max(22px, calc((100vw - 1320px) / 2));
  right: auto;
  top: 108px;
  bottom: auto;
  width: min(440px, calc(100vw - 44px));
  color: var(--espresso);
  padding: 0;
  text-shadow: 0 2px 18px rgba(255, 250, 243, 0.72);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 500ms ease, transform 500ms var(--ease);
}

.intro-copy.is-hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.eyebrow,
.scene-count {
  margin: 0 0 14px;
  color: var(--camel);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--sage);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 390px;
  margin-bottom: 14px;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(48px, 5.8vw, 86px);
  line-height: 0.9;
  font-weight: 600;
  letter-spacing: 0;
}

.intro-copy p:last-child {
  max-width: 360px;
  margin: 0;
  color: rgba(49, 37, 31, 0.72);
  font-size: 16px;
}

.scene-copy {
  position: absolute;
  top: 112px;
  right: max(22px, calc((100vw - 1320px) / 2));
  width: min(400px, calc(100vw - 44px));
  color: var(--espresso);
  padding: 0;
  text-shadow: none;
  opacity: 0;
  transform: translateY(22px);
  pointer-events: none;
  transition: opacity 520ms ease, transform 620ms var(--ease);
}

.scene-copy.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scene-copy h2 {
  margin-bottom: 14px;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(42px, 5vw, 78px);
  line-height: 0.92;
  font-weight: 600;
  letter-spacing: 0;
}

.scene-copy p:not(.scene-count) {
  margin-bottom: 22px;
  color: rgba(49, 37, 31, 0.72);
  font-size: 16px;
}

.scene-copy[data-copy="0"] {
  top: 112px;
  left: max(42px, calc((100vw - 1320px) / 2 + 24px));
  right: auto;
}

.scene-copy[data-copy="1"] {
  top: 32%;
  left: auto;
  right: max(42px, calc((100vw - 1320px) / 2 + 24px));
}

.scene-copy[data-copy="2"] {
  top: auto;
  left: max(42px, calc((100vw - 1320px) / 2 + 24px));
  right: auto;
  bottom: 96px;
}

.scene-copy[data-copy="3"] {
  top: 24%;
  left: auto;
  right: max(42px, calc((100vw - 1320px) / 2 + 24px));
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(184, 148, 120, 0.35);
  border-radius: 999px;
  padding: 0 22px;
  background: var(--espresso);
  color: var(--cream);
  font-size: 12px;
  font-weight: 830;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 220ms var(--ease), background 220ms ease, color 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--camel);
  color: var(--cream);
}

.button.light {
  background: var(--cream);
  color: var(--espresso);
}

.progress {
  position: absolute;
  left: max(22px, calc((100vw - 1320px) / 2));
  right: max(22px, calc((100vw - 1320px) / 2));
  bottom: 28px;
  height: 2px;
  overflow: hidden;
  background: rgba(49, 37, 31, 0.16);
}

.progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--camel);
}

.scene-steps {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.scene-step {
  height: 190vh;
}

.redesign-html-frame {
  position: relative;
  min-height: 0;
  background: #fafaf8;
}

.redesign-html-frame iframe {
  display: block;
  width: 100%;
  min-height: 0;
  border: 0;
  background: #fafaf8;
}

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 34px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 300ms ease, visibility 300ms ease;
}

.quote-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.quote-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 250, 243, 0.5), transparent 30%),
    rgba(23, 20, 18, 0.38);
  backdrop-filter: blur(14px);
}

.quote-dialog {
  position: relative;
  width: min(1060px, 100%);
  max-height: min(92svh, 860px);
  overflow: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(24px, 4.4vw, 58px);
  border: 1px solid rgba(49, 37, 31, 0.13);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 250, 243, 0.96), rgba(238, 226, 212, 0.92)),
    var(--cream);
  box-shadow: 0 34px 120px rgba(23, 20, 18, 0.28);
  transform: translateY(18px) scale(0.98);
  transition: transform 360ms var(--ease);
}

.quote-modal.is-open .quote-dialog {
  transform: translateY(0) scale(1);
}

.quote-close {
  position: absolute;
  top: 18px;
  right: 18px;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(49, 37, 31, 0.15);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.72);
  color: rgba(49, 37, 31, 0.76);
  font: inherit;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.quote-intro {
  padding-top: 28px;
}

.quote-intro h2 {
  max-width: 390px;
  margin: 0 0 18px;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 0.92;
  font-weight: 600;
}

.quote-intro p:last-child {
  max-width: 390px;
  color: rgba(49, 37, 31, 0.68);
  font-size: 16px;
}

.quote-form {
  display: grid;
  gap: 16px;
}

.quote-fields {
  display: grid;
  gap: 14px;
}

.quote-fields-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field span {
  color: rgba(49, 37, 31, 0.66);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(49, 37, 31, 0.15);
  border-radius: 16px;
  background: rgba(255, 250, 243, 0.74);
  color: var(--espresso);
  padding: 13px 15px;
  outline: none;
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(184, 148, 120, 0.68);
  background: rgba(255, 250, 243, 0.96);
  box-shadow: 0 0 0 4px rgba(184, 148, 120, 0.14);
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.quote-submit {
  min-height: 52px;
  justify-self: start;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  background: var(--espresso);
  color: var(--cream);
  font: inherit;
  font-size: 12px;
  font-weight: 840;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 220ms var(--ease), background 220ms ease;
}

.quote-submit:hover {
  transform: translateY(-2px);
  background: var(--camel);
}

.quote-note {
  margin: 0;
  color: rgba(49, 37, 31, 0.56);
  font-size: 13px;
}

body.quote-open {
  overflow: hidden;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(86px, 11vw, 150px) 0;
}

.section-head {
  max-width: 850px;
  margin-bottom: 42px;
}

.section h2,
.visit h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 5vw, 78px);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: 0;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--dark-line);
  border: 1px solid var(--dark-line);
}

.collection-grid article {
  min-height: 280px;
  padding: 26px;
  display: grid;
  align-content: space-between;
  background: #f3eadf;
}

.collection-grid span {
  color: var(--sage);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.collection-grid h3 {
  margin-bottom: 12px;
  font-size: 30px;
  line-height: 1;
}

.collection-grid p {
  margin: 0;
  color: rgba(49, 37, 31, 0.68);
}

.visit {
  min-height: 86svh;
  padding: clamp(92px, 12vw, 160px) max(22px, calc((100vw - 1320px) / 2));
  display: grid;
  grid-template-columns: minmax(0, 820px) auto;
  align-items: end;
  gap: 40px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 250, 243, 0.18), transparent 28%),
    linear-gradient(135deg, #2d241f, #171412);
  color: var(--cream);
}

.visit p:last-child {
  max-width: 580px;
  margin: 22px 0 0;
  color: rgba(255, 250, 243, 0.74);
  font-size: 18px;
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: 1fr auto;
    top: 12px;
  }

  nav {
    display: none;
  }

  .visual-shade {
    background:
      linear-gradient(180deg, rgba(255, 250, 243, 0.2), rgba(255, 250, 243, 0.02) 36%, rgba(255, 250, 243, 0.36));
  }

  .intro-copy {
    top: auto;
    left: 22px;
    right: 22px;
    bottom: 108px;
    width: auto;
  }

  .scene-copy {
    top: auto;
    left: 22px;
    right: 22px;
    bottom: 74px;
    width: auto;
  }

  .scene-copy[data-copy] {
    top: auto;
    left: 22px;
    right: 22px;
    bottom: 74px;
  }

  .collection-grid,
  .visit {
    grid-template-columns: 1fr;
  }

  .quote-dialog {
    grid-template-columns: 1fr;
  }

  .quote-intro {
    padding-top: 22px;
  }
}

@media (max-width: 620px) {
  :root {
    --container: min(100% - 28px, 1320px);
  }

  .site-header {
    min-height: 58px;
    padding-left: 14px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 10px;
  }

  .visual-stage {
    min-height: 700px;
  }

  h1 {
    font-size: clamp(44px, 14vw, 64px);
  }

  .scene-copy h2 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .scene-copy p:not(.scene-count),
  .intro-copy p:last-child,
  .visit p:last-child {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .quote-fields-two {
    grid-template-columns: 1fr;
  }

  .quote-dialog {
    border-radius: 22px;
  }

  .quote-submit {
    width: 100%;
  }

  .collection-grid article {
    min-height: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}

.section {
  width: 100%;
  margin: 0;
  padding: clamp(92px, 11vw, 158px) 0;
  background: var(--linen);
}

.section-inner,
.footer-inner {
  width: var(--container);
  margin: 0 auto;
}

.estate-intro {
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 250, 243, 0.86), transparent 32%),
    linear-gradient(180deg, #fffaf3, #eee2d5);
}

.intro-grid,
.split-section,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}

.section-kicker {
  margin: 0 0 18px;
  color: var(--camel);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-title {
  max-width: 860px;
  margin: 0;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: 0;
}

.feature-list {
  display: grid;
  border-top: 1px solid var(--dark-line);
}

.feature {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--dark-line);
}

.feature strong {
  color: var(--camel);
  font-size: 12px;
  letter-spacing: 0.16em;
}

.feature p,
.copy-stack p,
.lede {
  margin: 0;
  color: rgba(49, 37, 31, 0.68);
  font-size: clamp(16px, 1.4vw, 19px);
}

.details-band {
  background:
    linear-gradient(135deg, rgba(49, 37, 31, 0.96), rgba(23, 20, 18, 0.98)),
    radial-gradient(circle at 16% 18%, rgba(184, 148, 120, 0.2), transparent 28%);
  color: var(--cream);
}

.details-band .section-kicker,
.details-band .feature strong {
  color: #d4a982;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 243, 0.16);
  background: rgba(255, 250, 243, 0.16);
}

.detail-card {
  min-height: 190px;
  display: grid;
  align-content: space-between;
  padding: 24px;
  background: rgba(255, 250, 243, 0.06);
}

.detail-card span {
  color: rgba(255, 250, 243, 0.66);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-card strong {
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(54px, 7vw, 96px);
  line-height: 0.9;
  font-weight: 600;
}

.image-frame {
  min-height: clamp(420px, 58vw, 720px);
  background:
    linear-gradient(180deg, rgba(23, 20, 18, 0.04), rgba(23, 20, 18, 0.2)),
    radial-gradient(circle at 24% 24%, rgba(255, 250, 243, 0.72), transparent 28%),
    linear-gradient(135deg, #d7c2ad, #8d7a68 52%, #2f2925);
}

.copy-stack {
  display: grid;
  align-content: center;
  gap: 24px;
  min-height: clamp(420px, 58vw, 720px);
}

.amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.amenity {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid var(--dark-line);
  background: rgba(255, 250, 243, 0.56);
  color: rgba(49, 37, 31, 0.78);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.amenity svg {
  width: 18px;
  height: 18px;
  color: var(--camel);
}

.gallery-strip {
  display: grid;
  grid-template-columns: 1fr 1.25fr 0.9fr;
  gap: 14px;
}

.gallery-tile {
  min-height: clamp(260px, 34vw, 460px);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.44)),
    linear-gradient(135deg, #d8c7b5, #75675c);
}

.gallery-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.72;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 250, 243, 0.62), transparent 26%),
    linear-gradient(135deg, transparent, rgba(23, 20, 18, 0.42));
}

.tile-2 {
  transform: translateY(28px);
}

.tile-3 {
  transform: translateY(-18px);
}

.gallery-tile span {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 1;
  color: var(--cream);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 250, 243, 0.78), transparent 28%),
    linear-gradient(135deg, #efe3d5, #d8c7b5);
}

.contact-panel {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 42px);
  background: rgba(255, 250, 243, 0.64);
  border: 1px solid rgba(49, 37, 31, 0.12);
  box-shadow: 0 28px 80px rgba(49, 37, 31, 0.12);
  backdrop-filter: blur(18px);
}

.contact-panel h3 {
  margin: 0;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 34px;
  font-weight: 600;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: rgba(49, 37, 31, 0.68);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(49, 37, 31, 0.16);
  border-radius: 16px;
  background: rgba(255, 250, 243, 0.7);
  color: var(--espresso);
  padding: 13px 14px;
  outline: none;
  font: inherit;
}

.field textarea {
  min-height: 128px;
  resize: vertical;
}

.site-footer {
  padding: 30px 0;
  background: var(--charcoal);
  color: rgba(255, 250, 243, 0.72);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(0, 1.2fr) minmax(220px, 0.85fr);
  gap: 28px;
  align-items: start;
}

.site-footer__brand-block {
  display: grid;
  gap: 14px;
  align-content: start;
  max-width: 320px;
}

.site-footer__brand {
  width: fit-content;
}

.site-footer__statement,
.site-footer__location,
.site-footer__copyright {
  margin: 0;
  color: rgba(255, 250, 243, 0.78);
  font-size: 12px;
  font-weight: 620;
  line-height: 1.7;
  letter-spacing: 0.06em;
}

.site-footer__location,
.site-footer__copyright {
  text-transform: uppercase;
}

.site-footer__links,
.site-footer__meta {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 8px;
}

.site-footer__links a,
.site-footer__meta a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 250, 243, 0.82);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible,
.site-footer__meta a:hover,
.site-footer__meta a:focus-visible {
  color: #fffaf3;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.meta-link {
  color: var(--cream);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 940px) {
  .intro-grid,
  .split-section,
  .contact-layout,
  .details-grid,
  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .tile-2,
  .tile-3 {
    transform: none;
  }
}

@media (max-width: 620px) {
  .section {
    padding: 78px 0;
  }

  .feature {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .detail-card {
    min-height: 150px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }
}

/* Native homepage foundation */
.home-native {
  background: #fbfaf7;
  color: #1c1a17;
  font-family: Helvetica, Arial, sans-serif;
}

.home-shell {
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
}

.home-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(23, 20, 18, 0.1);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.home-header__inner {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(32px, 3vw, 48px);
  min-height: 84px;
}

.home-header__brand,
.home-footer__brand {
  display: inline-flex;
  align-items: center;
  color: #171412;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
}

.home-header__brand {
  width: clamp(168px, 13vw, 214px);
  height: 66px;
  overflow: hidden;
}

.home-logo {
  display: block;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.home-logo--header {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 48%;
  transform: none;
}

.home-logo--footer {
  width: clamp(120px, 11vw, 160px);
  height: auto;
}

.home-header__nav,
.home-footer__nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(20px, 1.8vw, 28px);
  min-width: 0;
  flex-wrap: nowrap;
  white-space: nowrap;
  line-height: 1;
}

.site-header__nav-link,
.site-header__utility {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  color: rgba(23, 20, 18, 0.8);
  font-size: 0.98rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  line-height: 1;
  padding: 0;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, opacity 180ms ease;
}

.site-header__nav-link::after,
.site-header__utility::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease);
}

.site-header__nav-link:hover::after,
.site-header__nav-link[aria-current="page"]::after,
.site-header__utility:hover::after,
.site-header__utility:focus-visible::after {
  transform: scaleX(1);
}

.site-header__nav-link:hover,
.site-header__utility:hover {
  color: #171412;
}

.site-header__nav-link[aria-current="page"] {
  color: #171412;
  font-weight: 820;
}

.site-header__nav-link:focus-visible,
.site-header__utility:focus-visible,
.site-header__cta:focus-visible {
  outline: 3px solid rgba(23, 20, 18, 0.2);
  outline-offset: 4px;
}

.site-header__collections {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.site-header__collections-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(23, 20, 18, 0.8);
  cursor: pointer;
}

.site-header__chevron {
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  vertical-align: middle;
}

.site-header__collections-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 12;
  display: grid;
  min-width: 260px;
  padding: 10px;
  border: 1px solid rgba(23, 20, 18, 0.12);
  background: #fff;
  box-shadow: 0 18px 60px rgba(23, 20, 18, 0.12);
}

.site-header__collections-menu[hidden] {
  display: none;
}

.site-header__dropdown-link {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(23, 20, 18, 0.08);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header__dropdown-link:last-child {
  border-bottom: 0;
}

.site-header__mobile-panel {
  display: none;
}

.home-header__utilities {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(24px, 2vw, 32px);
  min-width: 0;
  flex-wrap: nowrap;
  white-space: nowrap;
  line-height: 1;
}

.home-header__toggle {
  border: 1px solid transparent;
  cursor: pointer;
  font: inherit;
  text-decoration: none;
}

.site-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 0;
  font-size: 0.92rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  line-height: 1;
  padding: 0;
  text-transform: uppercase;
  transition: color 180ms ease, opacity 180ms ease;
}

.site-header__utility--basket {
  color: #171412;
  background: transparent;
  padding: 0;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-header__utility--search svg {
  width: 16px;
  height: 16px;
  margin-right: 7px;
  display: block;
  fill: currentColor;
}

.site-header__cta {
  min-height: 40px;
  padding: 0 18px;
  background: #171412;
  color: #ffffff;
  white-space: nowrap;
}

.site-header__utility--basket::after {
  bottom: -4px;
}

.site-header__cta:hover {
  color: #fff;
  opacity: 0.92;
}

.home-header__toggle {
  display: none;
  align-items: center;
  gap: 10px;
  border-radius: 0;
  background: transparent;
  color: #171412;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  min-height: 44px;
  padding: 0 14px;
  text-transform: uppercase;
}

.home-header__toggle-line {
  display: inline-block;
  width: 18px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 6px 0 currentColor, 0 -6px 0 currentColor;
}

.home-header__collections {
  position: relative;
}

.home-header__mobile-menu {
  display: none;
}

.home-header__brand:focus-visible,
.home-footer__brand:focus-visible,
.home-header__nav a:focus-visible,
.home-footer__nav a:focus-visible,
.home-header__collections-toggle:focus-visible,
.site-header__utility:focus-visible,
.site-header__cta:focus-visible,
.home-header__toggle:focus-visible,
.site-header__dropdown-link:focus-visible {
  outline: 3px solid rgba(23, 20, 18, 0.4);
  outline-offset: 4px;
}

.home-main {
  background: #ffffff;
}

.home-section {
  padding: clamp(76px, 10vw, 132px) 0;
}

.home-section--positioning {
  padding-top: clamp(92px, 12vw, 156px);
}

.home-section--warm {
  background: #f4f4f4;
}

.home-section--cta {
  background: #171412;
  color: #ffffff;
}

.home-positioning,
.home-split,
.home-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: start;
  gap: clamp(32px, 6vw, 82px);
}

.home-positioning__copy {
  max-width: 760px;
}

.home-kicker {
  color: rgba(23, 20, 18, 0.66);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.home-section--cta .home-kicker {
  color: rgba(255, 255, 255, 0.68);
}

.home-positioning h2,
.home-section__intro h2,
.home-split h2,
.home-cta h2 {
  color: inherit;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(2.35rem, 7vw, 5.8rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.94;
  margin: 0;
}

.home-section__intro h2,
.home-split h2,
.home-cta h2 {
  font-size: clamp(2rem, 4.6vw, 4rem);
  line-height: 1;
}

.home-positioning p,
.home-section__intro p,
.home-split__copy p,
.home-cta p,
.home-card p,
.home-service p,
.home-footer p {
  color: rgba(23, 20, 18, 0.68);
  font-size: clamp(1rem, 2vw, 1.16rem);
  line-height: 1.8;
}

.home-section--cta p {
  color: rgba(255, 255, 255, 0.72);
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.home-actions--stacked {
  align-items: stretch;
  flex-direction: column;
  margin-top: 0;
}

.home-positioning__note {
  display: grid;
  gap: 14px;
  border-left: 1px solid rgba(23, 20, 18, 0.16);
  padding-left: clamp(22px, 4vw, 42px);
}

.home-positioning__note span {
  color: #171412;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.12;
}

.home-section__intro {
  max-width: 760px;
  margin-bottom: clamp(32px, 5vw, 58px);
}

.home-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-cinematic-strip,
.home-real-spaces {
  display: grid;
  gap: 16px;
}

.home-cinematic-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-real-spaces {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-real-spaces .home-card {
  min-width: 0;
}

.home-card,
.home-service {
  border: 1px solid rgba(23, 20, 18, 0.1);
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
}

.home-card__media {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.home-card__body,
.home-service {
  padding: clamp(20px, 3vw, 30px);
}

.home-card h3,
.home-service h3 {
  color: #171412;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.05;
  margin: 0 0 12px;
}

.home-card p,
.home-service p {
  font-size: 0.98rem;
  margin: 0;
}

.home-cinematic-card,
.home-real-space-card {
  display: grid;
  gap: 10px;
}

.home-cinematic-card img,
.home-real-space-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.home-real-space-card {
  overflow: hidden;
  border-radius: var(--home-image-radius);
  background: #fff;
}

.home-cinematic-card h3,
.home-real-space-card h3 {
  margin: 0;
  color: #171412;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-cinematic-card p,
.home-real-space-card p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(23, 20, 18, 0.68);
}

.home-service {
  min-height: 220px;
}

.home-split__copy {
  max-width: 610px;
}

.home-footer {
  border-top: 1px solid rgba(23, 20, 18, 0.1);
  background: #ffffff;
  padding: 46px 0;
}

.home-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 32px;
}

.home-footer p {
  max-width: 520px;
  font-size: 0.98rem;
  margin: 12px 0 0;
}

@media (max-width: 980px) {
  .home-header__inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 70px;
  }

  .home-header__toggle {
    display: inline-flex;
  }
.home-header__nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    justify-content: flex-start;
    border: 1px solid rgba(28, 26, 23, 0.12);
    border-radius: 8px;
    background: #fffefb;
    box-shadow: 0 18px 60px rgba(28, 26, 23, 0.14);
    padding: 12px;
  }

  .home-header__nav.is-open {
    display: grid;
  }

  .home-header__utilities {
    justify-content: flex-end;
    gap: 12px;
  }

  .site-header__cta {
    display: none;
  }

  .site-header__collections {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }

  .site-header__nav-link,
  .site-header__collections-toggle {
    display: block;
    min-height: 40px;
    padding: 12px 0;
  }
.site-header__collections-menu {
    position: static;
    flex-basis: 100%;
    min-width: 0;
    margin-top: 8px;
    box-shadow: none;
  }

  .home-header__mobile-menu {
    display: block;
  }

  .home-positioning,
  .home-split,
  .home-cta,
  .home-footer__inner {
    grid-template-columns: 1fr;
  }

  .home-card-grid {
    grid-template-columns: 1fr;
  }

  .home-cinematic-strip,
  .home-real-spaces {
    grid-template-columns: 1fr;
  }

  .home-card__media {
    aspect-ratio: 16 / 11;
  }

  .home-positioning__note {
    border-left: 0;
    border-top: 1px solid rgba(28, 26, 23, 0.16);
    padding-left: 0;
    padding-top: 24px;
  }

  .home-footer__nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 620px) {
  .home-shell {
    width: min(100% - 28px, 1180px);
  }

  .home-section {
    padding: 68px 0;
  }

  .home-section--positioning {
    padding-top: 76px;
  }

  .home-positioning h2 {
    font-size: clamp(2.25rem, 13vw, 4rem);
  }

  .home-actions,
  .home-button {
    width: 100%;
  }

  .home-button {
    padding-inline: 16px;
  }

  .home-card__body,
  .home-service {
    padding: 22px;
  }

  .home-collections-showcase__grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-header__nav a,
  .home-footer__nav a,
  .home-header__quote,
  .home-button {
    transition: none;
  }
}

/* Native homepage editorial expansion */
.home-native {
  background: #ffffff;
  color: #171412;
  font-family: Helvetica, Arial, sans-serif;
}

.home-shell {
  width: var(--container);
}

.home-native .home-kicker,
.home-native .eyebrow {
  font-size: clamp(0.8125rem, 0.9vw, 0.9375rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.home-native .home-positioning h2 {
  font-size: clamp(2.5rem, 7vw, 5.25rem);
  line-height: 0.98;
}

.home-native .home-positioning {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: clamp(28px, 4vw, 48px);
  min-height: 0;
}

.home-native .home-positioning__copy {
  display: block;
  max-width: 840px;
  padding-block: 0;
}

.home-native .home-positioning__image {
  width: 100%;
  aspect-ratio: 16 / 11;
}

.home-native .home-positioning__copy > .home-actions {
  margin-top: clamp(12px, 2vw, 18px);
}

.custom-page .home-positioning {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: clamp(28px, 4vw, 48px);
  min-height: 0;
}

.custom-page .home-positioning__copy {
  display: block;
  max-width: 840px;
  padding-block: 0;
}

.custom-page .home-positioning__image {
  width: 100%;
  aspect-ratio: 5 / 6;
}

.custom-page .home-positioning__copy > .home-actions {
  margin-top: clamp(12px, 2vw, 18px);
}

.custom-page .home-positioning h2 {
  font-size: clamp(2.5rem, 7vw, 5.25rem);
  line-height: 0.98;
  max-width: 840px;
}

.custom-page .home-positioning p:not(.home-kicker) {
  font-size: clamp(1.0625rem, 1.2vw, 1.1875rem);
  line-height: 1.55;
  max-width: 680px;
}

.custom-page .home-actions {
  gap: 14px;
}

.custom-page .home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.custom-page .home-button--primary {
  background: #171412;
  border-color: #171412;
  color: #fff;
}

.custom-page .home-button--secondary {
  background: #fff;
  border-color: rgba(23, 20, 18, 0.18);
  color: #171412;
}

.home-native .home-section__intro h2,
.home-native .home-editorial__copy h2,
.home-native .home-craft h2,
.home-native .home-cta h2 {
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  line-height: 1;
}

.home-native .home-project h3,
.home-native .home-collection h3 {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  line-height: 1.05;
}

.home-native .home-positioning p:not(.home-kicker),
.home-native .home-section__intro p:not(.home-kicker),
.home-native .home-editorial__copy p:not(.home-kicker),
.home-native .home-craft__text p,
.home-native .home-cta p:not(.home-kicker),
.home-native .home-collection p,
.home-native .home-service p,
.home-native .home-project p,
.home-native .home-process__steps p,
.home-native .home-faq__panel p {
  font-size: clamp(1.0625rem, 1.2vw, 1.1875rem);
  line-height: 1.55;
}

.home-native .home-actions {
  gap: 14px;
}

.home-native .home-actions--stacked {
  gap: 12px;
}

.page-intro {
  --page-intro-title-size: clamp(2rem, 4.5vw, 3.75rem);
  --page-intro-title-line: 1;
  --page-intro-copy-size: clamp(1.02rem, 1.18vw, 1.14rem);
  display: grid;
  gap: clamp(14px, 2.2vw, 22px);
  width: 100%;
  max-width: 840px;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.page-intro__eyebrow,
.page-intro .home-kicker,
.page-intro .eyebrow {
  margin: 0;
  color: rgba(23, 20, 18, 0.74);
  font-size: clamp(0.8125rem, 0.9vw, 0.9375rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.page-intro__title {
  margin: 0;
  color: #171412;
  font-family: Helvetica, Arial, sans-serif;
  font-size: var(--page-intro-title-size);
  line-height: var(--page-intro-title-line);
  letter-spacing: 0;
  text-wrap: balance;
}

.page-intro__copy {
  max-width: 56ch;
}

.page-intro p.page-intro__copy,
.page-intro p:not(.home-kicker):not(.page-intro__eyebrow) {
  margin: 0;
  color: rgba(23, 20, 18, 0.72);
  font-size: var(--page-intro-copy-size);
  line-height: 1.6;
}

.page-intro__media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--home-image-radius);
  background: #f2f2f2;
}

.page-intro__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-intro--standard {
  max-width: 840px;
}

.page-intro--standard .page-intro__title {
  --page-intro-title-size: clamp(2rem, 4.2vw, 3.6rem);
}

.page-intro--standard .page-intro__copy {
  max-width: 54ch;
}

.page-intro--directory {
  max-width: 760px;
}

.page-intro--directory .page-intro__title {
  --page-intro-title-size: clamp(2rem, 4vw, 3.4rem);
}

.page-intro--directory .page-intro__copy {
  max-width: 42ch;
}

.page-intro--detail {
  max-width: 960px;
  margin-bottom: clamp(24px, 4vw, 40px);
}

.page-intro--detail.home-positioning,
.page-intro--detail.home-set-builder__shell,
.page-intro--detail.home-editorial,
.page-intro--detail.custom-page__hero-grid,
.page-intro--detail.about-page__meaning-editorial,
.page-intro--detail.living-room-set-page__hero-grid {
  grid-template-columns: 1fr;
  align-items: start;
  gap: clamp(18px, 3vw, 32px);
}

.page-intro--detail.home-positioning {
  min-height: auto;
}

.page-intro--detail .page-intro__title {
  --page-intro-title-size: clamp(2.4rem, 5vw, 5rem);
  --page-intro-title-line: 0.96;
  max-width: 14ch;
}

.page-intro--detail .page-intro__copy {
  max-width: 52ch;
}

.page-intro--detail .page-intro__media {
  margin-top: clamp(4px, 1.2vw, 12px);
}

.feeling-cloudy__shell {
  display: grid;
  gap: clamp(24px, 4vw, 40px);
}

.feeling-cloudy__controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.feeling-cloudy__filter {
  appearance: none;
  border: 1px solid rgba(23, 20, 18, 0.16);
  background: #fff;
  color: #171412;
  padding: 0 16px;
  min-height: 42px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.feeling-cloudy__filter.is-active,
.feeling-cloudy__filter:hover,
.feeling-cloudy__filter:focus-visible {
  background: #171412;
  color: #fff;
}

.feeling-cloudy__stage {
  min-height: 420px;
  display: grid;
  align-items: start;
}

.feeling-cloudy__loading,
.feeling-cloudy__empty,
.feeling-cloudy__result {
  border: 1px solid rgba(23, 20, 18, 0.1);
  background: #fff;
  padding: clamp(22px, 3vw, 32px);
}

.feeling-cloudy__loading h2,
.feeling-cloudy__empty h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.feeling-cloudy__loading p:last-child,
.feeling-cloudy__empty p:last-child {
  margin: 0;
  max-width: 52ch;
  color: rgba(23, 20, 18, 0.72);
  font-size: 1rem;
  line-height: 1.6;
}

.feeling-cloudy__result {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(24px, 4vw, 42px);
  align-items: start;
}

.feeling-cloudy__media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--home-image-radius);
  background: #f2f2f2;
  aspect-ratio: 16 / 11;
}

.feeling-cloudy__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feeling-cloudy__body {
  display: grid;
  gap: 14px;
}

.feeling-cloudy__body h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 0.98;
}

.feeling-cloudy__price {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
}

.feeling-cloudy__dimensions,
.feeling-cloudy__description,
.feeling-cloudy__note {
  margin: 0;
  color: rgba(23, 20, 18, 0.72);
  font-size: 1rem;
  line-height: 1.65;
}

.feeling-cloudy__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.feeling-cloudy__actions .home-button {
  min-width: 180px;
}

.home-native .home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    transform 220ms var(--ease),
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.home-native .home-button:hover,
.home-native .home-button:focus-visible {
  transform: translateY(-1px);
}

.home-native .home-button--primary {
  background: #171412;
  border-color: #171412;
  color: #fff;
}

.home-native .home-button--primary:hover,
.home-native .home-button--primary:focus-visible {
  background: #11100f;
  border-color: #11100f;
  color: #fff;
}

.home-native .home-button--secondary {
  background: #fff;
  border-color: rgba(23, 20, 18, 0.18);
  color: #171412;
}

.home-native .home-button--secondary:hover,
.home-native .home-button--secondary:focus-visible {
  background: #fff;
  border-color: #171412;
  color: #171412;
}

.home-native .home-section--cta .home-button--primary {
  background: #fff;
  border-color: #fff;
  color: #171412;
}

.home-native .home-section--cta .home-button--primary:hover,
.home-native .home-section--cta .home-button--primary:focus-visible {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.92);
  color: #171412;
}

.home-native .home-section--cta .home-button--secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.82);
  color: #fff;
}

.home-native .home-section--cta .home-button--secondary:hover,
.home-native .home-section--cta .home-button--secondary:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
  color: #fff;
}

.home-header__brand,
.home-footer__brand,
.home-positioning h2,
.home-section__intro h2,
.home-editorial__copy h2,
.home-craft h2,
.home-cta h2,
.home-process h2 {
  font-family: Helvetica, Arial, sans-serif;
}

.home-header__nav a,
.home-footer__nav a {
  letter-spacing: 0.1em;
}

.home-main {
  background: #ffffff;
}

.home-section {
  padding: clamp(82px, 10vw, 144px) 0;
}

.home-section--positioning {
  padding-top: clamp(96px, 12vw, 168px);
}

.home-section--warm {
  background: #f4f4f4;
}

.home-section--soft {
  background: #ffffff;
}

.home-positioning {
  align-items: center;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  min-height: clamp(640px, 82vh, 860px);
}

.home-positioning__copy p,
.home-section__intro p,
.home-editorial__copy p,
.home-craft__text p,
.home-cta p {
  max-width: 680px;
}

.home-positioning h2 {
  font-size: clamp(2.9rem, 5.3vw, 5.8rem);
  line-height: 0.96;
  max-width: 840px;
}

.home-kicker {
  color: rgba(23, 20, 18, 0.66);
}

.home-positioning__image,
.home-editorial__media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--home-image-radius);
  background: #f1f1f1;
}

.home-positioning__image img,
.home-editorial__media img,
.home-collection img,
.home-project img,
.home-craft__media-item img,
.home-real-space-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--home-image-focus, center center);
}

.home-positioning__image {
  aspect-ratio: 5 / 6;
}

.home-positioning__copy {
  padding-block: clamp(8px, 2vw, 24px);
}

.home-section__intro--wide {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.68fr);
  align-items: end;
  gap: clamp(28px, 5vw, 72px);
  max-width: none;
}

.home-section__intro--wide .home-kicker,
.home-section__intro--wide h2 {
  grid-column: 1;
}

.home-section__intro--wide p {
  grid-column: 2;
  margin-bottom: 0;
}

.home-collections {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: 18px;
}

.home-collections-showcase {
  padding-top: clamp(28px, 4vw, 52px);
}

.home-collections-showcase .home-section__intro {
  margin-bottom: clamp(24px, 4vw, 34px);
}

.home-collections-showcase__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.collections-page__directory .home-collections-showcase__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
}

.collections-page__directory .home-collection-card:nth-child(-n + 3),
.collections-page__directory .home-collection-card:nth-child(n + 4) {
  grid-column: auto;
}

.collections-page__directory .home-collection-card {
  grid-template-rows: auto 1fr;
  height: 100%;
}

.collections-page__directory .home-collection-card__media {
  aspect-ratio: 4 / 5;
}

.collections-page__directory .home-collection-card__body {
  grid-template-rows: auto 1fr auto;
}

.collections-page__hero-copy {
  align-items: end;
}

.collections-page__hero h1 {
  margin: 0;
  color: #171412;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
  max-width: 14ch;
}

.collections-page__directory h2 {
  margin: 0;
  color: #171412;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0;
}

.collections-page__hero-copy h1 {
  max-width: 14ch;
}

.collections-page__directory-intro {
  margin-bottom: clamp(24px, 4vw, 34px);
}

.home-collection-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(23, 20, 18, 0.1);
  border-radius: var(--home-image-radius);
  background: #fff;
  color: inherit;
  text-decoration: none;
  min-width: 0;
}

.home-collection-card:nth-child(-n + 3) {
  grid-column: span 2;
}

.home-collection-card:nth-child(n + 4) {
  grid-column: span 3;
}

.home-collection-card__media {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #f4f4f4;
}

.home-collection-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--home-image-focus, center center);
}

.home-collection-card__body {
  display: grid;
  gap: 8px;
  padding: clamp(18px, 2.8vw, 26px);
}

.home-collection-card h3 {
  margin: 0;
  color: #171412;
  font-size: clamp(1.15rem, 1.9vw, 1.55rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.home-collection-card p {
  margin: 0;
  color: rgba(23, 20, 18, 0.68);
  font-size: 0.95rem;
  line-height: 1.55;
}

.home-collection-card__action {
  color: #171412;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.home-collection-card:focus-visible {
  outline: 3px solid rgba(184, 148, 120, 0.5);
  outline-offset: 4px;
}

.home-collection-card:hover .home-collection-card__action,
.home-collection-card:focus-visible .home-collection-card__action {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.home-curated-sets {
  background: #ffffff;
}

.home-curated-sets .home-section__intro {
  margin-bottom: clamp(24px, 4vw, 34px);
}

.home-curated-sets__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  align-items: stretch;
}

.home-curated-set-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 20, 18, 0.1);
  border-radius: var(--home-image-radius);
  background: #fff;
  color: inherit;
  text-decoration: none;
}

.home-curated-set-card:focus-visible,
.living-room-set-card:focus-visible {
  outline: 2px solid #171412;
  outline-offset: 3px;
}

.living-room-set-card {
  color: inherit;
  text-decoration: none;
}

.home-curated-set-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #ede4d8;
}

.home-curated-set-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-curated-set-card__body {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 8px;
  padding: clamp(18px, 2.4vw, 24px);
}

.home-curated-set-card__room {
  margin: 0;
  color: rgba(23, 20, 18, 0.62);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.home-curated-set-card h3 {
  margin: 0;
  color: #171412;
  font-size: clamp(1.18rem, 1.6vw, 1.5rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.home-curated-set-card__description {
  margin: 0;
  color: rgba(23, 20, 18, 0.68);
  font-size: 0.95rem;
  line-height: 1.55;
}

.home-curated-set-card__action {
  justify-self: start;
  min-height: 0;
  margin-top: 12px;
  border: 0;
  padding: 0;
  background: transparent;
  color: #171412;
  cursor: default;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.home-button--pending {
  cursor: default;
}

.home-button--pending:hover {
  transform: none;
}

.home-set-builder {
  background: #f6f6f4;
}

.home-set-builder__shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.home-set-builder__media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--home-image-radius);
  background: #ececec;
  aspect-ratio: 16 / 10;
}

.home-set-builder__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-set-builder__copy {
  display: grid;
  gap: 16px;
  max-width: 52ch;
}

.home-set-builder__copy h2 {
  margin: 0;
  color: #171412;
  font-size: clamp(2.3rem, 4.5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.home-set-builder__copy p {
  margin: 0;
  color: rgba(23, 20, 18, 0.72);
  font-size: 1rem;
  line-height: 1.65;
}

.home-set-builder__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.home-set-builder__actions .home-button {
  min-width: 0;
}

.home-section--selected-pieces {
  background: #fff;
}

.home-selected-pieces__grid {
  margin-top: 28px;
}

.home-selected-pieces__actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 28px;
}

.home-collection,
.home-project {
  display: grid;
  gap: 18px;
}

.home-collection {
  border-top: 1px solid rgba(23, 20, 18, 0.16);
  padding-top: 18px;
}

.home-collection--large {
  grid-row: span 2;
}

.home-collection img {
  aspect-ratio: 4 / 3;
}

.home-collection--large img {
  aspect-ratio: 4 / 5;
}

.home-collection h3,
.home-service h3,
.home-project h3,
.home-process__steps h3 {
  color: #171412;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1;
  margin: 0 0 10px;
}

.home-collection p,
.home-service p,
.home-project p,
.home-process__steps p,
.home-faq__panel p {
  color: rgba(23, 20, 18, 0.68);
  line-height: 1.75;
  margin: 0;
}

.home-editorial {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 7vw, 96px);
}

.home-editorial__media {
  aspect-ratio: 4 / 5;
}

.home-editorial__copy h2,
.home-craft h2,
.home-process h2 {
  color: #171412;
  font-size: clamp(2.25rem, 5vw, 4.7rem);
  line-height: 0.98;
  margin: 0 0 24px;
}

.home-editorial__copy .home-button {
  margin-top: 20px;
}

.home-craft,
.home-process {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 84px);
}

.home-craft__copy {
  display: grid;
  gap: 16px;
  border-left: 1px solid rgba(23, 20, 18, 0.18);
  padding-left: clamp(24px, 4vw, 52px);
}

.home-custom-rows {
  display: grid;
  gap: 14px;
  padding-top: 4px;
  padding-left: 18px;
  border-left: 1px solid rgba(23, 20, 18, 0.12);
  color: rgba(23, 20, 18, 0.88);
}

.home-custom-rows p {
  margin: 0;
  max-width: 56ch;
}

.home-craft__media {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.8fr);
  gap: 16px;
  align-items: stretch;
  min-width: 0;
}

.home-craft__media-item {
  margin: 0;
  min-width: 0;
  overflow: hidden;
  background: #f4f4f4;
  height: 100%;
}

.home-craft__media-item img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}

.home-craft__media-item--primary {
  aspect-ratio: 4 / 5;
}

.home-craft__media-item--secondary {
  aspect-ratio: 4 / 5;
}

.home-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(23, 20, 18, 0.16);
}

.home-service {
  min-height: 0;
  border: 0;
  border-right: 1px solid rgba(23, 20, 18, 0.12);
  border-radius: 0;
  background: transparent;
  padding: clamp(24px, 4vw, 44px);
}

.home-service:last-child {
  border-right: 0;
}

.home-service span,
.home-process__steps span {
  display: inline-block;
  color: rgba(23, 20, 18, 0.7);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 22px;
}

.home-projects {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
}

.home-project {
  align-content: start;
  overflow: hidden;
  border-radius: var(--home-image-radius);
  background: #fff;
}

.home-project img {
  aspect-ratio: 4 / 5;
}

.home-process__steps {
  display: grid;
  gap: 1px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.home-process__steps li {
  background: #f6f6f6;
  padding: clamp(24px, 4vw, 40px);
}

.home-faq {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 84px);
}

.home-faq .home-section__intro {
  margin-bottom: 0;
}

.home-faq__list {
  border-top: 1px solid rgba(23, 20, 18, 0.16);
}

.home-faq__item {
  border-bottom: 1px solid rgba(23, 20, 18, 0.16);
}

.home-faq__item h3 {
  margin: 0;
}

.home-faq__item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 72px;
  border: 0;
  background: transparent;
  color: #171412;
  cursor: pointer;
  font: 700 clamp(1.1rem, 2vw, 1.4rem) Helvetica, Arial, sans-serif;
  gap: 18px;
  padding: 22px 0;
  text-align: left;
}

.home-faq__item button::after {
  content: "+";
  flex: 0 0 auto;
  color: rgba(23, 20, 18, 0.7);
  font-size: 1.5rem;
  line-height: 1;
}

.home-faq__item button[aria-expanded="true"]::after {
  content: "-";
}

.home-faq__item button:focus-visible {
  outline: 3px solid rgba(184, 148, 120, 0.5);
  outline-offset: 4px;
}

.home-faq__panel {
  padding: 0 0 26px;
}

.home-section--cta {
  background: #171412;
}

.home-cta {
  align-items: center;
}

.home-cta h2 {
  max-width: 760px;
}

.home-footer {
  background: #ffffff;
}

@media (max-width: 1120px) {
  .home-header__nav a {
    font-size: 0.76rem;
    padding-inline: 8px;
  }

  .home-header__quote {
    padding-inline: 16px;
  }

  .home-logo--header {
    width: clamp(108px, 28vw, 148px);
  }
}

@media (max-width: 1180px) {
  .home-header__inner {
    min-height: 66px;
    gap: 18px;
    grid-template-columns: auto auto;
  }
  .home-header__actions {
    display: none;
  }
.home-header__toggle {
    display: inline-flex;
  }

  .home-header__nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    justify-content: flex-start;
    border: 1px solid rgba(28, 26, 23, 0.12);
    border-radius: 8px;
    background: #fffefb;
    box-shadow: 0 18px 60px rgba(28, 26, 23, 0.14);
    padding: 12px;
  }

  .home-header__nav.is-open {
    display: grid;
  }

  .home-header__mobile-menu {
    display: block;
  }

  .home-header__utilities {
    justify-content: flex-end;
    gap: 12px;
  }

}

@media (max-width: 980px) {
  .home-header__inner {
    min-height: 66px;
    gap: 18px;
  }

  .home-header {
    backdrop-filter: blur(14px);
  }

  .home-section__intro--wide,
  .home-positioning,
  .home-editorial,
  .home-craft,
  .home-process,
  .home-faq,
  .home-collections,
  .home-projects {
    grid-template-columns: 1fr;
  }

  .home-section__intro--wide .home-kicker,
  .home-section__intro--wide h2,
  .home-section__intro--wide p {
    grid-column: auto;
  }

  .home-positioning__image,
  .home-editorial__media,
  .home-collection--large img,
  .home-project img {
    aspect-ratio: 16 / 11;
  }

  .home-collections-showcase__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-curated-sets__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-intro,
  .page-intro--directory,
  .page-intro--detail {
    max-width: 100%;
  }

  .page-intro__title {
    max-width: none;
  }

  .page-intro__copy {
    max-width: 60ch;
  }

  .page-intro__media img {
    aspect-ratio: 16 / 11;
  }

  .feeling-cloudy__result {
    grid-template-columns: 1fr;
  }

  .home-set-builder__shell {
    grid-template-columns: 1fr;
  }

  .home-set-builder__media {
    order: 1;
  }

  .home-set-builder__copy {
    order: 2;
    max-width: none;
  }

  .home-set-builder__actions {
    gap: 10px;
  }

  .home-set-builder__actions .home-button {
    flex: 1 1 0;
  }

  .home-collection-card:nth-child(-n + 3),
  .home-collection-card:nth-child(n + 4) {
    grid-column: auto;
  }

  .home-positioning__image img,
  .home-editorial__media img,
  .home-collection img,
  .home-project img,
  .home-craft__media-item img,
  .home-real-space-card img {
    object-position: var(--home-image-focus-mobile, var(--home-image-focus, center center));
  }

  .home-positioning {
    min-height: 0;
    gap: 18px;
  }

  .home-positioning__copy {
    display: block;
    padding-block: 0;
  }

  .home-positioning__image,
  .home-actions {
    order: 0;
  }

  .home-positioning__copy > .home-actions {
    margin-top: clamp(12px, 2vw, 18px);
  }

  .feeling-cloudy__actions .home-button {
    width: 100%;
    min-width: 0;
  }

  .home-services {
    grid-template-columns: 1fr;
  }

  .home-service {
    border-right: 0;
    border-bottom: 1px solid rgba(23, 20, 18, 0.12);
    padding-inline: 0;
  }

  .home-service:last-child {
    border-bottom: 0;
  }

  .home-positioning h2 {
    font-size: clamp(2.75rem, 6.1vw, 4.7rem);
    line-height: 0.95;
  }

  .home-positioning p {
    max-width: 56ch;
  }

  .home-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .home-header__quote,
  .home-button {
    min-height: 44px;
    padding: 0 18px;
  }

  .home-positioning__image {
    margin-top: 0;
  }

  .home-craft__media {
    grid-auto-flow: column;
    grid-auto-columns: minmax(84%, 84%);
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
  }

  .home-craft__copy {
    border-left: 0;
    padding-left: 0;
    padding-bottom: 8px;
  }

  .home-craft__media-item {
    scroll-snap-align: start;
    aspect-ratio: 4 / 5;
  }

  .home-real-spaces {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(84%, 84%);
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
  }

  .home-real-spaces .home-card {
    scroll-snap-align: start;
  }
}

@media (max-width: 620px) {
  .home-shell {
    width: min(100% - 28px, 1320px);
  }

  .home-header__inner {
    min-height: 58px;
    gap: 12px;
  }

  .home-header__toggle {
    min-height: 38px;
    padding: 0 10px;
  }

  .home-logo--header {
    width: clamp(94px, 26vw, 132px);
  }

  .home-section--positioning {
    padding-top: 52px;
  }

  .home-positioning h2 {
    font-size: clamp(2.2rem, 11.5vw, 3.6rem);
    line-height: 0.95;
    text-align: left;
  }

  .home-section__intro h2,
  .home-editorial__copy h2,
  .home-craft h2,
  .home-cta h2,
  .home-process h2 {
    font-size: clamp(2.15rem, 11vw, 3.5rem);
  }

  .home-collection,
  .home-project {
    gap: 14px;
  }

  .home-curated-sets__grid {
    grid-template-columns: 1fr;
  }

  .home-set-builder__actions .home-button {
    width: 100%;
    flex: 1 1 100%;
  }

  .home-positioning {
    gap: 12px;
  }

  .home-actions {
    width: 100%;
  }

  .home-actions {
    gap: 8px;
    margin-top: 16px;
  }

  .home-positioning__image {
    margin-top: 20px;
  }

  .process-page__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .process-page__figure {
    aspect-ratio: 16 / 11;
  }

  .process-page__content {
    gap: 14px;
  }

  .process-page__intro h1 {
    font-size: clamp(2.6rem, 11vw, 4rem);
    line-height: 0.95;
  }

  .process-page__step {
    padding: 20px 18px;
  }

  .process-page__details {
    grid-template-columns: 1fr;
  }

  .process-page__cta {
    padding: 22px 18px;
  }

  .process-page__cta-actions .home-button {
    width: 100%;
    min-width: 0;
  }

  .home-process__steps li {
    padding: 24px 0;
    background: transparent;
    border-top: 1px solid rgba(23, 20, 18, 0.14);
  }

  .home-process__actions {
    margin-top: 20px;
  }

  .home-faq__item button {
    min-height: 64px;
    padding-block: 18px;
  }
}

.home-native,
.home-native :is(a, button, input, select, textarea, label, p, span, h1, h2, h3, h4, h5, h6, li, small, strong, em) {
  font-family: Helvetica, Arial, sans-serif;
}

/* Product routes */
.product-page {
  background: #fbf7f0;
  color: #171412;
}

.product-shell {
  width: var(--container);
  margin: 0 auto;
}

.product-header {
  position: sticky;
  top: 0;
  z-index: 25;
  border-bottom: 1px solid rgba(49, 37, 31, 0.12);
  background: rgba(251, 247, 240, 0.94);
  backdrop-filter: blur(16px);
}

.product-main {
  background: #fbf7f0;
}

.product-section {
  padding: clamp(72px, 10vw, 132px) 0;
}

.product-section--hero {
  padding-top: clamp(88px, 12vw, 156px);
}

.product-section--warm {
  background: #ede4d8;
}

.product-section--cta {
  background: #171412;
  color: #fffaf3;
}

.product-index-hero,
.product-hero,
.product-preview,
.product-details,
.product-cta {
  display: grid;
  gap: clamp(28px, 5vw, 72px);
}

.product-index-hero {
  max-width: 860px;
}

.product-index-hero h1,
.product-hero h1,
.product-section h2,
.product-section h3 {
  font-family: Helvetica, Arial, sans-serif;
  letter-spacing: 0;
}

.product-index-hero h1,
.product-hero h1 {
  margin: 0;
  font-size: clamp(2.9rem, 7vw, 6.8rem);
  line-height: 0.94;
  font-weight: 700;
}

.product-index-hero__lede,
.product-hero__lede,
.product-copy p,
.product-panel p,
.product-preview__copy p,
.product-cta p,
.product-card__lede {
  color: rgba(49, 37, 31, 0.7);
  line-height: 1.75;
}

.product-index-hero__line {
  margin: 14px 0 0;
  color: rgba(49, 37, 31, 0.72);
  font-size: 0.92rem;
  line-height: 1.6;
}

.process-page__shell {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
}

.process-page__intro {
  display: grid;
  gap: 10px;
  max-width: 860px;
}

.process-page__intro h1 {
  margin: 0;
  color: #171412;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: 0;
}

.process-page__lede {
  max-width: 58ch;
  margin: 0;
  color: rgba(49, 37, 31, 0.72);
  line-height: 1.75;
}

.process-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.process-page__figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--home-image-radius);
  background: #f3ede4;
  aspect-ratio: 16 / 11;
}

.process-page__figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  padding: clamp(12px, 2vw, 24px);
}

.process-page__content {
  display: grid;
  gap: 18px;
}

.process-page__steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-page__step {
  display: grid;
  gap: 10px;
  padding: clamp(20px, 3vw, 32px);
  border-radius: var(--home-image-radius);
  background: #f6f1e8;
}

.process-page__step span {
  color: rgba(23, 20, 18, 0.7);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.process-page__step h2 {
  margin: 0;
  color: #171412;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1;
  letter-spacing: 0;
}

.process-page__step p {
  margin: 0;
  color: rgba(49, 37, 31, 0.72);
  line-height: 1.65;
}

.process-page__panel {
  display: grid;
  gap: 12px;
  padding: clamp(22px, 3vw, 34px);
  border-radius: var(--home-image-radius);
  background: #f8f5ef;
}

.process-page__panel--soft {
  background: #efe6db;
}

.process-page__panel h2 {
  margin: 0;
  color: #171412;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
  line-height: 1;
  letter-spacing: 0;
}

.process-page__panel p {
  margin: 0;
  color: rgba(49, 37, 31, 0.72);
  line-height: 1.7;
}

.process-page__list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-page__list li {
  position: relative;
  padding-left: 18px;
  color: #171412;
  line-height: 1.55;
}

.process-page__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #171412;
  transform: translateY(-50%);
}

.process-page__details {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.process-page__details div {
  display: grid;
  gap: 6px;
}

.process-page__details strong {
  color: #171412;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-page__cta {
  display: grid;
  gap: 18px;
  margin-top: clamp(10px, 2vw, 18px);
  padding: clamp(24px, 4vw, 40px);
  border-radius: var(--home-image-radius);
  background: #171412;
  color: #fffaf3;
}

.process-page__cta-copy {
  display: grid;
  gap: 8px;
  max-width: 720px;
}

.process-page__cta h2 {
  margin: 0;
  color: #fffaf3;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0;
}

.process-page__cta .home-kicker {
  color: rgba(255, 250, 243, 0.76);
}

.process-page__cta-actions {
  flex-wrap: wrap;
}

.process-page__cta-actions .home-button {
  min-width: min(100%, 220px);
}

.process-page .home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    transform 220ms var(--ease),
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.process-page .home-button:hover,
.process-page .home-button:focus-visible {
  transform: translateY(-1px);
}

.process-page__cta .home-button--primary {
  background: #fff;
  border-color: #fff;
  color: #171412;
}

.process-page__cta .home-button--primary:hover,
.process-page__cta .home-button--primary:focus-visible {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.92);
  color: #171412;
}

.process-page__cta .home-button--secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.82);
  color: #fff;
}

.process-page__cta .home-button--secondary:hover,
.process-page__cta .home-button--secondary:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
  color: #fff;
}

.home-process__actions {
  margin-top: 28px;
}

.delivery-page {
  background: #fff;
  color: #171412;
}

.delivery-page__main {
  background: #fff;
}

.delivery-page__section {
  padding: clamp(64px, 8vw, 120px) 0;
}

.delivery-page__section--soft {
  background: #f6f3ee;
}

.delivery-page__section--cta {
  background: #171412;
  color: #fffaf3;
}

.delivery-page__shell {
  display: grid;
  gap: clamp(24px, 4vw, 48px);
}

.delivery-page__hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.delivery-page__hero-copy {
  display: grid;
  gap: 16px;
  max-width: 760px;
}

.delivery-page__hero-copy h1 {
  margin: 0;
  color: #171412;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.delivery-page__lede,
.delivery-page__section-heading p,
.delivery-page__areas p,
.delivery-page__panel p,
.delivery-page__cta-copy {
  margin: 0;
  color: rgba(23, 20, 18, 0.72);
  font-size: clamp(1.02rem, 1.2vw, 1.14rem);
  line-height: 1.65;
}

.delivery-page__hero-media,
.delivery-page__area-media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--home-image-radius);
  background: #f3ede4;
}

.delivery-page__hero-media {
  aspect-ratio: 4 / 5;
}

.delivery-page__hero-media img,
.delivery-page__area-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.delivery-page__hero-actions {
  flex-wrap: wrap;
}

.delivery-page__section-heading {
  display: grid;
  gap: 10px;
  max-width: 820px;
}

.delivery-page__section-heading--split {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: end;
  gap: clamp(20px, 4vw, 48px);
}

.delivery-page__section-heading h2,
.delivery-page__panel h2,
.delivery-page__cta h2 {
  margin: 0;
  color: #171412;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(1.95rem, 4vw, 3.45rem);
  line-height: 1;
  letter-spacing: 0;
}

.delivery-page__step-grid,
.delivery-page__fee-grid,
.delivery-page__faq-grid {
  display: grid;
  gap: 16px;
}

.delivery-page__step-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.delivery-page__step-card,
.delivery-page__fee-card,
.delivery-page__panel,
.delivery-page__region-card,
.delivery-page__faq-card {
  min-width: 0;
  box-sizing: border-box;
}

.delivery-page__step-card {
  display: grid;
  gap: 10px;
  padding: clamp(20px, 3vw, 30px);
  border-radius: var(--home-image-radius);
  background: #f4efe8;
}

.delivery-page__step-card span {
  color: rgba(23, 20, 18, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
}

.delivery-page__step-card h3,
.delivery-page__region-card h3,
.delivery-page__faq-card summary,
.delivery-page__fee-card span {
  margin: 0;
  color: #171412;
  font-family: Helvetica, Arial, sans-serif;
  letter-spacing: 0;
}

.delivery-page__step-card h3,
.delivery-page__region-card h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.08;
}

.delivery-page__step-card p,
.delivery-page__region-card p {
  color: rgba(23, 20, 18, 0.72);
  line-height: 1.65;
}

.delivery-page__fee-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.delivery-page__fee-card {
  display: grid;
  gap: 8px;
  padding: 18px 18px 20px;
  border-radius: var(--home-image-radius);
  background: #fff;
}

.delivery-page__fee-card span {
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.3;
}

.delivery-page__fee-card strong {
  color: #171412;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(1.05rem, 1.6vw, 1.45rem);
  line-height: 1;
}

.delivery-page__areas,
.delivery-page__check-grid,
.delivery-page__content-grid,
.delivery-page__region-grid {
  display: grid;
  gap: clamp(20px, 4vw, 44px);
}

.delivery-page__areas,
.delivery-page__content-grid,
.delivery-page__region-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
}

.delivery-page__area-copy {
  display: grid;
  gap: 14px;
  max-width: 760px;
}

.delivery-page__area-copy h2 {
  margin: 0;
  color: #171412;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(1.95rem, 4vw, 3.25rem);
  line-height: 1;
}

.delivery-page__area-media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--home-image-radius);
  background: #f3ede4;
  aspect-ratio: 4 / 5;
}

.delivery-page__check-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
}

.delivery-page__panel {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 3.2vw, 36px);
  border-radius: var(--home-image-radius);
  background: #fff;
}

.delivery-page__panel--warm {
  background: #efe7db;
}

.delivery-page__list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.delivery-page__list li {
  position: relative;
  padding-left: 18px;
  color: #171412;
  line-height: 1.58;
}

.delivery-page__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #171412;
  transform: translateY(-50%);
}

.delivery-page__panel-actions {
  margin-top: 4px;
}

.delivery-page__region-cards {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.delivery-page__region-card {
  display: grid;
  gap: 10px;
  padding: clamp(20px, 3vw, 28px);
  border-radius: var(--home-image-radius);
  background: #fff;
}

.delivery-page__region-card p {
  margin: 0;
}

.delivery-page__faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.delivery-page__faq-card {
  padding: 18px 20px;
  border-radius: var(--home-image-radius);
  background: #f7f2eb;
}

.delivery-page__faq-card summary {
  list-style: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.delivery-page__faq-card summary::-webkit-details-marker {
  display: none;
}

.delivery-page__faq-card p {
  margin: 10px 0 0;
  color: rgba(23, 20, 18, 0.72);
  line-height: 1.65;
}

.delivery-page__cta {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 40px);
  border-radius: var(--home-image-radius);
  background: #171412;
  color: #fffaf3;
}

.delivery-page__cta .home-kicker {
  color: rgba(255, 250, 243, 0.76);
}

.delivery-page__cta h2 {
  color: #fffaf3;
}

.delivery-page__cta-copy {
  max-width: 760px;
  color: rgba(255, 250, 243, 0.76);
}

.delivery-page__cta-actions {
  flex-wrap: wrap;
}

.delivery-page__cta-actions .home-button {
  min-width: min(100%, 220px);
}

.delivery-page .home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    transform 220ms var(--ease),
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.delivery-page .home-button:hover,
.delivery-page .home-button:focus-visible {
  transform: translateY(-1px);
}

.delivery-page .home-button--primary {
  background: #171412;
  border-color: #171412;
  color: #fffaf3;
}

.delivery-page .home-button--primary:hover,
.delivery-page .home-button--primary:focus-visible {
  background: #2a241f;
  border-color: #2a241f;
  color: #fffaf3;
}

.delivery-page .home-button--secondary {
  background: transparent;
  border-color: rgba(23, 20, 18, 0.22);
  color: #171412;
}

.delivery-page .home-button--secondary:hover,
.delivery-page .home-button--secondary:focus-visible {
  background: rgba(23, 20, 18, 0.04);
  border-color: rgba(23, 20, 18, 0.42);
  color: #171412;
}

.delivery-page__section--cta .home-button--primary {
  background: #fffaf3;
  border-color: #fffaf3;
  color: #171412;
}

.delivery-page__section--cta .home-button--primary:hover,
.delivery-page__section--cta .home-button--primary:focus-visible {
  background: rgba(255, 250, 243, 0.92);
  border-color: rgba(255, 250, 243, 0.92);
  color: #171412;
}

.delivery-page__section--cta .home-button--secondary {
  background: transparent;
  border-color: rgba(255, 250, 243, 0.82);
  color: #fffaf3;
}

.delivery-page__section--cta .home-button--secondary:hover,
.delivery-page__section--cta .home-button--secondary:focus-visible {
  background: rgba(255, 250, 243, 0.08);
  border-color: #fffaf3;
  color: #fffaf3;
}

@media (max-width: 1100px) {
  .delivery-page__hero-grid,
  .delivery-page__areas,
  .delivery-page__content-grid,
  .delivery-page__region-grid,
  .delivery-page__check-grid,
  .delivery-page__section-heading--split {
    grid-template-columns: minmax(0, 1fr);
  }

  .delivery-page__step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .delivery-page__fee-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .delivery-page__faq-grid,
  .delivery-page__region-cards {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .delivery-page__section {
    padding: clamp(48px, 10vw, 72px) 0;
  }

  .delivery-page__step-grid,
  .delivery-page__fee-grid,
  .delivery-page__faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .delivery-page__hero-actions,
  .delivery-page__cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .delivery-page__hero-actions .home-button,
  .delivery-page__cta-actions .home-button {
    width: 100%;
  }
}

.warranty-care-page {
  background: #fff;
  color: #171412;
}

.warranty-care-page__main {
  background: #fff;
}

.warranty-care-page__section {
  padding: clamp(64px, 8vw, 120px) 0;
}

.warranty-care-page__section--soft {
  background: #f6f3ee;
}

.warranty-care-page__section--cta {
  background: #171412;
  color: #fffaf3;
}

.warranty-care-page__shell {
  display: grid;
  gap: clamp(24px, 4vw, 48px);
}

.warranty-care-page__hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.warranty-care-page__hero-copy {
  display: grid;
  gap: 16px;
  max-width: 760px;
}

.warranty-care-page__hero-copy h1 {
  margin: 0;
  color: #171412;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(2.75rem, 5.8vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.warranty-care-page__lede,
.warranty-care-page__section-heading p,
.warranty-care-page__variation-copy p,
.warranty-care-page__inspection-copy p,
.warranty-care-page__cta-copy,
.warranty-care-page__panel p {
  margin: 0;
  color: rgba(23, 20, 18, 0.72);
  font-size: clamp(1.02rem, 1.2vw, 1.14rem);
  line-height: 1.65;
}

.warranty-care-page__hero-media,
.warranty-care-page__variation-media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--home-image-radius);
  background: #f3ede4;
}

.warranty-care-page__hero-media {
  aspect-ratio: 4 / 5;
}

.warranty-care-page__hero-media img,
.warranty-care-page__variation-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.warranty-care-page__hero-actions {
  flex-wrap: wrap;
}

.warranty-care-page__section-heading {
  display: grid;
  gap: 10px;
  max-width: 820px;
}

.warranty-care-page__section-heading h2,
.warranty-care-page__summary h2,
.warranty-care-page__panel h2,
.warranty-care-page__cta h2 {
  margin: 0;
  color: #171412;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(1.95rem, 4vw, 3.45rem);
  line-height: 1;
  letter-spacing: 0;
}

.warranty-care-page__summary {
  display: grid;
  gap: 18px;
}

.warranty-care-page__summary-grid,
.warranty-care-page__card-grid,
.warranty-care-page__exclusion-grid,
.warranty-care-page__care-grid,
.warranty-care-page__faq-grid {
  display: grid;
  gap: 16px;
}

.warranty-care-page__summary-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.warranty-care-page__summary-card,
.warranty-care-page__info-card,
.warranty-care-page__care-card,
.warranty-care-page__faq-card,
.warranty-care-page__panel {
  min-width: 0;
  box-sizing: border-box;
  border-radius: var(--home-image-radius);
}

.warranty-care-page__summary-card {
  display: grid;
  gap: 8px;
  padding: 20px;
  background: #fff;
}

.warranty-care-page__summary-card span {
  color: rgba(23, 20, 18, 0.66);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.warranty-care-page__summary-card strong {
  color: #171412;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(1.02rem, 1.6vw, 1.32rem);
  line-height: 1.2;
}

.warranty-care-page__card-grid,
.warranty-care-page__exclusion-grid,
.warranty-care-page__care-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.warranty-care-page__info-card,
.warranty-care-page__care-card {
  display: grid;
  gap: 10px;
  padding: clamp(20px, 3vw, 30px);
  background: #f8f5ef;
}

.warranty-care-page__info-card h3,
.warranty-care-page__care-card h3,
.warranty-care-page__faq-card summary {
  margin: 0;
  color: #171412;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(1.08rem, 1.8vw, 1.45rem);
  line-height: 1.15;
  letter-spacing: 0;
}

.warranty-care-page__info-card p,
.warranty-care-page__care-card p {
  margin: 0;
  color: rgba(23, 20, 18, 0.72);
  line-height: 1.6;
}

.warranty-care-page__variation-grid,
.warranty-care-page__report-grid,
.warranty-care-page__assessment-grid,
.warranty-care-page__inspection-grid {
  display: grid;
  gap: clamp(20px, 4vw, 44px);
}

.warranty-care-page__variation-grid,
.warranty-care-page__inspection-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
}

.warranty-care-page__variation-copy {
  display: grid;
  gap: 14px;
  max-width: 760px;
}

.warranty-care-page__variation-copy h2 {
  margin: 0;
  color: #171412;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(1.95rem, 4vw, 3.25rem);
  line-height: 1;
}

.warranty-care-page__report-grid {
  grid-template-columns: minmax(0, 1fr);
}

.warranty-care-page__process-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.warranty-care-page__process-list li {
  display: grid;
  gap: 10px;
  padding: clamp(18px, 3vw, 26px);
  border-radius: var(--home-image-radius);
  background: #fff;
  min-width: 0;
}

.warranty-care-page__process-list span {
  color: rgba(23, 20, 18, 0.66);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.warranty-care-page__process-list h3 {
  margin: 0;
  color: #171412;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  line-height: 1.12;
}

.warranty-care-page__panel {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 3.2vw, 36px);
  background: #fff;
}

.warranty-care-page__panel--warm {
  background: #efe7db;
}

.warranty-care-page__list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.warranty-care-page__list li {
  position: relative;
  padding-left: 18px;
  color: #171412;
  line-height: 1.58;
}

.warranty-care-page__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #171412;
  transform: translateY(-50%);
}

.warranty-care-page__panel-actions,
.warranty-care-page__report-actions,
.warranty-care-page__inspection-actions,
.warranty-care-page__cta-actions {
  flex-wrap: wrap;
}

.warranty-care-page__panel-actions .home-button,
.warranty-care-page__report-actions .home-button,
.warranty-care-page__inspection-actions .home-button,
.warranty-care-page__cta-actions .home-button {
  min-width: min(100%, 220px);
}

.warranty-care-page__inspection-copy {
  display: grid;
  gap: 14px;
}

.warranty-care-page__faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.warranty-care-page__faq-card {
  padding: 18px 20px;
  background: #f7f2eb;
}

.warranty-care-page__faq-card summary {
  list-style: none;
  cursor: pointer;
}

.warranty-care-page__faq-card summary::-webkit-details-marker {
  display: none;
}

.warranty-care-page__faq-card p {
  margin: 10px 0 0;
  color: rgba(23, 20, 18, 0.72);
  line-height: 1.65;
}

.warranty-care-page__cta {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 40px);
  border-radius: var(--home-image-radius);
  background: #171412;
  color: #fffaf3;
}

.warranty-care-page__cta .home-kicker {
  color: rgba(255, 250, 243, 0.76);
}

.warranty-care-page__cta h2 {
  color: #fffaf3;
}

.warranty-care-page__cta-copy {
  max-width: 760px;
  color: rgba(255, 250, 243, 0.76);
}

.warranty-care-page .home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    transform 220ms var(--ease),
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.warranty-care-page .home-button:hover,
.warranty-care-page .home-button:focus-visible {
  transform: translateY(-1px);
}

.warranty-care-page .home-button--primary {
  background: #171412;
  border-color: #171412;
  color: #fffaf3;
}

.warranty-care-page .home-button--primary:hover,
.warranty-care-page .home-button--primary:focus-visible {
  background: #2a241f;
  border-color: #2a241f;
  color: #fffaf3;
}

.warranty-care-page .home-button--secondary {
  background: transparent;
  border-color: rgba(23, 20, 18, 0.22);
  color: #171412;
}

.warranty-care-page .home-button--secondary:hover,
.warranty-care-page .home-button--secondary:focus-visible {
  background: rgba(23, 20, 18, 0.04);
  border-color: rgba(23, 20, 18, 0.42);
  color: #171412;
}

.warranty-care-page__section--cta .home-button--primary {
  background: #fffaf3;
  border-color: #fffaf3;
  color: #171412;
}

.warranty-care-page__section--cta .home-button--primary:hover,
.warranty-care-page__section--cta .home-button--primary:focus-visible {
  background: rgba(255, 250, 243, 0.92);
  border-color: rgba(255, 250, 243, 0.92);
  color: #171412;
}

.warranty-care-page__section--cta .home-button--secondary {
  background: transparent;
  border-color: rgba(255, 250, 243, 0.82);
  color: #fffaf3;
}

.warranty-care-page__section--cta .home-button--secondary:hover,
.warranty-care-page__section--cta .home-button--secondary:focus-visible {
  background: rgba(255, 250, 243, 0.08);
  border-color: #fffaf3;
  color: #fffaf3;
}

@media (max-width: 1100px) {
  .warranty-care-page__hero-grid,
  .warranty-care-page__variation-grid,
  .warranty-care-page__inspection-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .warranty-care-page__summary-grid,
  .warranty-care-page__card-grid,
  .warranty-care-page__exclusion-grid,
  .warranty-care-page__care-grid,
  .warranty-care-page__faq-grid,
  .warranty-care-page__process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .warranty-care-page__section {
    padding: clamp(48px, 10vw, 72px) 0;
  }

  .warranty-care-page__summary-grid,
  .warranty-care-page__card-grid,
  .warranty-care-page__exclusion-grid,
  .warranty-care-page__care-grid,
  .warranty-care-page__faq-grid,
  .warranty-care-page__process-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .warranty-care-page__hero-actions,
  .warranty-care-page__report-actions,
  .warranty-care-page__inspection-actions,
  .warranty-care-page__cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .warranty-care-page__hero-actions .home-button,
  .warranty-care-page__report-actions .home-button,
  .warranty-care-page__inspection-actions .home-button,
  .warranty-care-page__cta-actions .home-button {
    width: 100%;
  }
}

.faq-page {
  background: #fff;
  color: #171412;
}

.faq-page__main {
  background: #fff;
}

.faq-page__section {
  padding: clamp(64px, 8vw, 120px) 0;
}

.faq-page__section--soft {
  background: #f6f3ee;
}

.faq-page__section--cta {
  background: #171412;
  color: #fffaf3;
}

.faq-page__shell {
  display: grid;
  gap: clamp(22px, 4vw, 44px);
}

.faq-page__hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: end;
}

.faq-page__hero-copy {
  display: grid;
  gap: 16px;
  max-width: 760px;
}

.faq-page__hero-copy h1 {
  margin: 0;
  color: #171412;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(2.75rem, 5.8vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.faq-page__lede,
.faq-page__hero-note p,
.faq-page__cta-copy {
  margin: 0;
  color: rgba(23, 20, 18, 0.72);
  font-size: clamp(1.02rem, 1.2vw, 1.14rem);
  line-height: 1.65;
}

.faq-page__hero-note {
  display: grid;
  gap: 12px;
  padding: clamp(20px, 3vw, 30px);
  border-radius: var(--home-image-radius);
  background: #f4efe8;
}

.faq-page__search {
  display: grid;
  gap: 8px;
  max-width: 760px;
}

.faq-page__search-label {
  color: #171412;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-page__search input {
  width: 100%;
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid rgba(23, 20, 18, 0.16);
  border-radius: 12px;
  background: #fff;
  color: #171412;
  font: inherit;
}

.faq-page__search input:focus {
  outline: none;
  border-color: rgba(23, 20, 18, 0.55);
  box-shadow: 0 0 0 3px rgba(23, 20, 18, 0.08);
}

.faq-page__tabs-wrap {
  overflow-x: auto;
  scrollbar-width: none;
}

.faq-page__tabs-wrap::-webkit-scrollbar {
  display: none;
}

.faq-page__tabs {
  display: inline-flex;
  gap: 10px;
  min-width: max-content;
  padding-bottom: 4px;
}

.faq-page__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(23, 20, 18, 0.16);
  border-radius: 999px;
  background: #fff;
  color: #171412;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.faq-page__tab.is-active {
  background: #171412;
  border-color: #171412;
  color: #fffaf3;
}

.faq-page__results {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  min-height: 0;
}

.faq-page__no-results {
  margin: 0;
  color: rgba(23, 20, 18, 0.72);
}

.faq-page__groups {
  display: grid;
  gap: 24px;
}

.faq-page__group {
  display: grid;
  gap: 16px;
}

.faq-page__group-head {
  display: grid;
  gap: 8px;
  max-width: 760px;
}

.faq-page__group-head h2,
.faq-page__cta h2 {
  margin: 0;
  color: #171412;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(1.95rem, 4vw, 3.35rem);
  line-height: 1;
  letter-spacing: 0;
}

.faq-page__list {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-page__item,
.faq-page__panel {
  min-width: 0;
  box-sizing: border-box;
}

.faq-page__item {
  display: grid;
  gap: 0;
  border-radius: var(--home-image-radius);
  background: #fff;
  overflow: hidden;
}

.faq-page__question {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  color: #171412;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.faq-page__question::before {
  content: "▸";
  flex: 0 0 auto;
  margin-top: 1px;
  font-size: 0.9rem;
  transition: transform 180ms ease;
}

.faq-page__question[aria-expanded="true"]::before {
  transform: rotate(90deg);
}

.faq-page__answer {
  padding: 0 20px 18px 40px;
}

.faq-page__answer p {
  margin: 0;
  color: rgba(23, 20, 18, 0.72);
  line-height: 1.65;
}

.faq-page__item--link .faq-page__answer {
  display: grid;
  gap: 12px;
}

.faq-page__inline-actions {
  margin-top: 4px;
}

.faq-page__cta {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 40px);
  border-radius: var(--home-image-radius);
  background: #171412;
  color: #fffaf3;
}

.faq-page__cta .home-kicker {
  color: rgba(255, 250, 243, 0.76);
}

.faq-page__cta h2 {
  color: #fffaf3;
}

.faq-page__cta-copy {
  max-width: 760px;
  color: rgba(255, 250, 243, 0.76);
}

.faq-page__cta-actions {
  flex-wrap: wrap;
}

.faq-page__cta-actions .home-button {
  min-width: min(100%, 220px);
}

.faq-page .home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    transform 220ms var(--ease),
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.faq-page .home-button:hover,
.faq-page .home-button:focus-visible {
  transform: translateY(-1px);
}

.faq-page .home-button--primary {
  background: #171412;
  border-color: #171412;
  color: #fffaf3;
}

.faq-page .home-button--primary:hover,
.faq-page .home-button--primary:focus-visible {
  background: #2a241f;
  border-color: #2a241f;
  color: #fffaf3;
}

.faq-page .home-button--secondary {
  background: transparent;
  border-color: rgba(23, 20, 18, 0.22);
  color: #171412;
}

.faq-page .home-button--secondary:hover,
.faq-page .home-button--secondary:focus-visible {
  background: rgba(23, 20, 18, 0.04);
  border-color: rgba(23, 20, 18, 0.42);
  color: #171412;
}

.faq-page__section--cta .home-button--primary {
  background: #fffaf3;
  border-color: #fffaf3;
  color: #171412;
}

.faq-page__section--cta .home-button--primary:hover,
.faq-page__section--cta .home-button--primary:focus-visible {
  background: rgba(255, 250, 243, 0.92);
  border-color: rgba(255, 250, 243, 0.92);
  color: #171412;
}

.faq-page__section--cta .home-button--secondary {
  background: transparent;
  border-color: rgba(255, 250, 243, 0.82);
  color: #fffaf3;
}

.faq-page__section--cta .home-button--secondary:hover,
.faq-page__section--cta .home-button--secondary:focus-visible {
  background: rgba(255, 250, 243, 0.08);
  border-color: #fffaf3;
  color: #fffaf3;
}

@media (max-width: 1100px) {
  .faq-page__hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .faq-page__list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .faq-page__section {
    padding: clamp(48px, 10vw, 72px) 0;
  }

  .faq-page__tabs {
    gap: 8px;
  }

  .faq-page__tab {
    min-height: 40px;
    padding: 0 14px;
  }

  .faq-page__hero-actions,
  .faq-page__cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .faq-page__hero-actions .home-button,
  .faq-page__cta-actions .home-button {
    width: 100%;
  }
}

.contact-page {
  background: #fff;
  color: #171412;
}

.contact-page__main {
  background: #fff;
}

.contact-page__section {
  padding: clamp(64px, 8vw, 120px) 0;
}

.contact-page__section--soft {
  background: #f6f3ee;
}

.contact-page__section--cta {
  background: #171412;
  color: #fffaf3;
}

.contact-page__shell {
  display: grid;
  gap: clamp(22px, 4vw, 44px);
}

.contact-page__hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: end;
}

.contact-page__hero-copy {
  display: grid;
  gap: 16px;
  max-width: 760px;
}

.contact-page__hero-copy h1 {
  margin: 0;
  color: #171412;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(2.75rem, 5.8vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.contact-page__lede,
.contact-page__hero-note p,
.contact-page__card p,
.contact-page__panel p,
.contact-page__cta-copy {
  margin: 0;
  color: rgba(23, 20, 18, 0.72);
  font-size: clamp(1.02rem, 1.2vw, 1.14rem);
  line-height: 1.65;
}

.contact-page__hero-note {
  display: grid;
  gap: 12px;
  padding: clamp(20px, 3vw, 30px);
  border-radius: var(--home-image-radius);
  background: #f4efe8;
}

.contact-page__hero-note a {
  color: #171412;
}

.contact-page__note {
  color: rgba(23, 20, 18, 0.72);
}

.contact-page__section-heading {
  display: grid;
  gap: 10px;
  max-width: 820px;
}

.contact-page__section-heading h2,
.contact-page__panel h2,
.contact-page__cta h2 {
  margin: 0;
  color: #171412;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(1.95rem, 4vw, 3.35rem);
  line-height: 1;
  letter-spacing: 0;
}

.contact-page__card-grid,
.contact-page__support-links {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-page__card,
.contact-page__panel {
  min-width: 0;
  box-sizing: border-box;
  border-radius: var(--home-image-radius);
}

.contact-page__card {
  display: grid;
  gap: 12px;
  padding: clamp(20px, 3vw, 30px);
  background: #f8f5ef;
}

.contact-page__card h3 {
  margin: 0;
  color: #171412;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(1.08rem, 1.8vw, 1.45rem);
  line-height: 1.12;
}

.contact-page__card-actions {
  flex-wrap: wrap;
}

.contact-page__card-actions .home-button {
  min-width: min(100%, 220px);
}

.contact-page__details-grid,
.contact-page__cta {
  display: grid;
  gap: clamp(20px, 4vw, 44px);
}

.contact-page__details-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: start;
}

.contact-page__panel {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 3.2vw, 36px);
  background: #fff;
}

.contact-page__panel--warm {
  background: #efe7db;
}

.contact-page__details {
  display: grid;
  gap: 16px;
}

.contact-page__details div {
  display: grid;
  gap: 6px;
}

.contact-page__details span {
  color: rgba(23, 20, 18, 0.66);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.contact-page__details strong {
  color: #171412;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(1.02rem, 1.6vw, 1.32rem);
  line-height: 1.2;
}

.contact-page__form {
  display: grid;
  gap: 14px;
}

.contact-page__form-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-page__field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.contact-page__field--full {
  grid-column: 1 / -1;
}

.contact-page__field span {
  color: #171412;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-page__field input,
.contact-page__field select,
.contact-page__field textarea {
  width: 100%;
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid rgba(23, 20, 18, 0.16);
  border-radius: 12px;
  background: #fff;
  color: #171412;
  font: inherit;
}

.contact-page__field textarea {
  resize: vertical;
}

.contact-page__field input:focus,
.contact-page__field select:focus,
.contact-page__field textarea:focus {
  outline: none;
  border-color: rgba(23, 20, 18, 0.55);
  box-shadow: 0 0 0 3px rgba(23, 20, 18, 0.08);
}

.contact-page__form-note,
.contact-page__status {
  margin: 0;
  color: rgba(23, 20, 18, 0.72);
  line-height: 1.55;
}

.contact-page__form-actions,
.contact-page__cta-actions {
  flex-wrap: wrap;
}

.contact-page__form-actions .home-button,
.contact-page__cta-actions .home-button {
  min-width: min(100%, 220px);
}

.contact-page__support-links {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-page__support-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(23, 20, 18, 0.16);
  background: #fff;
  color: #171412;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.contact-page__cta {
  padding: clamp(24px, 4vw, 40px);
  border-radius: var(--home-image-radius);
  background: #171412;
  color: #fffaf3;
}

.contact-page__cta .home-kicker {
  color: rgba(255, 250, 243, 0.76);
}

.contact-page__cta h2 {
  color: #fffaf3;
}

.contact-page__cta-copy {
  max-width: 760px;
  color: rgba(255, 250, 243, 0.76);
}

.contact-page .home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    transform 220ms var(--ease),
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.contact-page .home-button:hover,
.contact-page .home-button:focus-visible {
  transform: translateY(-1px);
}

.contact-page .home-button--primary {
  background: #171412;
  border-color: #171412;
  color: #fffaf3;
}

.contact-page .home-button--primary:hover,
.contact-page .home-button--primary:focus-visible {
  background: #2a241f;
  border-color: #2a241f;
  color: #fffaf3;
}

.contact-page .home-button--secondary {
  background: transparent;
  border-color: rgba(23, 20, 18, 0.22);
  color: #171412;
}

.contact-page .home-button--secondary:hover,
.contact-page .home-button--secondary:focus-visible {
  background: rgba(23, 20, 18, 0.04);
  border-color: rgba(23, 20, 18, 0.42);
  color: #171412;
}

.contact-page__section--cta .home-button--primary {
  background: #fffaf3;
  border-color: #fffaf3;
  color: #171412;
}

.contact-page__section--cta .home-button--primary:hover,
.contact-page__section--cta .home-button--primary:focus-visible {
  background: rgba(255, 250, 243, 0.92);
  border-color: rgba(255, 250, 243, 0.92);
  color: #171412;
}

.contact-page__section--cta .home-button--secondary {
  background: transparent;
  border-color: rgba(255, 250, 243, 0.82);
  color: #fffaf3;
}

.contact-page__section--cta .home-button--secondary:hover,
.contact-page__section--cta .home-button--secondary:focus-visible {
  background: rgba(255, 250, 243, 0.08);
  border-color: #fffaf3;
  color: #fffaf3;
}

@media (max-width: 1100px) {
  .contact-page__hero-grid,
  .contact-page__details-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-page__card-grid,
  .contact-page__support-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .contact-page__section {
    padding: clamp(48px, 10vw, 72px) 0;
  }

  .contact-page__card-grid,
  .contact-page__support-links,
  .contact-page__form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-page__hero-actions,
  .contact-page__card-actions,
  .contact-page__form-actions,
  .contact-page__cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-page__hero-actions .home-button,
  .contact-page__card-actions .home-button,
  .contact-page__form-actions .home-button,
  .contact-page__cta-actions .home-button {
    width: 100%;
  }
}

.about-page {
  background: #fff;
  color: #171412;
}

.about-page__main {
  background: #fff;
}

.about-page__section {
  padding: clamp(72px, 9vw, 132px) 0;
}

.about-page__section--soft {
  background: #f7f7f7;
}

.about-page__section--warm {
  background: #f4f4f4;
}

.about-page__section--cta {
  background: #171412;
  color: #fff;
}

.about-page__shell {
  display: grid;
  gap: 28px;
}

.about-page__hero-grid {
  grid-template-columns: minmax(0, 1fr);
}

.about-page__hero-copy,
.about-page__story,
.about-page__process,
.about-page__cta {
  max-width: 840px;
}

.about-page__hero h1 {
  color: #171412;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(2.8rem, 5.4vw, 5.6rem);
  line-height: 0.96;
  margin: 0;
}

.about-page__lede,
.about-page__story p,
.about-page__meaning-closing,
.about-page__intro p:not(.home-kicker),
.about-page__manufacturing-copy p,
.about-page__project p {
  color: rgba(23, 20, 18, 0.72);
  font-size: clamp(1.05rem, 1.2vw, 1.18rem);
  line-height: 1.58;
  margin: 0;
}

.about-page__hero-media,
.about-page__manufacturing-media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--home-image-radius);
  background: #f2f2f2;
}

.about-page__hero-media img,
.about-page__manufacturing-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.about-page__intro,
.about-page__meaning-grid,
.about-page__process-list,
.about-page__cards,
.about-page__projects {
  margin-top: 0;
}

.about-page__intro h2,
.about-page__story h2,
.about-page__manufacturing-copy h2,
.about-page__cta h2 {
  color: #171412;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  line-height: 1;
  margin: 0;
}

.about-page__intro--split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: end;
}

.about-page__story,
.about-page__process {
  display: grid;
  gap: 18px;
}

.about-page__meaning-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.about-page__meaning-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.about-page__meaning-media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--home-image-radius);
  background: #f2f2f2;
}

.about-page__meaning-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-page__meaning-copy {
  display: grid;
  gap: 18px;
  max-width: 720px;
}

.about-page__meaning-copy h2 {
  margin: 0;
}

.about-page__meaning-copy p {
  margin: 0;
  color: rgba(23, 20, 18, 0.72);
  font-size: clamp(1.02rem, 1.15vw, 1.12rem);
  line-height: 1.62;
}

.about-page__meaning-labels {
  display: grid;
  gap: 14px;
  margin-top: 8px;
}

.about-page__meaning-label {
  display: grid;
  gap: 5px;
  padding: 16px 0 0;
  border-top: 1px solid rgba(23, 20, 18, 0.12);
}

.about-page__meaning-label span {
  color: #171412;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
}

.about-page__meaning-label p {
  margin: 0;
  color: rgba(23, 20, 18, 0.74);
  font-size: 0.98rem;
  line-height: 1.5;
}

.about-page__meaning-card {
  display: grid;
  gap: 12px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(23, 20, 18, 0.12);
  border-radius: 8px;
  background: #fff;
}

.about-page__meaning-card h3 {
  margin: 0;
  color: #171412;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.05;
}

.about-page__meaning-card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: rgba(23, 20, 18, 0.74);
  line-height: 1.55;
}

.about-page__meaning-closing {
  max-width: 780px;
}

.about-page__process-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  list-style: none;
  padding: 0;
}

.about-page__process-list li {
  display: grid;
  gap: 10px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(23, 20, 18, 0.12);
  border-radius: 8px;
  background: #fff;
}

.about-page__process-list span {
  color: rgba(23, 20, 18, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
}

.about-page__process-list h3 {
  margin: 0;
  color: #171412;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  line-height: 1.08;
}

.about-page__process-list p {
  margin: 0;
  color: rgba(23, 20, 18, 0.72);
  line-height: 1.55;
}

.about-page__actions {
  margin-top: 8px;
}

.about-page__manufacturing {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.about-page__manufacturing-copy {
  display: grid;
  gap: 16px;
}

.about-page__cards {
  margin-top: 18px;
}

.about-page__card {
  color: inherit;
  text-decoration: none;
}

.about-page__cards .home-card__media {
  border-radius: 0;
}

.about-page__project {
  display: grid;
  gap: 10px;
}

.about-page__project img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--home-image-radius);
}

.about-page__project h3 {
  margin: 0;
  color: #171412;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(1.1rem, 1.9vw, 1.6rem);
  line-height: 1.08;
}

.about-page__project p {
  margin: 0;
}

.about-page__projects {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-page__press-grid,
.about-page__review-grid {
  display: grid;
  gap: 18px;
  align-items: stretch;
}

.about-page__press-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.about-page__press-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(23, 20, 18, 0.12);
  border-radius: 12px;
  background: #fff;
  height: 100%;
}

.about-page__press-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-page__press-body {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.about-page__press-meta {
  margin: 0;
  color: rgba(23, 20, 18, 0.56);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.about-page__press-body h3 {
  margin: 0;
  color: #171412;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(1.1rem, 1.9vw, 1.5rem);
  line-height: 1.12;
}

.about-page__press-body p {
  margin: 0;
  color: rgba(23, 20, 18, 0.72);
  line-height: 1.55;
}

.about-page__review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.about-page__review-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(23, 20, 18, 0.12);
  border-radius: 12px;
  background: #fff;
  height: 100%;
}

.about-page__review-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
}

.about-page__review-rating {
  color: #171412;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
}

.about-page__review-body {
  display: grid;
  gap: 8px;
  align-content: start;
}

.about-page__review-body h3 {
  margin: 0;
  color: #171412;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(1.02rem, 1.7vw, 1.35rem);
  line-height: 1.12;
}

.about-page__review-date {
  margin: 0;
  color: rgba(23, 20, 18, 0.58);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.about-page__review-text {
  margin: 0;
  color: rgba(23, 20, 18, 0.76);
  line-height: 1.58;
}

.about-page__reviews-attrib {
  margin: 0;
  color: rgba(23, 20, 18, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.about-page__reviews-actions {
  margin-top: 18px;
}

.about-page__cta {
  display: grid;
  gap: 18px;
}

.about-page__cta .home-kicker {
  color: rgba(255, 255, 255, 0.68);
}

.about-page__cta h2 {
  color: #fff;
  max-width: 760px;
}

.about-page .home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    transform 220ms var(--ease),
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.about-page .home-button:hover,
.about-page .home-button:focus-visible {
  transform: translateY(-1px);
}

.about-page .home-button--primary {
  background: #171412;
  border-color: #171412;
  color: #fff;
}

.about-page .home-button--primary:hover,
.about-page .home-button--primary:focus-visible {
  background: #11100f;
  border-color: #11100f;
  color: #fff;
}

.about-page .home-button--secondary {
  background: #fff;
  border-color: rgba(23, 20, 18, 0.18);
  color: #171412;
}

.about-page .home-button--secondary:hover,
.about-page .home-button--secondary:focus-visible {
  background: #fff;
  border-color: #171412;
  color: #171412;
}

.about-page__section--cta .home-button--primary {
  background: #fff;
  border-color: #fff;
  color: #171412;
}

.about-page__section--cta .home-button--primary:hover,
.about-page__section--cta .home-button--primary:focus-visible {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.92);
  color: #171412;
}

.about-page__section--cta .home-button--secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.82);
  color: #fff;
}

.about-page__section--cta .home-button--secondary:hover,
.about-page__section--cta .home-button--secondary:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
  color: #fff;
}

.custom-page {
  background: #fff;
  color: #171412;
}

.custom-page__main {
  background: #fff;
}

.custom-page__section {
  padding: clamp(72px, 9vw, 132px) 0;
}

.custom-page__hero {
  padding: 0;
}

.custom-page__hero .custom-page__shell {
  padding-inline-start: clamp(6px, 1.2vw, 18px);
}

.custom-page__section--soft {
  background: #f7f7f7;
}

.custom-page__section--cta {
  background: #171412;
  color: #fff;
}

.custom-page__shell {
  display: grid;
  gap: 28px;
}

.custom-page .home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    transform 220ms var(--ease),
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.custom-page .home-button:hover,
.custom-page .home-button:focus-visible {
  transform: translateY(-1px);
}

.custom-page .home-button--primary {
  background: #171412;
  border-color: #171412;
  color: #fff;
}

.custom-page .home-button--primary:hover,
.custom-page .home-button--primary:focus-visible {
  background: #11100f;
  border-color: #11100f;
  color: #fff;
}

.custom-page .home-button--secondary {
  background: #fff;
  border-color: rgba(23, 20, 18, 0.18);
  color: #171412;
}

.custom-page .home-button--secondary:hover,
.custom-page .home-button--secondary:focus-visible {
  background: #fff;
  border-color: #171412;
  color: #171412;
}

.custom-page__hero-grid,
.custom-page__two-col,
.custom-page__confirmation,
.custom-page__comparison,
.custom-page__cta {
  max-width: 840px;
}

.custom-page__hero-grid,
.custom-page__two-col {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: clamp(24px, 4vw, 40px);
  width: 100%;
  max-width: none;
}

.custom-page__hero-copy,
.custom-page__intro,
.custom-page__confirmation,
.custom-page__comparison,
.custom-page__cta {
  display: grid;
  gap: 18px;
}

.custom-page__hero-copy {
  width: 100%;
  max-width: 840px;
  padding-block: 0;
}

.custom-page__hero-copy h1,
.custom-page__intro h2,
.custom-page__cta h2 {
  margin: 0;
  color: #171412;
  font-family: Helvetica, Arial, sans-serif;
  line-height: 1;
}

.custom-page__hero-copy h1 {
  font-size: clamp(2.5rem, 7vw, 5.25rem);
  line-height: 0.98;
  max-width: 840px;
}

.custom-page__hero-grid .page-intro__title {
  --page-intro-title-size: clamp(2.5rem, 7vw, 5.25rem);
  --page-intro-title-line: 0.98;
  max-width: 840px;
}

.custom-page__intro h2,
.custom-page__cta h2 {
  font-size: clamp(2rem, 4.5vw, 3.75rem);
}

.custom-page__lede,
.custom-page__intro p:not(.home-kicker),
.custom-page__confirmation-copy p,
.custom-page__comparison p,
.custom-page__gallery figcaption,
.custom-page__faq-item p,
.custom-page__spec-item p,
.custom-page__process-list p {
  margin: 0;
  color: rgba(23, 20, 18, 0.72);
  font-size: clamp(1.02rem, 1.18vw, 1.14rem);
  line-height: 1.6;
}

.custom-page__lede {
  font-size: clamp(1.0625rem, 1.2vw, 1.1875rem);
  line-height: 1.55;
  max-width: 680px;
}

.custom-page__hero-media {
  margin: 0;
  width: 100%;
  overflow: hidden;
  border-radius: var(--home-image-radius);
  background: #f2f2f2;
  aspect-ratio: 16 / 11;
}

.custom-page__hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-page__hero-actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: clamp(12px, 2vw, 18px);
}

.custom-page__hero-actions .home-button {
  width: 100%;
}

.custom-page__spec-list {
  display: grid;
  gap: 12px;
}

.custom-page__spec-item {
  display: grid;
  gap: 6px;
  padding: 16px 0 0;
  border-top: 1px solid rgba(23, 20, 18, 0.12);
}

.custom-page__spec-item span {
  color: #171412;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.custom-page__process-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  list-style: none;
  padding: 0;
}

.custom-page__process-list li {
  display: grid;
  gap: 10px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(23, 20, 18, 0.12);
  border-radius: 8px;
  background: #fff;
}

.custom-page__process-list span {
  color: rgba(23, 20, 18, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
}

.custom-page__process-list h3 {
  margin: 0;
  color: #171412;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  line-height: 1.08;
}

.custom-page .home-card-grid.custom-page__cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.custom-page__card {
  color: inherit;
  text-decoration: none;
}

.custom-page__card .home-card__media {
  aspect-ratio: 4 / 5;
  border-radius: 0;
}

.custom-page__checklist {
  display: grid;
  gap: 18px;
}

.custom-page__checklist-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.custom-page__checklist-list li {
  padding: 14px 0 0;
  border-top: 1px solid rgba(23, 20, 18, 0.12);
  color: #171412;
  font-size: 0.98rem;
  line-height: 1.5;
}

.custom-page__confirmation {
  display: grid;
  gap: 18px;
}

.custom-page__confirmation-copy {
  display: grid;
  gap: 14px;
  max-width: 760px;
}

.custom-page__gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.custom-page__gallery-item {
  display: grid;
  gap: 10px;
  margin: 0;
}

.custom-page__gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--home-image-radius);
}

.custom-page__gallery-item figcaption {
  color: rgba(23, 20, 18, 0.62);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.custom-page__comparison {
  display: grid;
  gap: 18px;
}

.custom-page__comparison-actions,
.custom-page__hero-actions,
.custom-page__cta-actions {
  margin-top: 12px;
}

.custom-page__faq {
  display: grid;
  gap: 12px;
}

.custom-page__faq-item {
  padding: 0;
  border: 1px solid rgba(23, 20, 18, 0.12);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.custom-page__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  color: #171412;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
}

.custom-page__faq-item summary::-webkit-details-marker {
  display: none;
}

.custom-page__faq-item p {
  padding: 0 22px 20px;
}

.custom-page__section--cta .custom-page__cta {
  max-width: 760px;
}

.custom-page__section--cta .home-kicker {
  color: rgba(255, 255, 255, 0.68);
}

.custom-page__section--cta .custom-page__cta h2,
.custom-page__section--cta .custom-page__cta p {
  color: #fff;
}

.custom-page__section--cta .home-button--primary {
  background: #fff;
  border-color: #fff;
  color: #171412;
}

.custom-page__section--cta .home-button--primary:hover,
.custom-page__section--cta .home-button--primary:focus-visible {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.92);
  color: #171412;
}

.custom-page__section--cta .home-button--secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.82);
  color: #fff;
}

.custom-page__section--cta .home-button--secondary:hover,
.custom-page__section--cta .home-button--secondary:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
  color: #fff;
}

@media (max-width: 980px) {
  .custom-page__hero-grid,
  .custom-page__two-col {
    grid-template-columns: 1fr;
  }

  .custom-page .home-card-grid.custom-page__cards,
  .custom-page__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .custom-page__process-list,
  .custom-page__checklist-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .custom-page__section {
    padding: 60px 0;
  }

  .custom-page__hero {
    padding-top: 52px;
  }

  .custom-page .home-card-grid.custom-page__cards,
  .custom-page__gallery,
  .custom-page__process-list,
  .custom-page__checklist-list {
    grid-template-columns: 1fr;
  }

  .custom-page .home-positioning h2 {
    font-size: clamp(2.2rem, 11.5vw, 3.6rem);
    line-height: 0.95;
  }

  .custom-page__lede {
    max-width: 56ch;
  }

  .custom-page__hero-actions,
  .custom-page__cta-actions,
  .custom-page__comparison-actions {
    flex-direction: column;
  }

  .custom-page__hero-actions .home-button,
  .custom-page__cta-actions .home-button,
  .custom-page__comparison-actions .home-button {
    width: 100%;
  }
}

.quote-page {
  background: #fff;
  color: #171412;
}

.quote-page__main {
  background: #fff;
}

.quote-page__section {
  padding: clamp(72px, 9vw, 132px) 0;
}

.quote-page__hero {
  padding: clamp(32px, 5vw, 72px) 0 clamp(28px, 4vw, 56px);
  background: linear-gradient(180deg, #fff 0%, #fbf8f2 100%);
}

.quote-page__shell {
  display: grid;
  gap: 28px;
}

.quote-page__hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.quote-page__hero-copy,
.quote-page__summary-card,
.quote-page__form,
.quote-page__step,
.quote-page__review {
  display: grid;
  gap: 18px;
}

.quote-page__hero-copy {
  max-width: 760px;
}

.quote-page__hero-copy h1 {
  margin: 0;
  color: #171412;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(2.8rem, 5.8vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.quote-page__lede,
.quote-page__step p,
.quote-page__summary-note p,
.quote-page__submission-note,
.quote-page__json-note,
.quote-page__upload small {
  margin: 0;
  color: rgba(49, 37, 31, 0.74);
  font-size: clamp(1.01rem, 1.18vw, 1.12rem);
  line-height: 1.62;
}

.quote-page__hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.quote-page__hero-facts li {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(49, 37, 31, 0.14);
  border-radius: 999px;
  background: #fff;
  color: #171412;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.quote-page__hero-media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--home-image-radius);
  background: #f3ede4;
}

.quote-page__hero-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.quote-page__hero-mobile-note {
  display: none;
  margin: 0;
  color: rgba(49, 37, 31, 0.74);
  font-size: 0.96rem;
  line-height: 1.45;
}

.quote-page__brief-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}

.quote-page__summary-panel {
  position: sticky;
  top: 112px;
  align-self: start;
}

.quote-page__summary-card {
  padding: clamp(20px, 3vw, 32px);
  border-radius: var(--home-image-radius);
  background: #f7f4ee;
}

.quote-page__summary-header {
  display: grid;
  gap: 8px;
}

.quote-page__summary-header h2 {
  margin: 0;
  color: #171412;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  line-height: 1;
  letter-spacing: 0;
}

.quote-page__progress-wrap {
  display: grid;
  gap: 8px;
}

.quote-page__progress-bar {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(23, 20, 18, 0.1);
  overflow: hidden;
}

.quote-page__progress-bar span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: #171412;
  transition: width 240ms ease;
}

.quote-page__progress-meta {
  margin: 0;
  color: rgba(49, 37, 31, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
}

.quote-page__stepper {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quote-page__stepper li {
  display: flex;
  gap: 10px;
  align-items: baseline;
  padding-top: 10px;
  border-top: 1px solid rgba(23, 20, 18, 0.1);
  color: rgba(49, 37, 31, 0.6);
}

.quote-page__stepper li[data-active="true"] {
  color: #171412;
}

.quote-page__stepper span {
  min-width: 2.2em;
  color: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.quote-page__stepper strong {
  font: inherit;
  font-weight: 700;
}

.quote-page__summary-list {
  display: grid;
  gap: 12px;
}

.quote-page__summary-row {
  display: grid;
  gap: 4px;
  padding-top: 12px;
  border-top: 1px solid rgba(23, 20, 18, 0.1);
}

.quote-page__summary-label {
  color: rgba(49, 37, 31, 0.58);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quote-page__summary-value {
  color: #171412;
  line-height: 1.5;
}

.quote-page__summary-empty {
  padding-top: 12px;
  border-top: 1px solid rgba(23, 20, 18, 0.1);
  color: rgba(49, 37, 31, 0.68);
  line-height: 1.55;
}

.quote-page__summary-note {
  padding-top: 12px;
  border-top: 1px solid rgba(23, 20, 18, 0.1);
}

.quote-page__json-block {
  display: grid;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(23, 20, 18, 0.1);
}

.quote-page__json-head {
  display: grid;
  gap: 2px;
}

.quote-page__json-head .home-kicker {
  margin: 0;
}

.quote-page__json-note {
  font-size: 0.86rem;
}

.quote-page__json-block pre {
  overflow: auto;
  max-height: 320px;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(23, 20, 18, 0.12);
  border-radius: 16px;
  background: #fff;
  color: #171412;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.84rem;
  line-height: 1.55;
  white-space: pre-wrap;
  word-break: break-word;
}

.quote-page__form {
  gap: 18px;
}

.quote-page__step {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(23, 20, 18, 0.12);
  border-radius: var(--home-image-radius);
  background: #fff;
  scroll-margin-top: 132px;
}

.quote-page__step-head {
  display: grid;
  gap: 8px;
  margin-bottom: 4px;
}

.quote-page__step-head--compact {
  margin-bottom: 0;
}

.quote-page__step-eyebrow {
  margin: 0;
  color: rgba(49, 37, 31, 0.58);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
}

.quote-page__step h2,
.quote-page__step h3 {
  margin: 0;
  color: #171412;
  font-family: Helvetica, Arial, sans-serif;
  line-height: 1.04;
  letter-spacing: 0;
}

.quote-page__step h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.quote-page__step h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
}

.quote-page__choice-grid,
.quote-page__check-grid,
.quote-page__field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.quote-page__check-grid--dense {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quote-page__choice-card {
  position: relative;
  display: block;
  min-width: 0;
}

.quote-page__choice-card input {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  z-index: 2;
}

.quote-page__choice-body {
  display: grid;
  gap: 4px;
  min-height: 100%;
  padding: 18px;
  border: 1px solid rgba(49, 37, 31, 0.14);
  border-radius: 16px;
  background: #f8f6f2;
  color: #171412;
  transition:
    transform 220ms var(--ease),
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.quote-page__choice-body strong {
  font-size: 1rem;
  line-height: 1.25;
}

.quote-page__choice-body small {
  color: inherit;
  font-size: 0.86rem;
  line-height: 1.45;
  opacity: 0.75;
}

.quote-page__choice-card:hover .quote-page__choice-body,
.quote-page__choice-card input:focus-visible + .quote-page__choice-body {
  transform: translateY(-1px);
  border-color: rgba(23, 20, 18, 0.4);
  box-shadow: 0 12px 24px rgba(23, 20, 18, 0.05);
}

.quote-page__choice-card input:checked + .quote-page__choice-body {
  background: #171412;
  border-color: #171412;
  color: #fff;
}

.quote-page__conditional {
  display: grid;
  gap: 12px;
}

.quote-page__field-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quote-page__field {
  display: grid;
  gap: 8px;
}

.quote-page__field span {
  color: #171412;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.3;
}

.quote-page__field input,
.quote-page__field select,
.quote-page__field textarea,
.quote-page__upload {
  width: 100%;
  border: 1px solid rgba(49, 37, 31, 0.14);
  border-radius: 14px;
  background: #fff;
  color: #171412;
  font: inherit;
}

.quote-page__field input,
.quote-page__field select {
  min-height: 48px;
  padding: 0 14px;
}

.quote-page__field textarea {
  min-height: 140px;
  padding: 14px;
  resize: vertical;
}

.quote-page__field input:focus-visible,
.quote-page__field select:focus-visible,
.quote-page__field textarea:focus-visible,
.quote-page__upload input:focus-visible {
  outline: 2px solid #171412;
  outline-offset: 2px;
}

.quote-page__field.is-invalid > span {
  color: #8d2419;
}

.quote-page__field.is-invalid > input,
.quote-page__field.is-invalid > select,
.quote-page__field.is-invalid > textarea {
  border-color: #8d2419;
  box-shadow: 0 0 0 1px rgba(141, 36, 25, 0.18);
}

.quote-page__upload {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.quote-page__upload span {
  color: #171412;
  font-size: 0.9rem;
  font-weight: 700;
}

.quote-page__upload input {
  width: 100%;
  font: inherit;
}

.quote-page__upload-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quote-page__upload-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(23, 20, 18, 0.08);
  color: #171412;
  font-size: 0.82rem;
  font-weight: 700;
}

.quote-page__review {
  padding: 18px;
  border-radius: 18px;
  background: #f7f4ee;
}

.quote-page__submission-note {
  font-size: 0.94rem;
}

.quote-page__nav-row {
  display: grid;
  gap: 12px;
}

.quote-page__status {
  margin: 0;
  min-height: 1.5em;
  color: #6b4b3c;
  font-size: 0.94rem;
  line-height: 1.45;
}

.quote-page__status[data-state="error"] {
  color: #8d2419;
}

.quote-page__nav-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.quote-page .home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    transform 220ms var(--ease),
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.quote-page .home-button:hover,
.quote-page .home-button:focus-visible {
  transform: translateY(-1px);
}

.quote-page .home-button--primary {
  background: #171412;
  border-color: #171412;
  color: #fff;
}

.quote-page .home-button--primary:hover,
.quote-page .home-button--primary:focus-visible {
  background: #11100f;
  border-color: #11100f;
  color: #fff;
}

.quote-page .home-button--secondary {
  background: #fff;
  border-color: rgba(23, 20, 18, 0.18);
  color: #171412;
}

.quote-page .home-button--secondary:hover,
.quote-page .home-button--secondary:focus-visible {
  background: #fff;
  border-color: #171412;
  color: #171412;
}

.quote-page__nav-actions .home-button {
  min-width: min(100%, 180px);
}

.quote-page__summary-panel .home-kicker,
.quote-page__hero-copy .home-kicker {
  margin: 0;
}

.quote-page__step-disclosure {
  display: none;
}

.quote-page__step-disclosure summary {
  display: none;
}

.quote-page__review {
  display: grid;
  gap: 14px;
}

.quote-page__review-section {
  display: grid;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(23, 20, 18, 0.1);
}

.quote-page__review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.quote-page__review-head h3 {
  margin: 0;
  color: #171412;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1.02rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.quote-page__review-edit {
  appearance: none;
  border: 0;
  background: transparent;
  color: #171412;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.quote-page__review-value {
  margin: 0;
  color: rgba(49, 37, 31, 0.76);
  line-height: 1.55;
}

.quote-page__review-value--empty {
  color: rgba(49, 37, 31, 0.54);
}

.quote-page__review-notes {
  padding-top: 12px;
  border-top: 1px solid rgba(23, 20, 18, 0.1);
}

@media (max-width: 980px) {
  .quote-page__hero-grid,
  .quote-page__brief-grid {
    grid-template-columns: 1fr;
  }

  .quote-page__summary-panel {
    position: static;
  }

  .quote-page__choice-grid,
  .quote-page__check-grid,
  .quote-page__field-grid,
  .quote-page__check-grid--dense {
    grid-template-columns: 1fr;
  }

  .quote-page__stepper--desktop {
    display: none;
  }

  .quote-page__step-disclosure {
    display: grid;
    gap: 10px;
  }

  .quote-page__step-disclosure summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid rgba(49, 37, 31, 0.14);
    border-radius: 999px;
    background: #fff;
    color: #171412;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    list-style: none;
    cursor: pointer;
    width: fit-content;
  }

  .quote-page__step-disclosure summary::-webkit-details-marker {
    display: none;
  }

  .quote-page__stepper--mobile {
    display: grid;
    gap: 8px;
    padding-top: 8px;
  }

  .quote-page__nav-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .quote-page__nav-actions .home-button {
    width: 100%;
    min-width: 0;
  }

  .quote-page__submit-wrap .home-button {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .quote-page__section {
    padding: 48px 0;
  }

  .quote-page__hero {
    padding-top: 28px;
    padding-bottom: 18px;
  }

  .quote-page__hero-media,
  .quote-page__hero-facts {
    display: none;
  }

  .quote-page__hero-copy h1 {
    font-size: clamp(2.25rem, 11vw, 4.2rem);
  }

  .quote-page__step,
  .quote-page__summary-card,
  .quote-page__review {
    padding: 20px;
  }

  .quote-page__review-head {
    align-items: flex-start;
  }

  .quote-page__hero-facts {
    gap: 8px;
  }

  .quote-page__hero-facts li {
    min-height: 32px;
    padding: 0 12px;
  }

  .quote-page__hero-mobile-note {
    display: block;
  }
}

@media (max-width: 980px) {
  .about-page__intro--split,
  .about-page__meaning-editorial,
  .about-page__manufacturing {
    grid-template-columns: 1fr;
  }

  .about-page__meaning-grid,
  .about-page__process-list,
  .about-page__projects {
    grid-template-columns: 1fr;
  }

  .about-page__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-page__projects {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-page__press-grid,
  .about-page__review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collections-page__directory .home-collections-showcase__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .about-page__section {
    padding: 60px 0;
  }

  .about-page__cards,
  .about-page__projects,
  .about-page__press-grid,
  .about-page__review-grid,
  .about-page__meaning-grid,
  .about-page__process-list {
    grid-template-columns: 1fr;
  }

  .collections-page__directory .home-collections-showcase__grid {
    grid-template-columns: 1fr;
  }

  .about-page__hero h1 {
    font-size: clamp(2.3rem, 11vw, 4rem);
  }

  .about-page__meaning-copy {
    max-width: none;
  }
}

.shop-discovery {
  padding-top: 0;
}

.shop-page .product-section--hero {
  display: none;
}

.shop-discovery__shell {
  display: grid;
  gap: 14px;
}

.shop-discovery__intro {
  display: grid;
  gap: 6px;
}

.shop-discovery__title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.shop-discovery__title {
  margin: 0;
  color: #171412;
  font-size: clamp(1.9rem, 6vw, 3rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.shop-discovery__count {
  margin: 0;
  color: rgba(49, 37, 31, 0.74);
  font-size: 0.94rem;
  font-weight: 700;
  white-space: nowrap;
}

.shop-discovery__lede {
  margin: 0;
  max-width: 42ch;
  color: rgba(49, 37, 31, 0.74);
  font-size: 0.96rem;
  line-height: 1.45;
}

.shop-discovery__categories {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  padding-top: 2px;
  margin: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.shop-discovery__categories::-webkit-scrollbar {
  display: none;
}

.shop-category {
  flex: 0 0 auto;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(49, 37, 31, 0.14);
  background: #fff;
  color: #171412;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.shop-category[data-active="true"] {
  background: #171412;
  color: #fff;
}

.shop-discovery__toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
  align-items: end;
}

.shop-discovery__summary h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.shop-discovery__controls {
  display: grid;
  gap: 8px;
  justify-items: stretch;
}

.shop-search {
  width: 100%;
}

.shop-search input {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(49, 37, 31, 0.14);
  background: #fff;
  font: inherit;
}

.shop-discovery__desktop-actions,
.shop-discovery__grid-toggle {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.shop-discovery__desktop-actions {
  position: relative;
  width: 100%;
  justify-content: flex-start;
}

.shop-discovery__button,
.shop-filter-clear,
.shop-chip,
.shop-discovery__drawer-apply {
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(49, 37, 31, 0.14);
  background: #fff;
  color: #171412;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.shop-discovery__button[data-active="true"] {
  background: #171412;
  color: #fff;
}

.shop-discovery__chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.shop-discovery__chips::-webkit-scrollbar,
.shop-discovery__categories::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.shop-chip {
  background: #171412;
  color: #fff;
  flex: 0 0 auto;
}

.shop-sort-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 5;
  display: grid;
  min-width: 260px;
  padding: 8px;
  gap: 4px;
  border: 1px solid rgba(49, 37, 31, 0.14);
  background: #f2eee8;
  box-shadow: 0 10px 26px rgba(23, 20, 18, 0.08);
}

.shop-sort-menu[hidden] {
  display: none;
}

.shop-sort-menu button {
  justify-content: flex-start;
  width: 100%;
  min-height: 40px;
  padding: 0 10px;
  border: 0;
  background: transparent;
  text-align: left;
  font: inherit;
}

.shop-sort-menu button:focus-visible,
.shop-sort-menu button:hover {
  background: #171412;
  color: #fff;
}

.shop-chip:hover,
.shop-discovery__button:hover,
.shop-filter-clear:hover,
.shop-discovery__drawer-apply:hover {
  border-color: rgba(49, 37, 31, 0.35);
}

.shop-discovery__body {
  display: grid;
  grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
  gap: 22px;
}

.shop-discovery__sidebar {
  position: sticky;
  top: 110px;
  align-self: start;
}

.shop-discovery__panel {
  padding: 16px;
  border: 1px solid rgba(49, 37, 31, 0.12);
  background: #f2eee8;
}

.shop-filter-group {
  margin: 0 0 12px;
  padding: 0 0 8px;
  border-bottom: 1px solid rgba(49, 37, 31, 0.1);
}

.shop-filter-group summary {
  cursor: pointer;
  list-style: none;
  margin-bottom: 10px;
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.shop-filter-group summary::-webkit-details-marker {
  display: none;
}

.shop-filter-group__body {
  display: grid;
  gap: 2px;
  max-height: 220px;
  overflow: auto;
  padding-right: 8px;
}

.shop-filter-option {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 8px;
  font-size: 0.92rem;
}

.shop-filter-option input {
  appearance: none;
  width: 15px;
  height: 15px;
  border: 1.5px solid rgba(49, 37, 31, 0.45);
  border-radius: 50%;
  display: inline-grid;
  place-content: center;
  margin: 0;
  background: #fff;
}

.shop-filter-option input::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 120ms ease;
  background: #171412;
}

.shop-filter-option input:checked {
  border-color: #171412;
}

.shop-filter-option input:checked::before {
  transform: scale(1);
}

.shop-filter-option input:focus-visible,
.shop-search input:focus-visible,
.shop-discovery__button:focus-visible,
.shop-filter-clear:focus-visible,
.shop-chip:focus-visible,
.shop-discovery__drawer-apply:focus-visible {
  outline: 2px solid #171412;
  outline-offset: 2px;
}

.shop-filter-clear {
  margin-top: 8px;
}

.shop-discovery__content {
  display: grid;
  gap: 18px;
}

.product-index-list {
  display: grid;
  gap: 18px;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(18px, 3vw, 28px);
  align-content: start;
  align-items: start;
}

.shop-grid[data-shop-columns="2"] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.shop-grid[data-shop-columns="3"] {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-discovery .shop-discovery__shell {
  gap: 10px;
}

.home-discovery .shop-discovery__toolbar {
  gap: 8px;
}

.home-discovery .shop-discovery__controls {
  gap: 6px;
}

.home-discovery .shop-discovery__body {
  grid-template-columns: 1fr;
}

.home-discovery .shop-discovery__sidebar {
  display: none;
}

.home-discovery .shop-discovery__content {
  display: grid;
  gap: 14px;
}

.home-discovery .shop-grid {
  gap: clamp(14px, 2vw, 22px);
}

.home-discovery .shop-empty {
  padding: 12px 0 0;
}

.home-discovery .home-selected-pieces__actions {
  margin-top: 18px;
}

.home-discovery .shop-discovery__title {
  font-size: clamp(1.7rem, 4.5vw, 2.5rem);
}

.shop-card {
  position: relative;
  display: grid;
  gap: 12px;
  padding-top: clamp(18px, 2vw, 24px);
  border-top: 1px solid rgba(49, 37, 31, 0.14);
  color: inherit;
  text-decoration: none;
  outline-offset: 4px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.shop-card__badge {
  position: absolute;
  top: clamp(28px, 3vw, 40px);
  left: 12px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  background: #171412;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 8px;
  background: #ede4d8;
}

.shop-card__media-layer {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  transition: opacity 180ms ease;
}

.shop-card__media-layer--primary {
  opacity: 1;
}

.shop-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, opacity 180ms ease;
}

.shop-card__media-layer--hover img {
  opacity: 1;
}

.shop-card__media:where(:hover, :focus-visible) .shop-card__media-layer--primary,
.shop-card[data-has-hover-image="true"]:focus-within .shop-card__media-layer--primary {
  opacity: 0;
}

.shop-card:where(:hover, :focus-within) .shop-card__media-layer--hover {
  opacity: 1;
}

.shop-card:where(:hover, :focus-visible) {
  transform: translateY(-2px);
  border-color: rgba(49, 37, 31, 0.24);
}

.shop-card:where(:hover, :focus-visible) .shop-card__media-layer--primary img,
.shop-card:where(:hover, :focus-visible) .shop-card__media-layer--hover img {
  transform: scale(1.02);
}

@media (hover: none), (pointer: coarse) {
  .shop-card__media-layer--hover {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .shop-card__media-layer {
    transition: none;
  }
}

@media (max-width: 760px) {
  .shop-discovery__toolbar,
  .shop-discovery__body {
    grid-template-columns: 1fr;
  }

  .shop-discovery__controls {
    justify-items: stretch;
    gap: 8px;
  }

  .shop-discovery__desktop-actions {
    width: 100%;
    justify-content: flex-start;
    gap: 6px;
    flex-wrap: wrap;
  }

  .shop-discovery__sidebar {
    display: none;
  }

  .shop-discovery__mobile-drawer {
    display: block;
  }

  .shop-discovery__mobile-drawer:not([hidden]) {
    display: grid;
  }

  .shop-discovery__drawer-panel {
    display: grid;
    gap: 14px;
    padding: 16px;
    border: 1px solid rgba(49, 37, 31, 0.12);
    background: #fff;
    max-height: 100vh;
    overflow: auto;
  }

  .shop-discovery__drawer-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }

  .shop-discovery {
    padding-top: 0;
  }

  .shop-discovery__shell {
    gap: 12px;
  }

  .shop-discovery__toolbar {
    gap: 10px;
  }

  .shop-discovery__intro {
    gap: 6px;
  }

  .shop-discovery__title-row {
    align-items: baseline;
  }

  .shop-discovery__title {
    font-size: clamp(1.9rem, 11vw, 2.3rem);
  }

  .shop-discovery__count {
    font-size: 0.88rem;
  }

  .shop-discovery__lede {
    font-size: 0.92rem;
    max-width: 30ch;
  }

  .shop-discovery__categories {
    gap: 6px;
    margin-bottom: 2px;
  }

  .shop-category {
    min-height: 34px;
    padding: 0 10px;
    font-size: 0.72rem;
  }

  .shop-search input {
    min-height: 44px;
  }

  .shop-discovery__chips {
    gap: 6px;
  }

  .shop-discovery__body {
    gap: 16px;
  }

  .shop-grid {
    gap: 16px;
  }

  .shop-grid[data-shop-columns="2"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-grid[data-shop-columns="3"] {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .shop-grid {
    gap: 12px;
  }

  .shop-discovery__button,
  .shop-filter-clear,
  .shop-chip,
  .shop-discovery__drawer-apply {
    min-height: 42px;
    font-size: 0.72rem;
  }

  .shop-card {
    gap: 8px;
    padding-top: 14px;
  }

  .shop-card__badge {
    top: 18px;
    left: 8px;
    min-height: 20px;
    padding: 0 6px;
    font-size: 0.56rem;
  }

  .shop-card__type {
    font-size: 10px;
    letter-spacing: 0.06em;
  }

  .shop-card__title {
    font-size: 0.95rem;
    line-height: 1.1;
  }

  .shop-card__price {
    font-size: 0.86rem;
  }

  .shop-card__facts {
    font-size: 0.74rem;
    line-height: 1.32;
  }

  .shop-card__action {
    font-size: 0.64rem;
  }
}

.shop-card__body {
  display: grid;
  gap: 8px;
  align-content: start;
  min-width: 0;
}

.shop-card__type {
  margin: 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(49, 37, 31, 0.68);
}

.shop-card__title {
  margin: 0;
  color: #171412;
  font-size: clamp(1.1rem, 1.2vw, 1.4rem);
  line-height: 1.06;
  font-weight: 600;
}

.shop-card__price {
  margin: 0;
  color: #171412;
  font-size: 0.95rem;
  font-weight: 600;
}

.shop-card__facts {
  margin: 0;
  color: rgba(49, 37, 31, 0.74);
  font-size: 0.82rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.shop-card__action {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: #31251f;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-card__wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.78);
  color: rgba(49, 37, 31, 0.86);
  font-size: 16px;
  line-height: 1;
  box-shadow: 0 1px 10px rgba(23, 20, 18, 0.08);
}

.shop-card:focus-visible {
  outline: 2px solid rgba(49, 37, 31, 0.75);
}

.shop-empty {
  display: grid;
  gap: 14px;
  padding: 20px 0 10px;
  align-content: start;
}

.shop-empty__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.shop-discovery__mobile-drawer {
  display: none;
}

.shop-discovery__mobile-drawer:not([hidden]) {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: end stretch;
  padding: 16px;
  background: rgba(23, 20, 18, 0.38);
}

.product-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(18px, 3vw, 32px);
  padding-top: clamp(18px, 2vw, 24px);
  border-top: 1px solid rgba(49, 37, 31, 0.14);
}

.product-card__media,
.product-hero__image,
.product-gallery__stage,
.product-preview__frame {
  overflow: hidden;
  border-radius: 8px;
  background: #ede4d8;
}

.product-card__media {
  display: block;
  aspect-ratio: 4 / 5;
}

.product-card__media img,
.product-hero__image img,
.product-gallery__stage img,
.product-preview__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__body {
  display: grid;
  align-content: start;
  gap: 16px;
}

.product-card__title {
  color: #171412;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1;
  margin: 0;
}

.product-card__title a {
  color: inherit;
}

.product-card__meta,
.product-hero__facts,
.product-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-bullet-list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.product-card__meta > *,
.product-chip {
  border: 1px solid rgba(49, 37, 31, 0.14);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(255, 250, 243, 0.72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.product-card__facts {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card__facts div,
.product-hero__facts div {
  display: grid;
  gap: 4px;
}

.product-card__facts dt,
.product-hero__facts dt,
.product-panel .home-kicker,
.product-preview .home-kicker {
  color: #6f5749;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-card__facts dd,
.product-hero__facts dd {
  margin: 0;
  color: #171412;
  font-size: 15px;
  font-weight: 700;
}

.product-card__actions,
.product-hero__actions,
.product-preview__actions,
.product-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-hero {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  align-items: center;
}

.product-hero__copy {
  max-width: 760px;
}

.product-breadcrumb {
  margin: 0 0 18px;
  color: rgba(49, 37, 31, 0.7);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-breadcrumb a {
  color: inherit;
}

.product-hero__facts {
  margin: 28px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-hero__image {
  aspect-ratio: 4 / 5;
}

.product-gallery__layout,
.product-preview {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  align-items: start;
  gap: clamp(18px, 3vw, 32px);
}

.product-gallery__stage {
  aspect-ratio: 4 / 5;
}

.product-gallery__thumbs {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-gallery__thumbs button {
  display: grid;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.product-gallery__thumbs button span {
  display: block;
  border: 1px solid rgba(49, 37, 31, 0.12);
  border-radius: 8px;
  overflow: hidden;
  background: #ede4d8;
}

.product-gallery__thumbs button img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-gallery__thumbs button strong {
  color: #171412;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-gallery__thumbs button[aria-pressed="true"] span {
  border-color: rgba(119, 89, 61, 0.4);
  box-shadow: 0 0 0 3px rgba(119, 89, 61, 0.1);
}

.product-preview__copy,
.product-details__copy,
.product-details__aside {
  display: grid;
  gap: 18px;
}

.product-preview__copy h2,
.product-details h2,
.product-panel h3,
.product-cta h2 {
  margin: 0;
  color: #171412;
  font-family: Helvetica, Arial, sans-serif;
  letter-spacing: 0;
}

.product-preview__copy h2,
.product-details h2,
.product-cta h2 {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 0.98;
}

.product-panel {
  border-top: 1px solid rgba(49, 37, 31, 0.14);
  padding-top: 22px;
  display: grid;
  gap: 14px;
}

.product-panel h3,
.product-stack h3 {
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  line-height: 1.05;
}

.product-copy {
  display: grid;
  gap: 18px;
}

.product-copy p {
  margin: 0;
  font-size: 16px;
}

.product-stack {
  display: grid;
  gap: 12px;
}

.product-bullet-list {
  color: rgba(49, 37, 31, 0.72);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
}

.product-bullet-list li {
  padding-left: 18px;
  position: relative;
}

.product-bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.product-dimensions {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.product-dimensions__group {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(49, 37, 31, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.68);
  min-width: 0;
}

.product-dimensions__group h4 {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-dimensions__list {
  display: grid;
  gap: 6px;
}

.product-dimensions__list span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 15px;
}

.product-dimensions__list strong {
  color: #171412;
}

.product-dimensions__drawing {
  display: grid;
  gap: 8px;
  margin: 8px 0 clamp(28px, 4vw, 56px);
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.product-dimensions__drawing img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.product-dimensions__drawing[hidden] {
  display: none;
}

.product-dimensions__drawing figcaption {
  font-size: 12px;
  color: rgba(49, 37, 31, 0.62);
}

.product-cta {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.product-section--cta .product-cta p {
  color: rgba(255, 250, 243, 0.74);
  max-width: 620px;
}

.product-footer {
  border-top: 1px solid rgba(49, 37, 31, 0.12);
  background: #fbf7f0;
  padding: 44px 0;
}

.product-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: start;
}

.product-footer p {
  margin: 12px 0 0;
  color: rgba(49, 37, 31, 0.68);
  max-width: 520px;
  line-height: 1.7;
}

@media (max-width: 980px) {
  .product-hero,
  .product-gallery__layout,
  .product-preview,
  .product-details,
  .product-cta,
  .product-footer__inner,
  .product-card {
    grid-template-columns: 1fr;
  }

  .product-card__media {
    aspect-ratio: 16 / 11;
  }

  .product-gallery__thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-hero__facts,
  .product-card__facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 620px) {
  .product-shell {
    width: min(100% - 28px, 1320px);
  }

  .product-section {
    padding: 68px 0;
  }

  .product-section--hero {
    padding-top: 78px;
  }

  .product-index-hero h1,
  .product-hero h1 {
    font-size: clamp(2.6rem, 14vw, 4.6rem);
  }

  .product-gallery__thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card__facts,
  .product-hero__facts {
    grid-template-columns: 1fr;
  }

  .product-cta__actions,
  .product-card__actions,
  .product-hero__actions,
  .product-preview__actions {
    flex-direction: column;
  }

  .product-cta__actions .home-button,
  .product-card__actions .home-button,
  .product-hero__actions .home-button,
  .product-preview__actions .home-button {
    width: 100%;
  }

  .shop-card__action {
    width: 100%;
  }
}

/* Product detail refinement */
.product-shell--wide {
  width: min(100% - 48px, 1480px);
}

.product-detail-section {
  padding: clamp(38px, 5vw, 72px) 0 clamp(72px, 9vw, 132px);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(390px, 0.95fr);
  gap: clamp(34px, 5vw, 80px);
  align-items: start;
}

.product-media-column {
  order: 1;
  min-width: 0;
}

.product-info-panel {
  order: 2;
  min-width: 0;
  position: sticky;
  top: 98px;
  max-height: calc(100vh - 116px);
  overflow: auto;
  overscroll-behavior: contain;
  display: grid;
  gap: clamp(26px, 3vw, 40px);
  padding-right: 4px;
}

.product-main-media {
  position: relative;
  display: grid;
  align-items: center;
  min-height: min(760px, calc(100vh - 150px));
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: #f2eadf;
}

.product-main-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.product-main-media img,
.product-fabric-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-main-media img {
  padding: clamp(14px, 2vw, 28px);
}

.product-gallery-caption {
  position: absolute;
  left: clamp(14px, 2vw, 24px);
  bottom: clamp(14px, 2vw, 24px);
  color: rgba(49, 37, 31, 0.72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-type {
  margin: 10px 0 0;
  color: rgba(49, 37, 31, 0.68);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-summary-block h1 {
  margin: 12px 0 0;
  color: #171412;
  font-size: clamp(3rem, 5.4vw, 6.4rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.92;
}

.product-price-line {
  display: grid;
  gap: 5px;
  margin: clamp(20px, 3vw, 30px) 0 0;
}

.product-price-line span,
.product-mobile-bar small {
  color: rgba(49, 37, 31, 0.62);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-price-line strong {
  color: #171412;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1;
}

.product-price-note {
  margin: 6px 0 0;
  color: rgba(49, 37, 31, 0.68);
  font-size: 0.86rem;
  line-height: 1.45;
}

.product-payment-block {
  display: grid;
  gap: 10px;
  min-width: 0;
  margin: 18px 0 0;
  padding: 14px 16px 16px;
  border: 1px solid rgba(23, 20, 18, 0.14);
  background: #fff;
}

.product-payment-block h2 {
  margin: 0;
  color: #171412;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.product-payment-method {
  display: grid;
  gap: 4px;
}

.product-payment-method strong {
  color: #171412;
  font-size: 14px;
  line-height: 1.35;
}

.product-payment-method__brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.product-payment-method__brand img {
  display: block;
  width: 88px;
  height: auto;
  flex: 0 0 auto;
}

.product-payment-method__brand span {
  color: #171412;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
}

.product-payment-method p {
  margin: 0;
  color: rgba(49, 37, 31, 0.72);
  font-size: 13px;
  line-height: 1.5;
}

.product-payment-divider {
  height: 1px;
  background: rgba(23, 20, 18, 0.14);
}

.product-whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: calc(20px + env(safe-area-inset-bottom));
  z-index: 46;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(23, 20, 18, 0.16);
  background: #fff;
  color: #171412;
  box-shadow: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.product-whatsapp-float img {
  display: block;
  width: 20px;
  height: auto;
  flex: 0 0 auto;
}

.product-whatsapp-float:hover,
.product-whatsapp-float:focus-visible {
  background: #171412;
  color: #fff;
}

.product-whatsapp-float.is-hidden {
  display: none;
}

.product-whatsapp-float--raised,
.quote-page .product-whatsapp-float {
  bottom: calc(88px + env(safe-area-inset-bottom));
}

.product-summary {
  margin: 20px 0 0;
  max-width: 520px;
  color: rgba(49, 37, 31, 0.74);
  font-size: 17px;
  line-height: 1.72;
}

.product-payflex-note {
  margin: 12px 0 0;
  color: rgba(49, 37, 31, 0.66);
  font-size: 14px;
  line-height: 1.55;
}

.product-quote-feedback {
  margin: 8px 0 0;
  color: rgba(49, 37, 31, 0.72);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.product-key-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
  margin: 28px 0 0;
  padding: 26px 0 0;
  border-top: 1px solid rgba(49, 37, 31, 0.14);
}

.product-key-facts div {
  display: grid;
  gap: 5px;
}

.product-key-facts dt {
  color: rgba(23, 20, 18, 0.62);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-key-facts dd {
  margin: 0;
  color: #171412;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.site-page-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 22px;
  margin: 28px 0 0;
  padding: 26px 0 0;
  border-top: 1px solid rgba(49, 37, 31, 0.14);
}

.site-page-facts__item {
  display: grid;
  gap: 5px;
}

.site-page-facts__label {
  color: rgba(23, 20, 18, 0.62);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-page-facts__value {
  margin: 0;
  color: #171412;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.product-action-block,
.product-mobile-bar {
  display: flex;
  gap: 12px;
}

.product-action-block {
  flex-wrap: wrap;
  margin-top: 18px;
}

.product-action-block .home-button {
  min-width: min(100%, 190px);
}

.product-page .product-action-block .home-button,
.product-page .product-cta__actions .home-button,
.product-page .product-hero__actions .home-button,
.product-page .product-preview__actions .home-button,
.product-page .product-mobile-bar .home-button,
.product-page .product-mobile-bar a,
.product-page .product-mobile-bar button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    transform 220ms var(--ease),
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.product-page .product-mobile-bar a,
.product-page .product-mobile-bar button {
  width: 100%;
}

.product-page .product-action-block .home-button--primary,
.product-page .product-cta__actions .home-button--primary,
.product-page .product-hero__actions .home-button--primary,
.product-page .product-preview__actions .home-button--primary,
.product-page .product-mobile-bar .home-button--primary,
.product-page .product-mobile-bar button {
  background: #171412;
  border: 1px solid #171412;
  color: #fff;
}

.product-page .product-action-block .home-button--primary:hover,
.product-page .product-action-block .home-button--primary:focus-visible,
.product-page .product-cta__actions .home-button--primary:hover,
.product-page .product-cta__actions .home-button--primary:focus-visible,
.product-page .product-hero__actions .home-button--primary:hover,
.product-page .product-hero__actions .home-button--primary:focus-visible,
.product-page .product-preview__actions .home-button--primary:hover,
.product-page .product-preview__actions .home-button--primary:focus-visible,
.product-page .product-mobile-bar .home-button--primary:hover,
.product-page .product-mobile-bar .home-button--primary:focus-visible,
.product-page .product-mobile-bar button:hover,
.product-page .product-mobile-bar button:focus-visible {
  background: #11100f;
  border-color: #11100f;
  color: #fff;
}

.product-page .product-action-block .home-button--secondary,
.product-page .product-cta__actions .home-button--secondary,
.product-page .product-hero__actions .home-button--secondary,
.product-page .product-preview__actions .home-button--secondary,
.product-page .product-mobile-bar .home-button--secondary,
.product-page .product-mobile-bar a {
  background: #fff;
  border: 1px solid rgba(23, 20, 18, 0.18);
  color: #171412;
}

.product-page .product-action-block .home-button--secondary:hover,
.product-page .product-action-block .home-button--secondary:focus-visible,
.product-page .product-cta__actions .home-button--secondary:hover,
.product-page .product-cta__actions .home-button--secondary:focus-visible,
.product-page .product-hero__actions .home-button--secondary:hover,
.product-page .product-hero__actions .home-button--secondary:focus-visible,
.product-page .product-preview__actions .home-button--secondary:hover,
.product-page .product-preview__actions .home-button--secondary:focus-visible,
.product-page .product-mobile-bar .home-button--secondary:hover,
.product-page .product-mobile-bar .home-button--secondary:focus-visible,
.product-page .product-mobile-bar a:hover,
.product-page .product-mobile-bar a:focus-visible {
  background: #fff;
  border-color: #171412;
  color: #171412;
}

.product-info-block {
  display: grid;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid rgba(49, 37, 31, 0.14);
}

.product-guided-flow {
  display: grid;
  gap: 18px;
  margin-top: 6px;
  padding: 22px 0 4px;
  border-top: 1px solid rgba(23, 20, 18, 0.12);
}

.product-guided-flow h2 {
  margin: 0;
  max-width: 16ch;
}

.product-guided-flow__steps {
  display: grid;
  gap: 14px;
}

.product-guided-step {
  display: grid;
  gap: 10px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(23, 20, 18, 0.08);
}

.product-guided-step__number {
  margin: 0;
  color: rgba(23, 20, 18, 0.58);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.living-rooms-page__hero {
  background: #fff;
}

.living-rooms-page__intro {
  gap: 12px;
}

.living-room-set-page__hero-grid {
  gap: clamp(28px, 5vw, 72px);
}

.living-room-set-page__copy h1 {
  margin: 0 0 18px;
  color: #171412;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.living-room-set-page__description {
  margin: 0;
  max-width: 36rem;
  color: rgba(23, 20, 18, 0.72);
  font-size: 1.02rem;
  line-height: 1.65;
}

.living-room-set-page__trust {
  margin: 18px 0 0;
  color: rgba(23, 20, 18, 0.68);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-transform: uppercase;
}

.living-room-set-page__status {
  margin: 14px 0 0;
  color: rgba(23, 20, 18, 0.6);
  font-size: 0.92rem;
  line-height: 1.5;
}

.living-room-set-page__hero-actions {
  margin-top: 18px;
}

.living-room-set-page__media {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--home-image-radius);
  background: #ede4d8;
}

.living-room-set-page__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.living-room-set-page__products-section {
  padding-top: 0;
}

.living-room-set-page__products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  align-items: stretch;
}

.living-room-set-page__product-card--no-image {
  grid-template-rows: auto auto;
}

.living-room-set-page__card-placeholder {
  aspect-ratio: 4 / 5;
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(49, 37, 31, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(237, 228, 216, 0.9));
}

@media (max-width: 1024px) {
  .living-room-set-page__products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .living-room-set-page__products {
    grid-template-columns: 1fr;
  }

  .living-room-set-page__copy h1 {
    font-size: clamp(2.2rem, 10vw, 3.6rem);
  }
}

.product-guided-step h3,
.product-guided-step summary strong {
  margin: 0;
  color: #171412;
  font-size: 16px;
  line-height: 1.2;
}

.product-guided-step__copy,
.product-guided-step__summary,
.product-guided-step__body p {
  margin: 0;
  color: rgba(49, 37, 31, 0.72);
  line-height: 1.55;
}

.product-guided-step__action {
  width: fit-content;
}

.product-guided-step--dimensions summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  list-style: none;
  cursor: pointer;
}

.product-guided-step--dimensions summary::-webkit-details-marker {
  display: none;
}

.product-guided-step--dimensions summary span {
  color: rgba(23, 20, 18, 0.56);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-guided-step__body {
  display: grid;
  gap: 8px;
  padding-top: 12px;
}

.product-info-block h2,
.product-related h2 {
  margin: 0;
  color: #171412;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.product-selected-line,
.product-info-block p,
.product-related p {
  margin: 0;
  color: rgba(49, 37, 31, 0.72);
  line-height: 1.7;
}

.product-fabric-panel {
  display: grid;
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(23, 20, 18, 0.14);
  background: #fff;
}

.product-fabric-enquiry {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(23, 20, 18, 0.14);
  background: #fff;
}

.product-fabric-fallback__eyebrow {
  margin: 0;
  color: rgba(23, 20, 18, 0.6);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.product-fabric-fallback__heading {
  margin: 0;
  color: #171412;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
}

.product-fabric-fallback__copy {
  margin: 0;
  color: rgba(49, 37, 31, 0.72);
  line-height: 1.65;
}

.product-fabric-fallback__cta {
  justify-content: center;
  width: fit-content;
}

.product-fabric-panel__header {
  display: grid;
  gap: 6px;
}

.product-fabric-panel__header h3 {
  margin: 0;
  color: #171412;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
}

.product-fabric-layout {
  display: grid;
  grid-template-columns: minmax(120px, 0.62fr) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-width: 0;
}

.product-fabric-preview {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(23, 20, 18, 0.1);
  background: #f7f7f7;
}

.product-fabric-preview figcaption {
  padding: 10px 12px;
  border-top: 1px solid rgba(23, 20, 18, 0.1);
  color: rgba(23, 20, 18, 0.62);
  font-size: 0.78rem;
  line-height: 1.45;
}

.product-fabric-summary {
  display: grid;
  gap: 12px;
  align-content: start;
}

.product-fabric-summary p {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(23, 20, 18, 0.1);
}

.product-fabric-summary p:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.product-fabric-summary span {
  color: rgba(23, 20, 18, 0.56);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-fabric-summary strong {
  color: #171412;
  text-align: right;
}

.product-fabric-ranges {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.product-fabric-range {
  border: 1px solid rgba(23, 20, 18, 0.12);
  background: #fff;
}

.product-fabric-range summary {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  list-style: none;
  padding: 12px 14px;
  color: #171412;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: none;
}

.product-fabric-range summary::-webkit-details-marker {
  display: none;
}

.product-fabric-range summary::after {
  content: "+";
  margin-left: 10px;
  flex: 0 0 auto;
}

.product-fabric-range[open] summary::after {
  content: "-";
}

.product-fabric-range summary span {
  color: inherit;
  font: inherit;
}

.product-fabric-range summary strong {
  margin-left: auto;
  color: rgba(23, 20, 18, 0.82);
  font: inherit;
}

.product-fabric-range__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  padding: 0 8px;
  border: 1px solid rgba(23, 20, 18, 0.18);
  color: #171412;
  background: #f5f5f5;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: none;
  white-space: nowrap;
}

.product-fabric-swatches {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(138px, 1fr));
  gap: 10px;
  padding: 14px;
}

.product-fabric-swatch {
  position: relative;
  display: grid;
  align-content: start;
  gap: 6px;
  min-height: 0;
  padding: 10px;
  border: 1px solid rgba(23, 20, 18, 0.14);
  border-radius: 0;
  background: #fff;
  color: #171412;
  font: inherit;
  text-align: left;
  appearance: none;
  cursor: pointer;
}

.product-fabric-swatch:hover,
.product-fabric-swatch:focus-within {
  border-color: #171412;
}

.product-fabric-swatch[aria-pressed="true"] {
  border-color: #171412;
  background: #f3f3f3;
}

.product-fabric-swatch img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #f6f6f6;
}

.product-fabric-swatch strong {
  color: #171412;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.3;
}

.product-fabric-swatch small {
  display: none;
}

.product-fabric-swatch[data-base-price="true"] small {
  color: #171412;
  font-weight: 800;
}

.product-fabric-swatch__note {
  display: block;
}

.product-fabric-swatch__note--quiet {
  color: rgba(23, 20, 18, 0.66);
}

.product-fabric-swatch__note--base {
  color: #171412;
}

.product-fabric-whatsapp {
  width: 100%;
}

.product-gallery__thumbs {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(7, minmax(72px, 1fr));
  gap: 10px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.product-gallery__thumbs button {
  min-width: 72px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.product-gallery__thumbs button span {
  border-radius: 0;
  background: #f2eadf;
}

.product-gallery__thumbs button img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 6px;
}

.product-gallery__thumbs button strong {
  font-size: 10px;
  overflow-wrap: anywhere;
}

.product-gallery__thumbs button:focus-visible,
.product-fabric-swatch:focus-visible,
.product-fabric-option:focus-visible,
.product-mobile-bar a:focus-visible,
.product-mobile-bar button:focus-visible {
  outline: 2px solid #171412;
  outline-offset: 3px;
}

.product-bullet-list {
  margin: 0;
}

.product-accordion-set {
  display: grid;
  gap: 10px;
}

.product-accordion {
  border-top: 1px solid rgba(49, 37, 31, 0.14);
}

.product-accordion:last-child {
  border-bottom: 1px solid rgba(49, 37, 31, 0.14);
}

.product-accordion summary {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #171412;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
  list-style: none;
}

.product-accordion summary::-webkit-details-marker {
  display: none;
}

.product-accordion summary::after {
  content: "+";
  flex: 0 0 auto;
  color: rgba(49, 37, 31, 0.58);
  font-size: 18px;
  line-height: 1;
}

.product-accordion[open] summary::after {
  content: "-";
}

.product-accordion summary:focus-visible,
.product-fabric-group summary:focus-visible {
  outline: 2px solid #171412;
  outline-offset: 4px;
}

.product-accordion__body {
  display: grid;
  gap: 16px;
  padding: 0 0 20px;
  min-width: 0;
}

.product-options-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.product-options-form label {
  display: grid;
  gap: 7px;
}

.product-options-form span {
  color: rgba(23, 20, 18, 0.62);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-choice-group {
  display: grid;
  gap: 12px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.product-choice-group legend {
  margin: 0 0 2px;
  color: #171412;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0;
}

.product-choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr));
  gap: 10px;
}

.product-choice-tile {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 64px;
  padding: 14px 38px 14px 14px;
  border: 1px solid rgba(23, 20, 18, 0.16);
  background: #fff;
  color: #171412;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.product-choice-tile:hover,
.product-choice-tile:focus-within {
  border-color: #171412;
}

.product-choice-tile:has(input:checked) {
  border-color: #171412;
  background: #f3f3f3;
}

.product-choice-tile input {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 16px;
  height: 16px;
  accent-color: #171412;
}

.product-choice-tile input:focus-visible {
  outline: 2px solid #171412;
  outline-offset: 3px;
}

.product-choice-tile span:last-child {
  color: #171412;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: none;
}

.product-choice-icon {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 28px;
  border: 1.5px solid currentColor;
  color: #171412;
}

.product-choice-icon::before,
.product-choice-icon::after {
  position: absolute;
  content: "";
  border-color: currentColor;
}

.product-choice-icon--dimensions::before,
.product-choice-icon--dimensions-custom::before {
  inset: 6px;
  border-top: 1.5px solid currentColor;
  border-left: 1.5px solid currentColor;
}

.product-choice-icon--dimensions-custom::after {
  right: 5px;
  bottom: 5px;
  width: 8px;
  border-top: 1.5px solid currentColor;
}

.product-choice-icon--fabric-selected,
.product-choice-icon--fabric-similar,
.product-choice-icon--upload {
  border-radius: 50%;
}

.product-choice-icon--fabric-selected::before,
.product-choice-icon--fabric-similar::before {
  top: 9px;
  left: 6px;
  width: 14px;
  border-top: 1.5px solid currentColor;
}

.product-choice-icon--fabric-similar::after {
  top: 14px;
  left: 6px;
  width: 14px;
  border-top: 1.5px solid currentColor;
}

.product-choice-icon--upload::before {
  top: 7px;
  left: 10px;
  width: 7px;
  height: 7px;
  border-top: 1.5px solid currentColor;
  border-left: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.product-choice-icon--upload::after {
  left: 8px;
  bottom: 7px;
  width: 12px;
  border-top: 1.5px solid currentColor;
}

.product-choice-icon--help::before {
  top: 6px;
  left: 11px;
  width: 5px;
  height: 8px;
  border: 1.5px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.product-choice-icon--help::after {
  left: 13px;
  bottom: 6px;
  width: 2px;
  height: 2px;
  background: currentColor;
}

.product-choice-icon--timber-match,
.product-choice-icon--timber-other {
  border-radius: 0;
}

.product-choice-icon--timber-match::before,
.product-choice-icon--timber-other::before {
  top: 7px;
  left: 6px;
  width: 14px;
  border-top: 1.5px solid currentColor;
}

.product-choice-icon--timber-match::after,
.product-choice-icon--timber-other::after {
  top: 14px;
  left: 6px;
  width: 14px;
  border-top: 1.5px solid currentColor;
}

.product-choice-icon--room,
.product-choice-icon--bedroom,
.product-choice-icon--salon,
.product-choice-icon--office,
.product-choice-icon--hospitality {
  border-radius: 50% 50% 0 0;
}

.product-choice-icon--room::before,
.product-choice-icon--bedroom::before,
.product-choice-icon--salon::before,
.product-choice-icon--office::before,
.product-choice-icon--hospitality::before {
  right: 6px;
  bottom: 6px;
  left: 6px;
  border-top: 1.5px solid currentColor;
}

.product-choice-icon--location,
.product-choice-icon--other-location {
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.product-choice-icon--location::before,
.product-choice-icon--other-location::before {
  inset: 8px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.product-choice-icon--other,
.product-choice-icon--calendar-open,
.product-choice-icon--calendar-soon,
.product-choice-icon--calendar-range,
.product-choice-icon--calendar-later,
.product-choice-icon--calendar-date {
  border-radius: 0;
}

.product-choice-icon--other::before {
  top: 12px;
  left: 6px;
  width: 14px;
  border-top: 1.5px solid currentColor;
}

.product-choice-icon--calendar-open::before,
.product-choice-icon--calendar-soon::before,
.product-choice-icon--calendar-range::before,
.product-choice-icon--calendar-later::before,
.product-choice-icon--calendar-date::before {
  top: 7px;
  right: 4px;
  left: 4px;
  border-top: 1.5px solid currentColor;
}

.product-choice-icon--calendar-date::after {
  right: 7px;
  bottom: 7px;
  left: 7px;
  border-top: 1.5px solid currentColor;
}

.product-conditional-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(23, 20, 18, 0.12);
  background: #fff;
}

.product-conditional-fields[hidden] {
  display: none;
}

.product-form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(23, 20, 18, 0.64);
  font-size: 0.84rem;
  line-height: 1.55;
}

.product-options-form input,
.product-options-form select,
.product-options-form textarea {
  width: 100%;
  border: 1px solid rgba(23, 20, 18, 0.18);
  border-radius: 0;
  background: #fff;
  color: #171412;
  font: inherit;
  font-size: 14px;
  line-height: 1.4;
  padding: 12px 13px;
}

.product-options-form textarea {
  resize: vertical;
}

.product-options-form input:focus,
.product-options-form select:focus,
.product-options-form textarea:focus {
  outline: 2px solid #171412;
  outline-offset: 2px;
}

.product-choice-tile input[type="radio"] {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 16px;
  height: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  accent-color: #171412;
}

.product-options-form__wide {
  grid-column: 1 / -1;
}

.product-copy p {
  color: rgba(49, 37, 31, 0.72);
}

.product-dimensions__group {
  border-radius: 0;
  background: rgba(255, 250, 243, 0.58);
}

.product-note {
  color: rgba(49, 37, 31, 0.65);
  font-size: 13px;
  line-height: 1.55;
}

.product-chip-list {
  gap: 8px;
}

.product-chip {
  border-radius: 0;
  background: rgba(255, 250, 243, 0.62);
}

.product-related-section {
  padding: clamp(68px, 9vw, 120px) 0;
  border-top: 1px solid rgba(49, 37, 31, 0.12);
}

.product-related {
  max-width: 720px;
}

.product-related p {
  margin-top: 14px;
}

.quote-review {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.quote-review__items,
.quote-review__summary,
.quote-contact {
  display: grid;
  gap: 20px;
}

.quote-review h2,
.quote-contact h2 {
  margin: 0;
  color: #171412;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
}

.quote-review__list {
  display: grid;
  gap: 18px;
}

.quote-line {
  display: grid;
  grid-template-columns: minmax(120px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(49, 37, 31, 0.14);
}

.quote-line__media {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(49, 37, 31, 0.12);
  background: #f2eee8;
}

.quote-line__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f2eadf;
}

.quote-line__media--empty {
  background: linear-gradient(180deg, rgba(242, 238, 232, 0.9), rgba(255, 255, 255, 0.95));
}

.quote-line__body,
.quote-line__meta,
.quote-line__controls,
.quote-line__options {
  display: grid;
  gap: 12px;
}

.quote-line h3 {
  margin: 0;
  color: #171412;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.05;
}

.quote-line__type,
.quote-line__notes,
.quote-line__included {
  margin: 0;
  color: rgba(49, 37, 31, 0.7);
  font-size: 0.84rem;
  line-height: 1.55;
}

.quote-line__notes,
.quote-line__included {
  padding-top: 4px;
}

.quote-line__meta div,
.quote-review__summary dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.quote-line__meta dt,
.quote-review__summary dt {
  color: rgba(49, 37, 31, 0.58);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quote-line__meta dd,
.quote-review__summary dd {
  margin: 0;
  color: #171412;
  font-weight: 800;
  text-align: right;
}

.quote-line__options {
  margin: 0;
  padding-left: 18px;
  color: rgba(49, 37, 31, 0.72);
  line-height: 1.55;
}

.quote-line__controls {
  grid-template-columns: minmax(90px, 0.24fr) minmax(0, 1fr) auto;
  align-items: end;
}

.quote-line__controls label {
  display: grid;
  gap: 7px;
  color: rgba(49, 37, 31, 0.62);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quote-line__controls input,
.quote-line__controls textarea {
  width: 100%;
  border: 1px solid rgba(49, 37, 31, 0.18);
  border-radius: 0;
  background: rgba(255, 250, 243, 0.72);
  color: #171412;
  font: inherit;
  font-size: 14px;
  letter-spacing: 0;
  padding: 10px 11px;
  text-transform: none;
}

.quote-line__remove {
  min-height: 42px;
  border: 1px solid rgba(49, 37, 31, 0.28);
  background: transparent;
  color: #171412;
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0 14px;
  text-transform: uppercase;
}

.quote-review__summary {
  position: sticky;
  top: 98px;
  padding-top: 18px;
  border-top: 1px solid rgba(49, 37, 31, 0.14);
}

.quote-review__summary p,
.quote-review__empty {
  margin: 0;
  color: rgba(49, 37, 31, 0.72);
  line-height: 1.7;
}

.quote-contact__copy,
.quote-contact__note {
  margin: 0;
  color: rgba(49, 37, 31, 0.72);
  line-height: 1.7;
}

.quote-contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.quote-mailto {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(49, 37, 31, 0.18);
  color: #171412;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.quote-confirmation {
  padding: 16px;
  border: 1px solid rgba(49, 37, 31, 0.14);
  background: #f6f1eb;
}

.quote-contact__summary {
  width: 1px;
  height: 1px;
  position: absolute;
  inset: auto;
  opacity: 0;
  pointer-events: none;
}

.quote-page-form {
  max-width: 780px;
}

.product-mobile-bar {
  display: none;
}

@media (max-width: 1100px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .product-info-panel {
    position: static;
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .product-main-media {
    min-height: auto;
    aspect-ratio: 4 / 5;
  }

  .quote-review {
    grid-template-columns: 1fr;
  }

  .quote-review__summary {
    position: static;
  }
}

@media (max-width: 760px) {
  body.product-detail {
    padding-bottom: 0;
  }

  body.product-detail.product-dock-active {
    padding-bottom: calc(90px + env(safe-area-inset-bottom));
  }

  .product-shell--wide {
    width: min(100% - 28px, 1480px);
  }
.product-detail-section {
    padding-top: 16px;
  }

  .product-detail-grid {
    display: grid;
    gap: 0;
  }

  .product-info-panel {
    display: contents;
    gap: 0;
  }

  .product-summary-block {
    display: contents;
  }

  .product-media-column {
    display: contents;
  }

  #product-gallery-title,
  .product-summary-block .home-kicker {
    display: none;
  }

  .product-breadcrumb {
    margin-bottom: 12px;
    gap: 6px;
    font-size: 10px;
    line-height: 1.35;
  }

  .product-summary-block > * {
    order: 0;
  }

  .product-summary-block h1 {
    order: 1;
    margin-top: 0;
  }

  .product-type {
    order: 2;
  }

  .product-price-line {
    order: 3;
  }

  .product-payment-block {
    order: 11;
  }

  .product-main-media {
    order: 4;
  }

  .product-gallery__thumbs {
    order: 5;
  }

  .product-action-block {
    order: 6;
  }

  .product-quote-feedback {
    order: 7;
  }

  .product-summary {
    order: 8;
  }

  .product-mobile-status {
    order: 9;
  }

  .product-personalise-block {
    order: 10;
  }

  .product-trust-block {
    order: 13;
  }

  .product-additional-block {
    order: 14;
  }

  .product-summary-block h1 {
    font-size: clamp(2.05rem, 10.2vw, 3.1rem);
    line-height: 0.94;
  }

  .product-type {
    margin-top: 8px;
    font-size: 11px;
    line-height: 1.35;
  }

  .product-price-line {
    gap: 3px;
    margin-top: 14px;
  }

  .product-payment-block {
    margin-top: 14px;
    padding: 12px 14px 14px;
    gap: 8px;
  }

  .product-payment-method strong {
    font-size: 13px;
  }

  .product-payment-method__brand {
    gap: 6px;
  }

  .product-payment-method__brand img {
    width: 78px;
  }

  .product-payment-method__brand span {
    font-size: 13px;
  }

  .product-payment-method p {
    font-size: 12px;
    line-height: 1.4;
  }

  .product-price-line strong {
    font-size: 1.8rem;
  }

  .product-summary {
    margin-top: 22px;
    font-size: 16px;
  }

  .product-key-facts {
    display: none;
  }

  .site-page-facts {
    grid-template-columns: 1fr;
  }

  .product-key-facts,
  .product-fabric-layout,
  .product-fabric-enquiry,
  .product-options-form,
  .product-conditional-fields {
    grid-template-columns: 1fr;
  }

  .product-main-media {
    width: 100%;
    aspect-ratio: 4 / 5;
    margin-top: 14px;
    min-height: 0;
  }

  .product-main-media img {
    padding: 10px;
  }

  .product-gallery__thumbs {
    grid-template-columns: repeat(7, minmax(84px, 1fr));
    margin-top: 10px;
    scroll-snap-type: x proximity;
  }

  .product-gallery__thumbs button {
    min-width: 84px;
    scroll-snap-align: start;
  }

  .product-action-block .home-button {
    width: 100%;
  }

  .product-mobile-status {
    margin: 0;
    color: rgba(23, 20, 18, 0.64);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.5;
    text-transform: uppercase;
  }

  .quote-line,
  .quote-line__controls {
    grid-template-columns: 1fr;
  }

  .product-mobile-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 40;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
    align-items: center;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(23, 20, 18, 0.12);
    background: #fff;
    box-shadow: 0 -12px 24px rgba(23, 20, 18, 0.06);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(100%);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .product-mobile-bar.is-visible {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0);
  }

  .product-mobile-bar span {
    display: grid;
    gap: 2px;
    min-width: 0;
  }

  .product-mobile-bar strong {
    color: #171412;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
  }

  .product-mobile-bar small {
    color: rgba(23, 20, 18, 0.64);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .product-mobile-bar small[hidden] {
    display: none;
  }

  .product-mobile-bar a,
  .product-mobile-bar button {
    min-height: 42px;
    border: 1px solid #171412;
    border-radius: 0;
    padding: 0 12px;
    background: #171412;
    color: #fffaf3;
    font: inherit;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
  }

  .product-mobile-bar a {
    background: transparent;
    color: #171412;
  }

  .product-whatsapp-float {
    position: fixed;
    right: 14px;
    bottom: calc(20px + env(safe-area-inset-bottom));
    z-index: 46;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid rgba(23, 20, 18, 0.16);
    background: #fff;
    color: #171412;
    box-shadow: none;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
  }

  .product-whatsapp-float img {
    display: block;
    width: 18px;
    height: auto;
    flex: 0 0 auto;
  }

  .product-dock-active .product-whatsapp-float {
    bottom: calc(84px + env(safe-area-inset-bottom));
  }

  .quote-page .product-whatsapp-float,
  .product-whatsapp-float--raised {
    bottom: calc(92px + env(safe-area-inset-bottom));
  }

  .product-whatsapp-float:hover,
  .product-whatsapp-float:focus-visible {
    background: #171412;
    color: #fff;
  }
}

@media (max-width: 420px) {
  .product-mobile-bar {
    grid-template-columns: 1fr 1fr;
    padding-inline: 8px;
  }

  .product-mobile-bar span {
    grid-column: 1 / -1;
  }

  .product-mobile-bar a,
  .product-mobile-bar button {
    padding-inline: 9px;
    font-size: 10px;
  }
}

body.product-detail.product-dock-active .product-related-section {
  padding-bottom: calc(72px + env(safe-area-inset-bottom));
}

/* Monochrome architectural refinement */
.home-header__nav a,
.home-footer__nav a,
.product-footer__nav a {
  border: 0;
  background: transparent;
  color: rgba(23, 20, 18, 0.8);
}

.home-header__nav a:hover,
.home-header__nav a:focus-visible,
.home-footer__nav a:hover,
.home-footer__nav a:focus-visible,
.product-footer__nav a:hover,
.product-footer__nav a:focus-visible {
  background: transparent;
  color: #171412;
}

.home-button--primary,
.product-mobile-bar button,
.quote-submit {
  background: #171412;
  color: #fff;
}

.home-button--primary:hover,
.home-button--primary:focus-visible,
.product-mobile-bar button:hover,
.product-mobile-bar button:focus-visible,
.quote-submit:hover,
.quote-submit:focus-visible {
  background: #11100f;
  color: #fff;
}

.home-button--secondary,
.product-mobile-bar a,
.quote-line__remove {
  border: 1px solid rgba(23, 20, 18, 0.18);
  background: #fff;
  color: #171412;
}

.home-button--secondary:hover,
.home-button--secondary:focus-visible,
.product-mobile-bar a:hover,
.product-mobile-bar a:focus-visible,
.quote-line__remove:hover,
.quote-line__remove:focus-visible {
  border-color: #171412;
  background: #171412;
  color: #fff;
}

.home-button--secondary:active,
.product-mobile-bar a:active,
.product-mobile-bar button:active,
.quote-submit:active {
  transform: translateY(0);
}

.product-page {
  background: #fff;
}

.product-header,
.product-footer {
  background: rgba(255, 255, 255, 0.96);
}

.product-main {
  background: #fff;
}

.product-section--warm,
.product-section--soft {
  background: #f7f7f7;
}

.product-card__media,
.product-hero__image,
.product-gallery__stage,
.product-preview__frame,
.product-main-media,
.product-fabric-preview,
.quote-line img {
  background: #f6f6f6;
}

.product-card__meta > *,
.product-chip,
.product-dimensions__group,
.product-fabric-swatch,
.product-fabric-option,
.product-options-form input,
.product-options-form select,
.product-options-form textarea,
.product-page .field input,
.product-page .field select,
.product-page .field textarea,
.quote-line__controls input,
.quote-line__controls textarea {
  border-color: rgba(23, 20, 18, 0.16);
  background: #fff;
  color: #171412;
}

.product-card__meta > *,
.product-chip,
.product-dimensions__group,
.product-fabric-swatch,
.product-fabric-option {
  box-shadow: none;
}

.product-gallery__thumbs button span {
  background: #f6f6f6;
}

.product-gallery__thumbs button[aria-pressed="true"] span,
.product-fabric-swatch[aria-pressed="true"],
.product-fabric-option[aria-pressed="true"] {
  border-color: #171412;
  background: #f3f3f3;
}

.product-accordion {
  border-top-color: rgba(23, 20, 18, 0.12);
  background: #fff;
}

.product-accordion:last-child {
  border-bottom-color: rgba(23, 20, 18, 0.12);
}

.product-accordion summary::after {
  color: rgba(23, 20, 18, 0.6);
}

.product-accordion__body,
.product-info-block,
.product-panel,
.quote-review__summary,
.quote-line {
  border-color: rgba(23, 20, 18, 0.12);
}

.product-info-block,
.product-panel,
.quote-review__summary {
  background: #fff;
}

.product-key-facts,
.product-card__facts,
.quote-review__list {
  border-color: rgba(23, 20, 18, 0.12);
}

.product-type,
.product-price-line span,
.product-mobile-bar small,
.product-key-facts dt,
.product-fabric-taxonomy span,
.product-card__lede,
.product-index-hero__lede,
.product-hero__lede,
.product-copy p,
.product-panel p,
.product-preview__copy p,
.product-cta p,
.quote-review__summary p,
.quote-review__empty,
.quote-line__options,
.product-note,
.quote-line__meta dt,
.quote-review__summary dt {
  color: rgba(23, 20, 18, 0.64);
}

.product-card__title,
.product-card__facts dd,
.product-hero__facts dd,
.product-summary-block h1,
.product-price-line strong,
.product-key-facts dd,
.product-summary,
.product-selected-line,
.product-info-block h2,
.product-related h2,
.product-accordion summary,
.quote-review h2,
.quote-contact h2,
.quote-line h3,
.quote-line__meta dd,
.quote-review__summary dd {
  color: #171412;
}

.product-page .field input:focus,
.product-page .field textarea:focus,
.product-page .field select:focus,
.quote-line__controls input:focus,
.quote-line__controls textarea:focus,
.product-options-form input:focus,
.product-options-form select:focus,
.product-options-form textarea:focus {
  border-color: #171412;
  box-shadow: 0 0 0 3px rgba(23, 20, 18, 0.08);
}

.product-gallery__thumbs button:focus-visible,
.product-fabric-swatch:focus-visible,
.product-fabric-option:focus-visible,
.product-mobile-bar a:focus-visible,
.product-mobile-bar button:focus-visible,
.quote-line__remove:focus-visible,
.product-accordion summary:focus-visible,
.product-page .field input:focus-visible,
.product-page .field textarea:focus-visible,
.product-page .field select:focus-visible,
.quote-submit:focus-visible,
.home-header__nav a:focus-visible,
.home-footer__nav a:focus-visible,
.product-footer__nav a:focus-visible,
.home-button--secondary:focus-visible {
  outline-color: #171412;
}

.home-footer.site-footer,
.product-footer.site-footer,
.site-footer.site-footer {
  background: var(--charcoal);
  color: rgba(255, 250, 243, 0.72);
}

.home-footer.site-footer .site-footer__statement,
.home-footer.site-footer .site-footer__location,
.home-footer.site-footer .site-footer__copyright,
.product-footer.site-footer .site-footer__statement,
.product-footer.site-footer .site-footer__location,
.product-footer.site-footer .site-footer__copyright,
.site-footer.site-footer .site-footer__statement,
.site-footer.site-footer .site-footer__location,
.site-footer.site-footer .site-footer__copyright {
  color: rgba(255, 250, 243, 0.78);
}

/* Homepage typography and pill CTAs */
.home-native .home-kicker,
.home-native .eyebrow {
  font-size: clamp(0.8125rem, 0.9vw, 0.9375rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.home-native .home-positioning h2 {
  font-size: clamp(2.5rem, 7vw, 5.25rem);
  line-height: 0.98;
}

.home-native .home-section__intro h2,
.home-native .home-editorial__copy h2,
.home-native .home-craft h2,
.home-native .home-cta h2 {
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  line-height: 1;
}

.home-native .home-project h3,
.home-native .home-collection h3 {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  line-height: 1.05;
}

.home-native .home-positioning p,
.home-native .home-section__intro p,
.home-native .home-editorial__copy p,
.home-native .home-craft__text p,
.home-native .home-cta p,
.home-native .home-collection p,
.home-native .home-service p,
.home-native .home-project p,
.home-native .home-process__steps p,
.home-native .home-faq__panel p {
  font-size: clamp(1.0625rem, 1.2vw, 1.1875rem);
  line-height: 1.55;
}

.home-native .home-actions {
  gap: 14px;
}

.home-native .home-actions--stacked {
  gap: 12px;
}

.home-native .home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    transform 220ms var(--ease),
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.home-native .home-button:hover,
.home-native .home-button:focus-visible {
  transform: translateY(-1px);
}

.home-native .home-button--primary {
  background: #171412;
  border-color: #171412;
  color: #fff;
}

.home-native .home-button--primary:hover,
.home-native .home-button--primary:focus-visible {
  background: #11100f;
  border-color: #11100f;
  color: #fff;
}

.home-native .home-button--secondary {
  background: #fff;
  border-color: rgba(23, 20, 18, 0.18);
  color: #171412;
}

.home-native .home-button--secondary:hover,
.home-native .home-button--secondary:focus-visible {
  background: #fff;
  border-color: #171412;
  color: #171412;
}

.home-native .home-positioning .home-kicker,
.home-native .home-editorial__copy .home-kicker,
.home-native .home-cta .home-kicker,
.home-native .home-section__intro .home-kicker {
  font-size: clamp(0.8125rem, 0.9vw, 0.9375rem);
  line-height: 1.3;
}

.home-native .home-section--cta .home-kicker {
  color: rgba(255, 255, 255, 0.68);
}

.home-native .home-section--cta .home-button--primary {
  background: #fff;
  border-color: #fff;
  color: #171412;
}

.home-native .home-section--cta .home-button--primary:hover,
.home-native .home-section--cta .home-button--primary:focus-visible {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.92);
  color: #171412;
}

.home-native .home-section--cta .home-button--secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.82);
  color: #fff;
}

.home-native .home-section--cta .home-button--secondary:hover,
.home-native .home-section--cta .home-button--secondary:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
  color: #fff;
}

@media (max-width: 768px) {
  .home-native .home-actions,
  .home-native .home-button {
    width: 100%;
  }

  .home-native .home-button {
    padding-inline: 16px;
  }

  .process-page__grid {
    display: block;
  }

  .process-page__figure {
    width: 100%;
    aspect-ratio: auto;
    margin: 0 0 18px;
  }

  .process-page__figure img {
    width: 100%;
    height: auto;
    max-width: none;
    padding: 0;
  }

  .process-page__content {
    display: grid;
    gap: 14px;
  }

  .process-page__details {
    grid-template-columns: 1fr;
  }

  .process-page__cta {
    padding: 22px 18px;
  }

  .process-page__cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .process-page__cta-actions .home-button {
    width: 100%;
    min-width: 0;
  }
}

.intro-copy h1 {
  font-size: clamp(2.5rem, 7vw, 5.25rem);
  line-height: 0.98;
}

.scene-copy h2 {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  line-height: 1.05;
}

.intro-copy p:last-child,
.scene-copy p:not(.scene-count) {
  font-size: clamp(1.0625rem, 1.2vw, 1.1875rem);
  line-height: 1.55;
}

.eyebrow,
.scene-count {
  font-size: clamp(0.8125rem, 0.9vw, 0.9375rem);
  line-height: 1.3;
}
