/* Строй Забор — modern landing */
:root {
  --navy: #2e3359;
  --navy-deep: #1c2140;
  --navy-soft: #3a4270;
  --ink: #151820;
  --muted: #5e6678;
  --line: rgba(46, 51, 89, 0.12);
  --coral: #e15f41;
  --coral-deep: #c94a2e;
  --gold: #f5cd79;
  --gold-deep: #d9a84f;
  --sand: #ddac7f;
  --bg: #f3f4f7;
  --bg-warm: #f7f3ec;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(28, 33, 64, 0.14);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --header-h: 118px;
  --font-display: "Unbounded", sans-serif;
  --font-body: "Manrope", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --section-y: clamp(2.5rem, 4vw, 3.25rem);
  --section-gap: 1.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(245, 205, 121, 0.18), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(225, 95, 65, 0.08), transparent 45%),
    linear-gradient(180deg, #eef0f5 0%, var(--bg) 35%, #eceef4 100%);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button,
input {
  font: inherit;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: var(--section-y) 0;
}

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 3.4vw, 2.65rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 0.85rem;
  color: var(--navy-deep);
}

.section-lead {
  margin: 0;
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-head,
.quality-head,
.section > .container > .reveal:first-child {
  margin-bottom: var(--section-gap);
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.85rem 1.45rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.btn::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -60%;
  width: 45%;
  height: 160%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0) 35%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(255, 255, 255, 0) 65%,
    transparent 100%
  );
  transform: translateX(0) skewX(-20deg);
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: soft-light;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:hover::before {
  opacity: 1;
  animation: btn-shine 0.85s var(--ease) forwards;
}

@keyframes btn-shine {
  from {
    transform: translateX(0) skewX(-20deg);
  }
  to {
    transform: translateX(320%) skewX(-20deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn::before {
    display: none;
  }
}

.btn-primary {
  background: linear-gradient(135deg, var(--coral) 0%, #ef7a4d 100%);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(225, 95, 65, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--coral-deep) 0%, var(--coral) 100%);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--navy-deep);
  box-shadow: 0 12px 28px rgba(217, 168, 79, 0.28);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  border-color: rgba(46, 51, 89, 0.25);
  color: var(--navy);
}

.btn-outline-dark:hover {
  border-color: var(--navy);
  background: rgba(46, 51, 89, 0.04);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  backdrop-filter: blur(8px);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  min-height: var(--header-h);
  height: auto;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(28, 33, 64, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(15, 18, 35, 0.22);
}

.header-shell {
  display: grid;
  gap: 0.15rem;
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 56px;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem clamp(1rem, 2.8vw, 2rem);
  padding: 0.45rem 0 0.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.nav__list,
.footer-nav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: inherit;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav__list {
  justify-content: flex-start;
  gap: 1rem 1.4rem;
}

.nav a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  font-size: 0.94rem;
  transition: color 0.2s ease;
  padding: 0.25rem 0.15rem;
  white-space: nowrap;
}

.nav a:hover,
.nav a.is-active,
.nav .current-menu-item > a,
.nav .current_page_item > a {
  color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.header-phone {
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  font-size: 0.98rem;
  transition: color 0.2s var(--ease);
}

.header-phone:hover {
  color: var(--gold);
}

.header-messengers {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.header-messenger {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  transition: transform 0.2s var(--ease), background 0.2s ease, box-shadow 0.2s ease;
}

.header-messenger--max {
  background: transparent;
  box-shadow: 0 8px 18px rgba(83, 62, 238, 0.35);
  padding: 0;
  overflow: hidden;
}

.header-messenger--max img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.header-messenger--telegram {
  background: #2aabee;
  box-shadow: 0 8px 18px rgba(42, 171, 238, 0.35);
}

.header-messenger--telegram svg {
  width: 24px;
  height: 24px;
}

.header-messenger:hover {
  transform: translateY(-2px);
  color: #fff;
}

.header-cta {
  min-height: 44px;
  padding-inline: 1.15rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  place-items: center;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  position: relative;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

.site-header.nav-open .menu-toggle span {
  background: transparent;
}

.site-header.nav-open .menu-toggle span::before {
  top: 0;
  transform: rotate(45deg);
}

.site-header.nav-open .menu-toggle span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  height: 700px;
  max-height: 700px;
  display: grid;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: hero-zoom 18s var(--ease) infinite alternate;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 22, 40, 0.55) 0%, rgba(18, 22, 40, 0.28) 38%, rgba(18, 22, 40, 0.78) 100%),
    linear-gradient(90deg, rgba(18, 22, 40, 0.55) 0%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: calc(var(--header-h) + 1rem) 0 1.5rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 5.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0 0 1.25rem;
  max-width: 12ch;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.hero-brand span {
  color: var(--gold);
}

.hero-title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  max-width: 22ch;
}

.hero-text {
  margin: 0 0 1.8rem;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: rise-in 0.9s var(--ease) forwards;
}

.hero-reveal:nth-child(1) { animation-delay: 0.1s; }
.hero-reveal:nth-child(2) { animation-delay: 0.22s; }
.hero-reveal:nth-child(3) { animation-delay: 0.34s; }
.hero-reveal:nth-child(4) { animation-delay: 0.46s; }

@keyframes hero-zoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.1); }
}

@keyframes rise-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* About */
.about-board {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
  min-height: clamp(480px, 62vh, 640px);
  overflow: hidden;
  border-radius: var(--radius);
}

.about-board__story {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.5rem, 5vw, 5rem);
  background:
    radial-gradient(circle at 0% 0%, rgba(245, 205, 121, 0.16), transparent 42%),
    linear-gradient(165deg, #232849 0%, var(--navy-deep) 55%, #151933 100%);
  color: var(--white);
  overflow: hidden;
}

.about-board__story .section-label {
  color: var(--gold);
  position: relative;
  z-index: 1;
}

.about-year {
  position: absolute;
  right: -0.15em;
  bottom: -0.18em;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(7rem, 18vw, 14rem);
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: -0.08em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 205, 121, 0.22);
  pointer-events: none;
  user-select: none;
}

.about-heading {
  position: relative;
  z-index: 1;
  margin: 0 0 1.2rem;
  max-width: 11ch;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.8vw, 3.1rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.about-lead {
  position: relative;
  z-index: 1;
  margin: 0 0 1rem;
  max-width: 34rem;
  font-size: 1.12rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.about-text {
  position: relative;
  z-index: 1;
  margin: 0 0 1.75rem;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.02rem;
}

.about-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  width: fit-content;
  font-weight: 700;
  color: var(--gold);
  border-bottom: 1px solid rgba(245, 205, 121, 0.35);
  padding-bottom: 0.2rem;
  transition: gap 0.25s var(--ease), border-color 0.25s var(--ease);
}

.about-link::after {
  content: "→";
  transition: transform 0.25s var(--ease);
}

.about-link:hover {
  gap: 0.9rem;
  border-color: var(--gold);
}

.about-link:hover::after {
  transform: translateX(3px);
}

.about-board__visual {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: #1a1f35;
}

.about-board__visual::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold), var(--coral));
  z-index: 3;
}

