:root {
  --ink: #1b1c1d;
  --ink-soft: #2a2b2d;
  --paper: #f4f1ea;
  --paper-deep: #e7e2d8;
  --white: #fffdf8;
  --orange: #f26422;
  --orange-dark: #d94b0b;
  --line: rgba(27, 28, 29, 0.16);
  --line-light: rgba(255, 253, 248, 0.18);
  --muted: #6d6d69;
  --shell: min(1380px, calc(100vw - 80px));
  --radius: 18px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);
  --header-height: 88px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

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

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

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

button {
  color: inherit;
}

::selection {
  color: var(--white);
  background: var(--orange);
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(100px, 11vw, 180px);
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 16px;
  left: 16px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 0.25s ease;
}

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

.page-progress {
  position: fixed;
  z-index: 150;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.eyebrow,
.kicker,
.section-index,
.result-label,
.video-note {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 700;
}

.kicker {
  margin: 0 0 28px;
  color: var(--muted);
}

.kicker-orange {
  color: var(--orange);
}

.display-title {
  margin: 0;
  font-size: clamp(52px, 7.1vw, 112px);
  font-weight: 520;
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.display-title-light {
  color: var(--white);
}

.section-index {
  display: flex;
  align-items: center;
  width: 100%;
  color: var(--muted);
}

.section-index span:first-child {
  min-width: 45px;
  color: var(--orange);
}

.section-index::after {
  width: 70px;
  height: 1px;
  margin-left: 18px;
  background: currentColor;
  content: "";
  opacity: 0.55;
}

.section-index-light {
  color: rgba(255, 253, 248, 0.62);
}

.section-head {
  display: grid;
  grid-template-columns: 26% 1fr;
  align-items: start;
  margin-bottom: clamp(60px, 8vw, 110px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition:
    color 0.35s var(--ease-out),
    background-color 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out),
    transform 0.35s var(--ease-out);
}

.button svg {
  width: 20px;
  height: 20px;
  margin-left: 32px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 0.35s var(--ease-out);
}

.button:hover svg {
  transform: translate(3px, -3px);
}

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

.button-primary:hover {
  background: var(--orange-dark);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(20, 20, 20, 0.12);
  backdrop-filter: blur(12px);
}

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

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

.button-dark:hover {
  background: #000;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
  transition:
    color 0.4s var(--ease-out),
    background-color 0.4s var(--ease-out),
    transform 0.4s var(--ease-out),
    border-color 0.4s var(--ease-out);
}

.site-header.is-scrolled {
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  background: rgba(244, 241, 234, 0.9);
  backdrop-filter: blur(18px);
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.site-header.menu-visible {
  color: var(--white);
  background: transparent;
  transform: none;
}

.header-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: none;
}

.brand-mark {
  display: flex;
  width: 31px;
  height: 36px;
  align-items: stretch;
  gap: 3px;
  transform: skewY(-12deg);
}

.brand-mark i {
  flex: 1;
  background: var(--orange);
  transition: transform 0.4s var(--ease-out);
}

.brand-mark i:nth-child(2) {
  transform: translateY(5px);
}

.brand-mark i:nth-child(3) {
  transform: translateY(10px);
}

.brand:hover .brand-mark i:nth-child(1) {
  transform: translateY(10px);
}

.brand:hover .brand-mark i:nth-child(2) {
  transform: translateY(3px);
}

.brand:hover .brand-mark i:nth-child(3) {
  transform: translateY(0);
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-size: 17px;
  letter-spacing: 0.08em;
}

.brand-copy small {
  margin-top: 6px;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.68;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 42px);
  margin-left: auto;
  margin-right: clamp(32px, 5vw, 86px);
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 600;
}

.desktop-nav a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-phone {
  display: grid;
  text-align: right;
}

.header-phone span {
  margin-bottom: 3px;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.65;
}

.header-phone strong {
  font-size: 14px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 0.35s var(--ease-out);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 1;
  inset: 0;
  display: flex;
  padding: calc(var(--header-height) + 40px) 32px 38px;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  background: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-18px);
  transition:
    opacity 0.4s var(--ease-out),
    transform 0.4s var(--ease-out);
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu nav {
  display: grid;
}

.mobile-menu nav a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-light);
  font-size: clamp(34px, 10vw, 60px);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.mobile-menu nav a:focus-visible {
  outline-width: 1px;
  outline-offset: -1px;
}

.mobile-menu nav a span {
  font-size: 11px;
  letter-spacing: 0;
  opacity: 0.45;
}

.mobile-menu-contact {
  display: grid;
  gap: 6px;
  font-size: 14px;
}

