:root {
  --white: #ffffff;
  --paper: #f3f4f0;
  --paper-deep: #e7e9e3;
  --ink: #292b28;
  --muted: #666a64;
  --line: #d8dcd4;
  --terracotta: #ad5c2c;
  --terracotta-dark: #8d451f;
  --green: #2e6a4d;
  --amber: #9b671d;
  --red: #9b4138;
  --container: 1240px;
  --active-shade: #d6b36a;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

button {
  border: 0;
}

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

h1,
h2 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.05;
}

h1 {
  max-width: 670px;
  font-size: 64px;
}

h2 {
  max-width: 760px;
  font-size: 46px;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.25;
}

p {
  color: var(--muted);
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid #2c78b9;
  outline-offset: 3px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid var(--terracotta);
  border-radius: 6px;
  color: var(--white);
  background: var(--terracotta);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  border-color: var(--terracotta-dark);
  background: var(--terracotta-dark);
}

.button:active {
  transform: translateY(1px);
}

.button--large {
  min-height: 56px;
  padding: 16px 24px;
}

.button--small {
  min-height: 42px;
  padding: 10px 16px;
}

.button--full {
  width: 100%;
}

.button--light {
  border-color: var(--white);
  color: var(--ink);
  background: var(--white);
}

.button--light:hover {
  border-color: var(--paper-deep);
  background: var(--paper-deep);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--terracotta-dark);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
}

.header-inner {
  display: grid;
  min-height: 72px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1;
}

.brand span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.site-nav a,
.header-phone {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.header-phone:hover {
  color: var(--terracotta-dark);
}

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

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--ink);
}

.hero {
  overflow: hidden;
  background: var(--white);
}

.hero-grid {
  display: grid;
  min-height: 600px;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: 56px;
  padding-top: 28px;
  padding-bottom: 28px;
}

.hero-copy {
  padding-block: 20px;
}

.product-line,
.section-kicker {
  margin-bottom: 16px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-promise {
  max-width: 620px;
  margin-bottom: 26px;
  color: #4f534e;
  font-size: 21px;
}

.hero-offer {
  display: flex;
  align-items: center;
  gap: 22px;
}

.hero-price {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
}

.hero-price strong {
  font-size: 28px;
  line-height: 1.15;
}

.hero-price span,
.discount-note {
  color: var(--muted);
  font-size: 13px;
}

.discount-note {
  margin: 10px 0 22px;
}

.hero-guarantees {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-guarantees li {
  position: relative;
  padding-left: 20px;
  color: #4e534e;
  font-size: 14px;
  font-weight: 700;
}

.hero-guarantees li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--green);
  content: "✓";
}

.hero-media {
  position: relative;
  align-self: stretch;
  margin: 0;
  overflow: hidden;
  background: var(--paper);
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-media img {
  min-height: 520px;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  right: 24px;
  bottom: 24px;
  min-width: 180px;
  padding: 13px 16px;
  border-left: 4px solid var(--active-shade);
  background: rgba(255, 255, 255, 0.94);
}

.hero-shade span,
.active-product span,
.selected-product span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-shade strong {
  display: block;
  margin-top: 2px;
  font-size: 17px;
}

.hero-swatches {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  gap: 8px;
  padding: 9px;
  background: rgba(255, 255, 255, 0.94);
}

.hero-swatches button,
.order-shades button {
  position: relative;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--swatch);
  box-shadow: 0 0 0 1px #a4a8a2;
  cursor: pointer;
}

.hero-swatches button.is-active::after,
.order-shades button.is-active::after {
  position: absolute;
  inset: -5px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  content: "";
}

.media-label {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 9px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 700;
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
  min-height: 118px;
  padding: 24px 26px;
  border-left: 1px solid var(--line);
}

.trust-grid > div:last-child {
  border-right: 1px solid var(--line);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  margin-bottom: 4px;
  font-size: 15px;
}

.trust-grid span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.section {
  padding-block: 104px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 44px;
}

.section-heading h2,
.section-heading p,
.section-copy h2 {
  margin-bottom: 0;
}

.section-heading > p {
  font-size: 17px;
}

.result-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(480px, 1.32fr);
  align-items: center;
  gap: 80px;
}

.section-copy > p:not(.section-kicker) {
  max-width: 560px;
  margin-bottom: 28px;
  font-size: 17px;
}

.comparison {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--paper-deep);
}

.comparison > img,
.comparison-after,
.comparison-after img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-after {
  clip-path: inset(0 0 0 var(--position));
}

.comparison-label {
  position: absolute;
  z-index: 2;
  top: 18px;
  padding: 6px 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 800;
}

.comparison-label--before {
  left: 18px;
}

.comparison-label--after {
  right: 18px;
}

.comparison-line {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 2px;
  background: var(--white);
  transform: translateX(-1px);
  pointer-events: none;
}

.comparison-line::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 2px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: var(--terracotta);
  content: "↔";
  font-size: 20px;
  transform: translate(-50%, -50%);
}

.comparison input {
  position: absolute;
  z-index: 4;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.reviews-section {
  background: var(--white);
}

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

.review-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.review-card img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
}

.review-card h3 {
  margin: 0;
  font-size: 16px;
}

.review-rating {
  display: block;
  margin: 4px 0 8px;
  color: var(--terracotta);
  letter-spacing: 0;
}

.review-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.showroom-section {
  background: var(--paper);
}

.showroom-heading {
  margin-bottom: 26px;
}

.room-tabs,
.mode-switch {
  display: inline-flex;
  border: 1px solid #bfc4bb;
  border-radius: 6px;
  overflow: hidden;
  background: var(--white);
}

.room-tabs {
  margin-bottom: 22px;
}

.room-tabs button,
.mode-switch button {
  min-height: 44px;
  padding: 10px 18px;
  border-right: 1px solid #bfc4bb;
  background: var(--white);
  font-weight: 700;
  cursor: pointer;
}

.room-tabs button:last-child,
.mode-switch button:last-child {
  border-right: 0;
}

.room-tabs button[aria-pressed="true"],
.mode-switch button.is-active {
  color: var(--white);
  background: var(--ink);
}

.showroom-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 26px;
}

.room-visual {
  position: relative;
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  background: var(--paper-deep);
}

.room-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-visual figcaption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.94);
  font-size: 13px;
}