.about-slider {
  position: absolute;
  inset: 0;
}

.about-slider__track {
  position: absolute;
  inset: 0;
}

.about-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.55s var(--ease);
  pointer-events: none;
}

.about-slider__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.about-slider__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  min-height: 0;
  border-radius: 0;
}

.about-slider__btn {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy-deep);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.about-slider__btn:hover {
  background: var(--gold);
  transform: translateY(-50%) scale(1.05);
}

.about-slider__btn--prev {
  left: 0.9rem;
  padding-right: 2px;
}

.about-slider__btn--next {
  right: 0.9rem;
  padding-left: 2px;
}

.about-slider__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1rem;
  z-index: 4;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
}

.about-slider__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.about-slider__dot.is-active {
  background: var(--gold);
  transform: scale(1.2);
}

.about-rail {
  margin-top: var(--section-gap);
  background: var(--navy-deep);
  border-radius: var(--radius);
  overflow: hidden;
}

.about-rail__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.about-rail__inner:has(.about-rail__item:nth-child(5):last-child) {
  grid-template-columns: repeat(5, 1fr);
}

.about-rail__inner:has(.about-rail__item:nth-child(5):last-child) .about-rail__item {
  padding: 1.35rem 0.7rem;
}

.about-rail__inner:has(.about-rail__item:nth-child(5):last-child) .about-rail__item strong {
  font-size: clamp(0.95rem, 1.2vw, 1.12rem);
}

.about-rail__item {
  padding: 1.45rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.about-rail__item:last-child {
  border-right: 0;
}

.about-rail__item strong {
  display: block;
  margin-bottom: 0.3rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: -0.03em;
}

.about-rail__item span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

/* Legacy helpers for install page about */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0 0 1rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.stat {
  padding: 1.1rem 1rem;
  border-top: 2px solid var(--gold);
  background: rgba(255, 255, 255, 0.55);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy-deep);
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
}

.stat span {
  font-size: 0.86rem;
  color: var(--muted);
}

.about-visual {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0.9rem;
  min-height: 420px;
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-visual:not(.about-visual--slider):not(.about-visual--collage) img:first-child {
  grid-row: span 2;
  min-height: 420px;
}

.about-visual:not(.about-visual--slider):not(.about-visual--collage) img:last-child {
  align-self: end;
  min-height: 240px;
  margin-top: 2.5rem;
}

/* Install page collage */
.about-visual--collage {
  position: relative;
  display: block;
  min-height: 480px;
  padding: 1.25rem 1.25rem 1.25rem 0;
}

.about-visual--collage figure {
  margin: 0;
  overflow: hidden;
  background: #1a1f35;
}

.about-visual--collage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.6s var(--ease);
  min-height: 0;
  margin: 0;
  grid-row: auto;
}

.about-visual--collage figure:hover img {
  transform: scale(1.04);
}

.about-visual__main {
  position: relative;
  width: 78%;
  aspect-ratio: 4 / 5;
  border-radius: 4px 22px 4px 22px;
  box-shadow: 0 22px 50px rgba(28, 33, 64, 0.18);
}

.about-visual__main::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold), var(--coral));
  z-index: 2;
}

.about-visual__main::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(18, 22, 40, 0.18) 0%,
    rgba(18, 22, 40, 0.35) 55%,
    rgba(18, 22, 40, 0.48) 100%
  );
  pointer-events: none;
}

