:root {
  --ink: #181817;
  --muted: #66655f;
  --paper: #f7f6f2;
  --white: #ffffff;
  --cream: #efede6;
  --line: #dedcd4;
  --accent: #ee8b2d;
  --accent-dark: #bc5d12;
  --success: #23805b;
  --shadow: 0 22px 60px rgba(31, 28, 20, 0.1);
  --radius: 22px;
  --max: 1240px;
  --pad: clamp(20px, 5vw, 64px);
  --ease: cubic-bezier(.2, .75, .25, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { color: inherit; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { letter-spacing: -.045em; line-height: 1.04; }
h1 { font-size: clamp(3rem, 6.5vw, 6.5rem); margin-bottom: 1.4rem; }
h2 { font-size: clamp(2.25rem, 4.3vw, 4.4rem); margin-bottom: 1.2rem; }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.55rem); }
p { text-wrap: pretty; }
::selection { background: #ffd39f; color: #171714; }

.wrap { width: min(100%, calc(var(--max) + var(--pad) * 2)); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(64px, 8vw, 104px); }
.section--tight { padding-block: clamp(52px, 7vw, 88px); }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 1rem;
  color: var(--accent-dark);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.kicker::before { content: ""; width: 22px; height: 2px; background: var(--accent); }
.lead { color: var(--muted); font-size: clamp(1.05rem, 1.4vw, 1.2rem); max-width: 62ch; }
.eyebrow-row { display: flex; justify-content: space-between; gap: 2rem; align-items: end; margin-bottom: 2.4rem; }
.eyebrow-row > div { max-width: 760px; }
.eyebrow-row h2 { margin-bottom: .8rem; }

.disclosure {
  min-height: 34px;
  padding: .5rem var(--pad);
  background: #27241f;
  color: #f7f6f2;
  text-align: center;
  font-size: .73rem;
}
.disclosure strong { color: #ffc482; }
.disclosure a { text-decoration: underline; text-underline-offset: 2px; }

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(24, 24, 23, .09);
  backdrop-filter: blur(18px);
}
.home-page .nav {
  position: absolute;
  top: auto;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}
.nav__inner { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: .72rem; letter-spacing: 0; }
.brand__mark { width: 40px; height: 40px; flex: 0 0 auto; display: block; color: var(--ink); }
.brand__mark svg { width: 100%; height: 100%; display: block; overflow: visible; }
.brand__word { display: block; line-height: 1; }
.brand__name { display: block; color: var(--ink); font-size: 1.28rem; font-weight: 500; letter-spacing: -.065em; }
.brand__name span { font-weight: 800; }
.brand small { display: block; margin-top: 4px; color: var(--muted); font-size: .5rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.nav__links { display: flex; align-items: center; gap: clamp(1rem, 2.1vw, 2rem); font-size: .88rem; font-weight: 700; }
.nav__links a { position: relative; }
.nav__links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--accent); transition: .25s; }
.nav__links a:hover::after, .nav__links a.active::after { right: 0; }
.nav__tools { display: flex; align-items: center; gap: .55rem; }
.icon-button {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}
.icon-button svg { width: 19px; }
.cart-count { position: absolute; top: -3px; right: -3px; min-width: 18px; height: 18px; display: grid; place-items: center; background: var(--accent); border-radius: 50%; color: #201208; font-size: .65rem; font-weight: 800; }
.burger { display: none; }

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  padding: .78rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
  font-size: .9rem;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s, background .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn--dark { background: var(--ink); color: #fff; box-shadow: 0 12px 30px rgba(24, 24, 23, .18); }
.btn--dark:hover { background: #383732; }
.btn--light { background: #fff; color: var(--ink); box-shadow: 0 12px 30px rgba(0, 0, 0, .2); }
.btn--light:hover { background: #f4f1e9; }
.btn--orange { background: var(--accent); color: #261408; box-shadow: 0 12px 28px rgba(238, 139, 45, .2); }
.btn--outline { border-color: #bdbab0; background: rgba(255, 255, 255, .52); }
.btn--outline:hover { background: var(--white); }
.btn--full { width: 100%; }
.arrow { font-size: 1.35em; line-height: 0; }

.hero {
  --spot-x: 64%;
  --spot-y: 38%;
  --scene-x: 0px;
  --scene-y: 0px;
  --scene-rotate-x: 0deg;
  --scene-rotate-y: 0deg;
  position: relative;
  min-height: clamp(690px, calc(100dvh - 108px), 860px);
  overflow: hidden;
  isolation: isolate;
  background: #eee8df;
}
.home-page .hero { min-height: calc(100dvh - 34px); }
.hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; background: #eee8df; perspective: 1200px; }
.hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: radial-gradient(circle clamp(190px, 21vw, 325px) at var(--spot-x) var(--spot-y), rgba(255, 246, 221, .48) 0%, rgba(255, 222, 169, .27) 35%, rgba(255, 207, 132, .1) 59%, rgba(255, 199, 112, 0) 78%);
  mix-blend-mode: screen;
  will-change: background;
}
.hero__media img { position: absolute; inset: -1.5%; width: 103%; height: 103%; object-fit: cover; object-position: center top; }
.hero__base { z-index: 1; filter: brightness(.66) saturate(.8) contrast(.98); transform: translate3d(var(--scene-x), var(--scene-y), 0) scale(1.04) rotateX(var(--scene-rotate-x)) rotateY(var(--scene-rotate-y)); will-change: transform; }
.hero__reveal {
  --spot-x: 64%;
  --spot-y: 38%;
  --spot-r: clamp(210px, 23vw, 340px);
  z-index: 2;
  filter: brightness(1.08) saturate(1.08) contrast(1.025);
  transform: translate3d(var(--scene-x), var(--scene-y), 0) scale(1.04) rotateX(var(--scene-rotate-x)) rotateY(var(--scene-rotate-y));
  will-change: transform, -webkit-mask-image, mask-image;
  -webkit-mask-image: radial-gradient(circle var(--spot-r) at var(--spot-x) var(--spot-y), #000 0%, #000 34%, rgba(0,0,0,.9) 48%, rgba(0,0,0,.58) 66%, rgba(0,0,0,.18) 84%, transparent 100%);
  mask-image: radial-gradient(circle var(--spot-r) at var(--spot-x) var(--spot-y), #000 0%, #000 34%, rgba(0,0,0,.9) 48%, rgba(0,0,0,.58) 66%, rgba(0,0,0,.18) 84%, transparent 100%);
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(241,235,226,.76) 0%, rgba(241,235,226,.54) 29%, rgba(241,235,226,.14) 50%, rgba(241,235,226,0) 70%),
    linear-gradient(0deg, rgba(29,25,20,.12) 0%, rgba(29,25,20,0) 48%);
}
.hero__stage {
  position: relative;
  width: 100%;
  min-height: inherit;
  display: flex;
  align-items: center;
  padding: clamp(64px, 8vw, 104px) clamp(24px, 4.6vw, 76px);
}
.hero__copy { position: relative; z-index: 2; width: min(48vw, 650px); text-shadow: 0 1px 20px rgba(255,255,255,.36); }
.hero__copy .kicker, .hero__copy h1 span, .hero__copy .lead, .hero__actions, .hero__proof { opacity: 0; animation: heroRise .9s var(--ease) forwards; }
.hero__copy .kicker { animation-delay: .12s; }
.hero__copy h1 { max-width: none; margin-bottom: 1.35rem; font-size: clamp(3.55rem, 5.2vw, 5.35rem); }
.hero__copy h1 span { display: block; white-space: nowrap; }
.hero__copy h1 span:first-child { animation-delay: .22s; }
.hero__copy h1 span:last-child { animation-delay: .34s; }
.hero__copy .lead { max-width: 50ch; animation-delay: .48s; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.hero__actions { animation-delay: .6s; }
.hero__proof { display: flex; flex-wrap: wrap; gap: .6rem 1.35rem; margin-top: 2rem; color: var(--muted); font-size: .79rem; font-weight: 700; }
.hero__proof { animation-delay: .72s; }
.hero__proof span { display: inline-flex; align-items: center; gap: .45rem; }
.hero__proof span::before { content: "✓"; width: 18px; height: 18px; display: grid; place-items: center; border-radius: 50%; background: #dcece3; color: var(--success); font-size: .65rem; }
@keyframes heroRise {
  from { opacity: 0; transform: translateY(22px); filter: blur(7px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes heroZoom { from { opacity: .72; } to { opacity: 1; } }
.finder { background: #f2f0e9; }
.finder__head { margin-bottom: 2rem; }
.finder__head h2 { max-width: 13ch; }
.finder__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.finder__panel { padding: clamp(22px, 3vw, 34px); border: 1px solid var(--line); border-radius: 26px; background: var(--white); box-shadow: 0 18px 50px rgba(31, 28, 20, .055); }
.finder__panel--warm { background: #fff8ef; border-color: #ead7c1; }
.finder__title { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.35rem; }
.finder__title small { display: block; margin-bottom: .2rem; color: var(--accent-dark); font-size: .65rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.finder__title h3 { margin: 0; font-size: clamp(1.25rem, 2vw, 1.7rem); }
.finder__icon { width: 50px; height: 50px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 16px; background: var(--ink); color: #fff; }
.finder__icon svg { width: 25px; }
.finder__links { border-top: 1px solid var(--line); }
.finder__links a { min-height: 68px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 1rem; padding: .8rem .15rem; border-bottom: 1px solid var(--line); transition: padding .25s var(--ease), color .25s; }
.finder__links a:last-child { border-bottom: 0; }
.finder__links a:hover { padding-left: .55rem; color: var(--accent-dark); }
.finder__links strong, .finder__links small { display: block; }
.finder__links strong { font-size: .86rem; }
.finder__links small { margin-top: .12rem; color: var(--muted); font-size: .68rem; }
.finder__links b { font-size: 1.1rem; }

.products-section { background: var(--white); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); align-items: stretch; gap: 1rem; }
.product-card { position: relative; min-width: 0; min-height: 100%; display: flex; flex-direction: column; }
.product-card__media { position: relative; display: block; flex: 0 0 auto; aspect-ratio: .88; overflow: hidden; border-radius: 18px; background: #efeee9; }
.product-card__media img { height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.product-card__media.product-shot img { object-fit: contain; padding: clamp(18px, 3vw, 38px); background: #f1f0eb; }
.product-card__media.catalog-scene img { object-fit: cover; object-position: center; padding: 0; background: #e8e0d3; }
.product-card:hover .product-card__media img { transform: scale(1.035); }
.product-card__tag { position: absolute; top: 12px; left: 12px; z-index: 2; padding: .35rem .6rem; border-radius: 99px; background: rgba(255, 255, 255, .9); font-size: .64rem; font-weight: 800; }
.product-card__save { position: absolute; top: 12px; right: 12px; z-index: 2; width: 34px; height: 34px; border: 0; border-radius: 50%; background: rgba(255, 255, 255, .92); cursor: pointer; }
.product-card__body { min-height: 0; display: flex; flex: 1; flex-direction: column; padding: 1rem .2rem 1.35rem; }
.stock { display: flex; align-items: center; gap: .4rem; color: var(--success); font-size: .68rem; font-weight: 800; }
.stock::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 3px #dff1e8; }
.product-card h3 { margin: .55rem 0 .3rem; font-size: 1.02rem; letter-spacing: -.025em; }
.product-card p { margin-bottom: .75rem; color: var(--muted); font-size: .75rem; }
.product-card__buy { display: flex; align-items: end; justify-content: space-between; gap: .5rem; margin-top: auto; }
.product-card__price strong { display: block; font-size: 1rem; }
.product-card__price small { display: block; color: var(--muted); font-size: .62rem; }
.add-mini { width: 39px; height: 39px; border: 0; border-radius: 50%; background: var(--ink); color: #fff; cursor: pointer; font-size: 1.2rem; }

.brand-value { padding-block: clamp(72px, 9vw, 116px); overflow: hidden; background: #1f1e1b; color: #fff; }
.brand-value__layout { display: grid; grid-template-columns: minmax(280px, .75fr) minmax(0, 1.35fr); gap: clamp(40px, 7vw, 92px); align-items: start; }
.brand-value .kicker { color: #ffb66e; }
.brand-value__intro { position: sticky; top: 110px; }
.brand-value__intro h2 { max-width: 9ch; }
.brand-value__intro p { max-width: 46ch; margin-bottom: 1.6rem; color: rgba(255,255,255,.66); }
.brand-value__grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgba(255,255,255,.16); border-left: 1px solid rgba(255,255,255,.16); }
.brand-value__grid article { min-height: 230px; padding: clamp(22px, 3vw, 34px); border-right: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.brand-value__grid article > span { display: block; margin-bottom: 2.8rem; color: #ffb66e; font-size: .68rem; font-weight: 800; letter-spacing: .12em; }
.brand-value__grid h3 { margin-bottom: .7rem; font-size: 1.2rem; letter-spacing: -.025em; }
.brand-value__grid p { margin: 0; color: rgba(255,255,255,.58); font-size: .76rem; }

.rail-guide { background: var(--paper); }
.rail-guide__layout { display: grid; grid-template-columns: minmax(260px, .72fr) minmax(0, 1.65fr); gap: 1rem; align-items: stretch; }
.rail-summary { padding: clamp(24px, 3vw, 36px); border-radius: 24px; background: #ebe6dc; }
.rail-summary__label { display: inline-flex; margin-bottom: 1.1rem; padding: .42rem .65rem; border-radius: 999px; background: var(--white); color: var(--accent-dark); font-size: .62rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.rail-summary h3 { margin-bottom: 1.4rem; font-size: clamp(1.6rem, 2.6vw, 2.25rem); }
.rail-summary ul { display: grid; gap: .75rem; margin: 0 0 1.5rem; padding: 0; list-style: none; }
.rail-summary li { display: flex; align-items: center; gap: .7rem; font-size: .76rem; font-weight: 750; }
.rail-summary li span { width: 25px; height: 25px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: #fff; font-size: .65rem; }
.rail-summary p { margin: 0; padding-top: 1.25rem; border-top: 1px solid #d2cdc2; color: var(--muted); font-size: .74rem; }
.rail-steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border: 1px solid var(--line); border-radius: 24px; background: var(--white); overflow: hidden; }
.rail-steps article { position: relative; min-height: 360px; display: flex; flex-direction: column; padding: clamp(22px, 3vw, 32px); border-right: 1px solid var(--line); }
.rail-steps article:last-child { border-right: 0; }
.rail-step__number { color: var(--accent-dark); font-size: .68rem; font-weight: 800; letter-spacing: .12em; }
.rail-step__icon { width: 64px; height: 64px; display: grid; place-items: center; margin: 3rem 0 2rem; border-radius: 20px; background: #f1eee7; color: var(--ink); }
.rail-step__icon svg { width: 34px; }
.rail-steps h3 { margin-bottom: .75rem; font-size: 1.15rem; }
.rail-steps p { color: var(--muted); font-size: .75rem; }
.rail-steps small { margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--line); color: var(--accent-dark); font-size: .63rem; font-weight: 800; text-transform: uppercase; }

.system-configurator { background: #e8e3d9; border-top: 1px solid #d7d0c4; }
.config-head { align-items: end; }
.config-head h2 { max-width: 16ch; }
.config-head__status { display: inline-flex; align-items: center; gap: .55rem; margin-bottom: .5rem; color: var(--muted); font-size: .7rem; font-weight: 800; }
.config-head__status i { width: 9px; height: 9px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px rgba(35, 139, 93, .12); }
.config-shell { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(390px, .72fr); gap: 1rem; align-items: start; }
.config-controls { display: grid; gap: 1rem; }
.config-step { min-width: 0; margin: 0; padding: clamp(22px, 3vw, 34px); border: 1px solid #d6d0c6; border-radius: 24px; background: rgba(255,255,255,.76); }
.config-step legend { width: 100%; display: flex; align-items: center; gap: .75rem; padding: 0; color: var(--ink); }
.config-step legend span { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: #fff; font-size: .62rem; font-weight: 800; }
.config-step legend b { font-size: 1rem; }
.config-step > p { margin: .75rem 0 1.25rem; color: var(--muted); font-size: .73rem; }
.config-shapes { display: grid; grid-template-columns: repeat(4, 1fr); gap: .55rem; }
.config-choice { min-width: 0; min-height: 94px; display: grid; place-items: center; gap: .35rem; padding: .75rem .45rem; border: 1px solid var(--line); border-radius: 15px; background: #fff; color: var(--muted); cursor: pointer; font: inherit; font-size: .68rem; font-weight: 800; transition: border-color .2s, background .2s, color .2s, transform .2s; }
.config-choice:hover { transform: translateY(-2px); border-color: #aaa59a; color: var(--ink); }
.config-choice.active { border-color: var(--ink); background: var(--ink); color: #fff; box-shadow: 0 8px 22px rgba(24,24,23,.12); }
.config-choice svg { width: 48px; fill: none; stroke: currentColor; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.config-range { display: grid; grid-template-columns: auto auto; justify-content: space-between; gap: .55rem; margin-top: 1.35rem; }
.config-range > span { grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.config-range b, .config-label { font-size: .72rem; font-weight: 800; }
.config-range output { min-width: 52px; padding: .35rem .55rem; border-radius: 999px; background: #eee9df; color: var(--accent-dark); text-align: center; font-size: .7rem; font-weight: 800; }
.config-range input { grid-column: 1 / -1; width: 100%; height: 6px; margin-top: .25rem; appearance: none; border-radius: 99px; background: linear-gradient(90deg, var(--accent), #ddd7cb); outline: none; }
.config-range input::-webkit-slider-thumb { width: 24px; height: 24px; appearance: none; border: 5px solid #fff; border-radius: 50%; background: var(--ink); box-shadow: 0 3px 10px rgba(0,0,0,.2); cursor: grab; }
.config-range input::-moz-range-thumb { width: 14px; height: 14px; border: 5px solid #fff; border-radius: 50%; background: var(--ink); box-shadow: 0 3px 10px rgba(0,0,0,.2); cursor: grab; }
.config-range small { color: var(--muted); font-size: .6rem; }
.config-range small:last-child { text-align: right; }
.config-inline { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; align-items: end; }
.config-segmented { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin-top: .65rem; }
.config-segmented button { min-height: 48px; display: flex; align-items: center; justify-content: center; gap: .5rem; border: 1px solid var(--line); border-radius: 13px; background: #fff; color: var(--muted); cursor: pointer; font: inherit; font-size: .68rem; font-weight: 800; }
.config-segmented button.active { border-color: var(--ink); color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.swatch { width: 15px; height: 15px; border-radius: 50%; }
.swatch--black { background: #151515; }
.swatch--white { border: 1px solid #aaa; background: #fff; }
.config-range--compact { margin: 0; }
.config-profiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: .55rem; }
.config-profiles button { min-height: 126px; display: flex; flex-direction: column; align-items: flex-start; padding: 1rem; border: 1px solid var(--line); border-radius: 15px; background: #fff; color: var(--ink); text-align: left; cursor: pointer; font: inherit; }
.config-profiles button.active { border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink), 0 8px 20px rgba(24,24,23,.07); }
.config-profiles b { margin: .75rem 0 .25rem; font-size: .73rem; }
.config-profiles small { color: var(--muted); font-size: .62rem; line-height: 1.45; }
.profile-icon { width: 36px; height: 24px; display: block; border-radius: 50%; background: radial-gradient(ellipse at 50% 0, rgba(238,139,45,.65), rgba(238,139,45,.05) 68%, transparent 70%); }
.profile-icon--accent { width: 22px; }
.profile-icon--soft { width: 48px; opacity: .65; }
.profile-icon--mix { width: 44px; background: radial-gradient(ellipse at 25% 0, rgba(238,139,45,.7), transparent 52%), radial-gradient(ellipse at 75% 0, rgba(255,202,131,.55), transparent 68%); }

.config-result { position: sticky; top: 94px; padding: clamp(20px, 2.5vw, 28px); border-radius: 24px; background: #1f1e1b; color: #fff; box-shadow: 0 24px 70px rgba(35,31,25,.18); }
.config-result__top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.1rem; }
.config-result__top small, .config-result__top strong { display: block; }
.config-result__top small { margin-bottom: .25rem; color: rgba(255,255,255,.5); font-size: .61rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.config-result__top strong { font-size: .9rem; }
.compatibility { display: inline-flex; align-items: center; gap: .4rem; color: #a7e7c3; font-size: .62rem; font-weight: 800; white-space: nowrap; }
.compatibility i { width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; background: rgba(73,190,126,.18); font-style: normal; }
.config-plan { position: relative; min-height: 222px; overflow: hidden; border-radius: 18px; background: linear-gradient(145deg, #d8d0c3, #bdb3a5); color: var(--ink); isolation: isolate; }
.config-plan::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px); background-size: 30px 30px; transform: perspective(500px) rotateX(58deg) scale(1.4); transform-origin: center 70%; }
.config-plan__label { position: absolute; top: 14px; left: 14px; z-index: 2; padding: .35rem .55rem; border-radius: 999px; background: rgba(255,255,255,.72); font-size: .57rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; backdrop-filter: blur(8px); }
.config-plan svg { width: 100%; height: 184px; display: block; overflow: visible; transform: perspective(620px) rotateX(54deg) translateY(19px) scale(1.08); transform-origin: center 70%; filter: drop-shadow(0 16px 10px rgba(41,31,21,.18)); }
.config-plan__rail { stroke-width: 10; stroke-linecap: round; }
.config-plan[data-color="schwarz"] .config-plan__rail { stroke: #171717; }
.config-plan[data-color="weiss"] .config-plan__rail { stroke: #fff; }
.config-plan__point-glow { fill: rgba(255,174,76,.22); }
.config-plan__point { fill: #ffb45f; stroke: #fff8e9; stroke-width: 2.5; }
.config-plan__meta { position: absolute; left: 14px; right: 14px; bottom: 12px; display: flex; flex-wrap: wrap; gap: .4rem; }
.config-plan__meta span { padding: .35rem .55rem; border-radius: 999px; background: rgba(31,30,27,.82); color: #fff; font-size: .57rem; font-weight: 800; backdrop-filter: blur(7px); }
.config-list-head { display: flex; justify-content: space-between; gap: 1rem; margin: 1.25rem 0 .55rem; }
.config-list-head strong { font-size: .73rem; }
.config-list-head span { color: rgba(255,255,255,.5); font-size: .62rem; }
.config-items { max-height: 245px; overflow: auto; margin: 0; padding: 0; border-top: 1px solid rgba(255,255,255,.12); list-style: none; scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.25) transparent; }
.config-items li { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 1rem; padding: .68rem 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.config-items strong, .config-items small { display: block; }
.config-items strong { font-size: .65rem; }
.config-items small { margin-top: .14rem; color: rgba(255,255,255,.45); font-size: .57rem; }
.config-items b { font-size: .65rem; white-space: nowrap; }
.config-total { display: flex; align-items: end; justify-content: space-between; gap: 1rem; padding: 1rem 0; }
.config-total small, .config-total strong { display: block; }
.config-total small { color: rgba(255,255,255,.55); font-size: .6rem; }
.config-total strong { margin-top: .15rem; font-size: .64rem; }
.config-total > b { font-size: 1.55rem; letter-spacing: -.04em; }
.config-note { margin: .75rem 0 0; color: rgba(255,255,255,.38); font-size: .55rem; line-height: 1.5; }

.light-lab { background: #ece9e1; }
.light-lab__grid { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(320px, .65fr); gap: clamp(28px, 5vw, 66px); align-items: center; }
.room-view { position: relative; min-height: 520px; overflow: hidden; border-radius: 28px; box-shadow: var(--shadow); background: #dad7cf; isolation: isolate; }
.room-view img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: filter .45s ease; }
.room-view__wash { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: rgba(255, 244, 216, .04); mix-blend-mode: color; transition: background .45s ease, opacity .45s ease; }
.room-view::after { content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none; background: radial-gradient(circle at 50% 35%, rgba(255, 255, 255, .12), transparent 48%); mix-blend-mode: screen; transition: opacity .45s; }
.room-view[data-temp="warm"] img { filter: sepia(.15) saturate(1.14) brightness(.98); }
.room-view[data-temp="warm"] .room-view__wash { background: rgba(255, 168, 58, .30); opacity: .76; }
.room-view[data-temp="neutral"] img { filter: saturate(1.02) brightness(1.01); }
.room-view[data-temp="neutral"] .room-view__wash { background: rgba(255, 246, 222, .08); opacity: .38; }
.room-view[data-temp="cold"] img { filter: saturate(.96) contrast(1.02) brightness(1.04); }
.room-view[data-temp="cold"] .room-view__wash { background: rgba(128, 191, 255, .32); opacity: .72; }
.room-chip { position: absolute; z-index: 3; left: 18px; top: 18px; padding: .55rem .8rem; border-radius: 999px; background: rgba(255, 255, 255, .9); backdrop-filter: blur(10px); font-size: .68rem; font-weight: 800; }
.room-temp { position: absolute; z-index: 3; right: 18px; bottom: 18px; min-width: 110px; padding: .9rem 1rem; border-radius: 14px; background: rgba(24, 24, 23, .87); color: #fff; backdrop-filter: blur(10px); }
.room-temp small, .room-temp strong { display: block; }
.room-temp small { font-size: .63rem; opacity: .7; }
.room-temp strong { font-size: 1.1rem; }
.lab-panel .lead { margin-bottom: 1.7rem; }
.slider-card { padding: 1.25rem; border-radius: 18px; background: var(--white); border: 1px solid var(--line); }
.slider-card__top { display: flex; justify-content: space-between; gap: 1rem; margin-bottom: .8rem; }
.slider-card__top strong { font-size: .9rem; }
.slider-card__top span { color: var(--muted); font-size: .72rem; }
.temp-slider { width: 100%; height: 8px; margin: .8rem 0 .65rem; appearance: none; border-radius: 99px; background: linear-gradient(90deg, #ffac4b, #fff5d5 50%, #9fd3ff); outline: none; }
.temp-slider::-webkit-slider-thumb { appearance: none; width: 27px; height: 27px; border: 6px solid #fff; border-radius: 50%; background: var(--ink); box-shadow: 0 3px 12px rgba(0,0,0,.22); cursor: grab; }
.temp-slider::-moz-range-thumb { width: 15px; height: 15px; border: 6px solid #fff; border-radius: 50%; background: var(--ink); box-shadow: 0 3px 12px rgba(0,0,0,.22); cursor: grab; }
.slider-labels { display: flex; justify-content: space-between; color: var(--muted); font-size: .66rem; font-weight: 800; }
.temperature-info { margin-top: 1rem; min-height: 112px; padding: 1rem 1.1rem; border-left: 3px solid var(--accent); background: rgba(255, 255, 255, .5); }
.temperature-info strong { display: block; margin-bottom: .35rem; }
.temperature-info p { margin: 0; color: var(--muted); font-size: .82rem; }

.trust-band { background: var(--white); border-block: 1px solid var(--line); }
.trust-band__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-band__grid > div { min-height: 116px; display: flex; align-items: center; gap: .85rem; padding: 1.25rem; border-right: 1px solid var(--line); }
.trust-band__grid > div:last-child { border-right: 0; }
.trust-band svg { width: 27px; flex: 0 0 auto; color: var(--accent-dark); }
.trust-band strong, .trust-band small { display: block; }
.trust-band strong { font-size: .78rem; }
.trust-band small { margin-top: .18rem; color: var(--muted); font-size: .64rem; }

.advice { background: #f0eee7; border-block: 1px solid var(--line); }
.advice__inner { min-height: 0; display: grid; grid-template-columns: 56px minmax(0, 1fr) auto; gap: clamp(16px, 2.5vw, 30px); align-items: center; padding-block: clamp(26px, 3vw, 38px); }
.advice__icon { width: 54px; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--white); color: var(--accent-dark); }
.advice__icon svg { width: 28px; }
.advice h2 { margin: .2rem 0 .35rem; font-family: inherit; font-weight: 700; font-size: clamp(1.65rem, 2.25vw, 2.2rem); letter-spacing: -.035em; }
.advice p { margin: 0; max-width: 760px; color: var(--muted); font-size: .8rem; }
.advice .kicker { margin-bottom: 0; color: var(--accent-dark); font-size: .66rem; }

.footer { background: #eceae3; border-top: 1px solid var(--line); }
.footer__trust { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid #d4d1c8; }
.footer__trust div { display: flex; gap: .8rem; padding: 1.35rem 1rem; border-right: 1px solid #d4d1c8; }
.footer__trust div:last-child { border-right: 0; }
.footer__trust svg { width: 24px; flex: 0 0 auto; }
.footer__trust strong, .footer__trust small { display: block; }
.footer__trust strong { font-size: .78rem; }
.footer__trust small { color: var(--muted); font-size: .65rem; }
.footer__main { display: grid; grid-template-columns: 1.45fr repeat(3, .75fr); gap: 3rem; padding-block: 60px; }
.footer__brand p { max-width: 37ch; margin: 1rem 0 0; color: var(--muted); font-size: .8rem; }
.footer__col h4 { margin-bottom: 1rem; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.footer__col a { display: block; margin: .58rem 0; color: var(--muted); font-size: .76rem; }
.footer__col a:hover { color: var(--ink); }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .7rem 1.5rem; padding: 1.2rem 0 2rem; border-top: 1px solid #d4d1c8; color: var(--muted); font-size: .67rem; }
.footer__credit a { color: var(--ink); font-weight: 800; text-decoration: underline; text-decoration-color: rgba(24,24,23,.25); text-underline-offset: 3px; }
.footer__credit a:hover { text-decoration-color: var(--accent-dark); }

.page-head { padding-block: clamp(52px, 8vw, 92px); background: #eeece5; border-bottom: 1px solid var(--line); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 1.5rem; color: var(--muted); font-size: .72rem; }
.page-head__grid { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 3rem; }
.page-head h1 { max-width: 12ch; font-size: clamp(3rem, 6vw, 5.8rem); }
.page-head__stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: .65rem; }
.page-head__stats div { padding: 1rem; border: 1px solid #d8d4ca; border-radius: 14px; background: rgba(255, 255, 255, .5); }
.page-head__stats strong, .page-head__stats small { display: block; }
.page-head__stats strong { font-size: 1.05rem; }
.page-head__stats small { color: var(--muted); font-size: .68rem; }
.subnav { display: flex; flex-wrap: wrap; gap: .5rem; padding-block: 1.25rem; }
.pill { padding: .62rem .9rem; border: 1px solid var(--line); border-radius: 999px; background: var(--white); color: var(--muted); font-size: .73rem; font-weight: 800; cursor: pointer; }
.pill.active { background: var(--ink); color: #fff; border-color: var(--ink); }

.collection-shell { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 2rem; padding-block: 2rem 7rem; }
.filters { align-self: start; position: sticky; top: 96px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); overflow: hidden; }
.filters__head { display: flex; justify-content: space-between; padding: 1rem; border-bottom: 1px solid var(--line); }
.filter-group { padding: 1rem; border-bottom: 1px solid var(--line); }
.filter-group:last-child { border-bottom: 0; }
.filter-group h3 { margin-bottom: .8rem; font-size: .78rem; letter-spacing: .01em; }
.filter-group label { display: flex; align-items: center; gap: .6rem; margin: .55rem 0; color: var(--muted); font-size: .72rem; cursor: pointer; }
.filter-group input { accent-color: var(--ink); }
.collection-main__toolbar { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.collection-main__toolbar span { color: var(--muted); font-size: .78rem; }
.collection-main__toolbar select { padding: .65rem 2.2rem .65rem .85rem; border: 1px solid var(--line); border-radius: 999px; background: var(--white); }
.collection-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem 1rem; }
.mobile-filter { display: none; }

.pdp { padding-block: 2rem 7rem; }
.pdp-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(390px, .75fr); gap: clamp(34px, 6vw, 82px); align-items: start; }
.gallery { position: sticky; top: 96px; }
.gallery__main { position: relative; aspect-ratio: .92; overflow: hidden; border-radius: 24px; background: #e7e5df; }
.gallery__main img { height: 100%; object-fit: cover; }
.gallery__main.product-shot img { object-fit: contain; padding: clamp(24px, 5vw, 62px); background: #f1f0eb; }
.gallery__main.catalog-scene img { object-fit: cover; object-position: center; padding: 0; background: #e8e0d3; }
.gallery__badge { position: absolute; top: 16px; left: 16px; padding: .4rem .7rem; border-radius: 99px; background: rgba(255,255,255,.9); font-size: .67rem; font-weight: 800; }
.gallery__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: .65rem; margin-top: .65rem; }
.gallery__thumbs button { aspect-ratio: 1; padding: 0; overflow: hidden; border: 2px solid transparent; border-radius: 13px; background: #e7e5df; cursor: pointer; }
.gallery__thumbs button.active { border-color: var(--ink); }
.gallery__thumbs img { height: 100%; object-fit: cover; }
.gallery__thumbs button.product-shot img { object-fit: contain; padding: .65rem; background: #f1f0eb; }
.gallery__thumbs button.catalog-scene img { object-fit: cover; object-position: center; padding: 0; background: #e8e0d3; }
.product-summary__vendor { color: var(--accent-dark); font-size: .69rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.product-summary h1 { margin: .75rem 0 .9rem; font-size: clamp(2.5rem, 4.5vw, 4.5rem); }
.product-summary__lead { color: var(--muted); }
.rating-line { display: flex; flex-wrap: wrap; gap: .75rem; color: var(--muted); font-size: .72rem; }
.rating-line b { color: var(--accent-dark); letter-spacing: .08em; }
.price { margin: 1.5rem 0; }
.price strong { display: block; font-size: 2rem; letter-spacing: -.04em; }
.price small { color: var(--muted); font-size: .7rem; }
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem; margin-bottom: 1.6rem; }
.feature-list span { padding: .65rem .75rem; border-radius: 10px; background: #efede7; font-size: .7rem; font-weight: 750; }
.option { margin: 1.2rem 0; }
.option__label { display: flex; justify-content: space-between; margin-bottom: .6rem; font-size: .75rem; }
.option__values { display: flex; flex-wrap: wrap; gap: .5rem; }
.option__values button { min-width: 86px; padding: .72rem .8rem; border: 1px solid var(--line); border-radius: 11px; background: var(--white); cursor: pointer; font-size: .73rem; }
.option__values button.active { border-color: var(--ink); box-shadow: 0 0 0 1px var(--ink); }
.buy-row { display: grid; grid-template-columns: 112px 1fr; gap: .7rem; margin: 1.5rem 0 .75rem; }
.quantity { display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; border: 1px solid var(--line); border-radius: 999px; background: var(--white); overflow: hidden; }
.quantity button { height: 48px; border: 0; background: transparent; cursor: pointer; }
.quantity span { text-align: center; font-weight: 800; }
.delivery { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; margin: 1rem 0; }
.delivery div { padding: .85rem; border: 1px solid var(--line); border-radius: 12px; background: var(--white); }
.delivery strong, .delivery small { display: block; }
.delivery strong { font-size: .72rem; }
.delivery small { color: var(--muted); font-size: .62rem; }
.system-check { display: grid; grid-template-columns: 32px 1fr; gap: .75rem; margin-top: 1rem; padding: 1rem; border: 1px solid #e2c9ae; border-radius: 14px; background: #fff8ef; }
.system-check > span { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--accent); font-weight: 800; }
.system-check strong { display: block; font-size: .75rem; }
.system-check p { margin: .25rem 0 .55rem; color: var(--muted); font-size: .68rem; }
.system-check a { color: var(--accent-dark); font-size: .67rem; font-weight: 800; }
.volume { margin-top: 1rem; padding: 1rem; border-radius: 14px; background: #efede7; }
.volume h3 { margin: 0 0 .6rem; font-size: .82rem; letter-spacing: -.01em; }
.volume table { width: 100%; border-collapse: collapse; font-size: .68rem; }
.volume td { padding: .45rem 0; border-top: 1px solid #d8d5cb; }
.volume td:last-child { text-align: right; font-weight: 800; }

.product-info { background: var(--white); }
.product-info__head { max-width: 720px; margin-bottom: 2rem; }
.product-info__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px, 6vw, 80px); }
.spec-highlights { display: grid; grid-template-columns: repeat(2, 1fr); gap: .7rem; }
.spec-highlights div { padding: 1.2rem; border-radius: 15px; background: #f0eee8; }
.spec-highlights strong, .spec-highlights small { display: block; }
.spec-highlights strong { font-size: 1.35rem; }
.spec-highlights small { color: var(--muted); font-size: .65rem; }
.tabs { display: flex; gap: 1.4rem; border-bottom: 1px solid var(--line); }
.tabs button { padding: .6rem 0 .9rem; border: 0; border-bottom: 2px solid transparent; background: transparent; color: var(--muted); font-size: .75rem; font-weight: 800; cursor: pointer; }
.tabs button.active { color: var(--ink); border-bottom-color: var(--ink); }
.tab-panel { display: none; padding-top: 1.5rem; }
.tab-panel.active { display: block; }
.tab-panel p, .tab-panel li { color: var(--muted); font-size: .82rem; }
.data-list { margin: 0; }
.data-list div { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; padding: .7rem 0; border-bottom: 1px solid var(--line); }
.data-list dt, .data-list dd { margin: 0; font-size: .75rem; }
.data-list dt { color: var(--muted); }
.data-list dd { font-weight: 800; }

.toast { position: fixed; right: 24px; bottom: 24px; z-index: 80; max-width: min(360px, calc(100vw - 48px)); padding: .95rem 1.1rem; border-radius: 14px; background: var(--ink); color: #fff; box-shadow: var(--shadow); font-size: .78rem; transform: translateY(140%); opacity: 0; transition: .35s var(--ease); }
.toast.show { transform: translateY(0); opacity: 1; }

@media (max-width: 1050px) {
  .nav__links { display: none; position: fixed; inset: 109px 0 auto; padding: 2rem var(--pad); flex-direction: column; align-items: flex-start; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .nav__links.open { display: flex; }
  .burger { display: grid; }
  .hero__copy { width: min(55%, 580px); }
  .hero__copy h1 { font-size: clamp(3.4rem, 7vw, 5.2rem); }
  .hero__copy h1 span { white-space: normal; }
  .brand-value__layout { grid-template-columns: 1fr; }
  .brand-value__intro { position: static; }
  .brand-value__intro h2 { max-width: 12ch; }
  .rail-guide__layout { grid-template-columns: 1fr; }
  .config-shell { grid-template-columns: 1fr; }
  .config-result { position: static; }
  .trust-band__grid { grid-template-columns: repeat(2, 1fr); }
  .trust-band__grid > div:nth-child(2) { border-right: 0; }
  .trust-band__grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .advice__inner { grid-template-columns: 54px 1fr; padding-block: 30px; }
  .advice__icon { width: 52px; }
  .advice .btn { grid-column: 2; justify-self: start; }
}

@media (max-width: 760px) {
  h1 { font-size: clamp(2.8rem, 14vw, 4.4rem); }
  .nav__inner { min-height: 66px; }
  .disclosure { font-size: .65rem; }
  .nav__links { top: 100px; }
  .nav-shop-link { display: none; }
  .hero { min-height: 790px; }
  .home-page .hero { min-height: max(790px, calc(100dvh - 34px)); }
  .hero__media img { object-position: 62% top; }
  .hero__reveal { --spot-r: 190px; }
  .hero__media::after { background: linear-gradient(180deg, rgba(35,31,26,.12) 0%, rgba(35,31,26,.04) 33%, rgba(244,240,233,.86) 54%, #f4f0e9 65%, #f4f0e9 100%); }
  .hero__stage { align-items: flex-end; padding: 330px var(--pad) 56px; }
  .hero__copy { width: 100%; max-width: 600px; }
  .hero__copy h1 { max-width: 10ch; font-size: clamp(3.15rem, 14vw, 4.6rem); }
  .hero__copy .lead { max-width: 46ch; }
  .eyebrow-row { display: block; }
  .eyebrow-row .btn { margin-top: 1rem; }
  .finder__grid { grid-template-columns: 1fr; }
  .brand-value__grid { grid-template-columns: repeat(2, 1fr); }
  .brand-value__grid article { min-height: 210px; }
  .rail-steps { grid-template-columns: 1fr; }
  .rail-steps article { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .rail-steps article:last-child { border-bottom: 0; }
  .rail-step__icon { margin: 2rem 0 1.4rem; }
  .rail-steps small { margin-top: 1.2rem; }
  .config-head__status { margin-top: 1rem; }
  .config-inline { grid-template-columns: 1fr; }
  .light-lab__grid { grid-template-columns: 1fr; }
  .room-view { min-height: 390px; }
  .advice__inner { display: grid; grid-template-columns: 48px 1fr; gap: 14px; padding-block: 28px; }
  .advice__icon { width: 46px; margin: 0; }
  .advice .btn { grid-column: 2; margin-top: .4rem; justify-self: start; }
  .footer__trust { grid-template-columns: repeat(2, 1fr); }
  .footer__trust div:nth-child(2) { border-right: 0; }
  .footer__trust div:nth-child(-n+2) { border-bottom: 1px solid #d4d1c8; }
  .footer__main { grid-template-columns: repeat(2, 1fr); }
  .footer__brand { grid-column: 1 / 3; }
  .footer__bottom { flex-direction: column; }
  .page-head__grid { grid-template-columns: 1fr; }
  .collection-shell { grid-template-columns: 1fr; }
  .filters { display: none; position: static; }
  .filters.open { display: block; }
  .mobile-filter { display: inline-flex; }
  .pdp-grid { grid-template-columns: 1fr; }
  .gallery { position: static; }
  .product-info__grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero { min-height: 820px; }
  .hero__stage { padding-top: 320px; padding-bottom: 42px; }
  .hero__copy h1 { font-size: clamp(2.95rem, 14vw, 3.9rem); }
  .hero__actions { gap: .6rem; margin-top: 1.45rem; }
  .hero__actions .btn { min-height: 46px; padding-inline: 1rem; font-size: .78rem; }
  .hero__proof { margin-top: 1.3rem; gap: .45rem .9rem; font-size: .68rem; }
  .finder__panel { padding: 19px; border-radius: 20px; }
  .finder__title { align-items: flex-start; }
  .finder__icon { width: 44px; height: 44px; border-radius: 14px; }
  .finder__links a { min-height: 64px; }
  .brand-value__grid { grid-template-columns: 1fr; }
  .brand-value__grid article { min-height: 0; }
  .brand-value__grid article > span { margin-bottom: 1.5rem; }
  .rail-summary, .rail-steps { border-radius: 20px; }
  .config-step, .config-result { border-radius: 20px; }
  .config-shapes { grid-template-columns: repeat(2, 1fr); }
  .config-profiles { grid-template-columns: 1fr; }
  .config-profiles button { min-height: 0; display: grid; grid-template-columns: 52px 1fr; align-items: center; column-gap: .5rem; }
  .config-profiles .profile-icon { grid-row: 1 / 3; }
  .config-profiles b { margin: 0 0 .15rem; }
  .config-plan { min-height: 210px; }
  .trust-band__grid { grid-template-columns: 1fr; }
  .trust-band__grid > div { min-height: 96px; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-band__grid > div:last-child { border-bottom: 0; }
  .product-grid, .collection-grid { grid-template-columns: 1fr 1fr; gap: 1.8rem .65rem; }
  .product-card__body { padding: .75rem .1rem 1rem; }
  .product-card p { min-height: 34px; }
  .room-view { min-height: 300px; }
  .room-chip { top: 10px; left: 10px; }
  .room-temp { bottom: 10px; right: 10px; }
  .advice h2 { font-size: 1.8rem; }
  .advice p { font-size: .78rem; }
  .footer__trust { grid-template-columns: 1fr; }
  .footer__trust div { border-right: 0; border-bottom: 1px solid #d4d1c8; }
  .footer__main { grid-template-columns: 1fr 1fr; gap: 2rem 1rem; }
  .feature-list { grid-template-columns: 1fr; }
  .buy-row { grid-template-columns: 1fr; }
  .delivery { grid-template-columns: 1fr; }
  .tabs { gap: .8rem; overflow-x: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .hero__copy .kicker, .hero__copy h1 span, .hero__copy .lead, .hero__actions, .hero__proof { opacity: 1; }
}
