:root {
  --ink: #101010;
  --paper: #f7f4ee;
  --white: #ffffff;
  --muted: #7c7a74;
  --line: rgba(16, 16, 16, 0.14);
  --lime: #d9ff3f;
  --cyan: #12d4e8;
  --orange: #ff6a2a;
  --pink: #ff3f8f;
  --violet: #7d4dff;
  --green: #19c276;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

.b24-widget-button-wrapper,
.b24-widget-button-popup,
.b24-window,
.bx-livechat-wrapper,
.bx-livechat-show,
.bx-imopenlines-config-sidebar,
iframe[src*="bitrix24"],
iframe[src*="imopenlines"],
iframe[src*="crm/site_button"] {
  z-index: 2147483000 !important;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 74px;
  padding: 12px clamp(16px, 3vw, 42px);
  color: var(--ink);
  background: rgba(247, 244, 238, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transition: background 240ms ease, color 240ms ease, border-color 240ms ease;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 136px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 74px;
  height: auto;
}

.brand span {
  font-size: 0.8rem;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.45vw, 22px);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
}

.language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 30px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--ink);
}

.language-switcher a.active {
  background: var(--ink);
  color: var(--paper);
}

.icon-button,
.menu-toggle {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-toggle {
  display: none;
}

.button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button:hover,
.ghost-button:hover {
  transform: translateY(-2px);
}

.button.accent {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
}

.ghost-button {
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  border-color: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after,
.media-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.18) 56%, rgba(0, 0, 0, 0.5)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.65));
}

.hero-content {
  width: 100%;
  padding: 120px clamp(18px, 4vw, 64px) clamp(38px, 6vw, 84px);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 42px;
  height: 2px;
  background: currentColor;
}

h1,
.display {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(3.3rem, 10vw, 11.2rem);
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy {
  display: grid;
  grid-template-columns: minmax(220px, 460px) auto;
  align-items: end;
  gap: clamp(24px, 5vw, 80px);
  margin-top: 32px;
}

.lead {
  margin: 0;
  font-size: clamp(1.02rem, 1.6vw, 1.4rem);
  line-height: 1.45;
}

.hero-stats,
.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.product-hero .stat-strip {
  grid-template-columns: repeat(2, minmax(120px, 1fr));
}

.hero-stats div,
.stat-strip div {
  padding: 16px;
  background: rgba(0, 0, 0, 0.32);
}

.hero-stats b,
.stat-strip b {
  display: block;
  font-size: clamp(1.45rem, 3vw, 2.5rem);
  line-height: 1;
}

.hero-stats span,
.stat-strip span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  right: clamp(18px, 4vw, 64px);
  bottom: 24px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 999px;
}

.scroll-cue::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  animation: cue 1.8s infinite;
}

@keyframes cue {
  0%,
  100% {
    transform: translateY(-14px);
    opacity: 0.45;
  }
  50% {
    transform: translateY(14px);
    opacity: 1;
  }
}

.section {
  position: relative;
  width: 100%;
  padding: clamp(64px, 9vw, 132px) clamp(18px, 4vw, 64px);
}

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

.section.orange {
  color: var(--ink);
  background: var(--orange);
}

.section.lime {
  color: var(--ink);
  background: var(--lime);
}

.section.cyan {
  color: var(--ink);
  background: var(--cyan);
}

.section-title {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: clamp(24px, 4vw, 72px);
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 72px);
}

.section-title h2 {
  margin: 0;
  font-size: clamp(2.3rem, 6vw, 7rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-title p {
  margin: 0;
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  line-height: 1.48;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  min-height: 78svh;
}

.product-tile {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 78svh;
  overflow: hidden;
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  background: var(--ink);
}

.product-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.product-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.72));
}

.product-tile:hover img {
  transform: scale(1.055);
}

.tile-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
  padding: 24px;
}

.tile-content h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3.2vw, 3.4rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.tile-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.42;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--white);
}

.marquee-track {
  display: flex;
  gap: 34px;
  width: max-content;
  padding: 18px 0;
  animation: marquee 28s linear infinite;
}

.marquee span {
  font-size: clamp(2.1rem, 5vw, 6.5rem);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

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

.editorial-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.25fr 0.85fr;
  gap: clamp(16px, 2vw, 30px);
  align-items: stretch;
}