.about-visual--collage .about-visual__side,
.about-visual--collage .about-visual__thumb {
  padding: 0;
  border: 3px solid transparent;
  background:
    linear-gradient(#1a1f35, #1a1f35) padding-box,
    linear-gradient(135deg, var(--gold) 0%, #f0d08a 42%, var(--gold-deep) 100%) border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 18px 40px rgba(15, 18, 35, 0.22);
}

.about-visual__side {
  position: absolute;
  right: 0;
  top: 12%;
  width: 48%;
  aspect-ratio: 1;
  border-radius: 22px 4px 22px 4px;
  z-index: 2;
}

.about-visual__thumb {
  position: absolute;
  left: 8%;
  bottom: 0;
  width: 34%;
  aspect-ratio: 1;
  border-radius: 16px;
  z-index: 3;
  box-shadow: 0 14px 32px rgba(15, 18, 35, 0.2);
}

.about-visual__badge {
  position: absolute;
  right: 4%;
  bottom: 8%;
  z-index: 4;
  display: grid;
  gap: 0.2rem;
  min-width: 140px;
  padding: 1rem 1.15rem;
  background: var(--navy-deep);
  color: var(--white);
  box-shadow: 0 16px 36px rgba(28, 33, 64, 0.28);
}

.about-visual__badge strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold);
  letter-spacing: -0.02em;
}

.about-visual__badge span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Product */
.product {
  position: relative;
  color: var(--white);
  overflow: hidden;
}

.product-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.product-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(28, 33, 64, 0.94) 0%, rgba(28, 33, 64, 0.82) 45%, rgba(28, 33, 64, 0.55) 100%);
}

.product .container {
  position: relative;
  z-index: 1;
}

.product .section-label {
  color: var(--gold);
}

.product .section-title,
.product .section-lead {
  color: var(--white);
}

.product .section-lead {
  color: rgba(255, 255, 255, 0.78);
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
  margin-top: 0;
}

.price-block {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin: 1.5rem 0 0.5rem;
}

.price-block strong {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--gold);
}

.price-block span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
}

.product-meta {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.78);
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.spec-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.spec-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.86);
}

.spec-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(245, 205, 121, 0.16);
}

.product-gallery {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.75rem;
  min-height: 420px;
}

.product-gallery a {
  position: relative;
  display: block;
  padding: 0;
  border: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  background: #111;
  min-height: 0;
}

.product-gallery a[hidden] {
  display: none !important;
}

.product-gallery a:first-child {
  grid-row: span 2;
}

.product-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.product-gallery a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 52px;
  height: 52px;
  margin: -26px 0 0 -26px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231c2140' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M20 20l-3.5-3.5'/%3E%3C/svg%3E")
    center / 22px no-repeat,
    rgba(245, 205, 121, 0.95);
  box-shadow: 0 10px 28px rgba(15, 18, 35, 0.28);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.28s ease, transform 0.28s var(--ease);
  pointer-events: none;
}

.product-gallery a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(18, 22, 40, 0.42);
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.product-gallery a:hover img {
  transform: scale(1.05);
}

.product-gallery a:hover::before {
  opacity: 1;
  transform: scale(1);
}

.product-gallery a:hover::after {
  opacity: 1;
}

/* Wholesale / gallery strip */
.gallery-section .section-head {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: end;
  flex-wrap: wrap;
}

.gallery-nav {
  display: flex;
  gap: 0.55rem;
}

.gallery-nav__btn {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  color: var(--navy-deep);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.gallery-nav__btn[data-gallery-prev] {
  padding-right: 2px;
}

.gallery-nav__btn[data-gallery-next] {
  padding-left: 2px;
}

.gallery-nav__btn:hover:not(:disabled) {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.gallery-nav__btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.gallery-slider {
  position: relative;
}

.gallery-slider__viewport {
  overflow: hidden;
  border-radius: var(--radius);
}

.gallery-slider__track {
  display: flex;
  transition: transform 0.55s var(--ease);
  will-change: transform;
}

.gallery-slider__page {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  min-width: 0;
  align-content: start;
}

.gallery-slider__page a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 14px;
  background: #1a1f35;
  min-height: 0;
  height: 100%;
  aspect-ratio: 4 / 3;
}

.gallery-slider__page img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

/* Shared loupe hover for galleries */
.install-tile::before,
.gallery-slider__page a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 52px;
  height: 52px;
  margin: -26px 0 0 -26px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231c2140' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M20 20l-3.5-3.5'/%3E%3C/svg%3E")
    center / 22px no-repeat,
    rgba(245, 205, 121, 0.95);
  box-shadow: 0 10px 28px rgba(15, 18, 35, 0.28);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.28s ease, transform 0.28s var(--ease);
  pointer-events: none;
}

.install-tile::after,
.gallery-slider__page a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(18, 22, 40, 0.42);
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.install-tile:hover img,
.gallery-slider__page a:hover img {
  transform: scale(1.05);
}

.install-tile:hover::before,
.gallery-slider__page a:hover::before {
  opacity: 1;
  transform: scale(1);
}

.install-tile:hover::after,
.gallery-slider__page a:hover::after {
  opacity: 1;
}

.deal-strip {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
  margin-top: var(--section-gap);
}

.deal {
  padding: 1.35rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.deal h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy-deep);
}

.deal p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.deal strong {
  color: var(--coral);
}

.deal__note {
  margin-top: 0.85rem;
}