/* Hero */
.hero {
  position: relative;
  min-height: max(720px, 96svh);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media,
.hero-media::after,
.hero-shade,
.hero-slats {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
  filter: saturate(0.72) contrast(1.08);
  transform: scale(1.055);
  animation: hero-image-in 1.8s var(--ease-out) 0.2s forwards;
}

.hero-media::after {
  content: "";
  background: linear-gradient(90deg, rgba(11, 12, 13, 0.72) 0%, rgba(11, 12, 13, 0.3) 54%, rgba(11, 12, 13, 0.16) 100%);
}

.hero-shade {
  z-index: 1;
  background: linear-gradient(180deg, rgba(13, 14, 14, 0.58) 0%, transparent 30%, transparent 65%, rgba(13, 14, 14, 0.55) 100%);
}

.hero-slats {
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2px;
  pointer-events: none;
}

.hero-slats i {
  display: block;
  height: 100%;
  background: var(--ink);
  transform-origin: top;
  animation: slat-open 1.25s var(--ease-out) forwards;
}

.hero-slats i:nth-child(1) { animation-delay: 0.02s; }
.hero-slats i:nth-child(2) { animation-delay: 0.07s; }
.hero-slats i:nth-child(3) { animation-delay: 0.12s; }
.hero-slats i:nth-child(4) { animation-delay: 0.17s; }
.hero-slats i:nth-child(5) { animation-delay: 0.22s; }
.hero-slats i:nth-child(6) { animation-delay: 0.27s; }
.hero-slats i:nth-child(7) { animation-delay: 0.32s; }
.hero-slats i:nth-child(8) { animation-delay: 0.37s; }
.hero-slats i:nth-child(9) { animation-delay: 0.42s; }
.hero-slats i:nth-child(10) { animation-delay: 0.47s; }
.hero-slats i:nth-child(11) { animation-delay: 0.52s; }
.hero-slats i:nth-child(12) { animation-delay: 0.57s; }

@keyframes slat-open {
  to { transform: scaleY(0); }
}

@keyframes hero-image-in {
  to { transform: scale(1); }
}

.hero-content {
  position: relative;
  z-index: 4;
  display: flex;
  min-height: max(720px, 96svh);
  padding-top: calc(var(--header-height) + 52px);
  padding-bottom: 110px;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.76);
}

.hero-title {
  width: min(1050px, 85vw);
  margin: 0;
  font-size: clamp(72px, 10.2vw, 164px);
  font-weight: 500;
  line-height: 0.77;
  letter-spacing: -0.075em;
}

.title-line {
  display: block;
  overflow: hidden;
  padding-right: 0.08em;
  padding-bottom: 0.11em;
}

.title-line > span {
  display: block;
  transform: translateY(112%);
  animation: title-rise 1.05s var(--ease-out) forwards;
}

.title-line:nth-child(1) > span { animation-delay: 0.42s; }
.title-line:nth-child(2) > span { animation-delay: 0.52s; }
.title-line:nth-child(3) > span { animation-delay: 0.62s; }

.title-line-offset {
  padding-left: 18%;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.86);
}

@keyframes title-rise {
  to { transform: translateY(0); }
}

.hero-bottom {
  display: grid;
  width: min(880px, 76vw);
  margin-top: 34px;
  margin-left: 18%;
  grid-template-columns: minmax(260px, 1fr) auto;
  align-items: end;
  gap: 52px;
}

.hero-bottom > p {
  max-width: 500px;
  margin: 0;
  color: rgba(255, 255, 255, 0.83);
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  gap: 10px;
}

.hero-proof {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 24px;
  left: 0;
  display: flex;
  justify-content: flex-end;
  gap: 34px;
  pointer-events: none;
}

.hero-proof div {
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  gap: 8px;
}

.hero-proof strong {
  color: var(--orange);
  font-size: 16px;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 25px;
  left: max(40px, calc((100vw - min(1380px, calc(100vw - 80px))) / 2));
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.scroll-cue i {
  position: relative;
  width: 44px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.35);
}

.scroll-cue i::after {
  position: absolute;
  inset: 0;
  background: var(--white);
  content: "";
  animation: scroll-line 1.8s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: translateX(-100%); }
  55%, 100% { transform: translateX(100%); }
}

/* Statement */
.statement {
  background: var(--paper);
}

.statement-grid {
  display: grid;
  grid-template-columns: 26% 1fr;
}

.statement .kicker {
  color: var(--orange);
}

.statement-title {
  max-width: 1020px;
  margin: 0;
  font-size: clamp(42px, 6.4vw, 98px);
  font-weight: 480;
  line-height: 0.98;
  letter-spacing: -0.064em;
}

.statement-foot {
  display: grid;
  max-width: 930px;
  margin-top: clamp(50px, 7vw, 90px);
  grid-template-columns: 1fr auto;
  gap: 80px;
  border-top: 1px solid var(--line);
  padding-top: 30px;
}

.statement-foot > p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.partner-note {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.partner-symbol {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--ink);
  font-family: Georgia, serif;
  font-size: 23px;
  font-style: italic;
}

/* Ticker */
.ticker {
  overflow: hidden;
  padding-block: 22px;
  color: var(--white);
  background: var(--orange);
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: ticker-move 36s linear infinite;
}