.editorial-panel {
  min-height: clamp(360px, 58vw, 780px);
  overflow: hidden;
  background: var(--ink);
}

.editorial-panel:nth-child(2) {
  transform: translateY(42px);
}

.editorial-panel img,
.editorial-panel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-feature {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 86svh;
}

.model-showcase {
  padding: clamp(38px, 5vw, 78px) clamp(18px, 4vw, 64px) clamp(72px, 9vw, 132px);
  background: var(--paper);
}

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

.model-banner {
  position: relative;
  min-height: clamp(420px, 68svh, 760px);
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background: var(--ink);
}

.model-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.14) 54%, rgba(0, 0, 0, 0.48)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.68));
}

.model-banner img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.model-banner-copy {
  position: absolute;
  left: clamp(22px, 4vw, 64px);
  right: clamp(22px, 4vw, 64px);
  bottom: clamp(24px, 4vw, 64px);
}

.model-banner-copy h2 {
  margin: 0;
  font-size: clamp(3.4rem, 12vw, 12rem);
  line-height: 0.8;
  text-transform: uppercase;
}

.model-story {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) auto;
  gap: clamp(22px, 4vw, 64px);
  align-items: end;
  padding: clamp(28px, 4vw, 58px) 0;
}

.model-story h3 {
  margin: 0 0 14px;
  font-size: clamp(1.55rem, 2.8vw, 3.4rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.model-story p {
  max-width: 82ch;
  margin: 0;
  font-size: clamp(1rem, 1.35vw, 1.24rem);
  line-height: 1.52;
}

.model-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: clamp(12px, 1.5vw, 22px);
}

.model-photo {
  position: relative;
  min-height: clamp(300px, 44vw, 620px);
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.model-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 620ms ease, filter 620ms ease;
}

.model-photo figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 13px 16px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.64);
  backdrop-filter: blur(14px);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 240ms ease, transform 240ms ease;
}

.model-photo:hover img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.03);
}

.model-photo:hover figcaption,
.model-photo:focus-within figcaption {
  opacity: 1;
  transform: translateY(0);
}

.split-feature.reverse {
  grid-template-columns: 1.05fr 0.95fr;
}

.feature-copy {
  display: grid;
  align-content: center;
  gap: 28px;
  padding: clamp(28px, 5vw, 80px);
}

.feature-copy h2 {
  margin: 0;
  font-size: clamp(2.5rem, 6.5vw, 8rem);
  line-height: 0.86;
  text-transform: uppercase;
}

.feature-copy p {
  margin: 0;
  max-width: 64ch;
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.52;
}

.feature-media {
  position: relative;
  min-height: 72svh;
  overflow: hidden;
}

.feature-media img,
.feature-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.metric-grid,
.spec-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.metric,
.spec,
.blog-card {
  min-height: 170px;
  padding: clamp(20px, 2.5vw, 34px);
  background: var(--paper);
}

.dark .metric,
.dark .spec,
.dark .blog-card {
  background: #1b1b1b;
}

.metric b,
.spec b {
  display: block;
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 4.6rem);
  line-height: 0.88;
}

.metric span,
.spec span,
.blog-card p {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.dark .metric span,
.dark .spec span,
.dark .blog-card p {
  color: rgba(255, 255, 255, 0.65);
}

.b2b-band {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 44svh;
}

.b2b-cell {
  display: grid;
  align-content: space-between;
  gap: 40px;
  padding: clamp(24px, 4vw, 58px);
  border-right: 1px solid rgba(16, 16, 16, 0.14);
}

.b2b-cell h3,
.blog-card h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2.4vw, 3rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.blog-card {
  display: grid;
  align-content: space-between;
  gap: 22px;
  color: inherit;
}

.blog-card span {
  align-self: end;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card:hover h3 {
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.12em;
}

.article-hero {
  min-height: 92svh;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  color: var(--white);
  background: var(--ink);
}

.article-hero-copy {
  position: relative;
  display: grid;
  align-content: center;
  gap: 24px;
  padding: 118px clamp(22px, 4vw, 64px) clamp(36px, 5vw, 72px);
  overflow: hidden;
}

.article-hero-copy h1 {
  max-width: 12.8ch;
  font-size: clamp(2.9rem, 4.35vw, 5.9rem);
  line-height: 0.88;
  letter-spacing: 0;
  overflow-wrap: normal;
  hyphens: manual;
}

.article-hero-copy p {
  max-width: 62ch;
  margin: 0;
  font-size: clamp(1rem, 1.32vw, 1.25rem);
  line-height: 1.52;
}

.article-hero-media {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
}

.article-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 0.78fr);
  gap: clamp(30px, 5vw, 88px);
  align-items: start;
}