.deal__note-extra {
  display: block;
  margin-top: 0.4rem;
}

.deal .catalog-retailers {
  margin-top: 0.75rem;
  gap: 0.5rem;
}

.deal .retailer-logo {
  min-width: 118px;
  min-height: 48px;
  padding: 0.45rem 0.7rem;
}

.deal .retailer-logo img {
  max-height: 28px;
}

.deal .retailer-logo--leroy img {
  max-height: 40px;
  max-width: 50px;
}

/* Advantages */
.advantages {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.2)),
    radial-gradient(circle at 0% 100%, rgba(245, 205, 121, 0.18), transparent 40%);
}

.adv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 0;
}

.adv-item {
  padding: 1.5rem 1.25rem 1.6rem;
  border-radius: var(--radius);
  background: var(--navy-deep);
  color: var(--white);
  min-height: 100%;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.adv-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.adv-item img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 1.1rem;
}

.adv-item h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--gold);
}

.adv-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.94rem;
}

/* Videos */
.videos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0;
}

.video-card {
  position: relative;
  border: 0;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  min-height: 280px;
  background: #111;
  text-align: left;
  color: var(--white);
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform 0.5s var(--ease), opacity 0.3s ease;
}

.video-card:hover img {
  transform: scale(1.04);
  opacity: 1;
}

.video-card-body {
  position: absolute;
  inset: auto 0 0;
  padding: 1.4rem;
  background: linear-gradient(180deg, transparent, rgba(15, 18, 35, 0.92));
}

.video-card-body strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.video-card-body span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}

.play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 68px;
  height: 68px;
  margin: -34px 0 0 -34px;
  border-radius: 50%;
  background: rgba(245, 205, 121, 0.95);
  color: var(--navy-deep);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s var(--ease);
}

.video-card:hover .play-badge {
  transform: scale(1.08);
}

.play-badge svg {
  margin-left: 3px;
}

/* Contacts + form */
.contact-grid {
  display: flex;
  align-items: stretch;
  gap: 1.25rem;
}

.contact-panel,
.form-panel {
  border-radius: var(--radius);
  overflow: hidden;
  box-sizing: border-box;
}

.contact-panel {
  flex: 0.9 1 0;
  display: flex;
  flex-direction: column;
  background: var(--navy-deep);
  color: var(--white);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.contact-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 1.5rem;
  letter-spacing: -0.03em;
}

.contact-list {
  display: grid;
  gap: 1.25rem;
  align-content: start;
}

.contact-list h3 {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 500;
}

.contact-list p,
.contact-list a {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  font-weight: 600;
}

.contact-list a:hover {
  color: var(--gold);
}

.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.contact-phone__icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--navy-deep);
  flex-shrink: 0;
}

.contact-phone__icon svg {
  display: block;
}

.contact-actions {
  margin-top: 0.85rem;
}

.btn-avito {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 44px;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  background: #fff;
  color: var(--navy-deep);
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 24px rgba(15, 18, 35, 0.18);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.btn-avito__text {
  color: #000;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.btn-avito__logo {
  display: block;
  flex-shrink: 0;
  height: 1.25rem;
  width: auto;
}

.btn-avito:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 18, 35, 0.24);
  color: var(--navy-deep);
}

.form-panel {
  flex: 1.1 1 0;
  position: relative;
  display: flex;
  flex-direction: column;
}

.form-panel-bg {
  position: absolute;
  inset: 0;
}

.form-panel-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-panel-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(28, 33, 64, 0.88), rgba(28, 33, 64, 0.72));
}

.form-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--white);
}

.form-inner .form {
  margin-top: auto;
  width: 100%;
}

.form-inner .form .btn {
  width: 100%;
}

.form-inner h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.03em;
}

.form-inner > p {
  margin: 0 0 1.4rem;
  color: rgba(255, 255, 255, 0.78);
}

.form {
  display: grid;
  gap: 0.85rem;
}

.form label:not(.form-consent) {
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
}

.form input:not([type="checkbox"]):not([type="submit"]) {
  width: 100%;
  min-height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form input:not([type="checkbox"]):not([type="submit"])::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.form input:not([type="checkbox"]):not([type="submit"]):focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.12);
}

.form-consent {
  display: grid;
  grid-template-columns: 1.15rem minmax(0, 1fr);
  gap: 0.65rem;
  align-items: start;
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.62);
  cursor: pointer;
}

.form-consent__field,
.form-consent .wpcf7-form-control-wrap,
.form-consent .wpcf7-acceptance,
.form-consent .wpcf7-list-item {
  display: block;
  margin: 0;
}

.form-consent .wpcf7-form-control-wrap {
  position: static;
}

.form-consent__text {
  display: block;
  min-width: 0;
}

.form-consent input[type="checkbox"] {
  display: block;
  width: 1.15rem;
  height: 1.15rem;
  margin: 0.1rem 0 0;
  accent-color: var(--gold);
  cursor: pointer;
}

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

.form-consent a:hover {
  color: #ffe1a3;
}