.ticker-track span {
  padding-inline: 28px;
  font-size: clamp(28px, 4vw, 62px);
  font-weight: 500;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.ticker-track i {
  width: 10px;
  height: 10px;
  flex: none;
  border: 2px solid var(--white);
  border-radius: 50%;
}

@keyframes ticker-move {
  to { transform: translateX(-50%); }
}

/* Catalog */
.catalog {
  background: var(--paper);
}

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

.product-card {
  grid-column: span 4;
  min-width: 0;
}

.product-card-large,
.product-card-wide {
  grid-column: span 8;
}

.product-card a {
  display: grid;
  height: 100%;
  min-height: 590px;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  color: var(--white);
  background: var(--ink-soft);
}

.product-card:nth-child(2) a,
.product-card:nth-child(6) a {
  color: var(--ink);
  background: var(--paper-deep);
}

.product-media {
  min-height: 340px;
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.76);
  transition:
    transform 0.8s var(--ease-out),
    filter 0.8s var(--ease-out);
}

.product-card:hover .product-media img {
  filter: saturate(1);
  transform: scale(1.045);
}

.product-copy {
  position: relative;
  display: grid;
  min-height: 208px;
  padding: 25px 28px 30px;
  grid-template-columns: 42px 1fr;
  align-items: start;
  border-top: 1px solid currentColor;
  border-top-color: rgba(255, 255, 255, 0.14);
}

.product-card:nth-child(2) .product-copy,
.product-card:nth-child(6) .product-copy {
  border-top-color: var(--line);
}

.product-copy > span {
  padding-top: 7px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
}

.product-copy h3 {
  margin: 0;
  padding-right: 35px;
  font-size: clamp(29px, 3.2vw, 50px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.product-copy p {
  max-width: 310px;
  margin: 20px 0 0;
  grid-column: 2;
  font-size: 13px;
  opacity: 0.64;
}

.product-copy > i {
  position: absolute;
  top: 27px;
  right: 28px;
  font-size: 22px;
  font-style: normal;
  transition: transform 0.4s var(--ease-out);
}

.product-card:hover .product-copy > i {
  transform: translate(4px, -4px);
}

.product-card-large .product-media,
.product-card-wide .product-media {
  min-height: 390px;
}

.catalog-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
  padding: 26px 0;
  border-block: 1px solid var(--line);
}

.catalog-note p {
  margin: 0;
  color: var(--muted);
}

.catalog-note a {
  font-weight: 700;
}

.catalog-note a span,
.text-link span {
  display: inline-block;
  margin-left: 18px;
  color: var(--orange);
  transition: transform 0.35s var(--ease-out);
}

.catalog-note a:hover span,
.text-link:hover span {
  transform: translateX(6px);
}

/* Light lab */
.light-lab {
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.light-lab::before {
  position: absolute;
  top: -18%;
  left: -10%;
  width: 65vw;
  height: 65vw;
  border-radius: 50%;
  background: rgba(242, 100, 34, 0.08);
  filter: blur(100px);
  content: "";
}

.light-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(60px, 8vw, 130px);
}

.light-copy .section-index {
  margin-bottom: 90px;
}

.light-description {
  max-width: 570px;
  margin: 42px 0 46px;
  color: rgba(255, 253, 248, 0.64);
  font-size: 18px;
}

.light-controls {
  display: grid;
  border-top: 1px solid var(--line-light);
}

.light-controls button {
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 253, 248, 0.46);
  background: none;
  font-size: 17px;
  text-align: left;
  cursor: pointer;
  transition:
    color 0.35s ease,
    padding-left 0.35s var(--ease-out);
}

.light-controls button span {
  width: 58px;
  color: var(--orange);
  font-size: 10px;
}

.light-controls button::after {
  width: 9px;
  height: 9px;
  margin-left: auto;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
}

.light-controls button:hover,
.light-controls button.is-active {
  padding-left: 10px;
  color: var(--white);
}

.light-controls button.is-active::after {
  border-color: var(--orange);
  background: var(--orange);
  box-shadow: 0 0 18px var(--orange);
}

.window-scene {
  --blind-height: 52%;
  --blind-opacity: 0.78;
  --scene-light: 0.88;
  position: relative;
  aspect-ratio: 0.9;
  overflow: hidden;
  background: #242527;
  transition: background-color 1s var(--ease-smooth);
}

.window-scene[data-mode="blackout"] {
  --blind-height: 100%;
  --blind-opacity: 0.97;
  --scene-light: 0.16;
  background: #101112;
}

.window-scene[data-mode="auto"] {
  --blind-height: 23%;
  --blind-opacity: 0.72;
  --scene-light: 1;
  background: #2e3031;
}

.scene-glow {
  position: absolute;
  top: 7%;
  right: 10%;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 173, 80, calc(var(--scene-light) * 0.4));
  filter: blur(90px);
  transition: background-color 1s var(--ease-smooth);
}

.scene-window {
  position: absolute;
  top: 8%;
  right: 9%;
  left: 9%;
  height: 72%;
  overflow: hidden;
  border: 13px solid #151617;
  border-bottom-width: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
}