.article-meta {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 14px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.article-meta a {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.article-body {
  display: grid;
  gap: 26px;
  max-width: 860px;
}

.article-body p {
  margin: 0;
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  line-height: 1.7;
}

.article-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(130px, 16vw, 245px);
  gap: clamp(10px, 1vw, 16px);
  margin: clamp(24px, 3vw, 44px) 0;
}

.article-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--white);
  transition: transform 520ms ease, filter 520ms ease;
}

.article-gallery img:nth-child(1) {
  grid-column: span 5;
  grid-row: span 2;
}

.article-gallery img:nth-child(2) {
  grid-column: span 4;
}

.article-gallery img:nth-child(3) {
  grid-column: span 3;
}

.article-gallery img:nth-child(4) {
  grid-column: span 7;
}

.article-gallery img:hover {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.018);
}

.b2b-cell p {
  margin: 0;
  line-height: 1.45;
}

.media-band {
  position: relative;
  min-height: 72svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.media-band img,
.media-band video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-caption {
  padding: clamp(28px, 5vw, 78px);
}

.media-caption h2 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.5rem, 7vw, 8rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.media-caption p {
  max-width: 58ch;
  margin: 24px 0 0;
  font-size: clamp(1rem, 1.3vw, 1.24rem);
  line-height: 1.5;
}

.product-hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  background: var(--ink);
  color: var(--white);
}

.product-hero-copy {
  display: grid;
  align-content: end;
  gap: 28px;
  min-height: 100svh;
  padding: 118px clamp(22px, 4vw, 64px) clamp(36px, 5vw, 72px);
}

.product-hero-copy h1 {
  max-width: 10ch;
}

.product-hero-copy p {
  max-width: 60ch;
  margin: 0;
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  line-height: 1.5;
}

.product-hero-media {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

.product-hero-media img,
.product-hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}

.sticky-note {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
}

.sticky-note h2 {
  margin: 0;
  max-width: 100%;
  font-size: clamp(2rem, 3.25vw, 3.9rem);
  line-height: 0.92;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.sticky-note p {
  margin: 0;
  line-height: 1.52;
}

.feature-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.feature-row {
  display: grid;
  grid-template-columns: 0.28fr 1fr;
  gap: 24px;
  padding: clamp(22px, 3vw, 38px);
  background: var(--paper);
}

.feature-row b {
  font-size: clamp(1.6rem, 3vw, 3rem);
  line-height: 0.9;
}

.feature-row p {
  margin: 0;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.52;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 12px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--white);
}

.product-gallery-section {
  background: #f6f5f0;
}

.product-gallery-grid {
  gap: clamp(10px, 1.2vw, 18px);
  background: transparent;
}

.product-gallery-grid img {
  border: 1px solid rgba(16, 16, 16, 0.08);
  transition: transform 360ms ease, filter 360ms ease;
}

.product-gallery-grid img:hover {
  filter: saturate(1.05) contrast(1.03);
  transform: translateY(-4px);
}

.color-wall {
  display: grid;
  grid-template-columns: repeat(5, minmax(140px, 1fr));
  gap: 10px;
}

.color-wall img {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  background: var(--white);
}

.faq {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.faq details {
  background: var(--paper);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 3vw, 40px);
  font-size: clamp(1.02rem, 1.5vw, 1.35rem);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

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

.faq summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

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

.faq p {
  margin: 0;
  padding: 0 clamp(18px, 3vw, 40px) 28px;
  max-width: 86ch;
  color: var(--muted);
  line-height: 1.55;
}

.form-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  min-height: 70svh;
  color: var(--white);
  background: var(--ink);
}

.form-copy {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: clamp(28px, 5vw, 76px);
}

.form-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5.4vw, 6.8rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.lead-form {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(28px, 5vw, 76px);
  background: #202020;
}