.form-note {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

.form-note a {
  color: var(--gold);
  text-decoration: underline;
}

.legal-page {
  padding: calc(var(--header-h, 80px) + 2.5rem) 0 4rem;
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(245, 205, 121, 0.12), transparent 55%),
    linear-gradient(180deg, #1c2140 0%, #12162a 100%);
  color: rgba(255, 255, 255, 0.82);
}

.legal-page__inner {
  max-width: 760px;
}

.legal-page h1 {
  margin: 0.5rem 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2;
  color: var(--white);
}

.legal-page__lead {
  margin: 0 0 2rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
}

.legal-page h2 {
  margin: 1.75rem 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold);
}

.legal-page p {
  margin: 0 0 0.75rem;
  line-height: 1.65;
}

.legal-page a {
  color: var(--gold);
}

.form-status {
  min-height: 1.25rem;
  margin: 0;
  font-size: 0.9rem;
  color: var(--gold);
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  padding: 2.5rem 0 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 2.25rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.48);
}

.footer-copy__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1.25rem;
}

.footer-copy a {
  color: rgba(255, 255, 255, 0.62);
  transition: color 0.2s ease;
}

.footer-copy a:hover {
  color: var(--gold);
}

.footer-copy__dev {
  color: var(--gold) !important;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-copy__dev:hover {
  color: #ffe1a3 !important;
}

@media (max-width: 640px) {
  .footer-copy__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
  }
}

/* Cookie bar */
.cookie-bar {
  position: fixed;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.85rem;
  z-index: 1200;
  max-width: 520px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(145deg, rgba(46, 51, 89, 0.96) 0%, rgba(22, 26, 48, 0.98) 100%);
  border: 1px solid rgba(245, 205, 121, 0.24);
  box-shadow:
    0 14px 36px rgba(15, 18, 35, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  pointer-events: none;
}

.cookie-bar.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.cookie-bar.is-leaving {
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  pointer-events: none;
}

.cookie-bar__glow {
  position: absolute;
  inset: auto -30% -80% auto;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(245, 205, 121, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.cookie-bar__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.65rem 0.9rem;
  align-items: center;
  padding: 0.75rem 0.9rem;
}

.cookie-bar__copy strong {
  display: block;
  margin-bottom: 0.15rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
}

.cookie-bar__copy p {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.65);
}

.cookie-bar__copy a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-bar__copy a:hover {
  color: #ffe1a3;
}

.cookie-bar__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem 0.55rem;
}

.cookie-bar__accept {
  min-height: 34px;
  padding: 0.4rem 0.85rem;
  font-size: 0.8rem;
  border-radius: 10px;
}

.cookie-bar__link {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
  font: inherit;
  font-size: 0.74rem;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  padding: 0.25rem 0.15rem;
  transition: color 0.2s ease;
}

.cookie-bar__link:hover {
  color: var(--white);
}

@media (max-width: 560px) {
  .cookie-bar {
    left: 0.65rem;
    right: 0.65rem;
    bottom: 0.65rem;
    border-radius: 12px;
  }

  .cookie-bar__inner {
    grid-template-columns: 1fr;
    padding: 0.7rem 0.8rem;
    gap: 0.6rem;
  }

  .cookie-bar__actions {
    justify-content: stretch;
  }

  .cookie-bar__accept,
  .cookie-bar__link {
    flex: 1;
    text-align: center;
  }

  .cookie-bar__link {
    order: 2;
    padding: 0.5rem 0.4rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.04);
  }

  .cookie-bar__accept {
    order: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-bar {
    transition: opacity 0.2s ease;
    transform: none;
  }

  .cookie-bar.is-visible,
  .cookie-bar.is-leaving {
    transform: none;
  }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 1rem;
  background: rgba(10, 12, 20, 0.78);
  backdrop-filter: blur(6px);
}

.modal.is-open {
  display: grid;
}

#videoModal {
  padding: 0;
}

#videoModal .modal-dialog {
  width: 100%;
  height: 100%;
  max-width: none;
  border-radius: 0;
  display: flex;
  flex-direction: column;
}

#videoModal .modal-frame {
  flex: 1;
  aspect-ratio: auto;
  min-height: 0;
}

#videoModal .modal-close {
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.45);
}

.modal-dialog {
  width: min(100%, 920px);
  background: #0f1220;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.modal-frame {
  aspect-ratio: 16 / 9;
  background: #000;
}

.modal-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.modal-frame video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
  object-fit: contain;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: none;
  place-items: center;
  padding: 1rem;
  background: rgba(10, 12, 20, 0.88);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-width: min(96vw, 1100px);
  max-height: 88vh;
  border-radius: 12px;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-board,
  .about-grid,
  .cert-layout,
  .product-layout {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    flex-direction: column;
  }

  .contact-panel,
  .form-panel {
    flex: 1 1 auto;
  }

  .about-rail__inner {
    grid-template-columns: 1fr 1fr;
  }

  .about-board {
    min-height: 0;
  }

  .about-board__visual {
    min-height: 320px;
  }

  .about-year {
    font-size: clamp(5.5rem, 28vw, 9rem);
    opacity: 0.9;
  }

  .about-rail__item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .about-rail__item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .about-rail__inner:has(.about-rail__item:nth-child(5):last-child) {
    grid-template-columns: repeat(6, 1fr);
  }

  .about-rail__inner:has(.about-rail__item:nth-child(5):last-child) .about-rail__item {
    grid-column: span 2;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .about-rail__inner:has(.about-rail__item:nth-child(5):last-child) .about-rail__item:nth-child(-n + 3) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .about-rail__inner:has(.about-rail__item:nth-child(5):last-child) .about-rail__item:nth-child(3) {
    border-right: 0;
  }

  .about-rail__inner:has(.about-rail__item:nth-child(5):last-child) .about-rail__item:nth-child(4),
  .about-rail__inner:has(.about-rail__item:nth-child(5):last-child) .about-rail__item:nth-child(5) {
    grid-column: span 3;
    border-bottom: 0;
  }

  .about-rail__inner:has(.about-rail__item:nth-child(5):last-child) .about-rail__item:nth-child(4) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

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

  .gallery-slider__page {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, minmax(150px, 200px));
  }

  .deal-strip {
    grid-template-columns: 1fr;
  }

  .header-phone {
    font-size: 0.9rem;
  }
}