.shade-panel {
  display: grid;
  min-width: 0;
  grid-template-rows: minmax(0, 1fr) auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.active-product {
  display: grid;
  min-height: 0;
  grid-template-columns: 1fr;
  grid-template-rows: 190px auto;
  gap: 12px;
  padding-bottom: 16px;
}

.active-product img {
  width: 100%;
  height: 190px;
  min-height: 0;
  object-fit: cover;
  background: var(--paper-deep);
}

.active-product > div {
  padding-inline: 4px;
}

.active-product strong,
.active-product small {
  display: block;
}

.active-product strong {
  margin: 3px 0 2px;
  font-size: 17px;
}

.active-product small {
  color: var(--muted);
}

.shade-list {
  border-top: 1px solid var(--line);
}

.shade-list button {
  display: grid;
  width: 100%;
  min-height: 54px;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 4px;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.shade-list button:last-child {
  border-bottom: 0;
}

.shade-list button > span {
  width: 22px;
  height: 22px;
  border: 1px solid #989d96;
  border-radius: 50%;
  background: var(--swatch);
}

.shade-list button strong {
  font-size: 14px;
}

.shade-list button small {
  color: var(--muted);
}

.shade-list button.is-active {
  color: var(--terracotta-dark);
}

.shade-list button.is-active strong::after {
  margin-left: 8px;
  color: var(--green);
  content: "✓";
}

.details-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 60px;
}

.video-preview {
  position: relative;
  min-width: 0;
  aspect-ratio: 16 / 9;
  padding: 0;
  overflow: hidden;
  background: var(--ink);
  cursor: pointer;
}

.video-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.video-preview::after {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  content: "";
}

.video-preview .play-button {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--terracotta);
  font-size: 22px;
  transform: translate(-50%, -50%);
}

.video-preview strong {
  position: absolute;
  z-index: 2;
  bottom: 18px;
  left: 20px;
  color: var(--white);
  font-size: 16px;
}

.spec-list {
  margin-bottom: 0;
  border-top: 1px solid var(--line);
}

.spec-list > div {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

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

.spec-list dd {
  margin-bottom: 0;
  font-weight: 800;
  text-align: right;
}

.guidance-disclosure {
  border: 0;
}

.guidance-disclosure > summary {
  display: none;
}

.guidance-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 54px;
  margin-top: 64px;
  padding-top: 44px;
  border-top: 1px solid var(--line);
}

.guidance-disclosure + .guidance-disclosure {
  padding-left: 54px;
  border-left: 1px solid var(--line);
}

.guidance-heading h3 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 400;
}