.lead-form label {
  display: grid;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-form input,
.lead-form textarea,
.lead-form select {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  color: var(--white);
  background: #101010;
  padding: 12px 14px;
}

.lead-form textarea {
  min-height: 118px;
  resize: vertical;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) repeat(3, minmax(170px, 0.7fr));
  gap: clamp(26px, 4vw, 64px);
  align-items: start;
  padding: clamp(38px, 6vw, 86px) clamp(18px, 4vw, 64px);
  color: var(--white);
  background: #050505;
}

.site-footer h2 {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(2.3rem, 5vw, 6.4rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.footer-brand-block,
.footer-column {
  display: grid;
  align-content: start;
}

.footer-brand-block {
  gap: 22px;
}

.footer-brand-block p,
.footer-column p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
}

.footer-brand-block p {
  max-width: 60ch;
}

.footer-brand-block .button {
  justify-self: start;
}

.footer-column {
  gap: 12px;
}

.footer-column h3 {
  margin: 0 0 8px;
  color: var(--lime);
  font-size: 0.8rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.footer-column a:hover {
  color: var(--lime);
}

.footer-meta {
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

[data-parallax] {
  will-change: transform;
}

@media (max-width: 1180px) {
  .collection-grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }

  .product-tile,
  .collection-grid {
    min-height: 60svh;
  }

  .metric-grid,
  .spec-grid,
  .blog-grid,
  .article-gallery,
  .color-wall {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }

  .article-gallery {
    grid-auto-rows: clamp(220px, 34vw, 360px);
  }

  .article-gallery img,
  .article-gallery img:nth-child(1),
  .article-gallery img:nth-child(2),
  .article-gallery img:nth-child(3),
  .article-gallery img:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(140px, 1fr));
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 45;
    display: none;
    align-content: center;
    justify-items: start;
    gap: 12px;
    padding: 100px 22px 42px;
    color: var(--white);
    background: rgba(0, 0, 0, 0.96);
    font-size: clamp(1.8rem, 9vw, 4.4rem);
    line-height: 0.95;
  }

  .main-nav.is-open {
    display: grid;
  }

  .nav-actions .ghost-button {
    display: none;
  }

  .language-switcher {
    gap: 2px;
  }

  .language-switcher a {
    min-width: 30px;
    height: 28px;
    font-size: 10px;
  }

  .menu-toggle {
    display: inline-grid;
    position: relative;
    z-index: 50;
  }

  .hero-copy,
  .section-title,
  .split-feature,
  .split-feature.reverse,
  .article-hero,
  .article-layout,
  .product-hero,
  .product-layout,
  .form-band {
    grid-template-columns: 1fr;
  }

  .hero-stats,
  .stat-strip {
    grid-template-columns: 1fr;
  }

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

  .editorial-panel,
  .editorial-panel:nth-child(2) {
    min-height: 55svh;
    transform: none;
  }

  .b2b-band {
    grid-template-columns: 1fr;
  }

  .model-story {
    grid-template-columns: 1fr;
  }

  .model-photo-grid {
    grid-template-columns: 1fr;
  }

  .b2b-cell {
    border-right: 0;
    border-bottom: 1px solid rgba(16, 16, 16, 0.14);
  }

  .product-hero-copy,
  .product-hero-media,
  .article-hero-media {
    min-height: 58svh;
  }

  .sticky-note,
  .article-meta {
    position: static;
  }

  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand-block {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .brand span {
    display: none;
  }

  .brand img {
    width: 62px;
  }

  h1,
  .display {
    font-size: clamp(3.1rem, 18vw, 5.6rem);
  }

  .article-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 12vw, 4rem);
    line-height: 0.9;
    overflow-wrap: anywhere;
  }

  .article-hero-copy {
    padding-top: 104px;
  }

  .section {
    padding-inline: 16px;
  }

  .collection-grid,
  .collection-grid .product-tile:first-child,
  .metric-grid,
  .spec-grid,
  .blog-grid,
  .article-gallery,
  .color-wall,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .article-gallery {
    grid-auto-rows: auto;
  }

  .article-gallery img {
    aspect-ratio: 4 / 5;
    height: auto;
  }

  .product-tile {
    min-height: 64svh;
  }

  .model-showcase {
    padding-inline: 16px;
  }

  .model-banner {
    min-height: 66svh;
  }

  .model-photo {
    min-height: 54svh;
  }

  .feature-row {
    grid-template-columns: 1fr;
  }

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

  .footer-brand-block {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