@media (max-width: 820px) {
  :root {
    --header-h: 72px;
  }

  .site-header,
  .site-header.is-scrolled,
  .site-header.nav-open {
    background: rgba(28, 33, 64, 0.94);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(15, 18, 35, 0.22);
  }

  .header-shell {
    padding-top: 0.45rem;
    padding-bottom: 0.45rem;
    gap: 0;
  }

  .header-top {
    min-height: 56px;
  }

  .menu-toggle {
    display: grid;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    display: grid;
    gap: 0;
    padding: 1rem;
    background: rgba(28, 33, 64, 0.96);
    backdrop-filter: blur(12px);
    border-top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
    text-align: left;
    justify-content: stretch;
  }

  .site-header.nav-open .nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__list {
    display: grid;
    gap: 0;
    width: 100%;
    justify-content: stretch;
  }

  .nav a {
    display: block;
    padding: 0.95rem 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .header-cta {
    display: none;
  }

  .header-phone {
    display: none;
  }

  .header-messengers {
    display: none;
  }

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

  .product-gallery {
    grid-template-rows: auto;
    min-height: 0;
  }

  .product-gallery a,
  .product-gallery a:first-child {
    min-height: 220px;
    grid-row: auto;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .about-visual {
    min-height: 0;
  }

  .about-visual:not(.about-visual--slider):not(.about-visual--collage) img:first-child,
  .about-visual:not(.about-visual--slider):not(.about-visual--collage) img:last-child {
    min-height: 220px;
    margin-top: 0;
    grid-row: auto;
  }

  .about-visual--collage {
    min-height: 420px;
    max-width: 420px;
    margin-inline: auto;
    padding: 0.75rem;
  }

  .about-visual__main {
    width: 82%;
  }

  .about-visual__side {
    width: 46%;
  }

  .about-visual__thumb {
    width: 32%;
  }

  .about-heading {
    max-width: none;
  }

  .about-slider__btn {
    width: 36px;
    height: 36px;
    font-size: 1.35rem;
  }
}

/* Quality compare — single panel */
.quality-head .section-title {
  margin-bottom: 0.85rem;
}

.quality .adv-grid--compact {
  margin-top: var(--section-gap);
}

.compare {
  display: grid;
  grid-template-columns: 1fr auto 1.15fr;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.compare__col {
  padding: clamp(1.35rem, 3vw, 2rem);
}

.compare__col h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.compare__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.compare__col li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.compare__col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.compare__col--bad h3 {
  color: #8a5a52;
}

.compare__col--bad li::before {
  background: #c4a29c;
}

.compare__col--good {
  background: var(--navy-deep);
  color: var(--white);
}

.compare__col--good h3 {
  color: var(--gold);
}

.compare__col--good li {
  color: rgba(255, 255, 255, 0.84);
}

.compare__col--good li::before {
  background: var(--gold);
}

.compare__divider {
  display: grid;
  place-items: center;
  width: 52px;
  background: linear-gradient(180deg, #eceef4, #e2e5ee);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.compare__divider span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(28, 33, 64, 0.12);
}

/* Catalog */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 0;
}

.catalog-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 0 0 var(--radius) var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.catalog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.catalog-card__media {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 0;
  background: #eceef3;
}

.catalog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s var(--ease);
}

.catalog-card:hover .catalog-card__media img {
  transform: scale(1.04);
}

.catalog-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.2rem 1.15rem 1.35rem;
  flex: 1;
}

.catalog-card__body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy-deep);
  letter-spacing: -0.02em;
}

.catalog-card__body > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  flex: 1;
}

.catalog-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.55rem;
}

.catalog-price strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--coral);
  letter-spacing: -0.03em;
}

.catalog-price span {
  color: var(--muted);
  font-size: 0.9rem;
}

.catalog-price em {
  width: 100%;
  font-style: normal;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.88rem;
}

.catalog-order-note {
  margin-top: 1.35rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.catalog-addon {
  margin-top: 1.35rem;
  padding: 1.35rem 1.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(245, 205, 121, 0.12), rgba(255, 255, 255, 0.88)),
    rgba(255, 255, 255, 0.82);
}

.catalog-addon__title {
  margin: 0.35rem 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  color: var(--navy-deep);
  letter-spacing: -0.02em;
}

.catalog-addon__copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
  /* max-width: 46rem; */
}

.mesh-gallery {
  margin-top: 1.35rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(28, 33, 64, 0.1);
}

.mesh-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.75rem;
  align-items: stretch;
}

.mesh-media__video {
  height: 0;
  min-height: 100%;
  min-width: 0;
}