.install-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.install-steps li {
  display: grid;
  min-height: 0;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.install-steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.install-steps li > span {
  color: var(--terracotta);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.install-steps strong {
  font-size: 17px;
}

.install-steps p {
  margin: 4px 0 0;
}

.guidance-panel .install-steps,
.guidance-panel .surface-grid {
  margin-top: 22px;
}

.surface-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.surface-grid > div {
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.surface-grid > div:last-child {
  border-bottom: 1px solid var(--line);
}

.surface-state {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}

.surface-state--good { color: var(--green); }
.surface-state--prep { color: var(--amber); }
.surface-state--avoid { color: var(--red); }

.inspiration-section {
  background: var(--paper);
}

.inspiration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.inspiration-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.inspiration-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.inspiration-grid figcaption {
  padding: 16px 18px 18px;
}

.inspiration-grid figcaption span,
.inspiration-grid figcaption strong {
  display: block;
}

.inspiration-grid figcaption span {
  margin-bottom: 3px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.order-section {
  background: var(--white);
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.order-builder {
  grid-column: 1;
  grid-row: 1;
  padding-right: 64px;
  border-right: 1px solid var(--line);
}

.order-step {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  padding-block: 34px;
  border-bottom: 1px solid var(--line);
}

.order-step:last-child {
  border-bottom: 0;
}

.step-number {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.order-shades {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 14px;
}

.order-shades strong {
  margin-left: 6px;
}

.mode-switch {
  margin: 5px 0 20px;
}

.dimension-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.dimension-fields label,
.lead-form > label,
.contact-fields label {
  display: grid;
  gap: 7px;
  color: #4c504b;
  font-size: 13px;
  font-weight: 700;
}

.dimension-fields input,
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  border: 1px solid #bfc4bb;
  border-radius: 4px;
  outline: 0;
  background: var(--white);
}

.lead-form textarea {
  resize: vertical;
}

.dimension-fields input:focus,
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 2px rgba(41, 43, 40, 0.12);
}

.calc-output {
  margin-top: 18px;
  padding: 18px 20px;
  border-left: 4px solid var(--green);
  background: var(--paper);
}

.calc-output > p {
  margin-bottom: 0;
}

.calc-output dl {
  margin-bottom: 0;
}

.calc-output dl > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 6px 0;
}

.calc-output dt {
  color: var(--muted);
  font-size: 14px;
}

.calc-output dd {
  margin-bottom: 0;
  font-weight: 800;
}

.calc-output .calc-total {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.calc-output .calc-total dd {
  color: var(--green);
  font-size: 24px;
}

.reserve-note {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.order-summary {
  padding: 24px 0 30px 60px;
  border-top: 1px solid var(--line);
}

.order-summary .selected-product {
  grid-template-columns: 86px minmax(0, 1fr);
  margin-bottom: 18px;
  padding-bottom: 18px;
}

.order-summary .selected-product img {
  width: 86px;
  height: 86px;
}

.order-reassurance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 10px;
}

.order-reassurance span {
  padding-left: 14px;
  border-left: 3px solid var(--green);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.lead-panel {
  grid-column: 2;
  grid-row: 1;
  padding: 34px 0 34px 64px;
}

.selected-product {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.selected-product img {
  width: 112px;
  height: 112px;
  aspect-ratio: 1;
  object-fit: cover;
}

.selected-product strong,
.selected-product small {
  display: block;
}

.selected-product strong {
  margin: 4px 0;
  font-size: 19px;
}

.selected-product small {
  color: var(--muted);
}

.lead-form {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 16px 12px;
}

.lead-form > :not(.step-number) {
  grid-column: 2;
}

.contact-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-title h3,
.form-title p {
  margin-bottom: 4px;
}

.form-title p {
  font-size: 14px;
}

.lead-form label > span {
  color: var(--muted);
  font-weight: 400;
}

.comment-disclosure > summary {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #4c504b;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  list-style: none;
}

.comment-disclosure > summary::-webkit-details-marker {
  display: none;
}

.comment-disclosure > summary::after {
  content: "+";
  color: var(--green);
  font-size: 22px;
  line-height: 1;
}

.comment-disclosure[open] > summary::after {
  content: "\2212";
}

.comment-disclosure > summary span {
  margin-left: auto;
  color: var(--muted);
  font-weight: 400;
}

.comment-disclosure > label {
  display: grid;
  gap: 7px;
  margin-top: 12px;
  color: #4c504b;
  font-size: 13px;
  font-weight: 700;
}

.lead-form .consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 9px;
  font-size: 12px;
  font-weight: 400;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  padding: 0;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px !important;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 24px;
  margin: -4px 0 0;
  font-size: 13px;
  font-weight: 700;
}

.form-status[data-state="error"] { color: var(--red); }
.form-status[data-state="success"] { color: var(--green); }

.messenger-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  color: var(--muted);
  font-size: 13px;
}

.messenger-links a {
  color: var(--terracotta-dark);
  font-weight: 700;
}

.delivery-section {
  background: var(--paper);
}

.delivery-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  gap: 90px;
}

.delivery-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.delivery-steps li {
  display: grid;
  min-height: 110px;
  grid-template-columns: 50px 1fr;
  align-items: start;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.delivery-steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.delivery-steps li > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  font-weight: 800;
}

.delivery-steps p {
  margin: 4px 0 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.64fr) minmax(0, 1.36fr);
  gap: 90px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 22px 46px 22px 0;
  font-size: 17px;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary::after {
  position: absolute;
  top: 20px;
  right: 6px;
  color: var(--terracotta);
  content: "+";
  font-size: 24px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  max-width: 720px;
  margin-bottom: 22px;
}

.final-band {
  padding-block: 58px;
  color: var(--white);
  background: var(--green);
}

.final-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.final-inner h2 {
  margin-bottom: 8px;
  font-size: 38px;
}

.final-inner p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  padding: 62px 0 24px;
  color: var(--white);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 70px;
  padding-bottom: 48px;
}

.brand--footer strong,
.brand--footer span {
  color: var(--white);
}

.footer-grid p {
  max-width: 380px;
  margin: 18px 0 0;
  color: #bfc3bd;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-grid > div:not(:first-child) strong {
  margin-bottom: 7px;
}

.footer-grid a {
  color: #d9ddd6;
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 22px;
  border-top: 1px solid #484c47;
  color: #aeb3ac;
  font-size: 12px;
}

.mobile-order {
  display: none;
}

.video-dialog {
  width: min(900px, calc(100% - 32px));
  max-width: none;
  max-height: calc(100vh - 32px);
  max-height: calc(100dvh - 32px);
  padding: 0;
  border: 0;
  border-radius: 6px;
  overflow: hidden;
  background: var(--ink);
}

.video-dialog[open] {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.video-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

.dialog-header {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 16px 12px 22px;
  color: var(--white);
}

.dialog-header h2 {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.dialog-header button {
  width: 38px;
  height: 38px;
  color: var(--white);
  background: transparent;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.video-dialog video {
  width: 100%;
  min-height: 0;
  max-height: calc(100vh - 152px);
  max-height: calc(100dvh - 152px);
  object-fit: contain;
  background: #000000;
}

.video-fallback {
  display: block;
  padding: 12px 18px 16px;
  color: var(--white);
  font-size: 13px;
  text-align: center;
  text-underline-offset: 3px;
}

@media (max-width: 1100px) {
  h1 { font-size: 54px; }
  h2 { font-size: 42px; }

  .site-nav {
    gap: 18px;
  }

  .header-phone {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
    gap: 36px;
  }

  .trust-grid > div {
    padding-inline: 18px;
  }

  .section-heading,
  .result-grid,
  .delivery-layout,
  .faq-layout {
    gap: 54px;
  }

  .showroom-stage {
    grid-template-columns: minmax(0, 1fr) 280px;
  }

  .details-grid {
    gap: 40px;
  }

  .order-builder {
    padding-right: 40px;
  }

  .lead-panel {
    padding-left: 40px;
  }
}

@media (max-width: 900px) {
  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .site-nav {
    position: fixed;
    z-index: 99;
    top: 72px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 18px 22px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
  }

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

  .site-nav a {
    padding: 14px 6px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

  .menu-button {
    display: block;
  }

  .hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 48px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero-media {
    min-height: 430px;
  }

  .hero-media img {
    min-height: 430px;
  }

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

  .trust-grid > div:nth-child(3) {
    border-top: 1px solid var(--line);
  }

  .trust-grid > div:nth-child(4) {
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
  }

  .section {
    padding-block: 80px;
  }

  .section-heading,
  .result-grid,
  .details-grid,
  .delivery-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 16px;
  }

  .result-grid {
    gap: 36px;
  }

  .showroom-stage {
    grid-template-columns: 1fr;
  }

  .shade-panel {
    border-top: 0;
  }

  .active-product {
    display: none;
  }

  .shade-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 0;
  }

  .shade-list button {
    display: flex;
    min-width: 0;
    min-height: 86px;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 8px 4px;
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
    text-align: center;
  }

  .shade-list button:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .shade-list button strong {
    font-size: 11px;
    line-height: 1.15;
  }

  .shade-list button small {
    display: none;
  }

  .shade-list button.is-active strong::after {
    display: none;
  }

  .details-grid,
  .delivery-layout,
  .faq-layout {
    gap: 38px;
  }

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

  .order-builder {
    grid-column: 1;
    grid-row: auto;
    padding-right: 0;
    border-right: 0;
  }

  .order-summary {
    padding: 26px 0 26px 60px;
  }

  .lead-panel {
    grid-column: 1;
    grid-row: auto;
    padding: 34px 0;
    border-top: 1px solid var(--line);
  }
}

@media (min-width: 641px) and (max-width: 900px) {
  h1 {
    font-size: 44px;
  }

  .hero-grid {
    min-height: 600px;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: 24px;
    padding-top: 26px;
    padding-bottom: 26px;
  }

  .hero-promise {
    font-size: 17px;
  }

  .hero-offer {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .hero-media,
  .hero-media img {
    min-height: 548px;
  }

  .hero-shade {
    right: 14px;
    bottom: 14px;
    left: 14px;
    min-width: 0;
  }

  .hero-swatches {
    bottom: 84px;
    left: 14px;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 66px;
  }

  body {
    padding-bottom: 70px;
    font-size: 15px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  h1 {
    margin-bottom: 14px;
    font-size: 40px;
    line-height: 1.02;
  }

  h2 {
    margin-bottom: 14px;
    font-size: 34px;
  }

  .header-inner {
    min-height: 62px;
    gap: 10px;
  }

  .brand strong {
    font-size: 22px;
  }

  .brand span {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .header-actions > .button {
    display: none;
  }

  .header-actions .button {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 13px;
  }

  .menu-button {
    width: 40px;
    height: 40px;
  }

  .site-nav {
    top: 62px;
  }

  .hero-grid {
    gap: 20px;
    padding-top: 28px;
    padding-bottom: 20px;
  }

  .product-line {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .hero-promise {
    margin-bottom: 18px;
    font-size: 17px;
    line-height: 1.4;
  }

  .hero-offer {
    align-items: stretch;
    gap: 12px;
  }

  .hero-offer .button {
    min-height: 52px;
    flex: 1 1 auto;
    padding: 12px 14px;
    font-size: 14px;
  }

  .hero-price strong {
    font-size: 21px;
  }

  .hero-price span {
    max-width: 82px;
    font-size: 11px;
    line-height: 1.25;
  }

  .discount-note {
    margin: 7px 0 14px;
    font-size: 11px;
  }

  .hero-guarantees {
    gap: 6px 14px;
  }

  .hero-guarantees li {
    padding-left: 17px;
    font-size: 12px;
  }

  .hero-media,
  .hero-media img {
    min-height: 250px;
  }

  .hero-media {
    height: 250px;
  }

  .hero-shade {
    right: 12px;
    bottom: 12px;
    min-width: 142px;
    padding: 9px 11px;
  }

  .hero-shade strong {
    font-size: 14px;
  }

  .hero-swatches {
    bottom: 12px;
    left: 12px;
    gap: 6px;
    padding: 7px;
  }

  .hero-swatches button {
    width: 24px;
    height: 24px;
  }

  .media-label {
    top: 10px;
    right: 10px;
    font-size: 9px;
  }

  .trust-grid > div {
    min-height: 96px;
    padding: 16px 12px;
  }

  .trust-grid {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .trust-grid > div {
    flex: 0 0 72%;
    border-top: 0 !important;
    border-right: 1px solid var(--line);
    scroll-snap-align: start;
  }

  .trust-grid strong {
    font-size: 13px;
    line-height: 1.25;
  }

  .trust-grid span {
    font-size: 11px;
  }

  .section {
    padding-block: 48px;
  }

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

  .section-heading > p,
  .section-copy > p:not(.section-kicker) {
    font-size: 15px;
  }

  .section-kicker {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .reviews-grid {
    display: flex;
    gap: 12px;
    padding: 0 14px 4px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .reviews-grid::-webkit-scrollbar,
  .trust-grid::-webkit-scrollbar,
  .inspiration-grid::-webkit-scrollbar {
    display: none;
  }

  .review-card {
    flex: 0 0 86%;
    scroll-snap-align: start;
  }

  .room-tabs,
  .mode-switch {
    display: grid;
    width: 100%;
  }

  .room-tabs {
    grid-template-columns: 1fr 1fr;
  }

  .mode-switch {
    grid-template-columns: 1fr 1fr;
  }

  .room-tabs button,
  .mode-switch button {
    min-width: 0;
    padding: 9px 8px;
    border-bottom: 1px solid #bfc4bb;
    font-size: 12px;
    line-height: 1.25;
  }

  .room-tabs button:nth-child(2),
  .room-tabs button:nth-child(4) {
    border-right: 0;
  }

  .room-tabs button:nth-child(3),
  .room-tabs button:nth-child(4) {
    border-bottom: 0;
  }

  .mode-switch button {
    border-bottom: 0;
  }

  .room-visual {
    aspect-ratio: 4 / 3;
  }

  .room-visual figcaption {
    right: 10px;
    bottom: 10px;
    left: 10px;
    font-size: 11px;
  }

  .shade-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .shade-list button {
    min-height: 76px;
  }

  .shade-list button > span {
    width: 20px;
    height: 20px;
  }

  .video-preview .play-button {
    width: 54px;
    height: 54px;
  }

  .video-preview strong {
    bottom: 12px;
    left: 14px;
    font-size: 13px;
  }

  .spec-list > div {
    min-height: 46px;
  }

  .guidance-layout {
    display: block;
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
  }

  .guidance-disclosure {
    border-bottom: 1px solid var(--line);
  }

  .guidance-disclosure + .guidance-disclosure {
    padding-left: 0;
    border-left: 0;
  }

  .guidance-disclosure:first-of-type {
    border-top: 1px solid var(--line);
  }

  .guidance-disclosure > summary {
    display: flex;
    min-height: 56px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: var(--ink);
    cursor: pointer;
    font-weight: 800;
    list-style: none;
  }

  .guidance-disclosure > summary::-webkit-details-marker {
    display: none;
  }

  .guidance-disclosure > summary::after {
    content: "+";
    color: var(--green);
    font-size: 24px;
    line-height: 1;
  }

  .guidance-disclosure[open] > summary::after {
    content: "\2212";
  }

  .guidance-panel {
    padding: 16px 0 28px;
  }

  .guidance-heading h3 {
    font-size: 28px;
  }

  .guidance-panel .install-steps,
  .guidance-panel .surface-grid {
    margin-top: 16px;
  }

  .inspiration-grid {
    display: flex;
    gap: 12px;
    padding-right: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .inspiration-grid figure {
    display: grid;
    flex: 0 0 86%;
    grid-template-columns: 120px 1fr;
    scroll-snap-align: start;
  }

  .inspiration-grid img {
    height: 120px;
  }

  .inspiration-grid figcaption {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    padding: 14px;
  }

  .order-reassurance {
    grid-template-columns: 1fr;
  }

  .order-reassurance {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 14px;
  }

  .order-reassurance span {
    padding-left: 10px;
    font-size: 11px;
  }

  .order-heading {
    margin-bottom: 20px;
  }

  .order-summary {
    padding: 16px 0 20px;
  }

  .order-summary .selected-product {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 13px;
    margin-bottom: 14px;
    padding-bottom: 14px;
  }

  .order-summary .selected-product img {
    width: 70px;
    height: 70px;
  }

  .order-step {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    padding-block: 20px;
  }

  .step-number {
    width: 30px;
    height: 30px;
  }

  .order-shades {
    flex-wrap: wrap;
    gap: 11px;
  }

  .order-shades button {
    width: 27px;
    height: 27px;
  }

  .order-shades strong {
    width: 100%;
    margin: 4px 0 0;
  }

  .dimension-fields {
    gap: 8px;
  }

  .calc-output {
    padding: 15px;
  }

  .calc-output .calc-total dd {
    font-size: 21px;
  }

  .lead-panel {
    padding-bottom: 18px;
  }

  .selected-product {
    grid-template-columns: 86px 1fr;
  }

  .selected-product img {
    width: 86px;
    height: 86px;
  }

  .lead-form {
    grid-template-columns: 30px minmax(0, 1fr);
    gap-block: 12px;
  }

  .contact-fields {
    gap: 8px;
  }

  .form-status:empty {
    min-height: 0;
    margin: 0;
  }

  .delivery-steps li {
    min-height: 90px;
  }

  .faq-list summary {
    padding-block: 18px;
    font-size: 15px;
  }

  .faq-list summary::after {
    top: 15px;
  }

  .final-band {
    padding-block: 44px;
  }

  .final-inner {
    align-items: stretch;
    flex-direction: column;
    gap: 22px;
  }

  .final-inner h2 {
    font-size: 32px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .mobile-order {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: 70px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px;
    border-top: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 -8px 24px rgba(41, 43, 40, 0.1);
    visibility: hidden;
    transform: translateY(calc(100% + 8px));
    transition: transform 0.2s ease, visibility 0.2s ease;
    pointer-events: none;
  }

  .mobile-order.is-visible {
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-order > div {
    display: flex;
    min-width: 0;
    flex-direction: column;
  }

  .mobile-order strong {
    font-size: 17px;
    line-height: 1.1;
  }

  .mobile-order span {
    color: var(--green);
    font-size: 11px;
    font-weight: 700;
  }

  .mobile-order .button {
    flex: 0 0 auto;
  }
}

@media (max-width: 380px) {
  h1 { font-size: 36px; }
  h2 { font-size: 31px; }

  .header-actions .button {
    display: none;
  }

  .hero-offer {
    gap: 8px;
  }

  .hero-offer .button {
    min-width: 0;
    padding-inline: 10px;
    font-size: 12px;
  }

  .hero-price {
    justify-content: center;
  }

  .hero-price strong {
    font-size: 18px;
  }

  .hero-price span {
    max-width: 70px;
    font-size: 10px;
  }

  .hero-media,
  .hero-media img {
    min-height: 215px;
  }

  .hero-media {
    height: 215px;
  }

  .hero-swatches {
    display: none;
  }

  .hero-shade {
    left: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }

  .mobile-order {
    transition: none;
  }
}

.service-body {
  min-height: 100vh;
  padding-bottom: 0;
  background: var(--paper);
}

.service-container {
  width: min(calc(100% - 48px), 980px);
  margin-inline: auto;
}

.service-header {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.service-header .service-container {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.service-header > div > a:last-child {
  color: var(--terracotta-dark);
  font-weight: 700;
  text-underline-offset: 4px;
}

.service-main {
  padding-bottom: 90px;
}

.service-title {
  padding: 84px 0 58px;
}

.service-title > p:first-child {
  margin-bottom: 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.service-title h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: 56px;
}

.service-title > p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  font-size: 18px;
}

.service-content {
  border-top: 1px solid var(--line);
}

.service-content section {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 44px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.service-content h2 {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
}

.service-content p {
  grid-column: 2;
  margin-bottom: 8px;
}

.service-content p:last-child {
  margin-bottom: 0;
}

.service-content a {
  color: var(--terracotta-dark);
  font-weight: 700;
  text-underline-offset: 3px;
}

.service-content code {
  padding: 2px 5px;
  background: var(--paper-deep);
}

.service-content .service-notice {
  margin-inline: -20px;
  padding-inline: 20px;
  border-left: 4px solid var(--amber);
  background: var(--white);
}

.thank-you-body {
  display: grid;
  place-items: center;
}

.thank-you {
  padding-block: 48px;
}

.thank-you > .brand {
  margin-bottom: 100px;
}

.thank-you > div {
  max-width: 720px;
}

.thank-you h1 {
  margin-bottom: 22px;
  font-size: 62px;
}

.thank-you > div > p:not(.section-kicker) {
  margin-bottom: 30px;
  font-size: 19px;
}

@media (max-width: 700px) {
  .service-container {
    width: min(calc(100% - 28px), 980px);
  }

  .service-header .service-container {
    min-height: 62px;
  }

  .service-title {
    padding: 52px 0 36px;
  }

  .service-title h1,
  .thank-you h1 {
    font-size: 39px;
  }

  .service-title > p:last-child,
  .thank-you > div > p:not(.section-kicker) {
    font-size: 16px;
  }

  .service-content section {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 26px 0;
  }

  .service-content p {
    grid-column: 1;
  }

  .service-content .service-notice {
    margin-inline: -10px;
    padding-inline: 14px 10px;
  }

  .thank-you > .brand {
    margin-bottom: 72px;
  }
}

/* Mobile B+ catalog redesign v14.2.0 */
.mobile-bplus-hero,
.mobile-guidance-section,
.mobile-catalog-section {
  display: none;
}

@media (max-width: 640px) {
  body {
    padding-bottom: calc(70px + env(safe-area-inset-bottom));
    overflow-x: hidden;
    background: var(--white);
  }

  main {
    display: flex;
    min-width: 0;
    flex-direction: column;
  }

  .hero { order: 1; }
  .mobile-catalog-section { order: 2; }
  .details-section { order: 3; }
  .showroom-section { order: 4; }
  .reviews-section { order: 5; }
  .mobile-guidance-section { order: 6; }
  .order-section { order: 7; }
  .delivery-section { order: 8; }
  .faq-section { order: 9; }

  .trust-strip,
  .result-section,
  .inspiration-section,
  .final-band,
  .desktop-hero-grid,
  .desktop-guidance-layout {
    display: none !important;
  }

  .mobile-bplus-hero,
  .mobile-guidance-section,
  .mobile-catalog-section {
    display: block;
  }

  .site-header {
    border-bottom: 1px solid var(--line);
    background: var(--white);
  }

  .header-inner {
    min-height: 58px;
  }

  .menu-button {
    width: 44px;
    height: 44px;
  }

  .site-nav { top: 58px; }

  .mobile-bplus-hero {
    padding-top: 16px;
    padding-bottom: 18px;
  }

  .mobile-bplus-hero .product-line {
    margin: 0 0 5px;
    color: var(--green);
    font-size: 11px;
    letter-spacing: .08em;
  }

  .mobile-bplus-hero h1 {
    max-width: 330px;
    margin: 0 0 7px;
    font-size: clamp(31px, 9vw, 38px);
    line-height: .98;
  }

  .mobile-hero-meta {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 14px;
  }

  .mobile-hero-meta strong { color: var(--ink); }
  .mobile-hero-meta > span { color: var(--muted); font-size: 12px; }

  .mobile-hero-media {
    height: clamp(230px, 66vw, 282px);
    margin: 0 0 10px;
    overflow: hidden;
    border-radius: 4px;
    background: #ece9e2;
  }

  .mobile-hero-media picture,
  .mobile-hero-media img {
    display: block;
    width: 100%;
    height: 100%;
  }

  .mobile-hero-media img {
    object-fit: cover;
    object-position: center;
  }

  .mobile-hero-buy {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 9px;
  }

  .mobile-hero-price {
    display: flex;
    flex: 0 0 auto;
    align-items: baseline;
    gap: 6px;
  }

  .mobile-hero-price strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    line-height: 1;
  }

  .mobile-hero-price span {
    color: var(--muted);
    font-size: 12px;
  }

  .hero-swatches.mobile-hero-swatches {
    position: static;
    display: flex;
    min-width: 0;
    gap: 5px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero-swatches.mobile-hero-swatches button {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-width: 1px;
  }

  .hero-swatches.mobile-hero-swatches button.is-active::after {
    inset: 4px;
  }

  .mobile-hero-cta {
    min-height: 48px;
    border-radius: 4px;
    font-size: 15px;
  }

  .mobile-hero-trust {
    margin: 7px 0 0;
    color: var(--green);
    font-size: 13px;
    font-weight: 700;
    text-align: center;
  }

  .section {
    padding-block: 36px;
    border-top: 1px solid var(--line);
  }

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

  h2 { font-size: 29px; line-height: 1.05; }

  .details-section .details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .details-section .section-heading {
    margin-bottom: 14px;
  }

  .details-section .section-heading > div .section-kicker,
  .details-section .section-heading > p {
    display: none;
  }

  .details-section .section-heading h2 {
    margin: 0;
    font-size: 27px;
  }

  .video-preview {
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 9;
    border-radius: 4px;
  }

  .video-preview .play-button {
    width: 56px;
    height: 56px;
  }

  .spec-list > div {
    min-height: 48px;
    font-size: 14px;
  }

  .showroom-heading > p { display: none; }
  .showroom-heading .section-kicker { display: none; }

  .room-tabs {
    gap: 6px;
    margin-bottom: 10px;
    border: 0;
  }

  .room-tabs button,
  .mode-switch button {
    min-height: 44px;
    padding: 10px 8px;
    border: 1px solid var(--line) !important;
    border-radius: 4px;
    background: var(--white);
    font-size: 14px;
  }

  .room-tabs button[aria-pressed="true"],
  .mode-switch button.is-active {
    border-color: var(--green) !important;
    color: var(--white);
    background: var(--green);
  }

  .showroom-stage {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .room-visual {
    aspect-ratio: 4 / 3;
    border-radius: 4px;
  }

  .shade-panel {
    padding: 0;
    border: 0;
  }

  .active-product {
    min-height: 72px;
    padding: 9px 0 0;
    border-top: 0;
  }

  .active-product img { width: 62px; height: 62px; }
  .shade-list { display: none; }

  .reviews-heading > p,
  .reviews-heading .section-kicker { display: none; }

  .reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
  }

  .review-card {
    width: 100%;
    min-width: 0;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 4px;
  }

  .mobile-guidance-section { padding-block: 20px 36px; }
  .mobile-guidance-layout { margin: 0; padding: 0; border: 0; }

  .mobile-guidance-layout .guidance-disclosure > summary {
    min-height: 58px;
    font-size: 16px;
  }

  .mobile-guidance-layout .guidance-panel { padding-bottom: 22px; }
  .mobile-guidance-layout .guidance-heading { display: none; }
  .mobile-guidance-layout .install-steps,
  .mobile-guidance-layout .surface-grid { margin-top: 0; }

  .order-heading > p { display: none; }
  .order-heading .section-kicker { display: none; }
  .order-layout { display: grid; grid-template-columns: 1fr; gap: 0; }

  .order-step,
  .lead-form {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .step-number { display: none; }
  .order-step { padding-block: 16px; }
  .order-step:first-child { padding-top: 0; }

  .order-shades button {
    width: 44px;
    height: 44px;
  }

  .dimension-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    gap: 10px;
  }

  .dimension-fields input,
  .contact-fields input,
  .lead-form select,
  .lead-form textarea {
    min-height: 48px;
    font-size: 16px;
  }

  .calc-output:has([data-calc-details][hidden]) {
    padding-bottom: 15px;
  }

  .calc-output [hidden] { display: none !important; }
  .order-summary { padding: 14px 0 18px; }
  .lead-panel { padding: 20px 0 0; border-top: 1px solid var(--line); }
  .lead-form .button { min-height: 50px; }

  .delivery-layout { display: grid; grid-template-columns: 1fr; gap: 18px; }
  .delivery-steps { grid-template-columns: 1fr; }
  .delivery-steps li { min-height: 0; padding: 16px 0; }

  .faq-layout { display: grid; grid-template-columns: 1fr; gap: 16px; }
  .faq-list summary { min-height: 56px; }

  .site-footer { padding-bottom: 22px; }

  .mobile-order {
    min-height: 66px;
    padding: 8px 14px calc(8px + env(safe-area-inset-bottom));
  }

  .mobile-order .button {
    min-width: 142px;
    min-height: 46px;
    border-radius: 4px;
  }
}

@media (max-width: 374px) {
  .hero-swatches.mobile-hero-swatches button {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .dimension-fields { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .mobile-hero-buy {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-swatches.mobile-hero-swatches {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 374px) {
  .hero-swatches.mobile-hero-swatches button {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }
}

/* v14.2.1 — compact mobile shade selector in showroom */
.mobile-showroom-shades {
  display: none;
}

@media (max-width: 640px) {
  .mobile-showroom-shades {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    margin: 0 0 10px;
    padding: 10px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .mobile-showroom-shades__meta {
    display: grid;
    min-width: 0;
    gap: 1px;
  }

  .mobile-showroom-shades__meta > span,
  .mobile-showroom-shades__meta small {
    color: var(--muted);
    font: 12px/1.25 Arial, sans-serif;
  }

  .mobile-showroom-shades__meta strong {
    overflow: hidden;
    color: var(--charcoal);
    font: 700 15px/1.25 Arial, sans-serif;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-showroom-shades__controls {
    display: grid;
    grid-template-columns: repeat(5, 44px);
    gap: 5px;
  }

  .mobile-showroom-shades__controls button {
    position: relative;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--white);
    cursor: pointer;
  }

  .mobile-showroom-shades__controls button::before {
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(35, 35, 32, .12);
    border-radius: 50%;
    background: var(--swatch);
    content: "";
  }

  .mobile-showroom-shades__controls button.is-active,
  .mobile-showroom-shades__controls button[aria-pressed="true"] {
    border-color: var(--green);
    box-shadow: inset 0 0 0 1px var(--green);
  }

  .mobile-showroom-shades__controls button.is-active::after,
  .mobile-showroom-shades__controls button[aria-pressed="true"]::after {
    position: absolute;
    right: 3px;
    bottom: 3px;
    display: grid;
    width: 14px;
    height: 14px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--green);
    content: "✓";
    font: 700 9px/1 Arial, sans-serif;
  }
}

@media (max-width: 390px) {
  .mobile-showroom-shades {
    grid-template-columns: 1fr;
  }

  .mobile-showroom-shades__meta {
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: baseline;
    column-gap: 6px;
  }

  .mobile-showroom-shades__controls {
    grid-template-columns: repeat(5, minmax(44px, 1fr));
  }

  .mobile-showroom-shades__controls button {
    width: 100%;
  }
}


/* v14.2.2 — mobile real-product catalog */
.mobile-catalog-section {
  display: none;
}

@media (max-width: 640px) {
  .mobile-catalog-section {
    padding-block: 18px 24px;
  }

  .mobile-catalog-heading {
    margin-bottom: 14px;
  }

  .mobile-catalog-heading h2 {
    margin-bottom: 4px;
    font-size: 27px;
  }

  .mobile-catalog-heading > p {
    color: var(--muted);
    font-size: 14px;
  }

  .mobile-catalog-stage {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(132px, .9fr);
    gap: 10px;
    margin-bottom: 10px;
    align-items: stretch;
  }

  .mobile-catalog-figure {
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: #f7f4ef;
  }

  .mobile-catalog-figure img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  .mobile-catalog-card {
    display: grid;
    align-content: start;
    gap: 7px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--white);
  }

  .mobile-catalog-state {
    margin: 0;
    color: var(--green);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
  }

  .mobile-catalog-card strong {
    font-size: 22px;
    line-height: 1.05;
  }

  .mobile-catalog-card small {
    color: var(--muted);
    font-size: 14px;
  }

  .mobile-catalog-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
  }

  .mobile-catalog-price strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    line-height: 1;
  }

  .mobile-catalog-price span {
    color: var(--muted);
    font-size: 14px;
  }

  .mobile-catalog-card .text-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }

  .mobile-catalog-thumbs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .mobile-catalog-thumb {
    display: grid;
    min-width: 0;
    justify-items: start;
    gap: 5px;
    padding: 6px;
    border: 1px solid var(--line);
    border-radius: 4px;
    color: var(--ink);
    background: var(--white);
    text-align: left;
  }

  .mobile-catalog-thumb img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 3px;
    object-fit: cover;
    background: #f7f4ef;
  }

  .mobile-catalog-thumb strong {
    display: block;
    width: 100%;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-catalog-thumb small {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.2;
  }

  .mobile-catalog-thumb.is-active,
  .mobile-catalog-thumb[aria-pressed="true"] {
    border-color: var(--green);
    box-shadow: inset 0 0 0 1px var(--green);
  }

  .mobile-catalog-thumb.is-active::after,
  .mobile-catalog-thumb[aria-pressed="true"]::after {
    justify-self: end;
    margin-top: -28px;
    margin-right: 4px;
    display: grid;
    width: 18px;
    height: 18px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--green);
    content: "✓";
    font: 700 10px/1 Arial, sans-serif;
  }
}

@media (max-width: 430px) {
  .mobile-catalog-stage {
    grid-template-columns: 1fr;
  }

  .mobile-catalog-card strong {
    font-size: 20px;
  }
}

@media (max-width: 374px) {
  .mobile-catalog-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* v14.2.3 — premium mobile catalog + distinct showroom stage */
.mobile-showroom-intro {
  display: none;
}

@media (max-width: 640px) {
  .mobile-catalog-section {
    padding-block: 24px 28px;
  }

  .mobile-catalog-heading .section-kicker {
    margin-bottom: 6px;
    color: var(--green);
  }

  .mobile-catalog-heading h2 {
    margin-bottom: 2px;
    letter-spacing: -.01em;
  }

  .mobile-catalog-heading > p {
    margin-top: 0;
    color: var(--charcoal);
    font-size: 15px;
  }

  .mobile-catalog-stage {
    gap: 12px;
    margin-bottom: 12px;
  }

  .mobile-catalog-figure,
  .mobile-catalog-card {
    border-radius: 6px;
  }

  .mobile-catalog-figure {
    border-color: rgba(35, 35, 32, .1);
    background: #f6f3ed;
  }

  .mobile-catalog-card {
    gap: 8px;
    padding: 14px;
    border-color: rgba(40, 122, 82, .28);
    box-shadow: inset 0 0 0 1px rgba(40, 122, 82, .08);
  }

  .mobile-catalog-state {
    letter-spacing: .04em;
  }

  .mobile-catalog-card strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: 700;
  }

  .mobile-catalog-card small {
    font-size: 13px;
  }

  .mobile-catalog-copy {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
  }

  .mobile-catalog-price {
    padding-top: 2px;
  }

  .mobile-catalog-card .text-link {
    font-weight: 700;
  }

  .mobile-catalog-thumbs {
    gap: 10px;
  }

  .mobile-catalog-thumb {
    gap: 6px;
    min-height: 44px;
    padding: 7px;
    border-radius: 6px;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease;
  }

  .mobile-catalog-thumb strong {
    font-size: 12px;
  }

  .mobile-catalog-thumb small {
    font-size: 11px;
  }

  .mobile-showroom-intro {
    display: grid;
    gap: 5px;
    margin: 0 0 14px;
    padding: 0 0 2px;
  }

  .mobile-showroom-step {
    margin: 0;
    color: var(--green);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
  }

  .mobile-showroom-intro h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    line-height: 1.08;
  }

  .mobile-showroom-intro p:last-child {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
  }

  .showroom-heading {
    margin-bottom: 12px;
  }

  .showroom-heading h2,
  .showroom-heading > p,
  .showroom-heading .section-kicker {
    display: none;
  }

  .room-tabs {
    margin-bottom: 12px;
  }

  .mobile-showroom-shades {
    margin-bottom: 12px;
    padding-block: 12px;
    border-top: 1px solid rgba(35, 35, 32, .08);
    border-bottom: 1px solid rgba(35, 35, 32, .08);
  }

  .showroom-stage {
    gap: 12px;
  }

  .room-visual {
    overflow: hidden;
    border: 1px solid rgba(35, 35, 32, .08);
    border-radius: 6px;
    background: #f6f3ed;
  }

  .room-visual figcaption {
    padding: 12px 14px;
    font-size: 14px;
    line-height: 1.35;
    background: rgba(255, 255, 255, .92);
  }

  .shade-panel {
    display: none;
  }
}

@media (max-width: 430px) {
  .mobile-catalog-card strong {
    font-size: 22px;
  }

  .mobile-showroom-intro h3 {
    font-size: 22px;
  }
}


/* v14.2.4 — mobile catalog variant 2: one active card + miniatures */
@media (max-width: 640px) {
  .mobile-catalog-section {
    padding-block: 24px 28px;
  }

  .mobile-catalog-heading {
    margin-bottom: 14px;
  }

  .mobile-catalog-heading .section-kicker {
    margin-bottom: 6px;
    color: var(--green);
  }

  .mobile-catalog-heading h2 {
    margin-bottom: 3px;
    font-size: 27px;
    letter-spacing: -.01em;
  }

  .mobile-catalog-heading > p {
    margin: 0;
    color: var(--charcoal);
    font-size: 15px;
  }

  .mobile-catalog-active {
    display: grid;
    gap: 12px;
    margin-bottom: 14px;
  }

  .mobile-catalog-figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(35, 35, 32, .08);
    border-radius: 6px;
    background: #f6f3ed;
  }

  .mobile-catalog-figure > img[data-product-image] {
    display: block;
    width: 100%;
    aspect-ratio: 1.25 / 1;
    object-fit: cover;
    object-position: center;
  }

  .mobile-catalog-texture {
    position: absolute;
    right: 12px;
    bottom: 12px;
    display: block;
    width: 92px;
    height: 92px;
    border: 3px solid rgba(255,255,255,.92);
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 24px rgba(35,35,32,.14);
    background: #fff;
  }

  .mobile-catalog-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 1;
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    color: #fff;
    background: var(--green);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
  }

  .mobile-catalog-card {
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid rgba(40,122,82,.22);
    border-radius: 6px;
    background: var(--white);
    box-shadow: inset 0 0 0 1px rgba(40,122,82,.06);
  }

  .mobile-catalog-card strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    line-height: 1.08;
    font-weight: 700;
  }

  .mobile-catalog-card small {
    color: var(--muted);
    font-size: 13px;
  }

  .mobile-catalog-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
  }

  .mobile-catalog-price strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    line-height: 1;
  }

  .mobile-catalog-price span {
    color: var(--muted);
    font-size: 14px;
  }

  .mobile-catalog-features {
    display: grid;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.4;
  }

  .mobile-catalog-features li {
    position: relative;
    padding-left: 16px;
  }

  .mobile-catalog-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--green);
    font-weight: 700;
  }

  .mobile-catalog-cta {
    min-height: 48px;
    border-radius: 4px;
  }

  .mobile-catalog-subhead {
    display: grid;
    gap: 2px;
    margin-bottom: 10px;
  }

  .mobile-catalog-subhead strong {
    font-size: 15px;
    line-height: 1.3;
  }

  .mobile-catalog-subhead span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.4;
  }

  .mobile-catalog-thumbs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
  }

  .mobile-catalog-thumb {
    position: relative;
    display: grid;
    align-content: start;
    min-width: 0;
    gap: 4px;
    padding: 6px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    text-align: left;
    color: var(--ink);
    transition: border-color .2s ease, box-shadow .2s ease;
  }

  .mobile-catalog-thumb img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 4px;
    object-fit: cover;
    background: #f7f4ef;
  }

  .mobile-catalog-thumb strong {
    display: -webkit-box;
    overflow: hidden;
    min-height: 31px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 700;
  }

  .mobile-catalog-thumb small {
    color: var(--muted);
    font-size: 10px;
    line-height: 1.2;
  }

  .mobile-catalog-thumb.is-active,
  .mobile-catalog-thumb[aria-pressed="true"] {
    border-color: var(--green);
    box-shadow: inset 0 0 0 1px var(--green);
  }

  .mobile-catalog-thumb.is-active::after,
  .mobile-catalog-thumb[aria-pressed="true"]::after {
    position: absolute;
    top: 8px;
    right: 8px;
    display: grid;
    width: 16px;
    height: 16px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--green);
    content: "✓";
    font: 700 9px/1 Arial, sans-serif;
  }
}

@media (max-width: 430px) {
  .mobile-catalog-card strong,
  .mobile-catalog-price strong {
    font-size: 22px;
  }

  .mobile-catalog-texture {
    width: 84px;
    height: 84px;
  }
}

@media (max-width: 374px) {
  .mobile-catalog-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