.scene-view {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 7%;
  overflow: hidden;
  background: linear-gradient(180deg, #f7a151 0%, #ffe0aa 48%, #697262 49%, #28342e 100%);
  filter: brightness(var(--scene-light));
  transition: filter 1s var(--ease-smooth);
}

.scene-view::before {
  position: absolute;
  top: 22%;
  right: 24%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff2bf;
  box-shadow: 0 0 50px #ffd277;
  content: "";
}

.scene-view span {
  width: 16%;
  height: 34%;
  background: #15251f;
  clip-path: polygon(50% 0, 100% 58%, 75% 55%, 100% 100%, 0 100%, 27% 56%, 0 58%);
  opacity: 0.7;
}

.scene-frame {
  position: absolute;
  z-index: 2;
  background: #1c1d1e;
}

.scene-frame-v {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 12px;
  transform: translateX(-50%);
}

.scene-frame-h {
  top: 53%;
  right: 0;
  left: 0;
  height: 10px;
}

.scene-blind {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  height: var(--blind-height);
  padding: 3px 0;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background: rgba(221, 215, 199, var(--blind-opacity));
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.24);
  transition:
    height 1.2s var(--ease-smooth),
    background-color 1s ease;
}

.scene-blind i {
  display: block;
  width: 100%;
  height: 4px;
  background: rgba(61, 57, 51, 0.32);
  box-shadow: 0 2px 2px rgba(255, 255, 255, 0.4);
}

.scene-console {
  position: absolute;
  right: 9%;
  bottom: 7%;
  left: 9%;
  display: grid;
  height: 76px;
  padding: 0 25px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--line-light);
  background: rgba(16, 17, 18, 0.78);
  backdrop-filter: blur(14px);
}

.console-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 18px var(--orange);
}

.scene-console div {
  display: grid;
}