.mesh-video-card {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
}

.mesh-media__photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 0.75rem;
  min-height: 0;
  align-content: start;
}

.mesh-media__photos a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  background: #111;
  aspect-ratio: 4 / 3;
  height: auto;
  min-height: 0;
}

.mesh-media__photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.mesh-media__photos a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 44px;
  height: 44px;
  margin: -22px 0 0 -22px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231c2140' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M20 20l-3.5-3.5'/%3E%3C/svg%3E")
    center / 18px no-repeat,
    rgba(245, 205, 121, 0.95);
  box-shadow: 0 8px 22px rgba(15, 18, 35, 0.24);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.28s ease, transform 0.28s var(--ease);
  pointer-events: none;
}

.mesh-media__photos a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(18, 22, 40, 0.42);
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.mesh-media__photos a:hover img {
  transform: scale(1.05);
}

.mesh-media__photos a:hover::before {
  opacity: 1;
  transform: scale(1);
}

.mesh-media__photos a:hover::after {
  opacity: 1;
}

.catalog-order-note__lead {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.catalog-order-note__lead strong {
  color: var(--navy-deep);
}

.catalog-retailers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.retailer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  min-height: 64px;
  padding: 0.75rem 1.15rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.retailer-logo img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 34px;
  object-fit: contain;
}

.retailer-logo--leroy img {
  max-height: 46px;
  max-width: 58px;
}

.retailer-logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(28, 33, 64, 0.12);
}

.retailer-logo--petrovich {
  background: #fff;
}

.retailer-logo--leroy {
  background: #fff;
}

.catalog-card .btn {
  width: 100%;
  margin-top: 0.35rem;
}

/* Install teaser on home */
.install-teaser {
  position: relative;
  color: var(--white);
  overflow: hidden;
}

.install-teaser__bg {
  position: absolute;
  inset: 0;
}

.install-teaser__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.install-teaser__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(28, 33, 64, 0.94) 0%, rgba(28, 33, 64, 0.78) 55%, rgba(28, 33, 64, 0.55) 100%);
}

.install-teaser__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.install-teaser .section-label {
  color: var(--gold);
}

.install-teaser .section-title,
.install-teaser .section-lead {
  color: var(--white);
}

.install-teaser .section-lead {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1.25rem;
}

.install-teaser__price {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-top: var(--section-gap);
}

.install-teaser__actions {
  margin-top: 1.25rem;
}

.install-teaser__price strong {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--gold);
  letter-spacing: -0.04em;
}

.install-teaser__price span {
  color: rgba(255, 255, 255, 0.72);
}

.install-teaser__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  align-items: stretch;
}

.install-tile {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 1;
  cursor: pointer;
  background: #111;
}

.install-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

/* Locations */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 0;
}

.location-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius);
  background: var(--white);
  border-top: 3px solid var(--gold);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.location-card h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy-deep);
}

.location-card p {
  margin: 0 0 1.15rem;
  color: var(--muted);
  flex: 1;
}

.location-card__btn {
  width: 100%;
  min-height: 46px;
  font-size: 0.9rem;
}

.map-dialog {
  width: min(100%, 920px);
}

.map-dialog__head {
  padding: 1.1rem 3.5rem 0.85rem 1.25rem;
  background: var(--navy-deep);
}

.map-dialog__head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: -0.02em;
}

.map-dialog__frame {
  aspect-ratio: 16 / 10;
  min-height: 360px;
  background: #e8eaf0;
}

.map-dialog__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.order-dialog {
  width: min(100%, 480px);
  background:
    radial-gradient(circle at 100% 0%, rgba(245, 205, 121, 0.18), transparent 45%),
    linear-gradient(165deg, #232849 0%, var(--navy-deep) 60%, #151933 100%);
  color: var(--white);
}

.order-dialog .modal-close {
  background: rgba(255, 255, 255, 0.12);
}

.order-dialog__body {
  padding: 2rem 1.5rem 1.6rem;
}

.order-dialog .section-label {
  color: var(--gold);
}

.order-dialog__body h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: -0.03em;
}

.order-dialog__product {
  margin: 0 0 0.75rem;
  padding: 0.65rem 0.85rem;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95rem;
}

.order-dialog__product[hidden] {
  display: none;
}

.order-dialog__text {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
}

.order-form label {
  color: rgba(255, 255, 255, 0.78);
}

.order-form .btn {
  width: 100%;
}

/* Install page extras */
.hero-kicker {
  display: inline-block;
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.price-old {
  font-size: 1.35rem !important;
  color: rgba(255, 255, 255, 0.45) !important;
  text-decoration: line-through;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 0;
}

.step-card {
  padding: 1.4rem 1.2rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.step-card span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--coral);
  margin-bottom: 0.7rem;
  letter-spacing: -0.03em;
}

.step-card h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy-deep);
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

@media (max-width: 1100px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .compare {
    grid-template-columns: 1fr;
  }

  .compare__divider {
    width: 100%;
    height: 44px;
    border-left: 0;
    border-right: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .install-teaser__inner,
  .locations-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .mesh-media {
    grid-template-columns: 1fr;
  }

  .mesh-media__video {
    height: auto;
    min-height: 0;
  }

  .mesh-video-card {
    aspect-ratio: 16 / 9;
    min-height: 0;
    height: auto;
  }

}

@media (max-width: 640px) {
  .adv-grid,
  .videos-grid,
  .catalog-grid,
  .about-rail__inner {
    grid-template-columns: 1fr;
  }

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

  .mesh-media__photos {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }

  .about-rail__item,
  .about-rail__item:nth-child(odd),
  .about-rail__item:nth-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .about-rail__item:last-child {
    border-bottom: 0;
  }

  .hero {
    height: min(700px, 100svh);
  }

  .brand-text {
    font-size: 0.95rem;
  }
}

/* Block product page */
.hero--block .hero-media img {
  object-position: center 40%;
}

.block-adv.adv-grid--compact {
  margin-bottom: 1.5rem;
}

.block-rail {
  margin-top: 0.5rem;
}

.cert-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.2)),
    radial-gradient(circle at 100% 0%, rgba(245, 205, 121, 0.14), transparent 42%);
}

.cert-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.cert-copy .spec-list {
  margin-top: 1.25rem;
}

.cert-copy .spec-list li {
  color: var(--muted);
}

.cert-copy .spec-list li::before {
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(229, 72, 60, 0.12);
}

.cert-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.cert-visual a {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 18px 44px rgba(28, 33, 64, 0.1);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.cert-visual a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.cert-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.block-video {
  width: 100%;
}

.video-card--wide {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 0;
}

.block-teaser {
  position: relative;
  overflow: hidden;
  color: #fff;
}

.block-teaser__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.block-teaser__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.block-teaser__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(28, 33, 64, 0.94) 0%, rgba(28, 33, 64, 0.78) 48%, rgba(28, 33, 64, 0.5) 100%);
}

.block-teaser__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.block-teaser .section-label {
  color: var(--gold);
}

.block-teaser .section-title,
.block-teaser .section-lead {
  color: #fff;
}

.block-teaser .section-lead {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.1rem;
}

.block-teaser .spec-list li {
  color: rgba(255, 255, 255, 0.86);
}

.block-teaser .spec-list li::before {
  background: var(--gold);
}

.block-teaser__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (max-width: 1024px) {
  .block-teaser__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .video-card--wide {
    min-height: 220px;
  }
}

.catalog-grid--duo {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  max-width: none;
}

.catalog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.65fr);
  gap: clamp(1.15rem, 2.5vw, 2rem);
  align-items: start;
}

.catalog-layout .catalog-grid {
  margin-top: 0;
}

.catalog-layout .deal-strip {
  margin-top: 0;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.catalog-layout--duo .catalog-grid--duo {
  gap: 1.15rem;
}

.catalog-layout--duo .catalog-card__media {
  aspect-ratio: 1 / 1;
  height: auto;
}

.catalog-grid--duo .catalog-card__media img {
  object-position: center;
}

@media (max-width: 860px) {
  .catalog-grid--duo {
    grid-template-columns: 1fr;
  }

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

  .catalog-layout--duo .catalog-card__media {
    aspect-ratio: 4 / 3;
  }
}

.catalog-specs {
  list-style: none;
  margin: 0 0 0.85rem;
  padding: 0;
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.catalog-specs li {
  position: relative;
  padding-left: 0.95rem;
}

.catalog-specs li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
}

.block-product-gallery {
  margin-top: 0;
}

.about-visual--slider {
  position: relative;
  display: block;
  min-height: 480px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #1a1f35;
  box-shadow: 0 22px 50px rgba(28, 33, 64, 0.16);
}

.about-visual--slider .about-slider {
  border-radius: inherit;
}

@media (max-width: 1024px) {
  .about-visual--slider {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .about-visual--slider {
    min-height: 280px;
  }
}

.product-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}

.product-tile {
  position: relative;
  display: grid;
  grid-template-rows: minmax(260px, 42vh) auto;
  overflow: hidden;
  border-radius: calc(var(--radius) + 4px);
  background: var(--navy-deep);
  color: #fff;
  box-shadow: 0 18px 44px rgba(28, 33, 64, 0.16);
  transition: box-shadow 0.45s var(--ease);
}

.product-tile:hover {
  box-shadow: 0 28px 60px rgba(28, 33, 64, 0.22);
}

.product-tile__media {
  position: relative;
  overflow: hidden;
  min-height: 260px;
}

.product-tile__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 35%, rgba(15, 18, 35, 0.55) 100%);
  pointer-events: none;
}

.product-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

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

.product-tile__body {
  display: grid;
  gap: 0.7rem;
  padding: 1.35rem 1.45rem 1.55rem;
  background:
    linear-gradient(180deg, rgba(28, 33, 64, 0.92), rgba(22, 26, 48, 0.98));
}

.product-tile__body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  letter-spacing: -0.03em;
  color: var(--gold);
}

.product-tile__body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  max-width: 28rem;
}

.product-tile__body p + p {
  margin-top: 0.65rem;
}

.product-tile__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.35rem;
  font-weight: 700;
  color: #fff;
}

.product-tile__cta::after {
  content: "→";
  transition: transform 0.3s var(--ease);
}

.product-tile:hover .product-tile__cta::after {
  transform: translateX(4px);
}

@media (max-width: 860px) {
  .product-tiles {
    grid-template-columns: 1fr;
  }

  .product-tile {
    grid-template-rows: minmax(220px, 36vh) auto;
  }
}