.scene-console small {
  color: rgba(255, 255, 255, 0.44);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.scene-console strong {
  font-size: 14px;
}

.console-level {
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

/* Calculator */
.configurator {
  background: var(--paper-deep);
}

.calculator {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(370px, 0.55fr);
  align-items: stretch;
  border: 1px solid var(--line);
  background: var(--paper);
}

.calculator-form {
  padding: clamp(34px, 5vw, 72px);
}

.calculator fieldset {
  margin: 0;
  padding: 0 0 48px;
  border: 0;
}

.calculator fieldset + fieldset {
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.calculator fieldset:last-child {
  padding-bottom: 0;
}

.calculator legend {
  width: 100%;
  margin-bottom: 24px;
  font-size: 19px;
  font-weight: 700;
}

.calculator legend span {
  margin-right: 20px;
  color: var(--orange);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.choice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.choice-grid label {
  cursor: pointer;
}

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

.choice-grid label > span {
  display: inline-flex;
  min-height: 48px;
  padding: 0 19px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease;
}

.choice-grid input:checked + span {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

.choice-grid input:focus-visible + span {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

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

.measure-grid > label {
  position: relative;
  display: grid;
  min-width: 0;
  padding: 18px 20px 16px;
  border: 1px solid var(--line);
  background: var(--white);
}

.measure-grid > label > span:first-child {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.measure-grid input[type="number"] {
  width: 100%;
  min-width: 0;
  margin-top: 8px;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-size: 28px;
  font-weight: 600;
  outline: none;
  appearance: textfield;
}

.measure-grid input[type="number"]::-webkit-inner-spin-button {
  appearance: none;
}

.measure-grid input[type="range"] {
  width: 100%;
  height: 3px;
  margin-top: 16px;
  accent-color: var(--orange);
  cursor: pointer;
}

.stepper {
  display: grid;
  margin-top: 8px;
  grid-template-columns: 44px minmax(40px, 1fr) 44px;
  align-items: center;
}

.stepper button {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.stepper input[type="number"] {
  margin: 0;
  text-align: center;
}

.calculator-result {
  display: flex;
  padding: clamp(34px, 4vw, 58px);
  flex-direction: column;
  color: var(--white);
  background: var(--ink);
}

.result-label {
  margin: 0 0 24px;
  color: var(--orange);
}

.result-visual {
  position: relative;
  height: 190px;
  margin-bottom: 32px;
  overflow: hidden;
  background: linear-gradient(165deg, #e9dcc7, #8b7863);
}

.result-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 48%, rgba(255, 255, 255, 0.25) 48%, transparent 71%);
  content: "";
}

.result-window {
  position: absolute;
  top: 18px;
  right: 36px;
  bottom: 18px;
  left: 36px;
  display: flex;
  padding: 5px;
  flex-direction: column;
  justify-content: space-around;
  border: 10px solid #2c2b2a;
  background: rgba(244, 241, 234, 0.88);
  transition: transform 0.6s var(--ease-out);
}

.result-window i {
  height: 3px;
  background: rgba(27, 28, 29, 0.26);
}

.calculator-result h3 {
  min-height: 72px;
  margin: 0 0 25px;
  font-size: clamp(31px, 3vw, 46px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.calculator-result dl {
  margin: 0;
}

.calculator-result dl div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 12px 0;
  gap: 16px;
  border-top: 1px solid var(--line-light);
}

.calculator-result dt {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.calculator-result dd {
  margin: 0;
  font-size: 13px;
  text-align: right;
}

.result-note {
  margin: 22px 0 28px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  line-height: 1.5;
}

.calculator-submit {
  width: 100%;
  margin-top: auto;
}

/* Works */
.works {
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.works-head {
  display: grid;
  grid-template-columns: 26% 1fr auto;
  align-items: end;
  margin-bottom: 80px;
}

.works-count {
  display: flex;
  margin: 0;
  align-items: flex-end;
  gap: 12px;
}

.works-count strong {
  color: var(--orange);
  font-size: 40px;
  font-weight: 500;
  line-height: 0.85;
}

.works-count span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.gallery {
  display: grid;
  width: min(1600px, calc(100vw - 36px));
  margin-inline: auto;
  grid-auto-rows: 220px;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0;
  grid-row: span 2;
  border: 0;
  color: var(--white);
  background: #333;
  text-align: left;
  cursor: zoom-in;
}

.gallery-item-tall {
  grid-row: span 3;
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.74) brightness(0.86);
  transition:
    transform 0.85s var(--ease-out),
    filter 0.85s var(--ease-out);
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 10, 0.68) 100%);
  content: "";
}

.gallery-item > span {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 18px;
  left: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.gallery-item b {
  font-size: 16px;
}

.gallery-item em {
  font-size: 10px;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.64;
}

.gallery-item:hover img {
  filter: saturate(1) brightness(1);
  transform: scale(1.04);
}

.lightbox {
  position: fixed;
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 54px;
  border: 0;
  color: var(--white);
  background: rgba(15, 16, 16, 0.96);
}

.lightbox::backdrop {
  background: rgba(15, 16, 16, 0.8);
  backdrop-filter: blur(10px);
}

.lightbox figure {
  display: flex;
  width: 100%;
  height: 100%;
  margin: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox img {
  max-width: min(1200px, 100%);
  max-height: calc(100vh - 150px);
  object-fit: contain;
}

.lightbox figcaption {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.lightbox-close {
  position: fixed;
  z-index: 2;
  top: 20px;
  right: 24px;
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  font-size: 28px;
  font-weight: 200;
  cursor: pointer;
}

/* Automation */
.automation {
  background: var(--paper);
}

.automation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: center;
  gap: clamp(60px, 9vw, 140px);
}

.automation-media {
  position: relative;
}

.automation-media video {
  width: 100%;
  aspect-ratio: 0.86;
  object-fit: cover;
  background: var(--ink);
}

.video-note {
  position: absolute;
  bottom: 18px;
  left: 18px;
  padding: 10px 13px;
  color: var(--white);
  background: rgba(27, 28, 29, 0.76);
  backdrop-filter: blur(10px);
}

.automation-copy .section-index {
  margin-bottom: 90px;
}

.automation-copy .display-title {
  font-size: clamp(48px, 6.2vw, 90px);
}

.automation-copy > p:not(.kicker) {
  max-width: 600px;
  margin: 44px 0 40px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.automation-list {
  margin: 0 0 44px;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.automation-list li {
  display: flex;
  align-items: center;
  min-height: 58px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.automation-list span {
  width: 50px;
  color: var(--orange);
  font-size: 10px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
}

/* Process */
.process {
  padding-top: 40px;
  background: var(--paper);
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  position: relative;
  display: grid;
  min-height: 170px;
  padding: 33px 0;
  grid-template-columns: 25% 1fr auto;
  align-items: center;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.process-list li::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--orange);
  content: "";
  transform: translateX(-102%);
  transition: transform 0.65s var(--ease-out);
}

.process-list li:hover::before {
  transform: translateX(0);
}

.process-list li > * {
  position: relative;
  z-index: 1;
}

.process-list li > span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  transition: color 0.35s ease;
}

.process-list li:hover > span {
  color: var(--white);
}

.process-list div {
  display: grid;
  grid-template-columns: minmax(230px, 0.6fr) 1fr;
  align-items: center;
  gap: 40px;
}

.process-list h3 {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.process-list p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  transition: color 0.35s ease;
}

.process-list li:hover h3,
.process-list li:hover p {
  color: var(--white);
}

.process-list i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

/* Local proof */
.local-proof {
  padding-block: clamp(90px, 10vw, 150px);
  color: var(--white);
  background: var(--ink);
}

.local-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 80px;
}

.local-title-wrap h2 {
  margin: 0;
  font-size: clamp(86px, 12vw, 180px);
  font-weight: 500;
  line-height: 0.72;
  letter-spacing: -0.08em;
}

.local-title-wrap h2::first-line {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.74);
}

.local-facts {
  border-top: 1px solid var(--line-light);
}

.local-fact {
  position: relative;
  display: grid;
  min-height: 118px;
  grid-template-columns: 130px 1fr auto;
  align-items: center;
  border-bottom: 1px solid var(--line-light);
}

.local-fact strong {
  color: var(--orange);
  font-size: 43px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.local-fact span {
  color: rgba(255, 255, 255, 0.57);
  font-size: 13px;
}

.local-fact i {
  font-size: 22px;
  font-style: normal;
}

.local-fact[href]:hover span {
  color: var(--white);
}

/* Request */
.request {
  background: var(--orange);
}

.request-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
  gap: clamp(60px, 9vw, 140px);
}

.request .section-index,
.request .kicker {
  color: rgba(26, 27, 28, 0.67);
}

.request-copy .section-index {
  margin-bottom: 90px;
}

.request-lead {
  max-width: 590px;
  margin: 45px 0 40px;
  color: rgba(27, 28, 29, 0.7);
  font-size: 18px;
  line-height: 1.6;
}

.request-phone {
  display: grid;
  width: fit-content;
}

.request-phone span {
  margin-bottom: 4px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.request-phone strong {
  font-size: 28px;
  letter-spacing: -0.03em;
}

.lead-form {
  padding: clamp(32px, 4.5vw, 62px);
  background: var(--white);
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.field {
  position: relative;
  display: grid;
  margin-bottom: 29px;
}

.field > span {
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.field > span em {
  font-style: normal;
  font-weight: 500;
  opacity: 0.56;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  outline: none;
  transition: border-color 0.25s ease;
}

.field textarea {
  min-height: 90px;
  resize: vertical;
}

.field select {
  cursor: pointer;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange);
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: #c92718;
}

.field-error {
  display: none;
  margin-top: 5px;
  color: #b9271b;
  font-size: 10px;
}

.field.is-invalid .field-error {
  display: block;
}

.consent {
  display: grid;
  margin-bottom: 28px;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
  cursor: pointer;
}

.consent input {
  position: absolute;
  opacity: 0;
}

.checkmark {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  border: 1px solid var(--line);
}

.consent input:checked + .checkmark {
  border-color: var(--orange);
  background: var(--orange);
}

.consent input:checked + .checkmark::after {
  position: absolute;
  top: 3px;
  left: 6px;
  width: 4px;
  height: 8px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  content: "";
  transform: rotate(45deg);
}

.consent input:focus-visible + .checkmark {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.consent:has(input[aria-invalid="true"]) .checkmark {
  border-color: #b9271b;
  box-shadow: 0 0 0 2px rgba(185, 39, 27, 0.12);
}

.consent a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-submit {
  width: 100%;
}

.form-status {
  min-height: 22px;
  margin: 16px 0 0;
  font-size: 12px;
  text-align: center;
}

.form-status.is-success {
  color: #246a35;
}

.form-status.is-error {
  color: #b9271b;
}

/* Contacts */
.contacts {
  display: grid;
  min-height: 690px;
  grid-template-columns: minmax(0, 1.15fr) minmax(480px, 0.85fr);
  color: var(--white);
  background: var(--ink);
}

.contacts-map {
  min-height: 690px;
  background: #d4d0c8;
  filter: grayscale(0.8) contrast(0.95);
  transition: filter 0.5s ease;
}

.contacts-map:hover {
  filter: grayscale(0.15);
}

.contacts-map iframe {
  width: 100%;
  height: 100%;
  min-height: 690px;
  border: 0;
}

.contacts-panel {
  display: flex;
  padding: clamp(55px, 5vw, 80px);
  flex-direction: column;
  justify-content: center;
}

.contacts-panel h2 {
  margin: 0;
  font-size: clamp(52px, 4.7vw, 68px);
  font-weight: 500;
  line-height: 0.89;
  letter-spacing: -0.065em;
  overflow-wrap: normal;
}

.office-note {
  margin: 28px 0 45px;
  color: rgba(255, 255, 255, 0.52);
}

.contact-lines {
  border-top: 1px solid var(--line-light);
}

.contact-lines a {
  display: grid;
  min-height: 69px;
  padding: 10px 0;
  grid-template-columns: 100px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line-light);
}

.contact-lines small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-lines strong {
  min-width: 0;
  font-size: 16px;
  overflow-wrap: anywhere;
}

.map-links {
  display: flex;
  margin-top: 34px;
  gap: 24px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
}

/* Footer */
.site-footer {
  padding: 80px 0 24px;
  color: var(--white);
  background: #101112;
}

.footer-main {
  display: grid;
  padding-bottom: 70px;
  grid-template-columns: 0.82fr 1.5fr auto;
  align-items: start;
  gap: 80px;
}

.footer-brand > p {
  max-width: 330px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.43);
  font-size: 13px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-links span {
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-links a,
.footer-links p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.65;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-qr {
  display: grid;
  grid-template-columns: 92px auto;
  align-items: center;
  gap: 14px;
}

.footer-qr img {
  width: 92px;
  height: 92px;
  padding: 7px;
  background: var(--white);
}

.footer-qr span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  gap: 24px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.34);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-bottom a:hover {
  color: var(--white);
}

.mobile-action {
  position: fixed;
  z-index: 110;
  right: 10px;
  bottom: 10px;
  left: 10px;
  display: none;
  height: 54px;
  padding: 4px;
  grid-template-columns: 0.72fr 1.28fr;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(27, 28, 29, 0.91);
  backdrop-filter: blur(16px);
  transform: translateY(90px);
  transition: transform 0.5s var(--ease-out);
}

.mobile-action.is-visible {
  transform: translateY(0);
}

.mobile-action a {
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.mobile-action a:last-child {
  background: var(--orange);
}

/* Motion */
html.motion-ok .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.85s var(--ease-out),
    transform 0.85s var(--ease-out);
}

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

html.motion-ok .product-card:nth-child(2),
html.motion-ok .gallery-item:nth-child(2) {
  transition-delay: 0.08s;
}

html.motion-ok .product-card:nth-child(3),
html.motion-ok .gallery-item:nth-child(3) {
  transition-delay: 0.16s;
}

/* Privacy page */
.legal-page {
  color: var(--ink);
  background: var(--paper);
}

.legal-header {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.legal-header .brand {
  color: var(--ink);
}

.legal-main {
  width: min(860px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 90px 0 120px;
}

.legal-main h1 {
  margin: 0 0 50px;
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.06em;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.legal-main h2 {
  margin: 45px 0 15px;
  font-size: 25px;
  letter-spacing: -0.03em;
}

.legal-main p,
.legal-main li {
  color: var(--muted);
  line-height: 1.7;
}

.legal-main a {
  color: var(--orange-dark);
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 48px, 1100px);
  }

  .desktop-nav {
    gap: 18px;
    margin-right: 28px;
  }

  .hero-title {
    width: 92vw;
  }

  .hero-bottom {
    width: 82vw;
    margin-left: 10%;
  }

  .product-card,
  .product-card-large,
  .product-card-wide {
    grid-column: span 6;
  }

  .product-card a {
    min-height: 570px;
  }

  .calculator {
    grid-template-columns: 1.3fr 0.7fr;
  }

  .works-head {
    grid-template-columns: 24% 1fr;
  }

  .works-count {
    display: none;
  }

  .gallery {
    grid-auto-rows: 190px;
  }

  .footer-main {
    grid-template-columns: 0.65fr 1.35fr;
  }

  .footer-qr {
    grid-column: 2;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 76px;
  }

  .desktop-nav,
  .header-phone {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

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

  .hero-title {
    width: 100%;
    font-size: clamp(68px, 14vw, 126px);
  }

  .hero-bottom {
    width: min(720px, 90%);
    margin-left: 0;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-proof {
    gap: 18px;
  }

  .hero-proof div:last-child {
    display: none;
  }

  .statement-grid,
  .section-head,
  .light-grid,
  .automation-grid,
  .request-grid,
  .local-grid {
    grid-template-columns: 1fr;
  }

  .section-index {
    margin-bottom: 58px;
  }

  .statement-foot {
    gap: 36px;
  }

  .light-copy .section-index,
  .automation-copy .section-index,
  .request-copy .section-index {
    margin-bottom: 58px;
  }

  .window-scene {
    width: min(700px, 100%);
    margin-inline: auto;
    aspect-ratio: 1.1;
  }

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

  .calculator-result {
    min-height: 600px;
  }

  .result-visual {
    max-width: 480px;
  }

  .works-head {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .automation-copy {
    order: -1;
  }

  .automation-media video {
    aspect-ratio: 1.25;
  }

  .process-list li {
    grid-template-columns: 90px 1fr auto;
  }

  .process-list div {
    grid-template-columns: 0.7fr 1fr;
  }

  .local-grid {
    gap: 70px;
  }

  .contacts {
    grid-template-columns: minmax(0, 1fr);
  }

  .contacts-map,
  .contacts-panel {
    min-width: 0;
  }

  .contacts-map,
  .contacts-map iframe {
    min-height: 480px;
  }

  .contacts-panel {
    min-height: 620px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-qr {
    grid-column: 1;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: calc(100vw - 32px);
    --radius: 14px;
  }

  .section {
    padding-block: 90px;
  }

  .display-title {
    font-size: clamp(48px, 14vw, 72px);
  }

  .button {
    min-height: 54px;
  }

  .hero {
    min-height: max(680px, 100svh);
  }

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

  .hero-media::after {
    background: linear-gradient(90deg, rgba(11, 12, 13, 0.76), rgba(11, 12, 13, 0.28));
  }

  .hero-content {
    min-height: max(680px, 100svh);
    padding-top: 110px;
    padding-bottom: 116px;
    justify-content: center;
  }

  .hero-title {
    font-size: clamp(62px, 20.5vw, 106px);
    line-height: 0.82;
  }

  .title-line-offset {
    padding-left: 8%;
  }

  .hero-bottom {
    width: 100%;
    margin-top: 24px;
  }

  .hero-bottom > p {
    max-width: 430px;
    font-size: 15px;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .hero-proof {
    right: 16px;
    bottom: 18px;
    left: 16px;
    width: auto;
    justify-content: flex-end;
  }

  .hero-proof div:first-child {
    display: none;
  }

  .scroll-cue {
    bottom: 24px;
    left: 16px;
  }

  .statement-title {
    font-size: clamp(43px, 12.5vw, 70px);
  }

  .statement-foot {
    grid-template-columns: 1fr;
  }

  .statement-foot > p {
    font-size: 16px;
  }

  .partner-note {
    justify-content: flex-start;
  }

  .ticker-track span {
    padding-inline: 20px;
  }

  .catalog-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-card,
  .product-card-large,
  .product-card-wide {
    grid-column: auto;
  }

  .product-card a {
    min-height: 540px;
  }

  .product-media,
  .product-card-large .product-media,
  .product-card-wide .product-media {
    min-height: 330px;
  }

  .product-copy {
    min-height: 190px;
    padding: 22px 20px 26px;
    grid-template-columns: 32px minmax(0, 1fr);
  }

  .product-copy h3 {
    min-width: 0;
    font-size: 36px;
    overflow-wrap: anywhere;
  }

  .product-copy > i {
    top: 23px;
    right: 20px;
  }

  .catalog-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .catalog-note a {
    font-size: 14px;
  }

  .light-description,
  .automation-copy > p:not(.kicker),
  .request-lead {
    font-size: 16px;
  }

  .window-scene {
    aspect-ratio: 0.82;
  }

  .scene-window {
    top: 7%;
    right: 6%;
    left: 6%;
    height: 69%;
  }

  .scene-console {
    right: 6%;
    bottom: 7%;
    left: 6%;
  }

  .configurator-head {
    margin-bottom: 55px;
  }

  .calculator-form,
  .calculator-result {
    padding: 28px 20px;
  }

  .calculator fieldset {
    padding-bottom: 36px;
  }

  .calculator fieldset + fieldset {
    padding-top: 36px;
  }

  .choice-grid-products {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .choice-grid-products label > span {
    width: 100%;
    padding-inline: 13px;
    justify-content: center;
    text-align: center;
  }

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

  .measure-grid > label:last-child {
    grid-column: 1 / -1;
  }

  .calculator-result {
    min-height: 570px;
  }

  .gallery {
    width: calc(100vw - 20px);
    grid-auto-rows: 150px;
    gap: 8px;
  }

  .gallery-item-wide {
    grid-column: span 2;
  }

  .gallery-item > span {
    right: 12px;
    bottom: 12px;
    left: 12px;
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .gallery-item b {
    font-size: 13px;
  }

  .gallery-item em {
    font-size: 8px;
  }

  .lightbox {
    padding: 40px 14px;
  }

  .automation-grid {
    gap: 50px;
  }

  .automation-media video {
    aspect-ratio: 0.9;
  }

  .process {
    padding-top: 20px;
  }

  .process-head {
    margin-bottom: 50px;
  }

  .process-list li {
    min-height: 190px;
    grid-template-columns: 45px 1fr;
  }

  .process-list div {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .process-list p {
    font-size: 13px;
  }

  .process-list i {
    display: none;
  }

  .local-title-wrap h2 {
    font-size: 25vw;
  }

  .local-fact {
    grid-template-columns: 105px 1fr auto;
  }

  .request-grid {
    gap: 55px;
  }

  .lead-form {
    margin-inline: -16px;
    padding: 34px 20px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contacts-panel {
    min-height: 580px;
    padding: 60px 24px 90px;
  }

  .contacts-panel h2 {
    font-size: clamp(44px, 12vw, 52px);
  }

  .contacts-map,
  .contacts-map iframe {
    min-height: 420px;
  }

  .contact-lines a {
    grid-template-columns: 80px 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-main {
    gap: 55px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .mobile-action {
    display: grid;
  }

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

@media (max-width: 430px) {
  .legal-main h1 {
    font-size: 42px;
  }

  .hero-title {
    font-size: clamp(57px, 19.8vw, 86px);
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    display: none;
  }

  .choice-grid:not(.choice-grid-products) {
    display: grid;
    grid-template-columns: 1fr;
  }

  .choice-grid:not(.choice-grid-products) label > span {
    width: 100%;
    justify-content: center;
  }

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

  .measure-grid > label:last-child {
    grid-column: auto;
  }

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

  .gallery-item,
  .gallery-item-tall,
  .gallery-item-wide {
    min-height: 420px;
    grid-column: auto;
    grid-row: auto;
  }

  .local-fact {
    grid-template-columns: 90px 1fr auto;
  }

  .local-fact strong {
    font-size: 36px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-slats {
    display: none;
  }

  .hero-media img,
  .title-line > span,
  html.motion-ok .reveal {
    opacity: 1;
    transform: none;
  }
}
