/* Rus-Sila catalog — PDF 2026 print style */
:root {
  --rs-bg: #efefed;
  --rs-bg-dark: #e2e3e1;
  --rs-red: #6b605c;
  --rs-red-dark: #554c48;
  --rs-price-red: #b91c1c;
  --rs-brown: #343230;
  --rs-brown-light: #5a5653;
  --rs-ink: #1c1917;
  --rs-muted: #7a7d80;
  --rs-line: #d5d7d9;
  --rs-white: #fff;
  --rs-font: "TildaSans", Arial, sans-serif;
  --rs-stencil: "TildaSans", Arial, sans-serif;
  --container: min(1120px, 92vw);
  --radius: 10px;
  --rs-radius: 10px;
  --rs-shadow: 0 12px 32px rgba(34, 38, 42, .09);
  --order-cta-orange: #b8926f;
  --rs-img-position: top center;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--rs-font);
  background: var(--rs-bg);
  color: var(--rs-ink);
  line-height: 1.55;
  overflow-x: clip;
  max-width: 100%;
}
.section-home,
.section-product {
  background-color: #fafaf5;
  background-image: url('../img/product-page-camo-soft.png');
  background-position: center top;
  background-repeat: repeat;
  background-size: 720px auto;
}
img { max-width: 100%; height: auto; display: block; object-position: var(--rs-img-position); }
video { object-position: var(--rs-img-position); }
main img {
  border-radius: var(--rs-radius);
  overflow: hidden;
}
a { color: var(--rs-red); text-decoration: none; }
a:hover { text-decoration: underline; }

.skip {
  position: absolute; left: -9999px; top: auto;
}
.skip:focus {
  left: 1rem; top: 1rem; z-index: 999;
  background: var(--rs-white); padding: .5rem 1rem; border-radius: 6px;
}

.container { width: var(--container); margin-inline: auto; max-width: 100%; padding-inline: clamp(.75rem, 3vw, 1rem); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--rs-white);
  border-bottom: 1px solid var(--rs-line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .85rem 0; flex-wrap: wrap;
}
.logo {
  font-family: var(--rs-stencil);
  font-size: 1.35rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--rs-price-red);
  font-weight: 800;
  text-decoration: none;
}
.logo:hover { text-decoration: none; opacity: .9; }
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}
.brand-lockup:hover { text-decoration: none; }
.brand-lockup__text {
  display: grid;
  gap: .16rem;
  line-height: 1.1;
}
.brand-lockup .logo {
  display: block;
}
.brand-lockup__logo-img {
  display: block;
  width: auto;
  height: clamp(3.3rem, 5vw, 4.8rem);
  object-fit: contain;
  object-position: left center;
}
.brand-lockup__tagline {
  display: block;
  margin: 0;
  max-width: min(30rem, 58vw);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
  color: var(--rs-brown);
}
.brand-lockup:hover .brand-lockup__logo-img { opacity: .92; }
.site-nav { display: flex; flex-wrap: wrap; gap: .45rem 1rem; align-items: center; }
.site-nav a {
  color: var(--rs-brown);
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
}
.site-nav a:hover { color: var(--rs-red); }
.site-nav__group {
  position: relative;
}
.site-nav__group-toggle {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--rs-brown);
  font: inherit;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.site-nav__group-toggle::-webkit-details-marker { display: none; }
.site-nav__group-toggle::after {
  content: "";
  width: .42rem;
  height: .42rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transform-origin: center;
  transition: transform .18s ease;
}
.site-nav__group[open] > .site-nav__group-toggle::after {
  transform: rotate(225deg) translateY(-1px);
}
.site-nav__group-toggle:hover,
.site-nav__group-toggle:focus-visible {
  color: var(--rs-red);
  outline: none;
}
.site-nav__group.is-active > .site-nav__group-toggle {
  color: var(--rs-red);
}
.site-nav__group--catalog:not([open]) > .site-nav__group-toggle {
  position: relative;
  padding: .48rem .92rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(107, 96, 92, .12) 0%, rgba(107, 96, 92, .06) 100%);
  box-shadow:
    0 10px 24px rgba(107, 96, 92, .14),
    inset 0 0 0 1px rgba(107, 96, 92, .14);
  color: var(--rs-red);
  animation: rs-nav-breathe 2.8s ease-in-out infinite;
}
.site-nav__group--catalog:not([open]) > .site-nav__group-toggle::after {
  margin-left: .1rem;
}
.site-nav__group-toggle-pulse {
  width: .62rem;
  height: .62rem;
  border-radius: 999px;
  flex: 0 0 auto;
  background: #b91c1c;
  box-shadow: 0 0 0 0 rgba(185, 28, 28, .24);
  animation: rs-nav-dot 2.8s ease-in-out infinite;
}
.site-nav__group--catalog > .site-nav__group-toggle:hover,
.site-nav__group--catalog > .site-nav__group-toggle:focus-visible,
.site-nav__group--catalog[open] > .site-nav__group-toggle {
  background: linear-gradient(180deg, rgba(107, 96, 92, .18) 0%, rgba(107, 96, 92, .1) 100%);
  box-shadow:
    0 14px 30px rgba(107, 96, 92, .18),
    inset 0 0 0 1px rgba(107, 96, 92, .18);
}
.site-nav__group--catalog[open] > .site-nav__group-toggle {
  color: var(--rs-red);
  animation: none;
}
@keyframes rs-nav-breathe {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-1px); }
}
@keyframes rs-nav-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(185, 28, 28, .24); }
  50% { box-shadow: 0 0 0 .4rem rgba(185, 28, 28, 0); }
}
.site-nav__submenu {
  position: absolute;
  top: calc(100% + .85rem);
  left: 0;
  z-index: 40;
  min-width: 18.5rem;
  display: grid;
  gap: .2rem;
  padding: .45rem;
  border: 1px solid rgba(214, 207, 196, .92);
  border-radius: 16px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 18px 40px rgba(61, 50, 41, .14);
}
.site-nav__submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -.85rem;
  height: .85rem;
}
.site-nav__submenu a {
  display: flex;
  align-items: center;
  gap: .75rem;
  min-height: 2.85rem;
  padding: .64rem .82rem;
  border-radius: 12px;
  font-size: .88rem;
}
.site-nav__submenu a:hover,
.site-nav__submenu a:focus-visible {
  background: rgba(107, 96, 92, .06);
  color: var(--rs-red);
  text-decoration: none;
  outline: none;
}
.site-nav__submenu-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 2rem;
  width: 2rem;
  height: 2rem;
  color: var(--rs-red);
  border-radius: 14px;
  background: rgba(107, 96, 92, .08);
  box-shadow: inset 0 0 0 1px rgba(107, 96, 92, .08);
  transition: background .18s ease, color .18s ease, box-shadow .18s ease;
}
.site-nav__submenu-link-icon svg {
  width: 1.3rem;
  height: 1.3rem;
}
.site-nav__submenu-link-label {
  display: block;
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.3;
}
.site-nav__submenu-link:hover .site-nav__submenu-link-icon,
.site-nav__submenu-link:focus-visible .site-nav__submenu-link-icon {
  background: rgba(107, 96, 92, .12);
  box-shadow: inset 0 0 0 1px rgba(107, 96, 92, .14);
}
.site-nav__submenu-link.is-active {
  border-color: rgba(107, 96, 92, .32);
  background: linear-gradient(180deg, rgba(248, 249, 250, .98) 0%, rgba(239, 241, 243, .96) 100%);
  color: var(--rs-red);
  box-shadow:
    0 14px 28px rgba(61, 50, 41, .1),
    0 0 0 1px rgba(107, 96, 92, .08);
}
.site-nav__submenu-link.is-active .site-nav__submenu-link-icon {
  background: var(--rs-red);
  color: var(--rs-white);
  box-shadow: 0 10px 18px rgba(107, 96, 92, .22);
}
.nav-cta {
  background: var(--rs-red);
  color: var(--rs-white) !important;
  padding: .45rem .85rem;
  border-radius: 999px;
}
.nav-cta:hover { background: var(--rs-red-dark); text-decoration: none; }
.nav-toggle { display: none; }
.site-nav__segments,
.site-nav__segments-label,
.site-nav__segment-link { display: none; }

@media (max-width: 768px) {
  .site-header__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: .55rem;
    padding: .48rem 0;
    flex-wrap: nowrap;
  }
  .brand-lockup,
  .brand-lockup__text {
    min-width: 0;
  }
  .brand-lockup {
    gap: 0;
  }
  .brand-lockup .logo {
    font-size: 1rem;
    letter-spacing: .07em;
  }
  .brand-lockup__logo-img {
    height: 2.8rem;
  }
  .brand-lockup__tagline {
    max-width: 100%;
    font-size: .54rem;
    line-height: 1.15;
  }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    min-width: auto;
    flex: 0 0 auto;
    border: 1px solid rgba(107, 96, 92, .22);
    background: var(--rs-white);
    color: var(--rs-red);
    padding: .42rem .72rem;
    border-radius: 10px;
    font-size: .92rem;
    font-weight: 800;
    box-shadow: 0 4px 14px rgba(61, 50, 41, .05);
  }
  .nav-toggle::before {
    content: "";
    width: .82rem;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    box-shadow: 0 -.26rem 0 currentColor, 0 .26rem 0 currentColor;
    flex: 0 0 auto;
  }
  .nav-toggle[aria-expanded="true"] {
    background: var(--rs-red);
    border-color: var(--rs-red);
    color: var(--rs-white);
  }
  .nav-toggle[aria-expanded="true"]::before {
    width: .68rem;
    height: .68rem;
    background: transparent;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    box-shadow: none;
    transform: rotate(135deg);
  }
  .site-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: .45rem;
    margin-top: .2rem;
    padding: .8rem;
    border: 1px solid rgba(214, 207, 196, .92);
    border-radius: 18px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 18px 40px rgba(61, 50, 41, .12);
  }
  .site-nav.is-open { display: flex; }
  .site-nav.is-open > a,
  .site-nav.is-open > .nav-cta,
  .site-nav.is-open > .nav-contact,
  .site-nav.is-open > .nav-phone {
    display: flex;
    width: 100%;
    min-height: 2.85rem;
    border: 1px solid var(--rs-line);
    border-radius: 12px;
    background: var(--rs-white);
  }
  .site-nav.is-open > .site-nav__group {
    display: block;
    width: 100%;
    border: 1px solid var(--rs-line);
    border-radius: 12px;
    background: var(--rs-white);
  }
  .site-nav.is-open > a,
  .site-nav.is-open > .nav-cta,
  .site-nav.is-open > .nav-contact,
  .site-nav.is-open > .nav-phone {
    align-items: center;
    justify-content: flex-start;
    gap: .65rem;
    padding: .72rem .88rem;
  }
  .site-nav__group {
    overflow: hidden;
  }
  .site-nav__group-toggle {
    width: 100%;
    justify-content: space-between;
    padding: .72rem .88rem;
  }
  .site-nav__group--catalog:not([open]) > .site-nav__group-toggle {
    padding: .72rem .88rem;
    border-radius: 12px;
    animation: none;
  }
  .site-nav__group-toggle-pulse {
    width: .58rem;
    height: .58rem;
  }
  .site-nav__submenu {
    position: static;
    min-width: 0;
    padding: 0 .55rem .55rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .site-nav__submenu a {
    padding: .62rem .8rem;
    border: 1px solid var(--rs-line);
    background: rgba(255, 255, 255, .96);
  }
  .site-nav__submenu-link-icon {
    flex-basis: 1.8rem;
    width: 1.8rem;
    height: 1.8rem;
  }
  .site-nav__submenu-link.is-active {
    box-shadow: none;
  }
  .site-nav__submenu-link-icon svg {
    width: 1.15rem;
    height: 1.15rem;
  }
  .site-nav__segments {
    display: grid;
    gap: .45rem;
    width: 100%;
    padding: .25rem 0 .1rem;
    border-bottom: 1px solid rgba(214, 207, 196, .92);
    margin-bottom: .1rem;
  }
  .site-nav__segments-label {
    display: block;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--rs-muted);
  }
  .site-nav__segment-link {
    display: block;
    width: 100%;
    padding: .62rem .85rem;
    border-radius: 12px;
    border: 1px solid var(--rs-line);
    background: var(--rs-white);
    color: var(--rs-brown);
    font-size: .88rem;
    font-weight: 700;
    text-decoration: none;
  }
  .site-nav__segment-link.is-active {
    border-color: var(--rs-red);
    color: var(--rs-red);
    background: rgba(107, 96, 92, .06);
  }
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--rs-white) 0%, var(--rs-bg) 60%);
  border-bottom: 3px solid var(--rs-red);
  padding: clamp(2rem, 5vw, 3.25rem) 0 clamp(1.75rem, 4vw, 2.5rem);
}
.hero--sales {
  background: linear-gradient(160deg, #fff 0%, var(--rs-bg) 45%, #e5e7e8 100%);
}
.hero__note {
  margin-top: 1rem;
  font-size: .85rem;
  color: var(--rs-muted);
}
.hero__grid { display: grid; gap: 2rem; }
@media (min-width: 768px) {
  .hero__grid { grid-template-columns: 1.2fr .8fr; align-items: center; }
}
.hero h1 {
  font-size: clamp(1.54rem, 3.52vw, 2.42rem);
  line-height: 1.15;
  margin: .35rem 0 .75rem;
  color: var(--rs-brown);
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
  font-weight: 700;
  color: var(--rs-red);
}
.lead { font-size: 1.05rem; color: var(--rs-muted); max-width: 52ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.25rem; }
.hero__stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem;
}
.hero__stats div {
  background: var(--rs-white);
  border: 1px solid var(--rs-line);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}
.hero__stats strong {
  display: block;
  font-size: 1.75rem;
  color: var(--rs-red);
  line-height: 1.1;
}
.hero__stats span { font-size: .78rem; color: var(--rs-muted); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .65rem 1.25rem; border-radius: 999px;
  font-weight: 700; font-size: .9rem; border: 2px solid transparent;
  cursor: pointer; text-decoration: none;
  transition:
    background .18s ease, border-color .18s ease, color .18s ease,
    transform .18s ease, box-shadow .18s ease;
}
.btn:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 16px rgba(61, 50, 41, .12);
}
.btn:active { transform: scale(.98); }
.btn--sm { padding: .45rem .95rem; font-size: .82rem; }
.btn--primary { background: var(--rs-red); color: var(--rs-white); box-shadow: 0 2px 12px rgba(107, 96, 92, .22); }
.btn--primary:hover { background: var(--rs-red-dark); text-decoration: none; box-shadow: 0 6px 20px rgba(107, 96, 92, .28); }
.btn--lg { padding: .85rem 1.65rem; font-size: 1rem; letter-spacing: .01em; }
.btn--ghost { border-color: var(--rs-line); color: var(--rs-brown); background: var(--rs-white); }
.btn--ghost:hover { border-color: var(--rs-red); color: var(--rs-red); text-decoration: none; }

/* Sections */
.section { padding: clamp(2rem, 4vw, 3rem) 0; }
.section--muted { background: var(--rs-bg-dark); }
.section-head { margin-bottom: 1.5rem; }
.section-head h2 {
  font-size: clamp(1.19rem, 2.46vw, 1.63rem);
  color: var(--rs-brown);
  margin: .25rem 0 .65rem;
  line-height: 1.2;
  position: relative;
  padding-left: 1rem;
}
.section-head h2::before {
  content: "";
  position: absolute; left: 0; top: .15em; bottom: .15em;
  width: 4px; background: var(--rs-red);
  border-radius: 2px;
}

/* Grid */
.grid { display: grid; gap: 1rem; }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.grid--cards { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; align-items: stretch; }
@media (min-width: 1080px) {
  .grid--cards-uniform { grid-template-columns: repeat(4, 1fr); }
}

.tile {
  background: var(--rs-white);
  border: 1px solid var(--rs-line);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .2s, border-color .2s;
}
.tile:hover { border-color: var(--rs-red); box-shadow: 0 8px 24px rgba(61,50,41,.08); text-decoration: none; }
.tile span { color: var(--rs-red); font-weight: 800; font-size: .85rem; }
.tile h3 { margin: .35rem 0 0; font-size: 1rem; color: var(--rs-brown); }

/* Product cards */
.card {
  background: var(--rs-white);
  border: 1px solid var(--rs-line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .28s ease, transform .28s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card:hover {
  box-shadow: 0 14px 36px rgba(61, 50, 41, .12);
  transform: translate3d(0, -3px, 0);
  will-change: transform;
}
.card__link { color: inherit; text-decoration: none; display: flex; flex-direction: column; flex: 1; height: 100%; }
/* Product cards — portrait frame (2:3); horizontal media crops via object-fit: cover */
.card__media {
  aspect-ratio: 2 / 3;
  background: var(--rs-bg);
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}
.card__media:not(.card__media--portrait) {
  aspect-ratio: 4 / 3;
  background: var(--rs-bg-dark);
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--rs-img-position);
  image-rendering: auto;
  display: block;
}
.progressive-loop-video,
.ambient-video {
  --ambient-aspect: 16 / 9;
  display: block;
  position: relative;
  width: 100%;
  margin: 0;
  aspect-ratio: var(--ambient-aspect);
  overflow: hidden;
  background: #111;
  border-radius: inherit;
}
.progressive-loop-video__poster {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--rs-img-position);
  display: block;
  transition: opacity .28s ease;
}
.rs-video-watermark {
  position: absolute;
  top: .7rem;
  right: .7rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  padding: .18rem .42rem;
  border-radius: 999px;
  color: rgba(107, 96, 92, .48);
  font-family: var(--rs-font);
  font-size: .62rem;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
  text-shadow: 0 1px 2px rgba(255, 255, 255, .35);
  mix-blend-mode: multiply;
}
.progressive-loop-video.is-playing .progressive-loop-video__poster {
  opacity: 0;
  pointer-events: none;
}
.progressive-loop-video__video,
.ambient-video video,
.ambient-video .progressive-loop-video__video {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--rs-img-position);
  opacity: 0;
  transform: scale(1.01);
  transition: opacity .32s ease, transform .32s ease;
}
.progressive-loop-video.is-ready .progressive-loop-video__video,
.progressive-loop-video.is-playing .progressive-loop-video__video {
  opacity: 1;
  transform: none;
}
.progressive-loop-video--tg {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border-radius: inherit;
}
.tg-bento__media .progressive-loop-video,
.tg-proof-grid__media .progressive-loop-video,
.tg-context-strip__media .progressive-loop-video,
.review-card__media .progressive-loop-video,
.trust-awards-strip__thumb .progressive-loop-video {
  position: absolute;
  inset: 0;
}
.trust-awards-strip__thumb .progressive-loop-video {
  max-height: 4.5rem;
}
.dronov-landing-hero-video__loop {
  width: 100%;
  height: clamp(240px, 46vw, 560px);
  aspect-ratio: auto;
  border-radius: 0;
}
.dronov-landing-hero-video__loop .progressive-loop-video__video,
.dronov-landing-hero-video__video {
  height: clamp(240px, 46vw, 560px);
}
/* Card loops — fill portrait frame; ignore source 16:9 aspect */
.card__media .ambient-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  aspect-ratio: auto;
}
.card__media .ambient-video video {
  object-fit: cover;
  object-position: var(--rs-img-position);
}
.card__media--portrait { aspect-ratio: 2 / 3; background: var(--rs-bg); }
.section-avtomobili .card__media:not(.card__media--portrait) {
  aspect-ratio: 4 / 3;
  background: var(--rs-bg-dark);
}
.card__body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card__meta { font-size: .78rem; letter-spacing: .01em; color: var(--rs-muted); margin: 0 0 .35rem; }
.card__title {
  font-size: 0.875rem;
  margin: 0 0 .45rem;
  color: var(--rs-brown);
  line-height: 1.28;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  min-height: calc(1.28em * 2);
}
.card__price { font-weight: 800; color: var(--rs-red); margin: 0; margin-top: auto; padding-top: .35rem; }

/* Product page */
.product-page { padding-bottom: 3rem; }
.section-product .site-breadcrumbs,
.section-product .product-page,
.section-product .product-hero {
  background: transparent;
}
.product-hero { padding: 2rem 0; border-bottom: 1px solid rgba(213, 215, 217, .9); }
.product-hero__grid { display: grid; gap: 2rem; }
@media (min-width: 900px) {
  .product-hero__grid { grid-template-columns: 1.1fr .9fr; align-items: start; }
  .product-hero__media {
    position: sticky;
    top: 5rem;
    align-self: start;
  }
}
.product-gallery { display: flex; flex-direction: column; gap: .75rem; max-width: 100%; min-width: 0; }
.product-gallery--slider { --gallery-radius: clamp(12px, 2vw, 16px); }

.product-gallery__frame {
  position: relative;
  border-radius: var(--gallery-radius);
  overflow: hidden;
  background: #0f0e0d;
  box-shadow: 0 12px 40px rgba(61, 50, 41, .14);
}
.product-gallery__track {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
}
.product-gallery__track::-webkit-scrollbar { display: none; }
.product-gallery__slide {
  flex: 0 0 100%;
  width: 100%;
  margin: 0;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}
.product-gallery--portrait .product-gallery__slide { aspect-ratio: 2/3; max-height: min(72vh, 640px); }
.product-gallery:not(.product-gallery--portrait) .product-gallery__slide { aspect-ratio: 4/3; max-height: min(56vh, 520px); }
.product-gallery__link {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 0;
}
.product-gallery__link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--rs-img-position);
  display: block;
}
.product-gallery--portrait .product-gallery__link img { object-position: var(--rs-img-position); }

.product-gallery__arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--rs-brown);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .18);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform .15s, background .15s;
}
.product-gallery__arrow:hover { transform: translateY(-50%) scale(1.05); background: #fff; }
.product-gallery__arrow--prev { left: .65rem; }
.product-gallery__arrow--next { right: .65rem; }
.product-gallery__arrow[hidden] { display: none; }

.product-gallery__counter {
  position: absolute;
  left: .75rem;
  bottom: .75rem;
  z-index: 2;
  padding: .35rem .65rem;
  border-radius: 999px;
  background: rgba(15, 14, 13, .62);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  pointer-events: none;
}

.product-gallery__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .45rem;
  padding: .15rem 0;
}
.product-gallery__dot {
  width: .45rem;
  height: .45rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--rs-line);
  cursor: pointer;
  transition: transform .2s, background .2s, width .2s;
}
.product-gallery__dot.is-active {
  background: var(--rs-red);
  transform: scale(1.15);
  width: 1.35rem;
  border-radius: 999px;
}

.mobile-slider-dots {
  display: none;
  align-items: center;
  justify-content: center;
  gap: .38rem;
  min-height: 1.1rem;
  margin-top: .45rem;
}
.mobile-slider-dots.is-visible { display: flex; }
.mobile-slider-dot {
  width: .42rem;
  height: .42rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(61, 50, 41, .28);
  cursor: pointer;
  opacity: .72;
  transition: width .2s ease, transform .2s ease, background .2s ease, opacity .2s ease;
}
.mobile-slider-dot.is-active {
  width: .95rem;
  background: var(--rs-red);
  opacity: 1;
  transform: scale(1.08);
}
.mobile-slider-dot:focus-visible {
  outline: 2px solid rgba(107, 96, 92, .35);
  outline-offset: 3px;
}
@media (max-width: 768px) {
  [data-mobile-dots] {
    scrollbar-width: none;
  }
  [data-mobile-dots]::-webkit-scrollbar { display: none; }
  .mc-toolbar__nav + .mobile-slider-dots {
    width: 100%;
    flex-basis: 100%;
    margin-top: .15rem;
  }
  .mc-toolbar__nav[data-mobile-dots] {
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }
  .mc-toolbar__nav[data-mobile-dots] .mc-nav-chip {
    scroll-snap-align: start;
  }
  .award-modules + .mobile-slider-dots {
    margin-top: .65rem;
  }
}
@media (min-width: 769px) {
  .mobile-slider-dots { display: none !important; }
}

.product-gallery__thumbs {
  display: none;
  flex-wrap: nowrap;
  gap: .45rem;
  overflow-x: auto;
  padding-block: .125rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.product-gallery__thumbs::-webkit-scrollbar { display: none; }
.product-gallery__thumb {
  flex: 0 0 3.75rem;
  width: 3.75rem;
  height: 3.75rem;
  padding: 0;
  border: 2px solid transparent;
  border-radius: calc(var(--gallery-radius) - 4px);
  overflow: hidden;
  background: var(--rs-bg-dark);
  cursor: pointer;
  opacity: .72;
  transition: opacity .15s, border-color .15s, transform .15s;
}
.product-gallery__thumb.is-active {
  opacity: 1;
  border-color: var(--rs-red);
  box-shadow: 0 0 0 2px rgba(107, 96, 92, .18);
}
.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--rs-img-position);
  display: block;
}
.product-gallery--portrait .product-gallery__thumb img { object-position: var(--rs-img-position); }

.product-ambient {
  margin-top: .85rem;
  border: 1px solid rgba(214, 207, 196, .9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .72);
  padding: .55rem;
  box-shadow: 0 10px 28px rgba(61, 50, 41, .08);
}
.product-ambient__label {
  margin: 0 0 .45rem;
  color: var(--rs-muted);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.product-ambient__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 148px), 1fr));
  gap: .45rem;
}
.ambient-video--loop video { object-position: var(--rs-img-position); }
.ambient-video--product {
  border-radius: calc(var(--radius) - 2px);
}
.product-ambient__grid .progressive-loop-video {
  aspect-ratio: 16 / 10;
  min-height: 0;
  background: #0a0a0a;
}
.card__media .progressive-loop-video__poster,
.card__media .progressive-loop-video__video,
.card__media .ambient-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.tg-proof-grid__media .progressive-loop-video,
.review-card__media .progressive-loop-video {
  min-height: 0;
  background: #111;
}

@media (min-width: 900px) {
  .product-gallery__dots { display: none; }
  .product-gallery__thumbs { display: flex; }
  .product-gallery__arrow { opacity: 1; }
}
@media (max-width: 899px) {
  .product-hero__media {
    width: calc(100% + 2 * clamp(.75rem, 3vw, 1rem));
    margin-inline: calc(-1 * clamp(.75rem, 3vw, 1rem));
  }
  .product-gallery__frame { border-radius: 0; }
  .product-gallery__arrow {
    width: 2.15rem;
    height: 2.15rem;
    background: rgba(255, 255, 255, .88);
  }
  .product-hero__pdf { display: none; }
}
.product-hero__placeholder {
  aspect-ratio: 4/3; display: grid; place-items: center;
  background: var(--rs-bg-dark); color: var(--rs-muted); border-radius: var(--radius);
}
.product-price {
  font-size: 1.5rem; font-weight: 800; color: var(--rs-price-red);
  position: absolute; bottom: 0; right: 0;
}
.product-hero__copy { position: relative; }
.product-hero__copy h1 {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  line-height: 1.28;
  margin: 0 0 .65rem;
  color: var(--rs-brown);
  font-weight: 800;
}
.product-hero__copy .product-price { position: static; margin: 1rem 0; }
.product-hero-facts {
  margin: 0 0 1rem;
  padding: 1rem 1.1rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(223, 218, 211, .92);
  border-radius: 1rem;
  background-color: #fff;
  background-image: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .72),
    0 14px 34px rgba(79, 72, 64, .06);
}
.product-hero-facts::before,
.product-hero-facts::after {
  content: none;
  display: none;
}
.product-hero-facts > * {
  position: relative;
  z-index: 1;
}
.product-hero-facts__heading {
  margin: .9rem 0 .55rem;
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--rs-price-red);
}
.product-hero-facts__list {
  margin: 0;
  display: grid;
  gap: 1rem;
}
.product-hero-facts__row {
  margin: 0;
  display: grid;
  gap: .32rem;
}
.product-hero-facts__row--section-start {
  margin-top: .55rem;
  padding-top: .9rem;
}
.product-hero-facts__row--section-break {
  border-top: 1px solid #dde0e3;
}
.product-hero-facts__label {
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--rs-price-red) !important;
  text-shadow: none;
}
.product-hero-facts__value {
  margin: 0;
  font-size: .92rem;
  line-height: 1.6;
  color: var(--rs-brown);
}
.product-hero-facts__bullets {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: .4rem;
}
.product-hero-facts__bullets li {
  position: relative;
  padding-left: 1.55rem;
  line-height: 1.45;
}
.product-hero-facts__bullets li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: .06rem;
  font-size: 1.45rem;
  line-height: 1;
  color: #111;
}
.product-hero-facts__row--protection .product-hero-facts__bullets li::before {
  content: '✓';
  top: .15rem;
  font-size: 1rem;
  font-weight: 900;
}
.product-hero-facts__choices {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .5rem;
}
.product-hero-facts__choice {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  cursor: pointer;
}
.product-hero-facts__checkbox {
  width: 1rem;
  height: 1rem;
  margin: .22rem 0 0;
  flex-shrink: 0;
  accent-color: var(--rs-red);
  cursor: pointer;
}
.product-hero-facts__choice-text,
.product-hero-facts__choice-note {
  line-height: 1.45;
}
.product-hero-facts__choice-note {
  display: grid;
  grid-template-columns: 1rem 1fr;
  align-items: start;
  gap: .65rem;
}
.product-hero-facts__choice-note::before {
  content: '•';
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  line-height: 1;
  color: #111;
  padding-top: .05rem;
}
.product-hero-facts__select {
  width: 100%;
  max-width: 18rem;
  margin: 0;
  padding: .7rem 2.5rem .7rem .85rem;
  border: 1px solid #d7c3ab;
  border-radius: .8rem;
  background: #f4f5f5;
  color: var(--rs-brown);
  font: inherit;
  line-height: 1.25;
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--rs-brown) 50%),
    linear-gradient(135deg, var(--rs-brown) 50%, transparent 50%);
  background-position:
    calc(100% - 1rem) calc(50% - .12rem),
    calc(100% - .65rem) calc(50% - .12rem);
  background-size: .38rem .38rem, .38rem .38rem;
  background-repeat: no-repeat;
}
.product-hero-facts__select:focus {
  outline: none;
  border-color: #a9835f;
  box-shadow: 0 0 0 3px rgba(169, 131, 95, .14);
}
.product-hero-facts__select-shell {
  width: 100%;
  max-width: 18rem;
}
.product-hero-facts__dropdown {
  display: none;
}
.product-hero-facts__dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  width: 100%;
  min-height: 3.1rem;
  padding: .8rem .95rem;
  border: 1px solid rgba(107, 96, 92, .22);
  border-radius: .95rem;
  background: linear-gradient(180deg, rgba(248, 249, 250, .98) 0%, rgba(239, 241, 243, .96) 100%);
  box-shadow:
    0 10px 24px rgba(107, 96, 92, .08),
    inset 0 0 0 1px rgba(107, 96, 92, .08);
  color: var(--rs-brown);
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  cursor: pointer;
  list-style: none;
}
.product-hero-facts__dropdown-toggle::-webkit-details-marker { display: none; }
.product-hero-facts__dropdown-toggle::after {
  content: "";
  width: .55rem;
  height: .55rem;
  margin-left: auto;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transform-origin: center;
  transition: transform .18s ease;
}
.product-hero-facts__dropdown[open] > .product-hero-facts__dropdown-toggle::after {
  transform: rotate(225deg) translateY(-1px);
}
.product-hero-facts__dropdown-menu {
  margin-top: .55rem;
  padding: .45rem;
  border: 1px solid rgba(214, 207, 196, .92);
  border-radius: 16px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 18px 40px rgba(61, 50, 41, .14);
}
.product-hero-facts__dropdown-option {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 2.95rem;
  padding: .75rem .82rem;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--rs-brown);
  font: inherit;
  font-size: .96rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
  cursor: pointer;
}
.product-hero-facts__dropdown-option:hover,
.product-hero-facts__dropdown-option:focus-visible {
  background: rgba(107, 96, 92, .06);
  color: var(--rs-red);
  outline: none;
}
.product-hero-facts__dropdown-option.is-active {
  background: linear-gradient(180deg, rgba(248, 249, 250, .98) 0%, rgba(239, 241, 243, .96) 100%);
  box-shadow: inset 0 0 0 1px rgba(107, 96, 92, .1);
  color: var(--rs-red);
}
.product-hero-facts__note {
  margin-top: .9rem;
  padding-top: .85rem;
  border-top: 1px solid #dadde0;
}
.product-hero-facts__note p {
  margin: 0;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--rs-brown);
}
.product-hero-facts__note p + p { margin-top: .25rem; }
.product-hero__actions { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1rem; }
.product-hero__actions .btn { flex: 1 1 auto; min-width: 0; max-width: 100%; }
@media (max-width: 640px) {
  .product-hero-facts { padding: .9rem 1rem; }
  .product-hero-facts__value { font-size: .88rem; }
  .product-hero-facts__list { gap: .9rem; }
  .product-hero-facts__row--section-start {
    margin-top: .45rem;
    padding-top: .75rem;
  }
  .product-hero-facts__select-shell { max-width: 100%; }
  .product-hero-facts__select {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .product-hero-facts__dropdown { display: block; position: relative; }
  .product-hero__actions { flex-direction: column; }
  .product-hero__actions .btn { width: 100%; justify-content: center; text-align: center; }
}
.product-hero__quick-contact {
  margin: .75rem 0 0;
  font-size: .88rem;
  color: var(--rs-muted);
}
.product-hero__quick-contact a { font-weight: 600; }
.product-mid-cta__links {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .65rem;
}

.specs-table {
  width: 100%; border-collapse: collapse;
  background: var(--rs-white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--rs-line);
}
.specs-table th, .specs-table td {
  padding: .75rem 1rem; text-align: left; border-bottom: 1px solid var(--rs-line);
}
.specs-table th { width: 38%; background: var(--rs-bg-dark); color: var(--rs-brown); font-weight: 600; }
.specs-table tr:last-child th, .specs-table tr:last-child td { border-bottom: 0; }

.prose { max-width: 68ch; }
.prose p { margin: 0 0 1rem; }
.prose h2 { margin: 2rem 0 0.75rem; font-size: 1.25rem; color: var(--rs-brown, #3d3229); }
.prose h3 { margin: 1.5rem 0 0.65rem; font-size: 1.1rem; color: var(--rs-brown, #3d3229); }
.prose ul { margin: 0 0 1rem 1.25rem; }
.prose li { margin-bottom: 0.35rem; }
.prose .lead { font-size: 1.125rem; line-height: 1.55; }

.product-rich-description {
  max-width: 820px;
  color: var(--rs-ink);
}
.product-rich-description p {
  max-width: 72ch;
  font-size: 1rem;
  line-height: 1.72;
}
.product-rich-description strong { color: var(--rs-brown); }
.product-rich-description em { color: var(--rs-brown-light); }
.product-rich-quote {
  margin: 1.4rem 0;
  padding: 1rem 1.15rem;
  border-left: 4px solid var(--rs-red);
  background: rgba(255, 255, 255, .72);
  border-radius: 0 var(--rs-radius) var(--rs-radius) 0;
  box-shadow: 0 8px 24px rgba(61, 50, 41, .06);
}
.product-rich-quote p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--rs-brown);
}
.product-rich-quote cite {
  display: block;
  margin-top: .55rem;
  color: var(--rs-muted);
  font-size: .86rem;
  font-style: normal;
}
.product-rich-list {
  display: grid;
  gap: .45rem;
  padding-left: 1.25rem;
}
.product-rich-list li::marker { color: var(--rs-red); }
.product-rich-media {
  margin: clamp(1.25rem, 3vw, 2rem) 0;
  max-width: min(100%, 780px);
}
.product-rich-media img {
  width: 100%;
  max-height: min(70vh, 640px);
  object-fit: cover;
  object-position: var(--rs-img-position);
  border: 1px solid var(--rs-line);
  box-shadow: 0 14px 34px rgba(61, 50, 41, .12);
}
.product-rich-media--portrait {
  max-width: min(100%, 440px);
}
.product-rich-media--portrait img {
  aspect-ratio: 2 / 3;
}
.product-rich-media figcaption {
  margin-top: .55rem;
  color: var(--rs-muted);
  font-size: .9rem;
}

.category-article__body { max-width: 72ch; }
.category-article__cta {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  margin-top: 1.75rem; padding-top: 1.25rem;
  border-top: 1px solid var(--rs-line);
}

.utp-card {
  background: var(--rs-white); border: 1px solid var(--rs-line);
  border-left: 4px solid var(--rs-red);
  border-radius: var(--radius); padding: 1.25rem;
}
.utp-card h3 { margin: 0 0 .5rem; color: var(--rs-brown); }

.faq details {
  background: var(--rs-white); border: 1px solid var(--rs-line);
  border-radius: var(--radius); padding: .85rem 1rem; margin-bottom: .5rem;
}
.faq summary { cursor: pointer; font-weight: 700; color: var(--rs-brown); }

.video-grid { align-items: stretch; }

.video-card {
  background: var(--rs-white);
  border: 1px solid var(--rs-line);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.video-card__player {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #111;
  overflow: hidden;
}
.video-card__player .rs-video-player {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  height: 100%;
}
.video-card__player .rs-video-player video {
  height: 100%;
}
.video-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.video-card__link:hover .video-card__title { color: var(--rs-red); }
.video-card__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #111;
  overflow: hidden;
}
.video-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2a211c, #111);
}
.video-card__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(107, 96, 92, .92);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  pointer-events: none;
}
.video-card__body { padding: .85rem .95rem 1rem; flex: 1; display: flex; flex-direction: column; gap: .35rem; }
.video-card__title {
  margin: 0;
  font-size: .95rem;
  line-height: 1.35;
  font-weight: 700;
  color: var(--rs-brown);
}
.video-card__tag {
  margin: 0;
  font-size: .78rem;
  color: var(--rs-muted);
}
.video-card__archive {
  margin-top: auto;
  font-size: .78rem;
  font-weight: 700;
  color: var(--rs-red);
  text-decoration: none;
}
.video-card__archive:hover { text-decoration: underline; }

/* ── Video archive (va-*) ── */
.va-hero { padding: clamp(1.75rem, 3.5vw, 3rem) 0 clamp(1.5rem, 3vw, 2.25rem); }
.va-hero h1 { font-size: clamp(1.67rem, 3.96vw, 2.64rem); margin: .25rem 0 .75rem; }
.va-hero .lead { max-width: 64ch; color: var(--rs-muted); }
.va-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}
.va-hero__stats div {
  display: flex;
  flex-direction: column;
  min-width: 6rem;
  padding: .65rem .9rem;
  background: var(--rs-white);
  border-left: 3px solid var(--rs-red);
  border-radius: var(--radius);
  box-shadow: 0 6px 18px rgba(61,50,41,.08);
}
.va-hero__stats strong { font-size: 1.5rem; font-weight: 900; color: var(--rs-red); line-height: 1; }
.va-hero__stats span  { font-size: .72rem; color: var(--rs-muted); font-weight: 600; margin-top: .15rem; }

.va-filters { padding: .75rem 0; }
.va-filters__row { display: flex; flex-wrap: wrap; gap: .5rem; }
.va-filter-btn {
  display: inline-flex;
  align-items: center;
  padding: .4rem .9rem;
  border: 1.5px solid rgba(61,50,41,.15);
  border-radius: 999px;
  background: var(--rs-white);
  font-size: .82rem;
  font-weight: 700;
  color: var(--rs-brown);
  text-decoration: none;
  transition: border-color .2s, color .2s, background .2s;
}
.va-filter-btn:hover, .va-filter-btn.is-active {
  border-color: var(--rs-red);
  color: var(--rs-red);
  background: rgba(185,28,28,.06);
  text-decoration: none;
}
.va-filter-btn.is-active { font-weight: 900; }

.va-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 380px), 1fr));
}
.va-card {
  background: var(--rs-white);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(61,50,41,.09);
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s;
}
.va-card:hover { box-shadow: 0 20px 48px rgba(61,50,41,.16); }
.va-card__player { flex-shrink: 0; }
.va-card__body {
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  flex: 1;
}
.va-card__cat { margin: 0; }
.va-card__title {
  font-size: clamp(.9rem, 2vw, 1.05rem);
  font-weight: 800;
  color: var(--rs-brown);
  margin: 0;
  line-height: 1.35;
}
.va-card__tags { display: flex; flex-wrap: wrap; gap: .3rem; }
.va-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: .5rem;
  gap: .5rem;
}
.va-card__size {
  font-size: .72rem;
  color: var(--rs-muted);
  font-weight: 600;
}
.va-empty { color: var(--rs-muted); padding: 2rem 0; text-align: center; }

/* ── Video player: card variant ── */
.rs-video-player--card { aspect-ratio: 16 / 9; overflow: hidden; }
.rs-video-player--card video { width: 100%; height: 100%; object-fit: cover; display: block; }

.video-watch { padding: 1.5rem 0 2.5rem; }

/* ── Kit featured video (neft / industry kits) ── */
.section--kit-featured-video .section-head { max-width: 52rem; }
.kit-featured-video__player {
  max-width: 960px;
  margin: 0 auto;
}
.kit-featured-video__portrait-grid {
  display: grid;
  gap: clamp(1.25rem, 4vw, 2rem);
  align-items: center;
}
@media (min-width: 900px) {
  .kit-featured-video__portrait-grid {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
  }
}
.kit-featured-video__portrait-card {
  width: min(100%, 340px);
  justify-self: center;
}
.kit-featured-video__portrait-card .rs-video-player {
  aspect-ratio: 9 / 16;
  max-height: min(76vh, 620px);
}
.kit-featured-video__portrait-card video {
  object-fit: contain;
}
.kit-featured-video__player .rs-video-player--watch {
  border-radius: var(--rs-radius-lg, 12px);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
}
.kit-featured-video__foot {
  margin-top: 1rem;
  text-align: center;
}
.kit-featured-video__foot--left { text-align: left; }

.video-watch__layout {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 1100px) {
  .video-watch__layout {
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: start;
  }
}
.video-watch__main .rs-video-player--watch {
  margin-bottom: 1.25rem;
}
.video-watch__meta {
  margin-top: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--rs-line);
}
.video-watch__title {
  margin: 0 0 .85rem;
  font-size: clamp(1.1rem, 2.2vw, 1.54rem);
  line-height: 1.25;
  color: var(--rs-brown);
}
.video-watch__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-bottom: 1rem;
}
.video-watch__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-bottom: 1rem;
}
.video-tag {
  display: inline-flex;
  align-items: center;
  padding: .35rem .65rem;
  border-radius: 999px;
  background: var(--rs-bg);
  border: 1px solid var(--rs-line);
  font-size: .78rem;
  font-weight: 600;
  color: var(--rs-brown);
}
.video-watch__description { margin-top: .5rem; }
.video-watch__keywords {
  margin-top: 1rem;
  font-size: .82rem;
  color: var(--rs-muted);
  line-height: 1.5;
}
.video-watch__sidebar-title {
  margin: 0 0 .85rem;
  font-size: 1rem;
  color: var(--rs-brown);
}
.video-watch__related {
  display: grid;
  gap: .85rem;
}
.video-watch__related .video-card__title { font-size: .88rem; }
.video-watch__related .video-card__play {
  width: 2.25rem;
  height: 2.25rem;
  font-size: .75rem;
}
.video-watch__product-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--rs-red);
}
.video-watch__empty {
  margin: 0;
  color: var(--rs-muted);
  font-size: .9rem;
}

.lead-form {
  background: var(--rs-white); border: 1px solid var(--rs-line);
  border-radius: var(--radius); padding: 1.5rem;
  max-width: 560px;
}
.lead-form label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .35rem; color: var(--rs-brown); }
.lead-form input, .lead-form textarea {
  width: 100%; padding: .65rem .85rem; border: 1px solid var(--rs-line);
  border-radius: 8px; margin-bottom: 1rem; font: inherit;
}
.lead-form input:focus, .lead-form textarea:focus {
  outline: none; border-color: var(--rs-red);
  box-shadow: 0 0 0 3px rgba(107, 96, 92, .15);
  animation: focus-ring .35s ease;
}
.lead-form__field input:focus,
.lead-form__field textarea:focus {
  outline: none; border-color: var(--rs-red);
  box-shadow: 0 0 0 3px rgba(107, 96, 92, .15);
  animation: focus-ring .35s ease;
}
.lead-form .checkbox-row { display: flex; gap: .5rem; align-items: flex-start; font-size: .82rem; font-weight: 400; color: var(--rs-muted); margin-bottom: 1rem; }
.lead-form .checkbox-row input { width: auto; margin: .2rem 0 0; flex-shrink: 0; }
.lead-form .checkbox-row a { color: var(--rs-red); }

.lead-form__grid {
  display: grid; gap: 0 1rem;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 540px) {
  .lead-form__grid { grid-template-columns: 1fr; }
}
.lead-form__field { display: block; margin-bottom: 0; }
.lead-form__label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .35rem; color: var(--rs-brown); }
.lead-form__files { margin-bottom: 1rem; }
.lead-form__files-hint {
  margin: 0 0 .5rem;
  font-size: .82rem;
  font-weight: 400;
  color: var(--rs-muted);
  line-height: 1.45;
}
.lead-form__field--files .lead-form__file-input {
  width: 100%;
  padding: .55rem .75rem;
  border: 1px dashed var(--rs-line);
  border-radius: 8px;
  margin-bottom: 0;
  font: inherit;
  font-size: .85rem;
  background: #faf8f6;
  cursor: pointer;
}
.lead-form__field--files .lead-form__file-input:focus {
  outline: none;
  border-color: var(--rs-red);
  box-shadow: 0 0 0 3px rgba(185,28,28,.12);
}
.lead-form__file-list {
  list-style: none;
  margin: .65rem 0 0;
  padding: .65rem .85rem;
  border: 1px solid var(--rs-line);
  border-radius: 8px;
  background: #faf8f6;
  font-size: .82rem;
  color: var(--rs-brown);
}
.lead-form__file-list li + li { margin-top: .35rem; }
.lead-form__file-list-total {
  margin-top: .5rem !important;
  padding-top: .45rem;
  border-top: 1px solid var(--rs-line);
  font-weight: 600;
  color: var(--rs-muted);
}
.lead-form__actions { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem 1rem; }
.lead-form__submit[disabled] { opacity: .65; cursor: not-allowed; }

.hp-field {
  position: absolute; left: -9999px; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0; padding: 0;
}
.form-antispam {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: 0;
}

.form-msg {
  margin: 0; font-size: .88rem; font-weight: 600;
}
.lead-form.is-success {
  border-color: #15803d;
  box-shadow: 0 0 0 3px rgba(21,128,61,.12);
}
.lead-form.is-success .form-msg { color: #15803d; }
.lead-form.is-error {
  border-color: var(--rs-red);
  box-shadow: 0 0 0 3px rgba(185,28,28,.12);
}
.lead-form.is-error .form-msg { color: var(--rs-red); }

.lead-section { padding-block: 2.5rem; }
.lead-section--callback {
  background: linear-gradient(135deg, var(--rs-brown) 0%, #2a221c 100%);
  color: var(--rs-white);
  margin-top: 2rem;
}
.lead-section--callback .section-head h2,
.lead-section--callback .lead { color: var(--rs-white); }
.lead-section--callback .lead { opacity: .9; }
.lead-section--callback .lead-form {
  background: rgba(255,255,255,.97);
  border-color: rgba(255,255,255,.2);
}
.lead-section--category {
  background: var(--rs-bg-dark);
  margin-top: 1rem;
}
.lead-section--product,
.lead-section--kit {
  border-top: 1px solid var(--rs-line);
}

/* Footer */
.site-footer {
  background: var(--rs-brown);
  color: rgba(255,255,255,.85);
  padding: 2.5rem 0 1.5rem;
  margin-top: 2rem;
}
.site-footer a { color: #d6d9dd; }
.site-footer h3 { color: var(--rs-white); font-size: .95rem; margin: 0 0 .75rem; }
.footer-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-bottom: 2rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: .4rem; }
.footer-col a { color: rgba(255,255,255,.75); font-size: .88rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.15); padding-top: 1rem; font-size: .82rem; text-align: center; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* ——— Sales / conversion ——— */
.btn--lg { padding: .85rem 1.6rem; font-size: 1rem; }
.hero--sales { padding: 3rem 0 2.5rem; }
.hero__note { font-size: .82rem; color: var(--rs-muted); margin-top: 1rem; }
.hero__stats--prominent div {
  border-left: 3px solid var(--rs-red);
}
.section-head--center { text-align: center; max-width: 640px; margin-inline: auto; }
.section-head--center h2::before { display: none; }
.section-head--center h2 { padding-left: 0; }
.lead--center { margin-inline: auto; }
.section-foot {
  display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center;
  margin-top: 2rem;
}

.trust-strip {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin: 1.25rem 0 0;
}
.trust-strip__item {
  font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em;
  background: var(--rs-white);
  border: 1px solid var(--rs-line);
  border-radius: 999px;
  padding: .35rem .75rem;
  color: var(--rs-brown);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.trust-strip__item:hover {
  transform: translate3d(0, -1px, 0);
  border-color: rgba(107, 96, 92, .35);
  box-shadow: 0 4px 12px rgba(61, 50, 41, .08);
}
.trust-strip--segment .trust-strip__item {
  background: rgba(107, 96, 92, .06);
  border-color: rgba(107, 96, 92, .18);
  color: var(--rs-brown);
}

.section--utp-highlights {
  padding-block: clamp(2rem, 4vw, 3rem);
  background: var(--rs-bg-dark);
  border-block: 1px solid var(--rs-line);
}
.utp-highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .85rem;
  max-width: 52rem;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .utp-highlights { grid-template-columns: repeat(2, 1fr); gap: 1rem 1.25rem; }
}
.utp-highlights__item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  background: var(--rs-white);
  border: 1px solid var(--rs-line);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  box-shadow: 0 2px 8px rgba(61, 50, 41, .04);
}
.utp-highlights__num {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  display: grid;
  place-items: center;
  background: var(--rs-red);
  color: var(--rs-white);
  border-radius: 50%;
  font-size: .72rem;
  font-weight: 800;
}
.utp-highlights__text {
  font-size: .95rem;
  font-weight: 600;
  color: var(--rs-brown);
  line-height: 1.35;
}

.trust-awards-strip {
  padding: 1.25rem 0;
  border-top: 1px solid var(--rs-line);
  border-bottom: 1px solid var(--rs-line);
  background: var(--rs-white);
}
.trust-awards-strip__inner { display: grid; gap: .75rem; }
.trust-awards-strip__row {
  display: flex; flex-wrap: wrap; align-items: center; gap: .75rem;
}
.trust-awards-strip__thumb {
  display: block; width: 4.5rem; flex: 0 0 auto;
  border: 1px solid var(--rs-line); border-radius: 6px; overflow: hidden;
  background: var(--rs-bg);
  position: relative;
}
.trust-awards-strip__thumb img {
  display: block; width: 100%; height: auto; object-fit: cover;
  aspect-ratio: 3 / 4;
}
.trust-awards-strip__thumb--video {
  aspect-ratio: 1 / 1;
  max-height: 4.5rem;
}
.trust-awards-strip__thumb--video .trust-awards-strip__video,
.trust-awards-strip__thumb--video .tg-local-video {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 4.5rem;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.trust-awards-strip__more {
  font-size: .875rem; font-weight: 700; color: var(--rs-red);
}

.pain-grid .pain-card {
  background: var(--rs-white);
  border: 1px solid var(--rs-line);
  border-radius: var(--radius);
  padding: 1.5rem;
  height: 100%;
}
.pain-card__icon {
  display: inline-block;
  font-weight: 800; color: var(--rs-red);
  font-size: .85rem; margin-bottom: .5rem;
}
.pain-card h3 { margin: 0 0 .5rem; color: var(--rs-brown); font-size: 1.1rem; }
.pain-card p { margin: 0 0 1rem; color: var(--rs-muted); font-size: .95rem; }
.pain-card a { font-weight: 700; font-size: .9rem; }

.category-tile {
  display: flex; flex-direction: column;
  background: var(--rs-white);
  border: 1px solid var(--rs-line);
  border-radius: var(--radius);
  padding: 1.35rem;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.category-tile:hover {
  border-color: var(--rs-red);
  box-shadow: 0 12px 32px rgba(61,50,41,.1);
  transform: translateY(-3px);
  text-decoration: none;
}
.category-tile__num {
  color: var(--rs-red); font-weight: 800; font-size: .8rem;
}
.category-tile h3 { margin: .35rem 0; color: var(--rs-brown); font-size: 1.05rem; }
.category-tile p { margin: 0 0 1rem; font-size: .88rem; color: var(--rs-muted); flex: 1; }
.category-tile__cta { font-weight: 700; font-size: .85rem; color: var(--rs-red); }

.compare-table-wrap { overflow-x: auto; }
.compare-table {
  width: 100%; min-width: 520px;
  border-collapse: collapse;
  background: var(--rs-white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--rs-line);
}
.compare-table th, .compare-table td {
  padding: .85rem 1rem; text-align: left;
  border-bottom: 1px solid var(--rs-line);
  font-size: .92rem;
}
.compare-table thead th {
  background: var(--rs-bg-dark);
  color: var(--rs-brown);
  font-size: .85rem;
}
.compare-table__us {
  background: rgba(185,28,28,.06);
  font-weight: 600;
  color: var(--rs-brown);
}
.compare-table tbody th { width: 22%; background: var(--rs-bg); }

.process-steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.process-step {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--rs-white);
  border: 1px solid var(--rs-line);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.process-step__num {
  flex-shrink: 0;
  width: 2.25rem; height: 2.25rem;
  display: grid; place-items: center;
  background: var(--rs-red); color: var(--rs-white);
  border-radius: 50%; font-weight: 800;
}
.process-step h3 { margin: 0 0 .35rem; font-size: 1rem; color: var(--rs-brown); }
.process-step p { margin: 0; font-size: .88rem; color: var(--rs-muted); }
.process-cta { text-align: center; margin-top: 2rem; }

.category-hero {
  padding: 2rem 0 1rem;
  background: linear-gradient(180deg, var(--rs-white), var(--rs-bg));
  border-bottom: 1px solid var(--rs-line);
}
.category-hero__grid { display: grid; gap: 1.5rem; }
.category-hero h1 {
  font-size: clamp(1.2rem, 2.6vw, 1.65rem);
  line-height: 1.22;
  margin: 0 0 .65rem;
}
.category-hero__benefit {
  font-weight: 600; color: var(--rs-brown);
  margin: 0 0 1rem;
  padding: .75rem 1rem;
  background: rgba(185,28,28,.06);
  border-left: 3px solid var(--rs-red);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.cta-band {
  background: var(--rs-red);
  color: var(--rs-white);
  padding: 2rem 0;
}
.cta-band__inner {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: 1.25rem;
}
.cta-band h2 { margin: 0 0 .35rem; font-size: 1.19rem; color: var(--rs-white); }
.cta-band p { margin: 0; opacity: .92; max-width: 48ch; }
.cta-band .btn--primary {
  background: var(--rs-white);
  color: var(--rs-red);
  flex-shrink: 0;
}
.cta-band .btn--primary:hover { background: var(--rs-bg); }

.trust-badges {
  list-style: none; padding: 0; margin: 0 0 1rem;
  display: flex; flex-wrap: wrap; gap: .5rem .85rem;
}
.trust-badges li {
  font-size: .82rem; font-weight: 600; color: var(--rs-brown-light);
}
.trust-badges strong { color: var(--rs-red); }

.card__badge {
  position: absolute; top: .65rem; left: .65rem; z-index: 2;
  background: var(--rs-red); color: var(--rs-white);
  font-size: .65rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .06em;
  padding: .25rem .5rem; border-radius: 4px;
  overflow: hidden;
}
.card__badge::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, .32) 50%, transparent 62%);
  transform: translate3d(-120%, 0, 0);
  animation: badge-shine 7s ease-in-out infinite;
}
.info-list { padding-left: 1.25rem; }
.info-list li { margin-bottom: .5rem; }
.info-prose p { max-width: 72ch; }
.card__utp {
  font-size: .82rem; color: var(--rs-muted);
  margin: 0 0 .5rem; line-height: 1.35;
}
.grid--cards .card__utp { display: none; }
.card__more {
  display: block; margin-top: .5rem;
  font-size: .82rem; font-weight: 700; color: var(--rs-red);
}

.nav-cta--outline {
  background: transparent !important;
  color: var(--rs-red) !important;
  border: 0;
  box-shadow: none;
}
.nav-cta--outline:hover { background: var(--rs-red) !important; color: var(--rs-white) !important; }

.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  padding: .55rem .65rem calc(.55rem + env(safe-area-inset-bottom));
  background: rgba(245,240,232,.97);
  border-top: 1px solid var(--rs-line);
  box-shadow: 0 -8px 24px rgba(61,50,41,.12);
  backdrop-filter: blur(8px);
  transform: translate3d(0, 100%, 0);
  transition: transform .32s cubic-bezier(.22, 1, .36, 1);
}
body.has-sticky-cta .sticky-cta { transform: translate3d(0, 0, 0); }
.sticky-cta__scroll {
  display: flex; gap: .45rem; overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.sticky-cta__scroll::-webkit-scrollbar { display: none; }
.sticky-cta[hidden] { display: block; pointer-events: none; }
.sticky-cta__phone {
  flex: 1.4 0 auto; min-width: 9.5rem; text-align: center;
  padding: .6rem .65rem;
  font-weight: 700; font-size: .78rem;
  color: var(--rs-brown);
  text-decoration: none;
  border: 1px solid var(--rs-line);
  border-radius: 999px;
  background: var(--rs-white);
  white-space: nowrap;
}
.sticky-cta__link {
  flex: 0 0 auto; min-width: 3rem; text-align: center;
  padding: .6rem .75rem;
  font-weight: 700; font-size: .78rem;
  color: var(--rs-brown);
  text-decoration: none;
  border: 1px solid var(--rs-line);
  border-radius: 999px;
  background: var(--rs-white);
}
.sticky-cta__kp {
  flex: 0 0 auto; min-width: 3.25rem; text-align: center;
  padding: .6rem .85rem !important;
  font-size: .78rem !important;
}
@media (max-width: 768px) {
  body.has-sticky-cta { padding-bottom: calc(4.75rem + env(safe-area-inset-bottom)); }
  body.has-sticky-cta.cookie-banner-open { padding-bottom: calc(4.75rem + env(safe-area-inset-bottom) + var(--cookie-banner-offset, 9rem)); }
  body.has-sticky-cta .cookie-banner { bottom: calc(4.75rem + env(safe-area-inset-bottom)); }
}

@media (min-width: 769px) {
  .sticky-cta { display: none !important; }
}
:root { --cookie-banner-offset: 9rem; }

.cookie-banner {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 1000;
  pointer-events: none;
  transform: translateY(100%);
  opacity: 0;
  transition: transform .32s ease, opacity .32s ease;
}
.cookie-banner.hidden,
.cookie-banner[hidden] { display: none; }
.cookie-banner--visible {
  pointer-events: auto;
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner__inner {
  width: var(--container);
  max-width: 72rem;
  margin-inline: auto;
  padding: .75rem 0 1rem;
}
.cookie-banner__panel {
  background: rgba(245, 240, 232, .98);
  border: 1px solid var(--rs-line);
  border-top: 3px solid var(--rs-red);
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 1rem 1.25rem;
  box-shadow: 0 -12px 40px rgba(61, 50, 41, .18);
  backdrop-filter: blur(8px);
}
@media (min-width: 640px) {
  .cookie-banner__panel {
    padding: 1.15rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
}
.cookie-banner__text {
  margin: 0;
  flex: 1;
  font-size: .875rem;
  line-height: 1.55;
  color: var(--rs-brown);
}
.cookie-banner__link {
  color: var(--rs-red);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner__link:hover { color: var(--rs-red-dark); }
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: .85rem;
  flex-shrink: 0;
}
@media (min-width: 640px) {
  .cookie-banner__actions { margin-top: 0; }
}
.cookie-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: .55rem 1.25rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: .875rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}
.cookie-banner__btn--primary {
  background: var(--rs-red);
  color: var(--rs-white);
}
.cookie-banner__btn--primary:hover { background: var(--rs-red-dark); }
.cookie-banner__btn--secondary {
  background: var(--rs-white);
  color: var(--rs-brown);
  border-color: var(--rs-line);
}
.cookie-banner__btn--secondary:hover {
  border-color: var(--rs-red);
  color: var(--rs-red);
}
body.cookie-banner-open { padding-bottom: var(--cookie-banner-offset); }

/* ——— FZ-152 cookie banner ——— */
.lead-section--callback .lead-form { max-width: 720px; }

.brand-timeline ol {
  margin: 0; padding-left: 1.25rem;
  color: var(--rs-muted);
}
.brand-timeline li { margin-bottom: .5rem; }

.content-hero h1 { font-size: clamp(1.54rem, 3.52vw, 2.2rem); margin: 0 0 .75rem; color: var(--rs-brown); }
.content-page { max-width: 720px; }
.content-block { margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--rs-line); }
.content-block:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.content-block h2 { font-size: 1.25rem; margin: 0 0 .75rem; color: var(--rs-brown); }

/* ——— Homepage showcase & Telegram feed ——— */
.hero__visual { display: flex; flex-direction: column; gap: 1rem; }
.hero-showcase {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: .55rem;
  min-height: 17rem;
}
.hero-showcase__side {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: .55rem;
  min-height: 0;
}
.hero-showcase__tile {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--rs-line);
  background: var(--rs-white);
  text-decoration: none;
  color: inherit;
  transition: transform .18s ease, box-shadow .18s ease;
}
.hero-showcase__tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.hero-showcase__tile--main {
  min-height: 17rem;
  aspect-ratio: 4 / 5;
}
.hero-showcase__tile--side {
  min-height: 0;
  aspect-ratio: 16 / 10;
}
.hero-showcase__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-showcase__label {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.5rem .75rem .75rem;
  background: linear-gradient(transparent, rgba(0,0,0,.72));
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.hero-showcase__category {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  opacity: .88;
}
.hero-showcase__title {
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.25;
}
.hero-showcase__tile--main .hero-showcase__title {
  font-size: 1.05rem;
}
.media-play-badge,
.hero-gallery__play {
  position: absolute;
  right: .4rem;
  bottom: .4rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: rgba(0,0,0,.65);
  color: #fff;
  font-size: .65rem;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.reviews-grid { align-items: stretch; }
.review-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--rs-white);
  border: 1px solid var(--rs-line);
  border-radius: 10px;
  overflow: hidden;
}
.review-card--link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.review-card--link:hover {
  border-color: rgba(107, 96, 92, .35);
  box-shadow: 0 4px 14px rgba(28, 25, 23, .08);
}
.review-card--link:focus-visible {
  outline: 2px solid var(--rs-red);
  outline-offset: 2px;
}
.review-card--link .review-card__media {
  pointer-events: none;
}
.review-card__foot a,
.review-card__foot-link {
  position: relative;
  z-index: 2;
}
.review-card__cta {
  color: var(--rs-red);
  font-weight: 700;
}
.review-card--stretch {
  position: relative;
}
.review-card__stretch {
  position: absolute;
  inset: 0;
  z-index: 1;
  text-decoration: none;
  border-radius: inherit;
}
.review-card__stretch:focus-visible {
  outline: 2px solid var(--rs-red);
  outline-offset: -2px;
}
.review-card--stretch:hover {
  border-color: rgba(107, 96, 92, .35);
  box-shadow: 0 4px 14px rgba(28, 25, 23, .08);
}
.review-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16/10;
  background: #eee;
  text-decoration: none;
  overflow: hidden;
  transition: opacity .18s ease;
}
.review-card__media:hover { opacity: .92; }
.review-card__media:focus-visible {
  outline: 2px solid var(--rs-red);
  outline-offset: -2px;
}
.review-card__media img,
.review-card__media video,
.tg-local-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.review-card__media video {
  aspect-ratio: 16/10;
  background: #111;
}
.review-card__quote {
  margin: 0;
  padding: 1rem 1rem .5rem;
  font-size: .95rem;
  line-height: 1.5;
  color: var(--rs-ink);
  flex: 1;
}
.review-card__foot {
  padding: 0 1rem 1rem;
  font-size: .82rem;
  color: var(--rs-muted);
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.review-card__foot a { color: var(--rs-red); font-weight: 700; }
.review-card--nagrady .review-card__media video { object-position: var(--rs-img-position); }
.nagrady-tg-grid { margin-top: 1.25rem; }
.tg-photo-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: .5rem;
}
.tg-photo-wall__item {
  position: relative;
  display: block;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--rs-line);
  text-decoration: none;
}
.tg-photo-wall__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tg-photo-wall__item--video {
  aspect-ratio: 16 / 10;
}
.tg-photo-wall__item--video .rs-video-player {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  height: 100%;
}
.tg-photo-wall__item--video .rs-video-player video {
  height: 100%;
}
.tg-photo-wall__item--video .rs-video-player video {
  object-fit: cover;
}
.review-card--inline-video .review-card__stretch { display: none; }
.section-foot--center { justify-content: center; }
.cta-band__inner--tg { align-items: center; }
.tg-teaser-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1rem;
}
.tg-teaser-strip a {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--rs-line);
}
.tg-teaser-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* —— Telegram homepage proof grid (uniform) —— */
.tg-proof-section { padding-top: 2.5rem; }
.tg-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .75rem;
  width: 100%;
}
.tg-proof-grid__cell {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--rs-line);
  background: var(--rs-white);
  box-shadow: 0 8px 28px rgba(61, 50, 41, .06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.tg-proof-grid__cell:hover {
  transform: translateY(-3px);
  border-color: rgba(107, 96, 92, .28);
  box-shadow: 0 16px 40px rgba(61, 50, 41, .12);
}
.tg-proof-grid__stretch {
  position: absolute;
  inset: 0;
  z-index: 3;
  text-decoration: none;
  border-radius: inherit;
}
.tg-proof-grid__stretch:focus-visible {
  outline: 2px solid var(--rs-red);
  outline-offset: -2px;
}
.tg-proof-grid__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #ece7df;
}
.tg-proof-grid__media img,
.tg-proof-grid__media .tg-local-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tg-proof-grid__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(28, 25, 23, .78) 100%);
  pointer-events: none;
  z-index: 1;
}
.tg-proof-grid__quote {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: .75rem .85rem .9rem;
  font-size: .78rem;
  line-height: 1.35;
  color: #fff;
  font-weight: 600;
  z-index: 2;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* —— Telegram bento / social proof —— */
.tg-bento-section { padding-top: 2.5rem; }
.tg-bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(140px, auto);
  gap: .75rem;
}
.tg-bento--product { grid-auto-rows: minmax(120px, auto); }
.tg-bento--hero-row { margin-top: 1.25rem; }
.tg-bento__cell {
  position: relative;
  grid-column: span 4;
  grid-row: span 1;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--rs-line);
  background: var(--rs-white);
  box-shadow: 0 8px 28px rgba(61, 50, 41, .06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.tg-bento__cell:hover {
  transform: translateY(-3px);
  border-color: rgba(107, 96, 92, .28);
  box-shadow: 0 16px 40px rgba(61, 50, 41, .12);
}
.tg-bento__cell--lg { grid-column: span 6; grid-row: span 2; }
.tg-bento__cell--wide { grid-column: span 8; }
.tg-bento__cell--tall { grid-row: span 2; }
.tg-bento__card-link {
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  text-decoration: none;
  color: inherit;
}
.tg-bento__card-link:focus-visible {
  outline: 2px solid var(--rs-red);
  outline-offset: -2px;
}
.tg-bento__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.tg-bento__media {
  position: relative;
  flex: 1 1 auto;
  min-height: 140px;
  overflow: hidden;
  background: #ece7df;
}
.tg-bento__media img,
.tg-bento__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 140px;
}
.tg-bento__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(28, 25, 23, .72) 100%);
  pointer-events: none;
  opacity: .85;
  transition: opacity .2s ease;
}
.tg-bento__cell:hover .tg-bento__shade { opacity: 1; }
.tg-bento__cell--inline-video .tg-bento__media .rs-video-player {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  height: 100%;
  min-height: 140px;
}
.tg-bento__cell--inline-video .tg-bento__media .rs-video-player video {
  height: 100%;
  min-height: 140px;
}
.tg-bento__cell--inline-video .tg-bento__media .rs-video-player video {
  object-fit: cover;
}
.tg-bento__quote {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: .85rem 1rem 1rem;
  font-size: .82rem;
  line-height: 1.35;
  color: #fff;
  font-weight: 600;
  z-index: 2;
}
.tg-bento__cell--inline-video .tg-bento__quote {
  position: static;
  color: var(--rs-brown);
  background: var(--rs-white);
  border-top: 1px solid var(--rs-line);
}
.tg-bento__foot {
  padding: .55rem .85rem .75rem;
  border-top: 1px solid var(--rs-line);
}
.tg-bento__foot-link {
  font-size: .78rem;
  font-weight: 700;
  color: var(--rs-red);
  text-decoration: none;
}
.tg-bento__cell:hover .tg-bento__foot-link,
.tg-bento__cell:focus-within .tg-bento__foot-link,
.tg-bento__foot-link:hover { text-decoration: underline; }
.tg-bento__expand {
  position: absolute;
  top: .55rem;
  right: .55rem;
  z-index: 4;
  border: 0;
  border-radius: 999px;
  padding: .35rem .7rem;
  font-size: .72rem;
  font-weight: 700;
  background: rgba(255, 255, 255, .92);
  color: var(--rs-brown);
  cursor: pointer;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .2s ease, transform .2s ease;
}
.tg-bento__cell:hover .tg-bento__expand,
.tg-bento__cell:focus-within .tg-bento__expand {
  opacity: 1;
  transform: translateY(0);
}
.tg-bento__expand:focus-visible {
  outline: 2px solid var(--rs-red);
  outline-offset: 2px;
  opacity: 1;
}
@media (max-width: 767px) {
  .tg-bento__expand,
  .media-play-badge,
  .hero-gallery__play,
  .seo-mosaic__play {
    display: none;
  }
}

.nagrady-tg-hero {
  padding: 2.5rem 0 1.5rem;
  background: linear-gradient(165deg, #faf7f2 0%, #f3ece3 48%, #faf7f2 100%);
  border-bottom: 1px solid var(--rs-line);
}
.nagrady-tg-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 1.5rem;
  align-items: center;
}
.nagrady-tg-hero__title {
  margin: .35rem 0 .75rem;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  color: var(--rs-brown);
  line-height: 1.15;
}
.nagrady-tg-hero__quote {
  margin: 1rem 0 0;
  padding: .85rem 1rem;
  border-left: 3px solid var(--rs-red);
  background: rgba(255, 255, 255, .72);
  border-radius: 0 10px 10px 0;
  font-size: .95rem;
  color: var(--rs-brown);
}
.nagrady-tg-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.25rem;
}
.nagrady-tg-hero__feature .tg-bento__cell {
  min-height: 320px;
}

.tg-context-strip {
  margin: 1.5rem 0;
  padding: 1.25rem;
  border: 1px solid var(--rs-line);
  border-radius: var(--radius);
  background: var(--rs-white);
}
.tg-context-strip__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .85rem;
}
.tg-context-strip__head a {
  font-size: .875rem;
  font-weight: 700;
  color: var(--rs-red);
}
.tg-context-strip__row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}
.tg-context-strip__item {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  min-width: 0;
  height: 100%;
  text-decoration: none;
  color: inherit;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--rs-line);
  background: var(--rs-bg);
  transition: border-color .2s ease, transform .2s ease;
}
.tg-context-strip__item:hover {
  border-color: rgba(107, 96, 92, .35);
  transform: translateY(-2px);
}
.tg-context-strip__media {
  position: relative;
  display: block;
  height: clamp(180px, 17vw, 240px);
  overflow: hidden;
}
.tg-context-strip__media img,
.tg-context-strip__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tg-context-strip__item--video .rs-video-player {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  height: 100%;
}
.tg-context-strip__item--video .rs-video-player video {
  object-fit: cover;
}
.tg-context-strip__caption {
  flex: 1 1 auto;
  padding: 0 .75rem .8rem;
  font-size: .8rem;
  line-height: 1.45;
  color: var(--rs-muted);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 1200px) {
  .tg-context-strip__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .tg-context-strip {
    padding: 1rem;
  }
  .tg-context-strip__head {
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .tg-context-strip__row {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(74vw, 1fr);
    gap: .85rem;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }
  .tg-context-strip__item {
    scroll-snap-align: start;
  }
  .tg-context-strip__media {
    height: clamp(200px, 56vw, 300px);
  }
}

.tg-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(12, 10, 9, .82);
}
.tg-lightbox[hidden] { display: none; }
.tg-lightbox__dialog {
  width: min(960px, 100%);
  max-height: 90vh;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .45);
}
.tg-lightbox__dialog video {
  width: 100%;
  max-height: 82vh;
  display: block;
  background: #000;
}
.tg-lightbox__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .65rem .85rem;
  background: rgba(255, 255, 255, .96);
  font-size: .85rem;
  color: var(--rs-brown);
}
.tg-lightbox__close {
  border: 0;
  background: transparent;
  font-weight: 700;
  color: var(--rs-red);
  cursor: pointer;
}

@media (max-width: 900px) {
  .tg-proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tg-bento { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .tg-bento__cell,
  .tg-bento__cell--lg,
  .tg-bento__cell--wide,
  .tg-bento__cell--tall {
    grid-column: span 6;
    grid-row: span 1;
  }
  .nagrady-tg-hero__grid { grid-template-columns: 1fr; }
  .nagrady-tg-hero__feature .tg-bento__cell { min-height: 240px; }
}
@media (max-width: 560px) {
  .tg-proof-grid { grid-template-columns: 1fr; gap: .65rem; }
  .tg-bento { grid-template-columns: 1fr; }
  .tg-bento__cell,
  .tg-bento__cell--lg,
  .tg-bento__cell--wide,
  .tg-bento__cell--tall { grid-column: span 1; }
}

/* ——— Social invite (Telegram + MAX) ——— */
.btn--dark {
  background: var(--rs-brown);
  color: var(--rs-white);
  border-color: var(--rs-brown);
}
.btn--dark:hover {
  background: var(--rs-ink);
  border-color: var(--rs-ink);
  color: var(--rs-white);
  text-decoration: none;
}
.btn--outline-light {
  background: transparent;
  color: var(--rs-white);
  border: 2px solid rgba(255, 255, 255, .65);
}
.btn--outline-light:hover {
  background: rgba(255, 255, 255, .12);
  border-color: var(--rs-white);
  color: var(--rs-white);
  text-decoration: none;
}

.social-invite {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--rs-red-dark) 0%, #b45309 55%, #d4924a 100%);
  color: var(--rs-white);
  min-height: 22rem;
}
.social-invite--copy-only {
  grid-template-columns: 1fr;
  min-height: 0;
}
.social-invite--copy-only .social-invite__copy {
  max-width: 48rem;
}
.social-invite__copy {
  padding: clamp(1.75rem, 4vw, 2.75rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.social-invite__eyebrow {
  color: rgba(255, 255, 255, .82);
  margin-bottom: .5rem;
}
.social-invite__title {
  margin: 0 0 1rem;
  font-size: clamp(1.19rem, 2.2vw, 1.63rem);
  line-height: 1.25;
  color: var(--rs-white);
}
.social-invite__title--sm {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}
.social-invite__list {
  margin: 0 0 1.35rem;
  padding-left: 1.15rem;
  opacity: .95;
}
.social-invite__list li {
  margin-bottom: .45rem;
}
.social-invite__lead {
  margin: 0 0 1rem;
  opacity: .92;
  max-width: 42ch;
}
.social-invite__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-bottom: .85rem;
}
.social-invite__note {
  margin: 0;
  font-size: .82rem;
  opacity: .78;
  max-width: 38ch;
}
.social-invite__note--sm {
  font-size: .78rem;
  margin-top: .35rem;
}
.social-invite__phones {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(.5rem, 2vw, 1rem);
  padding: 1.5rem clamp(.75rem, 2vw, 1.5rem);
  background: rgba(0, 0, 0, .08);
  perspective: 800px;
}
.social-invite__phone {
  flex: 0 0 auto;
  width: clamp(5.5rem, 14vw, 8.75rem);
  padding: .45rem;
  border-radius: 1.35rem;
  background: #1c1917;
  box-shadow: 0 14px 36px rgba(0, 0, 0, .28);
  transition: transform .35s ease;
}
.social-invite__phone--center {
  transform: translateY(-1rem);
  z-index: 2;
}
.social-invite__phone-notch {
  width: 28%;
  height: .22rem;
  margin: 0 auto .35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
}
.social-invite__phone-screen {
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 9 / 19;
  background: #292524;
}
.social-invite__phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.social-invite--compact {
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 0;
  gap: 1rem;
}
.social-invite--compact .social-invite__copy {
  padding: clamp(1.25rem, 3vw, 1.75rem);
}
.social-invite__thumbs {
  display: flex;
  gap: .45rem;
  padding: 0 clamp(.75rem, 2vw, 1.25rem) 0 0;
  flex-shrink: 0;
}
.social-invite__thumbs img {
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 8px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, .35);
}
.section--compact-social {
  padding-top: 0;
}
@media (max-width: 768px) {
  .social-invite {
    grid-template-columns: 1fr;
  }
  .social-invite__phones {
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
  }
  .social-invite__phone {
    scroll-snap-align: center;
  }
  .social-invite__phone--center {
    transform: translateY(-.5rem);
  }
  .social-invite--compact {
    grid-template-columns: 1fr;
  }
  .social-invite__thumbs {
    padding: 0 clamp(1.25rem, 3vw, 1.75rem) clamp(1rem, 3vw, 1.25rem);
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .social-invite__thumbs::-webkit-scrollbar { display: none; }
  .social-invite__thumbs img {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
  .social-invite--compact .mobile-slider-dots {
    margin-top: -.55rem;
    padding-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .hero-showcase {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero-showcase__tile--main {
    aspect-ratio: 16 / 11;
    min-height: 0;
  }
  .hero-showcase__side {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
  }
  .hero-showcase__tile--side {
    aspect-ratio: 1;
  }
  .hero-showcase__tile--side .hero-showcase__title {
    font-size: .78rem;
  }
  .hero-showcase__tile--side .hero-showcase__category {
    display: none;
  }
}

.faq--home details p { margin: 0; color: var(--rs-muted); font-size: .92rem; line-height: 1.55; }
.faq--home .faq__answer {
  margin-top: .75rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.faq--home .faq__answer p:first-child { margin-top: 0; }
.faq--home details summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  transition: color .25s ease;
}
.faq--home details summary::-webkit-details-marker { display: none; }
.faq--home details summary::after {
  content: "";
  flex-shrink: 0;
  width: .5rem;
  height: .5rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .25s ease;
}
.faq--home details[open] summary { color: var(--rs-red); }
.faq--home details[open] summary::after { transform: rotate(-135deg); }

.brand-stats__grid { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }

.static-page { padding: 2rem 0 3rem; }
.static-page__body { max-width: 72ch; }
.static-page__body h2 { margin-top: 2rem; color: var(--rs-brown); }

/* ——— Legal / 152-ФЗ pages ——— */
.section--legal {
  padding: 2.5rem 0 3.5rem;
  background: linear-gradient(180deg, var(--rs-white) 0%, var(--rs-bg) 100%);
}
.legal-page { max-width: 100%; }
.legal-page .section-head h1 {
  font-size: clamp(1.32rem, 2.64vw, 1.76rem);
  color: var(--rs-brown);
  margin: 0 0 .5rem;
  padding-left: 0;
}
.legal-page .section-head h1::before { display: none; }
.legal-page .section-head__lead {
  margin: 0;
  font-size: .95rem;
  color: var(--rs-muted);
}
.legal-body {
  max-width: 68ch;
  line-height: 1.65;
  color: var(--rs-ink);
}
.legal-body p { margin: 0 0 1rem; }
.legal-body h2 {
  margin: 2rem 0 .75rem;
  font-size: 1.15rem;
  color: var(--rs-brown);
}
.legal-body ul {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
  list-style: disc;
}
.legal-body li { margin-bottom: .4rem; }
.legal-body a { font-weight: 600; }

/* ——— Motion, scroll-top, segments, discovery CTAs ——— */
.reveal {
  opacity: 0;
  transform: translate3d(0, 1.25rem, 0);
  transition:
    opacity .55s ease var(--reveal-delay, 0ms),
    transform .55s ease var(--reveal-delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.scroll-top {
  position: fixed;
  right: 1rem;
  bottom: calc(5rem + env(safe-area-inset-bottom));
  z-index: 95;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 50%;
  background: var(--rs-red);
  color: var(--rs-white);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(107, 96, 92, .35);
  opacity: 0;
  transform: scale(.85) rotate(-90deg);
  transition:
    opacity .3s ease, transform .3s cubic-bezier(.22, 1, .36, 1),
    background .18s ease, box-shadow .18s ease;
}
.scroll-top.is-visible {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}
.scroll-top:hover {
  background: var(--rs-red-dark);
  box-shadow: 0 10px 28px rgba(107, 96, 92, .42);
}
.scroll-top[hidden] { display: block; pointer-events: none; }
@media (min-width: 769px) {
  .scroll-top {
    right: 1.25rem;
    bottom: 1.25rem;
    width: 3rem;
    height: 3rem;
  }
}

.floating-contacts {
  display: none;
  position: fixed;
  right: 1.25rem;
  bottom: 5.25rem;
  z-index: 94;
  flex-direction: column;
  gap: .45rem;
  align-items: stretch;
}
@media (min-width: 769px) {
  .floating-contacts {
    display: flex;
    animation: float-contacts-in .55s ease .25s both;
  }
}
.floating-contacts__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  padding: .55rem .85rem;
  border-radius: 999px;
  background: var(--rs-white);
  border: 1px solid var(--rs-line);
  color: var(--rs-brown);
  font-weight: 700;
  font-size: .78rem;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(61,50,41,.1);
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.floating-contacts__btn:hover {
  border-color: var(--rs-red);
  color: var(--rs-red);
  text-decoration: none;
  transform: scale(1.03);
}
.floating-contacts__btn--phone {
  font-size: .72rem;
  max-width: 11rem;
  white-space: nowrap;
}
.floating-contacts__btn--kp {
  background: var(--rs-red);
  color: var(--rs-white);
  border-color: var(--rs-red);
}
.floating-contacts__btn--kp:hover {
  background: var(--rs-red-dark);
  color: var(--rs-white);
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lead-modal[hidden] { display: none; }
.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 14, 18, .62);
}
.lead-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 32rem);
  max-height: min(92vh, 44rem);
  overflow: auto;
  padding: 1.35rem 1.35rem 1.5rem;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, .22);
}
.lead-modal__close {
  position: absolute;
  top: .65rem;
  right: .65rem;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 999px;
  background: rgba(12, 14, 18, .06);
  color: inherit;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}
.lead-modal__close:hover { background: rgba(12, 14, 18, .12); }
.lead-modal__head { margin-bottom: 1rem; padding-right: 2rem; }
.lead-modal__head h2 {
  margin: 0 0 .35rem;
  font-size: 1.35rem;
}
.lead-modal__head .lead {
  margin: 0;
  font-size: .95rem;
  color: var(--rs-muted, #5c6470);
}
body.lead-modal-open { overflow: hidden; }

.segment-nav {
  border-top: 1px solid var(--rs-line);
  background: var(--rs-white);
}
.segment-nav__head {
  padding-top: .5rem;
  display: flex;
  justify-content: center;
}
.segment-nav__slider-hint {
  display: block;
}
.segment-nav__hint-arrow {
  display: none;
}
.segment-nav__title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.9rem;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rs-brown-light);
  text-align: center;
}
.segment-nav__inner {
  display: flex;
  gap: .45rem;
  padding: .35rem .18rem .65rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-padding-inline: .18rem;
}
.segment-nav__inner::-webkit-scrollbar { display: none; }
.segment-nav--inline { border-top: 0; background: transparent; }
.segment-nav--inline .segment-nav__inner { padding: 0; flex-wrap: wrap; }
.segment-nav__pill {
  flex: 0 0 auto;
  position: relative;
  overflow: visible;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .32rem .18rem;
  border: 0;
  background: transparent;
  color: var(--rs-brown);
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: color .22s ease;
}
.segment-nav__pill:last-child {
  margin-right: 0;
}
.segment-nav__pill-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1rem;
  height: 1.1rem;
  background: transparent;
  color: var(--rs-brown);
  flex: 0 0 auto;
  transition: color .22s ease;
}
.segment-nav__pill-icon svg {
  display: block;
  width: .92rem;
  height: .92rem;
}
.segment-nav__pill-label {
  display: inline-block;
  white-space: nowrap;
}
.segment-nav__pill::before {
  content: none;
}
.segment-nav__pill:hover,
.segment-nav__pill.is-active {
  color: var(--rs-red);
  text-decoration: none;
}
.segment-nav__pill:hover .segment-nav__pill-icon,
.segment-nav__pill.is-active .segment-nav__pill-icon {
  color: var(--rs-red);
}
.segment-nav__pill.is-active { background: transparent; }

.segment-nav__controls,
.segment-nav__current,
.segment-nav__toggle {
  display: none;
}

@media (max-width: 768px) {
  .site-header.is-segment-hidden .segment-nav {
    display: none;
  }
  .segment-nav {
    border-top: 0;
    background: var(--rs-white);
    box-shadow: inset 0 -1px 0 rgba(214, 207, 196, .92);
  }
  .segment-nav__head {
    padding-top: .32rem;
    justify-content: center;
  }
  .segment-nav__slider-hint {
    display: flex;
    align-items: center;
    gap: .55rem;
  }
  .segment-nav__hint-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 999px;
    border: 1px solid rgba(107, 96, 92, .18);
    background: rgba(107, 96, 92, .06);
    color: var(--rs-red);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 8px 20px rgba(86, 34, 21, .08);
    user-select: none;
    pointer-events: none;
  }
  .segment-nav__title {
    min-height: 1.65rem;
    font-size: .68rem;
    letter-spacing: .12em;
  }
  .segment-nav.is-hidden {
    display: none;
  }
  .segment-nav__controls {
    display: flex;
    align-items: center;
    gap: .55rem;
    padding: .38rem 0 .2rem;
  }
  .segment-nav__current {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    min-height: 2.1rem;
    padding: .42rem .7rem;
    border: 1px solid rgba(214, 207, 196, .8);
    border-radius: 999px;
    background: var(--rs-white);
    color: var(--rs-brown);
    font-size: .74rem;
    font-weight: 800;
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .segment-nav__toggle {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    min-height: 2.1rem;
    padding: .42rem .72rem;
    border: 1px solid rgba(107, 96, 92, .22);
    border-radius: 999px;
    background: var(--rs-white);
    color: var(--rs-red);
    font-size: .72rem;
    font-weight: 800;
    white-space: nowrap;
  }
  .segment-nav__toggle::after {
    content: "";
    width: .42rem;
    height: .42rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform .2s ease;
  }
  .segment-nav.is-expanded .segment-nav__toggle::after {
    transform: rotate(-135deg) translateY(-1px);
  }
  .segment-nav__inner {
    display: flex;
    flex: 1 1 auto;
    gap: .35rem;
    min-width: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: .18rem .1rem .5rem;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: .1rem;
    overscroll-behavior-x: contain;
  }
  .segment-nav__inner::-webkit-scrollbar { display: none; }
  .segment-nav.is-collapsed .segment-nav__inner {
    display: none;
  }
  .segment-nav__pill {
    flex: 0 0 min(18rem, 78vw);
    min-height: 2.15rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: .45rem;
    padding: .32rem .14rem;
    text-align: center;
    white-space: normal;
    line-height: 1.15;
    font-size: .72rem;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .segment-nav__pill-icon {
    width: 1.02rem;
    height: 1.02rem;
  }
  .segment-nav__pill-icon svg {
    width: .8rem;
    height: .8rem;
  }
  .segment-nav__pill-label {
    white-space: normal;
  }
}

.section--segment-hub { padding-top: 2rem; }
.segment-hub {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .segment-hub { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .segment-hub { grid-template-columns: repeat(6, 1fr); }
  .segment-hub__card:nth-child(-n+3) { grid-column: span 2; }
  .segment-hub__card:nth-child(4),
  .segment-hub__card:nth-child(5) { grid-column: span 3; }
}
.segment-hub__card {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  padding: 1.35rem;
  background: var(--rs-white);
  border: 1px solid var(--rs-line);
  border-radius: var(--radius);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
  color: inherit;
  text-decoration: none;
}
.segment-hub__card:hover { text-decoration: none; }
.segment-hub__card:hover {
  border-color: var(--rs-red);
  box-shadow: 0 12px 32px rgba(61,50,41,.1);
  transform: translateY(-2px);
}
.segment-hub__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}
.segment-hub__num {
  font-weight: 800;
  font-size: .8rem;
  color: var(--rs-red);
}
.segment-hub__count {
  font-size: .72rem;
  font-weight: 700;
  color: var(--rs-muted);
}
.segment-hub__card h3 {
  margin: 0;
  font-size: 1.08rem;
  color: var(--rs-brown);
}
.segment-hub__card:hover h3 { color: var(--rs-red); }
.segment-hub__card p {
  margin: 0;
  font-size: .9rem;
  color: var(--rs-muted);
  flex: 1;
}
.segment-hub__hits {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .35rem;
}
.segment-hub__hits li {
  font-size: .82rem;
  font-weight: 600;
  color: var(--rs-brown);
}
.segment-hub__cta { align-self: flex-start; margin-top: .25rem; }

.inline-cta-band {
  padding: 1.75rem 0;
  background: linear-gradient(135deg, rgba(185,28,28,.08), rgba(245,240,232,.95));
  border-block: 1px solid var(--rs-line);
}
.inline-cta-band__inner {
  display: grid;
  gap: 1rem;
}
.inline-cta-band__copy h2 {
  margin: 0 0 .35rem;
  font-size: 1.25rem;
  color: var(--rs-brown);
}
.inline-cta-band__copy p {
  margin: 0;
  color: var(--rs-muted);
  font-size: .95rem;
}
.inline-cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}
.inline-cta-band__segments {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem .75rem;
}
.inline-cta-band__segments a {
  font-size: .78rem;
  font-weight: 700;
  color: var(--rs-red);
}

.lead-nudge {
  padding: .85rem 0;
  background: rgba(185,28,28,.05);
  border-block: 1px solid rgba(185,28,28,.12);
}
.lead-nudge__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}
.lead-nudge__inner p {
  margin: 0;
  font-size: .92rem;
  color: var(--rs-brown);
}

/* ——— Visual media / WOW blocks ——— */
/* Hero copy must be visible on load — no empty left column on info pages */
.hero .hero__copy.reveal {
  opacity: 1;
  transform: none;
}

.hero--cinematic .hero__grid {
  align-items: center;
  isolation: isolate;
}
.hero--cinematic .hero__visual {
  min-width: 0;
  max-width: 100%;
  z-index: 0;
}

.cinematic-hero {
  position: relative;
  width: 100%;
}
.cinematic-hero__frame {
  position: relative;
  margin: 0;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  border: 1px solid rgba(107, 96, 92, .18);
  box-shadow: 0 20px 48px rgba(61, 50, 41, .14);
  aspect-ratio: 16 / 10;
  max-height: min(54vh, 520px);
  background: var(--rs-bg-dark);
}
.cinematic-hero__frame:has(img[src*="donor-"]) {
  aspect-ratio: 3 / 4;
}
.cinematic-hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--rs-img-position);
  display: block;
  transition: transform .45s ease;
}
@media (max-width: 767px) {
  .cinematic-hero__frame {
    aspect-ratio: 4 / 3;
    max-height: none;
  }
}
.cinematic-hero__frame:has(img[src*="donor-"]) img {
  object-position: top center;
}
.cinematic-hero__link {
  display: block;
  width: 100%;
  height: 100%;
}
.cinematic-hero__frame:hover img {
  transform: scale(1.03);
}
.cinematic-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(61, 50, 41, .62) 100%);
  pointer-events: none;
}
.cinematic-hero__badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  padding: .65rem .9rem;
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(135deg, rgba(107, 96, 92, .94), rgba(85, 76, 72, .94));
  color: #fff;
  box-shadow: 0 8px 24px rgba(107, 96, 92, .35);
  pointer-events: none;
  max-width: calc(100% - 2rem);
}
.cinematic-hero__badge strong {
  display: block;
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1.15;
}
.cinematic-hero__badge span {
  display: block;
  margin-top: .2rem;
  font-size: .78rem;
  font-weight: 600;
  opacity: .92;
}
.hero--payment .cinematic-hero__frame img,
.hero--contact .cinematic-hero__frame img {
  object-position: var(--rs-img-position);
}
.section--contact-brand .section-head { max-width: 52rem; margin-inline: auto; }
.contact-brand__photos { margin-top: 1.25rem; }
.contact-brand__photos .section-gallery {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
}
.contact-brand__videos { margin-top: 1.25rem; }
.contact-brand__cta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.category-hero--odezhda .cinematic-hero__frame img,
.category-hero--voennye .cinematic-hero__frame img,
.category-hero--poshiv .cinematic-hero__frame img {
  object-position: var(--rs-img-position);
}
.cinematic-hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(7rem, 1fr));
  gap: .5rem;
  margin-top: .75rem;
}
.cinematic-hero__stat {
  background: var(--rs-brown);
  border-left: 3px solid var(--rs-red);
  border-radius: var(--radius);
  padding: .6rem .75rem;
  color: var(--rs-white);
  text-align: center;
}
.cinematic-hero__stat strong {
  display: block;
  font-size: clamp(.85rem, 2vw, 1.05rem);
  color: #c6cbd1;
  line-height: 1.2;
}
.cinematic-hero__stat span {
  font-size: .68rem;
  opacity: .88;
  line-height: 1.25;
}

.category-hero--cinematic .category-hero__aside {
  display: block;
}
.category-hero--cinematic .category-hero__grid {
  align-items: center;
}
@media (min-width: 768px) {
  .category-hero--cinematic .category-hero__grid {
    grid-template-columns: 1.05fr .95fr;
  }
}

.hero--visual {
  background: linear-gradient(135deg, var(--rs-white) 0%, var(--rs-bg-dark) 100%);
  overflow: hidden;
}
.hero--visual h1 {
  font-size: clamp(1.76rem, 3.96vw, 2.64rem);
}
.hero__visual { position: relative; }

.visual-hero__stack,
.visual-hero__collage {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  border-radius: calc(var(--radius) + 4px);
}
.visual-hero__collage {
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .visual-hero__collage {
    background-attachment: fixed;
    background-size: cover;
  }
}

.photo-collage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, minmax(120px, 1fr));
  gap: .5rem;
  min-height: 280px;
}
.photo-collage--hero { min-height: 320px; }
.photo-collage--equal .photo-collage__cell--1 { grid-row: span 1; }
.photo-collage--factory { min-height: 260px; }
.photo-collage__cell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 2px solid rgba(107, 96, 92, .35);
  display: block;
  text-decoration: none;
}
.photo-collage__cell--1 { grid-row: span 2; }
.photo-collage__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 120px;
  transition: transform .35s ease, box-shadow .35s ease;
}
.photo-collage__cell:hover img {
  transform: scale(1.04);
  box-shadow: 0 12px 32px rgba(61, 50, 41, .22);
}

.visual-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .5rem;
}
.visual-hero__stats--below {
  position: static;
  inset: auto;
}
@media (min-width: 768px) {
  .visual-hero__stats--below {
    grid-template-columns: repeat(4, 1fr);
  }
}
.stat-card--photo {
  background: var(--rs-brown);
  border-left: 3px solid var(--rs-red);
  border-radius: var(--radius);
  padding: .65rem .75rem;
  text-align: center;
  color: var(--rs-white);
}
.stat-card--photo strong {
  display: block;
  font-size: 1.15rem;
  color: #c6cbd1;
  line-height: 1.15;
}
.stat-card--photo span {
  font-size: .68rem;
  opacity: .88;
  line-height: 1.25;
}

.split-section {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .split-section {
    grid-template-columns: 1fr 1fr;
  }
  .split-section--image-left .split-section__media { order: -1; }
}
.split-section__media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(107, 96, 92, .25);
  box-shadow: 0 16px 40px rgba(61, 50, 41, .12);
}
.split-section__media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: var(--rs-img-position);
  transition: transform .35s ease;
}
.split-section__media a:hover img { transform: scale(1.04); }

.section-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: .75rem;
  margin-top: 1.25rem;
}
.section-gallery__item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(107, 96, 92, .2);
  display: block;
}
.section-gallery__item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center top;
  transition: transform .35s ease, box-shadow .35s ease;
}
.section-gallery--top .section-gallery__item img {
  object-position: top center;
}
.section-gallery__item:hover img {
  transform: scale(1.04);
  box-shadow: 0 10px 28px rgba(61, 50, 41, .18);
}
.section-gallery--cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 768px) {
  .section-gallery--cols-3[data-mobile-dots] {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: .25rem;
  }
  .section-gallery--cols-3[data-mobile-dots]::-webkit-scrollbar { display: none; }
  .section-gallery--cols-3[data-mobile-dots] .section-gallery__item {
    flex: 0 0 78%;
    scroll-snap-align: start;
  }
  .section-gallery--cols-3 + .mobile-slider-dots {
    margin-top: .65rem;
  }
}

.section--bpla-complexes .section-head { max-width: 52rem; }
.bpla-complexes__grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.25rem;
}
@media (min-width: 900px) {
  .bpla-complexes__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    align-items: start;
  }
}
.bpla-complexes__photos .section-gallery { margin-top: 0; }
.bpla-complexes__videos { margin-top: 1.25rem; }
.bpla-complexes__cta { margin-top: 1.25rem; }

.section--production-showcase .section-head { max-width: 52rem; }
.production-showcase__grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.25rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 900px) {
  .production-showcase__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    align-items: start;
  }
}
.production-showcase__factory .section-gallery { margin-top: 0; }
.production-showcase__factory {
  min-width: 0;
}
.production-showcase__factory .section-gallery,
.production-showcase__gallery .section-gallery {
  align-items: stretch;
}
.production-showcase__factory .section-gallery {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.production-showcase__gallery { margin-top: 1.25rem; }
.production-showcase__gallery .section-gallery {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 11rem), 1fr));
}
.production-showcase__videos { margin-top: 1.25rem; }
.production-showcase__videos {
  clear: both;
  position: relative;
  z-index: 1;
}
.production-showcase__videos .attention-video-menu__media .ambient-video {
  --ambient-aspect: 1 / 1;
}
.production-showcase__videos .attention-video-menu__media .ambient-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.production-showcase__cta {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.section--product-videos .section-head { max-width: 52rem; }
.product-videos-block__grid { margin-top: 1.25rem; }
.product-videos-block__cta {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.section--attention-video-menu .section-head { max-width: 52rem; }
.attention-video-menu__featured {
  margin-bottom: 1.25rem;
}
.attention-video-menu__featured .video-showcase-featured__item {
  max-width: none;
}
.attention-video-menu__featured .kit-featured-video__player {
  max-width: none;
}
.video-showcase-featured {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.video-showcase-featured__title {
  margin: 0 0 .75rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.3;
}
.video-showcase-featured__foot {
  margin-top: .75rem;
}
.section--attention-video-menu .attention-video-menu {
  margin-top: 1.25rem;
}
.video-showcase-grid__label {
  margin: 0 0 .45rem;
}
.video-showcase-grid__items,
.attention-video-menu {
  display: grid;
  grid-template-columns: 1fr;
  gap: .85rem;
  margin-top: 0;
}
@media (min-width: 480px) {
  .video-showcase-grid__items,
  .attention-video-menu {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media (min-width: 900px) {
  .video-showcase-grid__items,
  .attention-video-menu {
    grid-template-columns: repeat(3, 1fr);
  }
}
.product-videos-block__grid .video-showcase-grid,
.production-showcase__videos .video-showcase-grid {
  margin-top: 1.25rem;
}
@keyframes attention-tile-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196, 30, 58, 0); }
  50% { box-shadow: 0 0 0 2px rgba(196, 30, 58, .12); }
}
@keyframes attention-tile-shine {
  0% { transform: translateX(-120%) skewX(-18deg); opacity: 0; }
  35% { opacity: .45; }
  100% { transform: translateX(220%) skewX(-18deg); opacity: 0; }
}
.attention-video-menu__tile,
a.attention-video-menu__tile {
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--rs-white);
  border: 1px solid var(--rs-line);
  border-radius: var(--radius);
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  animation: attention-tile-pulse 3.2s ease-in-out infinite;
}
.attention-video-menu__tile:focus-within {
  border-color: var(--rs-red);
  box-shadow: 0 12px 32px rgba(61, 50, 41, .1);
  animation: none;
}
.attention-video-menu__tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, .55) 50%, transparent 60%);
  transform: translateX(-120%) skewX(-18deg);
  pointer-events: none;
  animation: attention-tile-shine 4.5s ease-in-out infinite;
}
.attention-video-menu__tile:hover {
  border-color: var(--rs-red);
  box-shadow: 0 12px 32px rgba(61, 50, 41, .1);
  transform: translateY(-3px);
  text-decoration: none;
  animation: none;
}
.attention-video-menu__tile:hover::after {
  animation: none;
}
.attention-video-menu__media {
  display: block;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--rs-bg-dark);
}
.attention-video-menu__media .ambient-video {
  --ambient-aspect: 1 / 1;
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  background: var(--rs-bg-dark);
}
.attention-video-menu__media .ambient-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  background: var(--rs-bg-dark);
}
.attention-video-menu__body {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  padding: .75rem .85rem .9rem;
  flex: 1;
}
.attention-video-menu__label {
  font-weight: 800;
  font-size: .88rem;
  line-height: 1.25;
  color: var(--rs-brown);
}
.attention-video-menu__foot {
  margin: 1.25rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.section--predpriyatiya-video .section-head {
  max-width: 44rem;
}
.predpriyatiya-video__player {
  max-width: 960px;
  margin-inline: auto;
}
.predpriyatiya-video__actions {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
}
.rs-video-player--featured {
  max-height: min(68vh, 640px);
}
.rs-video-player--featured video {
  aspect-ratio: 16 / 9;
  max-height: min(68vh, 640px);
  object-fit: contain;
}

.section-figure {
  margin: 1.5rem 0 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(107, 96, 92, .2);
}
.section-figure img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: var(--rs-img-position);
}

.impact-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}
@media (min-width: 768px) {
  .impact-gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}
.impact-gallery--awards {
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}
.impact-gallery__item {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  text-decoration: none;
  color: inherit;
}
.impact-gallery__frame {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(107, 96, 92, .28);
  background: var(--rs-white);
}
.impact-gallery__frame img {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  transition: transform .35s ease, box-shadow .35s ease;
}
.impact-gallery__item:hover .impact-gallery__frame img {
  transform: scale(1.04);
  box-shadow: 0 14px 36px rgba(61, 50, 41, .2);
}
.impact-gallery__caption {
  font-size: .82rem;
  font-weight: 700;
  color: var(--rs-brown);
  line-height: 1.3;
}

.experience-banner {
  background: var(--rs-brown);
  color: var(--rs-white);
  overflow: hidden;
}
.experience-banner__strip {
  display: flex;
  gap: .65rem;
  overflow-x: auto;
  padding: .85rem 4vw;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.experience-banner .mobile-slider-dots {
  margin-top: -.2rem;
  padding-bottom: .85rem;
}
.experience-banner .mobile-slider-dot {
  background: rgba(255, 255, 255, .36);
}
.experience-banner .mobile-slider-dot.is-active {
  background: #c6cbd1;
}
.brand-photo-wall__item {
  flex: 0 0 min(280px, 72vw);
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, .15);
  display: block;
}
.brand-photo-wall__item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform .35s ease;
}
.brand-photo-wall__item:hover img { transform: scale(1.04); }
.experience-banner__copy {
  padding: 1.5rem 0 2rem;
  text-align: center;
}
.experience-banner__tagline {
  font-size: clamp(0.97rem, 2.2vw, 1.28rem);
  margin: 0 0 .75rem;
}
.experience-banner__tagline strong { color: #c6cbd1; }
.experience-banner .lead {
  color: rgba(255, 255, 255, .85);
  margin-inline: auto;
}
.experience-banner .btn--ghost {
  border-color: rgba(255, 255, 255, .35);
  color: var(--rs-white);
  background: transparent;
  margin-top: .75rem;
}
.experience-banner .btn--ghost:hover {
  border-color: var(--rs-white);
  color: var(--rs-brown);
  background: var(--rs-white);
}

.awards-strip__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.awards-strip__item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(107, 96, 92, .25);
  display: block;
  background: var(--rs-white);
}
.awards-strip__item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform .35s ease;
}
.awards-strip__item:hover img { transform: scale(1.04); }

.brand-stats--visual {
  position: relative;
  overflow: hidden;
}
.brand-stats--visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245, 240, 232, .94), rgba(245, 240, 232, .88)),
    var(--brand-stats-bg, none) center/cover no-repeat;
  z-index: 0;
}
.brand-stats--visual .container { position: relative; z-index: 1; }

.brand-factory__grid { align-items: start; }
.brand-factory__visual { min-width: 0; }
.brand-factory .brand-timeline {
  margin-top: 2rem;
  padding: 1.25rem;
  background: var(--rs-white);
  border: 1px solid var(--rs-line);
  border-radius: var(--radius);
}
.brand-factory__story {
  margin: 2rem 0 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(107, 96, 92, .2);
}
.brand-factory__story img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}
.brand-factory__story figcaption {
  padding: .75rem 1rem;
  font-size: .88rem;
  color: var(--rs-muted);
  background: var(--rs-white);
}

.category-hero--visual {
  border-bottom: 3px solid var(--rs-red);
}
@media (min-width: 768px) {
  .category-hero__grid {
    grid-template-columns: 1.1fr .9fr;
    align-items: start;
  }
}
.category-hero__aside { display: grid; gap: 1rem; }
.category-hero__photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
}
.category-hero__photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(107, 96, 92, .22);
  display: block;
}
.category-hero__photo img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform .35s ease;
}
.category-hero__photo:hover img { transform: scale(1.04); }

.segment-hub {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .segment-hub { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .segment-hub { grid-template-columns: repeat(3, 1fr); }
}
.segment-hub__card {
  position: relative;
  background: var(--rs-white);
  border: 1px solid var(--rs-line);
  border-radius: var(--radius);
  padding: 1.25rem;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}
.segment-hub__card:hover { text-decoration: none; }
.segment-hub__card--visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.97) 55%),
    var(--segment-bg, none) center/cover no-repeat;
  z-index: 0;
  pointer-events: none;
}
.segment-hub__card--visual > * { position: relative; z-index: 1; }
.segment-hub__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .65rem;
}
.segment-hub__num {
  font-weight: 800;
  color: var(--rs-red);
  font-size: .85rem;
}
.segment-hub__count {
  font-size: .72rem;
  color: var(--rs-muted);
  font-weight: 600;
}
.segment-hub__card h3 { margin: 0 0 .5rem; font-size: 0.95rem; }
.segment-hub__card:hover h3 { color: var(--rs-red); }
.segment-hub__card p {
  margin: 0 0 .75rem;
  font-size: .88rem;
  color: var(--rs-muted);
}
.segment-hub__hits {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  font-size: .82rem;
}
.segment-hub__hits li { margin-bottom: .25rem; }
.segment-hub__hits li { font-weight: 600; color: var(--rs-brown); }
.segment-hub__cta { width: 100%; justify-content: center; }

@media (max-width: 767px) {
  .photo-collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .photo-collage__cell--1 { grid-row: span 1; }
  .visual-hero__stats {
    position: static;
    margin-top: .75rem;
  }
  .category-hero__photos {
    grid-template-columns: 1fr;
  }
}

/* Factory cycle — donor block */
.factory-cycle {
  background: var(--rs-bg);
  border-block: 1px solid var(--rs-line);
}
.factory-cycle--compact {
  padding-block: 2rem;
}
.factory-cycle__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .factory-cycle__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}
@media (max-width: 767px) {
  .factory-cycle__photo { order: -1; }
}
.factory-cycle__equipment {
  margin: 0 0 1rem;
  font-size: .95rem;
  line-height: 1.55;
  color: var(--rs-brown);
}
.factory-cycle__shops-label {
  margin: 0 0 .5rem;
  font-weight: 700;
  font-size: .9rem;
}
.factory-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}
.factory-checklist__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .45rem 1.25rem;
}
.factory-checklist__item {
  display: flex;
  align-items: flex-start;
  gap: .45rem;
  font-size: .92rem;
  font-weight: 600;
}
.factory-checklist__item::before {
  content: "✓";
  flex-shrink: 0;
  color: var(--rs-red);
  font-weight: 800;
}
.factory-cycle__photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(107, 96, 92, .22);
  box-shadow: 0 12px 40px rgba(26, 20, 16, .08);
}
.factory-cycle__photo img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: var(--rs-img-position);
  display: block;
}
.factory-cycle__cta {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin: 0;
}

/* Quick picks — category ad landing */
.quick-picks {
  padding: .85rem 0;
  background: var(--rs-white);
  border-bottom: 1px solid var(--rs-line);
}
.quick-picks__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .65rem 1rem;
}
.quick-picks__label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--rs-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.quick-picks__chips {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}
.quick-picks__chip {
  display: inline-flex;
  padding: .35rem .75rem;
  border-radius: 999px;
  border: 1px solid rgba(107, 96, 92, .28);
  background: var(--rs-bg);
  font-size: .88rem;
  font-weight: 600;
  color: var(--rs-red);
  text-decoration: none;
  transition: background .2s, border-color .2s;
}
.quick-picks__chip:hover {
  background: var(--rs-white);
  border-color: var(--rs-red);
}

/* Rassrochka banner */
.rassrochka-banner {
  padding: 1rem 0;
  background: linear-gradient(90deg, rgba(107, 96, 92, .08), rgba(239, 239, 237, .95));
  border-block: 1px solid rgba(107, 96, 92, .15);
}
.rassrochka-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.rassrochka-banner p { margin: 0; font-size: .95rem; }

/* GOST stats strip */
.gost-stats-strip {
  padding: .75rem 0;
  background: var(--rs-red);
  color: var(--rs-white);
}
.gost-stats-strip__inner {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  justify-content: center;
  text-align: center;
}
.gost-stats-strip__item {
  font-size: .88rem;
  opacity: .95;
}
.gost-stats-strip__item strong { font-weight: 800; }

/* Brand quote */
.brand-quote-strip {
  margin: 0;
  padding: 1.25rem 0;
  background: var(--rs-white);
  border-block: 1px solid var(--rs-line);
  text-align: center;
}
.brand-quote-strip p {
  margin: 0 0 .35rem;
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 600;
  color: var(--rs-brown);
}
.brand-quote-strip footer {
  font-size: .88rem;
}
.brand-quote-strip a { font-weight: 700; }

/* Homepage trust panel — quote + stats + finance in one block */
.home-trust-panel {
  padding-block: clamp(2rem, 4vw, 3rem);
}
.home-trust-panel__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 2rem);
  max-width: 920px;
  margin-inline: auto;
}
.home-trust-panel__quote {
  margin: 0;
  padding: 0;
  border: none;
  text-align: center;
}
.home-trust-panel__quote p {
  margin: 0 0 .5rem;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.45;
  color: var(--rs-brown);
}
.home-trust-panel__quote footer {
  font-size: .9rem;
}
.home-trust-panel__quote a {
  color: var(--rs-red);
  font-weight: 700;
  text-decoration: none;
}
.home-trust-panel__quote a:hover { text-decoration: underline; }
.home-trust-panel__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}
@media (min-width: 720px) {
  .home-trust-panel__stats {
    grid-template-columns: repeat(4, 1fr);
  }
}
.home-trust-panel__stat {
  background: var(--rs-white);
  border: 1px solid var(--rs-line);
  border-radius: var(--radius);
  padding: 1rem .85rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  min-height: 5.5rem;
  justify-content: center;
}
.home-trust-panel__stat strong {
  display: block;
  font-size: .95rem;
  font-weight: 800;
  color: var(--rs-red);
  line-height: 1.25;
}
.home-trust-panel__stat span {
  font-size: .78rem;
  color: var(--rs-muted);
  line-height: 1.3;
}
.home-trust-panel__finance {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--rs-white);
  border: 1px solid var(--rs-line);
  border-left: 4px solid var(--rs-red);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(61, 50, 41, .06);
}
.home-trust-panel__finance-copy p {
  margin: 0;
  font-size: .95rem;
  line-height: 1.45;
  color: var(--rs-brown);
}
.home-trust-panel__finance .eyebrow {
  margin-bottom: .35rem;
}
.home-trust-panel__finance .btn {
  flex-shrink: 0;
}

/* MOQ opt strip */
.moq-opt-strip {
  padding: 1rem 0;
  background: var(--rs-bg);
  border-bottom: 1px solid var(--rs-line);
}
.moq-opt-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}
.moq-opt-strip__stat {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  font-size: .88rem;
}
.moq-opt-strip__stat strong { font-size: 1rem; color: var(--rs-red); }
.moq-opt-strip__stat span { color: var(--rs-muted); font-size: .82rem; }

/* Product mid-page CTA */
.product-mid-cta {
  padding: 1.25rem 0;
  background: linear-gradient(135deg, rgba(107, 96, 92, .06), var(--rs-bg));
  border-block: 1px solid var(--rs-line);
}
.product-mid-cta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}
.product-mid-cta p { margin: 0 0 .65rem; font-size: .95rem; }
.product-mid-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.product-mid-cta__related {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  font-size: .88rem;
}
.product-mid-cta__related-label {
  font-weight: 700;
  color: var(--rs-muted);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.product-mid-cta__related a { font-weight: 600; }

/* Donor-style bright order closing CTA */
.section--order-cta {
  padding-block: clamp(1.25rem, 3vw, 2rem);
}
.order-closing-cta {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1.25rem, 4vw, 2.25rem);
  border-radius: 20px;
  background: var(--order-cta-orange, #ff8f4a);
  color: #fff;
  box-shadow: 0 12px 40px rgba(255, 120, 50, .35);
}
.order-closing-cta__photo {
  flex: 0 0 auto;
  width: clamp(5.5rem, 16vw, 9.5rem);
  height: clamp(5.5rem, 16vw, 9.5rem);
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, .35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
}
.order-closing-cta__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.order-closing-cta__body {
  flex: 1 1 16rem;
  min-width: 0;
}
.order-closing-cta__line {
  margin: 0 0 .2rem;
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
}
.order-closing-cta__line--cta {
  margin-top: .35rem;
  margin-bottom: .85rem;
}
.order-closing-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-bottom: .65rem;
}
.order-closing-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: .65rem 1.35rem;
  border-radius: 10px;
  background: #111;
  color: #fff !important;
  font-weight: 800;
  font-size: clamp(.88rem, 1.8vw, 1.05rem);
  text-decoration: none;
  letter-spacing: .01em;
  transition: transform .2s ease, background .2s ease;
}
.order-closing-cta__btn:hover {
  background: #000;
  animation: cta-pulse-once .45s ease;
}
.order-closing-cta__alt {
  margin: 0;
  font-size: .82rem;
  opacity: .92;
  line-height: 1.45;
}
.order-closing-cta__alt a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (max-width: 640px) {
  .order-closing-cta {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .order-closing-cta__actions {
    justify-content: center;
    width: 100%;
  }
  .order-closing-cta__btn {
    flex: 1 1 calc(50% - .35rem);
    min-width: 9rem;
  }
}

/* Product trust row */
.product-trust-section { padding: 1.5rem 0 0; }
.product-trust-section__utp {
  font-size: 1.05rem; font-weight: 700; color: var(--rs-ink);
  margin: 0 0 1rem; line-height: 1.45;
}
.product-trust-row {
  display: grid; gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--rs-bg); border: 1px solid var(--rs-line);
  border-radius: var(--rs-radius);
}
.product-trust-row__badges {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: .75rem;
}
.product-trust-row__badges li { display: flex; flex-direction: column; gap: .15rem; }
.product-trust-row__badges strong { font-size: .95rem; }
.product-trust-row__badges span { font-size: .78rem; color: var(--rs-muted); }
.product-trust-row__quote {
  margin: 0; padding: .75rem 1rem;
  border-left: 3px solid var(--rs-red);
  background: rgba(185,28,28,.04);
  font-size: .92rem;
}
.product-trust-row__quote footer { margin-top: .35rem; font-size: .78rem; }
.product-recommend-strip { margin-top: 1.25rem; }

/* Modular award blocks — horizontal grid, not vertical stack */
.module-block {
  padding: 1rem 1.1rem;
  background: var(--rs-white);
  border: 1px solid var(--rs-line);
  border-radius: var(--radius);
  max-width: 100%;
  min-width: 0;
}
.module-block__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .85rem;
}
.module-block__eyebrow { margin: 0; }
.module-block__link {
  font-size: .82rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.award-modules {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .65rem;
  max-width: 100%;
}
.award-modules__item {
  display: block;
  min-width: 0;
  border-radius: calc(var(--radius) - 2px);
  overflow: hidden;
  border: 1px solid var(--rs-line);
  background: var(--rs-bg);
  box-shadow: 0 4px 14px rgba(61, 50, 41, .06);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.award-modules__item:hover {
  transform: translateY(-2px);
  border-color: rgba(107, 96, 92, .35);
  box-shadow: 0 8px 20px rgba(61, 50, 41, .1);
  text-decoration: none;
}
.award-modules__item img {
  width: 100%;
  max-width: none;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: var(--rs-img-position);
  display: block;
}
@media (max-width: 720px) {
  .award-modules {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: .25rem;
    scrollbar-width: none;
  }
  .award-modules::-webkit-scrollbar { display: none; }
  .award-modules__item {
    flex: 0 0 42%;
    scroll-snap-align: start;
  }
}

/* Brand story panel */
.brand-story__grid { align-items: center; }
.brand-story__figure { margin: 0 0 1rem; }
.brand-story__figure img {
  width: 100%; height: auto; border-radius: var(--rs-radius);
  box-shadow: var(--rs-shadow);
}
.brand-story__figure figcaption {
  margin-top: .5rem; font-size: .82rem; color: var(--rs-muted); text-align: center;
}

/* Contact module — one block top + one bottom on product pages */
.contact-module {
  margin-top: 1rem;
  padding: 1rem 1.05rem;
  border: 1px solid var(--rs-line);
  border-radius: var(--radius);
  background: var(--rs-bg);
  max-width: 100%;
  min-width: 0;
}
.contact-module__headline {
  margin: 0 0 .25rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--rs-brown);
}
.contact-module__sub {
  margin: 0 0 .85rem;
  font-size: .88rem;
  color: var(--rs-muted);
}
.contact-module__primary {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-bottom: .65rem;
}
.contact-module__channels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .45rem;
}
.contact-module__channels .btn {
  width: 100%;
  justify-content: center;
  padding-inline: .4rem;
  font-size: .82rem;
  white-space: nowrap;
  min-width: 0;
}
.contact-module__meta {
  margin: .65rem 0 0;
  font-size: .84rem;
  color: var(--rs-muted);
  text-align: center;
}
.contact-module__meta a { font-weight: 700; }
.contact-module--footer {
  margin: 0 0 1.25rem;
  padding: 1.15rem 1.2rem;
  background: linear-gradient(135deg, rgba(107, 96, 92, .05), rgba(61, 50, 41, .03));
}
@media (max-width: 480px) {
  .contact-module__channels {
    grid-template-columns: 1fr;
  }
}

.product-related-strip {
  padding: 1rem 0;
  border-block: 1px solid var(--rs-line);
  background: var(--rs-white);
}
.product-related-strip__label {
  margin: 0 0 .5rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--rs-muted);
}
.product-related-strip__links {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.product-related-strip__link {
  font-weight: 600;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

/* Home segment modules: clear visual accents without risky mismatched photos */
.section--segment-hub .section-head {
  max-width: 54rem;
}
.section--segment-hub .segment-hub {
  align-items: stretch;
}
.segment-hub__card--accent {
  min-height: 100%;
  background:
    radial-gradient(circle at 20% 0%, rgba(107, 96, 92, .11), transparent 34%),
    linear-gradient(180deg, #fffaf3, #fff);
}
.segment-hub__visual {
  display: block;
  min-height: 0;
  aspect-ratio: 16 / 10;
  border-radius: calc(var(--radius) + 4px);
  background: var(--rs-bg-dark);
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(107, 96, 92, .16);
  box-shadow: 0 10px 24px rgba(61, 50, 41, .08);
}
.segment-hub__visual::before {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(37, 27, 22, .78));
  pointer-events: none;
}
.segment-hub__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--rs-img-position);
  transition: transform .35s ease;
}
.segment-hub__visual:hover img {
  transform: scale(1.035);
}
.segment-hub__proof {
  position: absolute;
  left: .85rem;
  right: .85rem;
  bottom: .8rem;
  z-index: 2;
  max-width: 13rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .035em;
  font-size: .86rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .38);
}
.segment-hub__card--avtomobili .segment-hub__visual {
  background: var(--rs-bg-dark);
}
.segment-hub__card--obekty .segment-hub__visual {
  background: var(--rs-bg-dark);
}
.segment-hub__card--voennye .segment-hub__visual {
  background: var(--rs-bg-dark);
}
.segment-hub__card--grazhdanskie .segment-hub__visual {
  background: var(--rs-bg-dark);
}
@media (min-width: 640px) and (max-width: 1023.98px) {
  .section--segment-hub .segment-hub__card--accent:nth-child(5) {
    grid-column: 1 / -1;
  }
}
@media (min-width: 1024px) {
  .section--segment-hub .segment-hub {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1.15rem;
  }
  .segment-hub__card--accent:nth-child(1),
  .segment-hub__card--accent:nth-child(2) {
    grid-column: span 3;
  }
  .segment-hub__card--accent:nth-child(n+3) {
    grid-column: span 2;
  }
}
.segment-hub__card--accent .segment-hub__cta {
  margin-top: auto;
}

/* ════════════════════════════════════════════════
   Homepage hero — compact & informative
   ════════════════════════════════════════════════ */
.home-hero-reference {
  padding: clamp(.35rem, 1.1vw, .7rem) 0 clamp(1.15rem, 2.8vw, 1.9rem);
}
.home-hero-reference .container {
  width: min(1280px, calc(100% - .5rem));
  max-width: none;
  padding-inline: 0;
}
.home-hero-reference__panel {
  position: relative;
  min-height: clamp(30rem, 50vw, 40rem);
  display: flex;
  align-items: stretch;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  background-color: #000;
  background-position: 68% center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 22px 46px rgba(25, 18, 13, .18);
}
.home-hero-reference__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: inherit;
  pointer-events: none;
}
.home-hero-reference__content {
  position: relative;
  z-index: 1;
  width: min(100%, 41.25rem);
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: clamp(2rem, 4.6vw, 3.25rem) clamp(1.6rem, 3.3vw, 2.45rem) clamp(1.65rem, 3vw, 2.2rem);
  color: #fff;
}
.home-hero-reference__title {
  margin: 0;
  display: grid;
  gap: .08rem;
  font-size: clamp(2rem, 4.05vw, 3.28rem);
  line-height: 1.06;
  letter-spacing: .012em;
  font-weight: 900;
  text-transform: uppercase;
}
.home-hero-reference__title span {
  display: block;
}
.home-hero-reference__accent {
  width: min(100%, 35.25rem);
  height: 5px;
  background: #f2a257;
}
.home-hero-reference__lead {
  margin: 0;
  max-width: 38.5rem;
  font-size: clamp(.98rem, 1.22vw, 1.12rem);
  line-height: 1.36;
  color: rgba(255, 255, 255, .96);
}
.home-hero-reference__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(.85rem, 1.7vw, 1.25rem);
  align-items: end;
  margin-top: clamp(1.1rem, 2.5vw, 2rem);
}
.home-hero-reference__stat {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: .7rem;
  align-items: start;
  align-content: start;
}
.home-hero-reference__stat:last-child {
  margin-left: -.35rem;
}
.home-hero-reference__stat-icon {
  display: inline-flex;
  width: 2.35rem;
  height: 2.35rem;
  color: #f2a257;
}
.home-hero-reference__stat-icon svg {
  width: 100%;
  height: 100%;
}
.home-hero-reference__stat-copy {
  display: grid;
  gap: .18rem;
}
.home-hero-reference__stat-copy strong {
  color: #f2a257;
  font-size: clamp(1.18rem, 1.9vw, 1.45rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: .01em;
}
.home-hero-reference__stat-copy span {
  font-size: .82rem;
  line-height: 1.22;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .92);
}
@media (max-width: 959px) {
  .home-hero-reference__panel {
    min-height: 31.75rem;
    background-position: 72% center;
  }
  .home-hero-reference__content {
    width: min(100%, 33rem);
    padding: 2.1rem 1.35rem 1.55rem;
  }
  .home-hero-reference__title {
    font-size: clamp(1.9rem, 5vw, 2.7rem);
  }
  .home-hero-reference__lead {
    max-width: 31rem;
  }
  .home-hero-reference__stat {
    gap: .58rem;
  }
  .home-hero-reference__stat:last-child {
    margin-left: -.22rem;
  }
  .home-hero-reference__stat-icon {
    width: 2rem;
    height: 2rem;
  }
  .home-hero-reference__stat-copy strong {
    font-size: 1.02rem;
  }
  .home-hero-reference__stat-copy span {
    font-size: .72rem;
  }
}
@media (max-width: 639px) {
  .home-hero-reference__panel {
    min-height: 28.6rem;
    border-radius: 16px;
    background-position: 77% center;
  }
  .home-hero-reference__content {
    width: min(100%, 18.6rem);
    gap: .55rem;
    padding: 2.3rem .6rem 1rem 1.65rem;
    align-content: start;
  }
  .home-hero-reference__title {
    gap: .02rem;
    font-size: clamp(1.35rem, 5.9vw, 1.72rem);
    line-height: 1.03;
  }
  .home-hero-reference__accent {
    width: min(100%, 14rem);
    height: 4px;
  }
  .home-hero-reference__lead {
    max-width: 14rem;
    font-size: .76rem;
    line-height: 1.24;
  }
  .home-hero-reference__stats {
    width: min(100%, 15.65rem);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .35rem;
    margin-top: .55rem;
  }
  .home-hero-reference__stat {
    grid-template-columns: 1fr;
    gap: .2rem;
  }
  .home-hero-reference__stat:last-child {
    margin-left: 0;
  }
  .home-hero-reference__stat-icon {
    width: 1.3rem;
    height: 1.3rem;
  }
  .home-hero-reference__stat-copy {
    gap: .1rem;
  }
  .home-hero-reference__stat-copy strong {
    font-size: .92rem;
    white-space: normal;
  }
  .home-hero-reference__stat-copy span {
    font-size: .5rem;
    line-height: 1.04;
  }
}
.home-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(1.4rem, 3vw, 2.25rem) 0 clamp(1.4rem, 3vw, 2.2rem);
  background:
    radial-gradient(circle at 82% 18%, rgba(107, 96, 92, .08), transparent 24rem),
    radial-gradient(circle at 0% 100%, rgba(61, 50, 41, .06), transparent 22rem),
    linear-gradient(145deg, rgba(255, 255, 255, .82) 0%, rgba(248, 249, 247, .72) 48%, rgba(245, 246, 243, .78) 100%);
  border-bottom: 3px solid var(--rs-red);
}
.home-hero-slider {
  position: relative;
  z-index: 1;
  padding: clamp(1.1rem, 2.2vw, 1.45rem);
  border: 1px solid rgba(108, 78, 57, .16);
  border-radius: calc(var(--radius) + 12px);
  background: rgba(255, 255, 255, .74);
  box-shadow:
    0 18px 42px rgba(47, 31, 20, .08),
    inset 0 1px 0 rgba(255, 255, 255, .72);
}
.home-hero-slide {
  display: none;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
  min-height: clamp(24rem, 48vw, 34rem);
}
.home-hero-slide.is-active {
  display: grid;
}
.home-hero-slider--static .home-hero-slide {
  min-height: clamp(18rem, 36vw, 27rem);
}
.home-hero-slide__copy {
  display: grid;
  gap: .8rem;
}
.home-hero-title {
  margin: 0;
  display: grid;
  gap: .3rem;
  color: #1d130c;
  font-family: var(--rs-font);
  font-weight: 700;
  line-height: .96;
  letter-spacing: -.035em;
}
.home-hero-title__kicker {
  display: block;
  font-size: clamp(1.8rem, 3.7vw, 3rem);
  text-transform: none;
}
.home-hero-title__main {
  display: block;
  font-size: clamp(2.2rem, 4.45vw, 3.95rem);
}
.home-hero-slide__copy h1,
.home-hero-slide__copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: .96;
  letter-spacing: -.055em;
  color: #1d130c;
  max-width: 9ch;
}
.home-hero-slide__copy h2 {
  max-width: 11ch;
}
.home-hero-slide__lead {
  margin: 0;
  max-width: 48ch;
  color: #5d4c3f;
  font-size: clamp(.98rem, 1.35vw, 1.08rem);
  line-height: 1.6;
}
.home-hero-slide__note {
  margin: .1rem 0 0;
  color: #6f5b4a;
  font-size: .95rem;
  font-weight: 600;
}
.home-hero-slide__note a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(107, 96, 92, .32);
}
.home-hero-slide__note a:hover {
  color: var(--rs-red);
  border-bottom-color: currentColor;
}
.home-hero-slide .hero__actions {
  margin-top: .2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}
.home-hero-slide__media {
  max-width: 470px;
  width: 100%;
  margin-inline: auto;
}
@media (min-width: 960px) {
  .home-hero-slide {
    grid-template-columns: minmax(0, 1.02fr) minmax(20rem, 470px);
  }
}
.home-hero-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: .55rem 1.2rem;
  margin-top: .3rem;
  align-items: start;
}
@media (min-width: 700px) {
  .home-hero-benefits {
    gap: .65rem 1.35rem;
  }
}
.home-hero-benefit {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: 0;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #34261d;
  font-size: .75rem;
  font-weight: 700;
  line-height: 1.35;
}
.home-hero-benefit:last-child {
  grid-column: 1 / -1;
}
.home-hero-benefit__icon {
  flex: 0 0 1rem;
  width: 1rem;
  height: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background: transparent;
  color: var(--rs-red);
  box-shadow: none;
}
.home-hero-benefit__icon svg {
  width: .9rem;
  height: .9rem;
}
.home-hero-figure {
  position: relative;
  margin: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: clamp(21rem, 42vw, 31rem);
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, .8), rgba(255, 255, 255, 0) 58%),
    radial-gradient(circle at 50% 100%, rgba(107, 96, 92, .12), rgba(107, 96, 92, 0) 48%);
}
.home-hero-figure img {
  display: block;
  width: min(100%, 30rem);
  height: auto;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 18px 34px rgba(36, 26, 20, .16));
}
@media (max-width: 959px) {
  .home-hero-slide__copy h1,
  .home-hero-slide__copy h2 {
    max-width: none;
  }
  .home-hero-slide__media,
  .home-hero-figure {
    max-width: 430px;
    width: 100%;
    margin-inline: auto;
  }
}
@media (max-width: 699px) {
  .home-hero-slider {
    padding: 1rem;
    border-radius: 22px;
  }
  .home-hero-slide {
    min-height: 0;
  }
  .home-hero-title {
    gap: .3rem;
  }
  .home-hero-benefits {
    grid-template-columns: 1fr;
    gap: .5rem;
  }
  .home-hero-benefit:last-child {
    grid-column: auto;
  }
  .home-hero-figure {
    min-height: 0;
  }
}

.home-decision {
  background:
    linear-gradient(135deg, rgba(61, 50, 41, .96), rgba(37, 27, 22, .96)),
    var(--rs-brown);
  color: rgba(255, 255, 255, .9);
}
.home-decision .eyebrow {
  color: #a8afb7;
}
.home-decision h2,
.home-decision h3 {
  color: #fff;
}
.home-decision .lead {
  color: rgba(255, 255, 255, .76);
}
.home-decision__grid {
  display: grid;
  gap: clamp(1.25rem, 4vw, 2.5rem);
}
@media (min-width: 900px) {
  .home-decision__grid {
    grid-template-columns: minmax(16rem, .75fr) minmax(0, 1.25fr);
    align-items: start;
  }
}
.home-decision__intro {
  position: sticky;
  top: 6rem;
}
.home-decision__intro h2 {
  margin: .25rem 0 .75rem;
  font-size: clamp(1.45rem, 3.08vw, 2.16rem);
  line-height: 1.08;
  letter-spacing: -.03em;
}
.home-decision__checks {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  gap: .65rem;
}
.home-decision__checks li {
  position: relative;
  padding-left: 1.35rem;
  font-weight: 700;
  font-size: .92rem;
}
.home-decision__checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .48em;
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background: var(--rs-red);
  box-shadow: 0 0 0 .25rem rgba(107, 96, 92, .18);
}
.home-decision__cards {
  display: grid;
  gap: .85rem;
}
@media (min-width: 640px) {
  .home-decision__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.home-task-card {
  min-height: 100%;
  padding: clamp(1.1rem, 2.4vw, 1.45rem);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: calc(var(--radius) + 6px);
  background:
    radial-gradient(circle at 100% 0%, rgba(107, 96, 92, .24), transparent 9rem),
    rgba(255, 255, 255, .06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}
.home-task-card__num {
  display: inline-flex;
  margin-bottom: .8rem;
  color: #a8afb7;
  font-weight: 900;
  letter-spacing: .12em;
  font-size: .78rem;
}
.home-task-card h3 {
  margin: 0 0 .55rem;
  font-size: 1.08rem;
  line-height: 1.2;
}
.home-task-card p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, .74);
  font-size: .92rem;
}
.home-task-card a {
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}
.home-task-card a:hover {
  color: #c6cbd1;
}

.home-section-kicker {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 800px) {
  .home-section-kicker {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, .72fr);
    align-items: end;
  }
}
.home-section-kicker h2 {
  margin: .25rem 0 0;
  color: var(--rs-brown);
  font-size: clamp(1.32rem, 2.99vw, 2.07rem);
  line-height: 1.08;
  letter-spacing: -.025em;
}
.home-section-kicker p:last-child {
  margin: 0;
  color: var(--rs-muted);
  font-weight: 600;
}
.home-featured {
  border-block: 1px solid var(--rs-line);
}
.home-featured__grid {
  align-items: stretch;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
@media (min-width: 1080px) {
  .home-featured__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.home-product-card {
  min-width: 0;
  height: 100%;
  border: 1px solid rgba(214, 207, 196, .92);
  border-radius: calc(var(--rs-radius) + 4px);
  background: var(--rs-white);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(61, 50, 41, .06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.home-product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(107, 96, 92, .32);
  box-shadow: 0 16px 36px rgba(61, 50, 41, .11);
}
.home-product-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.home-product-card__link:hover {
  text-decoration: none;
}
.home-product-card__media {
  display: block;
  aspect-ratio: 2 / 3;
  background:
    radial-gradient(circle at 20% 0%, rgba(107, 96, 92, .1), transparent 42%),
    var(--rs-bg);
  border-bottom: 1px solid rgba(214, 207, 196, .72);
  overflow: hidden;
  position: relative;
}
.home-product-card__media:not(.home-product-card__media--portrait) {
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(circle at 20% 0%, rgba(107, 96, 92, .1), transparent 42%),
    var(--rs-bg-dark);
}
.home-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--rs-img-position);
  transition: transform .3s ease;
  display: block;
}
.home-product-card__media--portrait {
  aspect-ratio: 2 / 3;
}
.home-product-card:hover .home-product-card__media img {
  transform: scale(1.025);
}
.home-product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .45rem;
  padding: 1rem;
}
.home-product-card__meta {
  min-height: 1.15rem;
  color: var(--rs-muted);
  font-size: .78rem;
  line-height: 1.35;
}
.home-product-card__title {
  color: var(--rs-brown);
  font-size: 0.875rem;
  line-height: 1.28;
  min-height: calc(1.28em * 2);
}
.home-product-card__price {
  margin-top: auto;
  padding-top: .35rem;
  color: var(--rs-red);
  font-weight: 900;
  letter-spacing: -.01em;
}
.home-product-card__cta {
  color: var(--rs-brown);
  font-size: .84rem;
  font-weight: 800;
}
@media (max-width: 640px) {
  .home-product-card__title {
    min-height: 0;
  }
}

.home-final-cta {
  padding-block: clamp(2rem, 5vw, 3.5rem);
  background:
    radial-gradient(circle at 88% 20%, rgba(107, 96, 92, .34), transparent 18rem),
    linear-gradient(135deg, #271d18, #47362c);
}
.home-final-cta__inner {
  display: grid;
  gap: 1.25rem;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: calc(var(--radius) + 12px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035)),
    rgba(255, 255, 255, .04);
  color: rgba(255, 255, 255, .84);
  box-shadow: 0 24px 60px rgba(26, 20, 16, .28);
}
@media (min-width: 820px) {
  .home-final-cta__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }
}
.home-final-cta .eyebrow {
  color: #a8afb7;
}
.home-final-cta h2 {
  margin: .25rem 0 .55rem;
  max-width: 18ch;
  color: #fff;
  font-size: clamp(1.45rem, 3.08vw, 2.24rem);
  line-height: 1.05;
  letter-spacing: -.035em;
}
.home-final-cta p {
  margin: 0;
  max-width: 56ch;
}
.home-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}
.home-final-cta .btn--ghost {
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .08);
  color: #fff;
}
.home-final-cta .btn--ghost:hover {
  border-color: #fff;
}
@media (max-width: 767px) {
  .home-hero h1 {
    max-width: 100%;
  }
  .home-hero__visual-card .cinematic-hero__frame,
  .home-hero .hero__visual .cinematic-hero__frame {
    border-width: 3px;
  }
  .home-hero__badge {
    position: static;
    margin-top: .75rem;
    max-width: none;
  }
  .home-decision__intro {
    position: static;
  }
  .home-final-cta__actions .btn {
    width: 100%;
  }
}

/* Contact CTA bar — site-wide conversion */
.contact-cta-bar {
  margin: clamp(1rem, 2.5vw, 1.75rem) 0;
}
.contact-cta-bar--full {
  padding: clamp(1.25rem, 3vw, 2rem) 0;
  background: linear-gradient(135deg, rgba(107, 96, 92, .06), rgba(61, 50, 41, .04));
  border-block: 1px solid var(--rs-line);
}
.contact-cta-bar__inner {
  display: grid;
  gap: 1rem;
}
.contact-cta-bar__copy { max-width: 42rem; }
.contact-cta-bar__headline {
  margin: 0 0 .35rem;
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 800;
  color: var(--rs-brown);
}
.contact-cta-bar__sub,
.contact-cta-bar__pitch {
  margin: 0 0 .5rem;
  font-size: .92rem;
  color: var(--rs-muted);
  line-height: 1.45;
}
.contact-cta-bar__grid {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  align-items: center;
  max-width: 100%;
}
.contact-cta-bar__grid .btn {
  max-width: 100%;
  min-width: 0;
  white-space: normal;
  text-align: center;
}
@media (max-width: 640px) {
  .contact-cta-bar__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .contact-cta-bar__grid .btn { width: 100%; }
  .contact-cta-bar__pitch {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .product-mid-cta__inner { min-width: 0; }
  .prose, .lead { overflow-wrap: anywhere; }
}
.contact-cta-bar--compact .contact-cta-bar__inner--compact {
  width: var(--container);
  max-width: calc(100% - 1.5rem);
  margin-inline: auto;
  padding: .85rem 1rem;
  border: 1px solid var(--rs-line);
  border-radius: var(--rs-radius);
  background: var(--rs-white);
}
.contact-cta-bar--compact { margin: .85rem 0 0; }
.contact-cta-bar--compact .contact-cta-bar__grid {
  justify-content: center;
  text-align: center;
}
.contact-cta-bar--compact .contact-cta-bar__grid .btn {
  flex: 0 1 auto;
}
.btn--tg {
  background: #229ed9;
  border-color: #229ed9;
  color: #fff !important;
}
.btn--tg:hover {
  background: #1a8bc4;
  border-color: #1a8bc4;
  text-decoration: none;
}
.btn--max {
  background: #5b4b8a;
  border: 1px solid #5b4b8a;
  color: #fff !important;
  font-weight: 700;
}
.btn--max:hover {
  background: #4a3d72;
  border-color: #4a3d72;
  text-decoration: none;
}
.nav-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 2.45rem;
  height: 2.45rem;
  padding: 0;
  border-radius: 999px;
  text-decoration: none;
  color: var(--rs-brown) !important;
  border: 1px solid rgba(214, 207, 196, .92);
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 6px 18px rgba(61, 50, 41, .05);
}
.nav-contact--icon {
  border: 0;
  background: transparent;
  box-shadow: none;
}
.nav-contact:hover {
  color: var(--rs-red) !important;
  border-color: rgba(107, 96, 92, .22);
  background: var(--rs-white);
  text-decoration: none;
}
.nav-contact--icon:hover {
  border-color: transparent;
  background: transparent;
}
.nav-contact__icon-image {
  display: block;
  width: 1.04rem;
  height: 1.04rem;
  object-fit: contain;
}
.nav-contact__icon-image--max {
  width: 1.12rem;
  height: 1.12rem;
}
.nav-phone svg {
  display: block;
  width: 1.08rem;
  height: 1.08rem;
}
.nav-contact__label {
  display: none;
  white-space: nowrap;
}
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--rs-brown);
  font-size: .98rem;
  font-weight: 600;
  text-decoration: none;
}
.nav-phone:hover,
.nav-phone:focus-visible {
  color: var(--rs-red);
  text-decoration: none;
  outline: none;
}
.nav-phone span {
  white-space: nowrap;
}
@media (max-width: 768px) {
  .site-nav.is-open > .nav-contact {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }
  .site-nav.is-open > .nav-contact .nav-contact__icon-image {
    width: 1rem;
    height: 1rem;
  }
  .site-nav.is-open > .nav-contact .nav-contact__label {
    display: inline;
  }
}
.footer-contacts { font-size: .88rem; line-height: 1.6; }
.footer-contacts--channel { opacity: .92; }

/* Human sitemap */
.sitemap-grid,
.sitemap-products {
  display: grid;
  gap: 1rem;
}
.sitemap-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.sitemap-products {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
}
.sitemap-card {
  padding: 1.1rem;
  border-radius: var(--radius);
  background: var(--rs-white);
  border: 1px solid var(--rs-line);
  box-shadow: 0 10px 28px rgba(61,50,41,.07);
}
.sitemap-card h3 {
  margin: 0 0 .75rem;
  color: var(--rs-brown);
  font-size: 1.05rem;
}
.sitemap-card h3 span {
  display: inline-flex;
  margin-left: .35rem;
  padding: .1rem .45rem;
  border-radius: 999px;
  background: rgba(185,28,28,.1);
  color: var(--rs-red);
  font-size: .75rem;
  vertical-align: middle;
}
.sitemap-card ul {
  display: grid;
  gap: .45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.sitemap-card a {
  color: var(--rs-brown);
  font-weight: 700;
  text-decoration: none;
}
.sitemap-card a:hover {
  color: var(--rs-red);
  text-decoration: underline;
}
.sitemap-products__list {
  grid-template-columns: 1fr;
}

/* ── Sitemap page hero ── */
.sitemap-hero {
  padding-bottom: 2.5rem;
}
.sitemap-hero h1 {
  font-size: clamp(1.76rem, 4.4vw, 3.08rem);
  margin: .25rem 0 .75rem;
}
.sitemap-hero .lead {
  max-width: 60ch;
  color: var(--rs-muted);
}
.sitemap-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}
.sitemap-hero__stats div {
  display: flex;
  flex-direction: column;
  min-width: 7rem;
  padding: .75rem 1rem;
  background: var(--rs-white);
  border-left: 3px solid var(--rs-red);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(61,50,41,.08);
}
.sitemap-hero__stats strong {
  font-size: clamp(1.19rem, 2.64vw, 1.67rem);
  font-weight: 900;
  color: var(--rs-red);
  line-height: 1;
}
.sitemap-hero__stats span {
  margin-top: .2rem;
  font-size: .76rem;
  color: var(--rs-muted);
  font-weight: 600;
}
.sitemap-card p {
  margin: 0 0 .75rem;
  font-size: .875rem;
  color: var(--rs-muted);
  line-height: 1.5;
}
.sitemap-card--wide {
  grid-column: 1 / -1;
}
.sitemap-grid--kits {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* Auto custom landing */
.auto-landing {
  background:
    radial-gradient(circle at 8% 2%, rgba(107, 96, 92, .08), transparent 28rem),
    linear-gradient(180deg, #f7f1e8 0%, #fff 30%, #f7f1e8 100%);
}
.auto-hero {
  padding: clamp(2.25rem, 5vw, 4.5rem) 0 clamp(2rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(107, 96, 92, .18);
}
.auto-hero__grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
@media (min-width: 960px) {
  .auto-hero__grid {
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  }
}
.auto-hero h1 {
  max-width: 11ch;
  margin: .35rem 0 1rem;
  color: var(--rs-brown);
  font-size: clamp(1.98rem, 5.28vw, 4.05rem);
  line-height: .96;
  letter-spacing: -.055em;
}
.auto-hero .lead {
  max-width: 46rem;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}
.auto-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin: 1.4rem 0 1.6rem;
}
.auto-hero__badges span {
  padding: .55rem .85rem;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(107, 96, 92, .18);
  color: var(--rs-brown);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.auto-hero__visual {
  display: grid;
  gap: .85rem;
}
.auto-hero__main {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--radius) + 8px);
  box-shadow: 0 26px 72px rgba(61,50,41,.22);
  background: #191512;
}
.auto-hero__main img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: var(--rs-img-position);
}
.auto-hero__main figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: .75rem .9rem;
  border-radius: var(--radius);
  background: rgba(28,25,23,.72);
  color: #fff;
  font-size: .86rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}
.auto-hero__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .85rem;
}
.auto-hero__thumbs img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(61,50,41,.14);
}
.auto-section .section-head--center {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.auto-section-head {
  display: grid;
  justify-items: center;
  text-align: center;
}
.auto-section-head .lead {
  max-width: 620px;
  margin-inline: auto;
}
.auto-model-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 720px) {
  .auto-model-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1120px) {
  .auto-model-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
.auto-model-card {
  min-width: 0;
  border-radius: calc(var(--radius) + 4px);
  background: var(--rs-white);
  border: 1px solid rgba(61,50,41,.1);
  overflow: hidden;
  box-shadow: 0 14px 38px rgba(61,50,41,.09);
  transition: transform .25s ease, box-shadow .25s ease;
}
.auto-model-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 52px rgba(61,50,41,.15);
}
.auto-model-card__link {
  display: flex;
  height: 100%;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}
.auto-model-card figure {
  margin: 0;
  overflow: hidden;
  background: #1f1a16;
}
.auto-model-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: var(--rs-img-position);
  transition: transform .35s ease;
}
.auto-model-card:hover img { transform: scale(1.04); }
.auto-model-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: .45rem;
  padding: .9rem;
}
.auto-model-card__body span {
  color: var(--rs-red);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.auto-model-card__body h3 {
  margin: 0;
  color: var(--rs-brown);
  font-size: 1.05rem;
  line-height: 1.15;
}
.auto-model-card__body p {
  margin: 0;
  color: var(--rs-muted);
  font-size: .88rem;
  line-height: 1.45;
}
.auto-split {
  display: grid;
  gap: clamp(1.25rem, 4vw, 2.5rem);
  align-items: center;
}
@media (min-width: 960px) {
  .auto-split {
    grid-template-columns: .86fr 1.14fr;
  }
}
.auto-split__copy h2 {
  margin-top: .35rem;
  color: var(--rs-brown);
  font-size: clamp(1.58rem, 3.17vw, 2.64rem);
  line-height: 1.02;
  letter-spacing: -.035em;
}
.auto-checklist {
  display: grid;
  gap: .6rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}
.auto-checklist li {
  padding: .7rem .85rem .7rem 2.1rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(185,28,28,.14);
  color: var(--rs-brown);
  font-weight: 700;
  position: relative;
}
.auto-checklist li::before {
  content: "✓";
  position: absolute;
  left: .8rem;
  color: var(--rs-red);
}
.auto-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
}
.auto-proof-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(61,50,41,.12);
}
.auto-proof-grid img:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
  height: 100%;
}
.auto-steps {
  display: grid;
  gap: 1rem;
}
@media (min-width: 820px) {
  .auto-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.auto-step {
  padding: 1.1rem;
  border-radius: calc(var(--radius) + 4px);
  background: var(--rs-white);
  border: 1px solid var(--rs-line);
  box-shadow: 0 12px 34px rgba(61,50,41,.08);
}
.auto-step span {
  display: inline-flex;
  width: 2.2rem;
  height: 2.2rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--rs-red);
  color: #fff;
  font-weight: 900;
}
.auto-step h3 {
  margin: .9rem 0 .45rem;
  color: var(--rs-brown);
}
.auto-step p {
  margin: 0;
  color: var(--rs-muted);
  font-size: .92rem;
  line-height: 1.5;
}
.auto-cta-band {
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  background:
    linear-gradient(135deg, rgba(61,50,41,.96), rgba(28,25,23,.96)),
    var(--rs-brown);
  color: rgba(255,255,255,.88);
}
.auto-cta-band h2 {
  max-width: 760px;
  margin: .25rem 0 .75rem;
  color: #fff;
  font-size: clamp(1.5rem, 2.99vw, 2.64rem);
  line-height: 1.05;
}
.auto-cta-band .eyebrow { color: #c6cbd1; }
.auto-cta-band__inner {
  display: grid;
  gap: 1.25rem;
  align-items: center;
}
@media (min-width: 960px) {
  .auto-cta-band__inner {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  }
}
.auto-cta-band .contact-module {
  margin: 0;
}
@media (max-width: 640px) {
  .auto-hero__thumbs,
  .auto-proof-grid {
    grid-template-columns: 1fr;
  }
  .auto-proof-grid img:first-child {
    grid-row: auto;
    height: auto;
  }
}

/* Odeyalo tech landing */
.odeyalo-landing .auto-hero h1 {
  max-width: 18ch;
  font-size: clamp(1.65rem, 3.8vw, 2.75rem);
  line-height: 1.05;
  letter-spacing: -.04em;
  text-wrap: balance;
}
.odeyalo-hero__size {
  margin: .15rem 0 .85rem;
  color: var(--rs-red);
  font-size: clamp(1.15rem, 2.6vw, 1.75rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.02em;
}
.odeyalo-gallery {
  display: grid;
  gap: 1rem;
}
@media (min-width: 720px) {
  .odeyalo-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.odeyalo-gallery__item {
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--radius) + 4px);
  background: #1f1a16;
  box-shadow: 0 18px 48px rgba(61,50,41,.14);
}
.odeyalo-gallery__item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: var(--rs-img-position);
}
.odeyalo-gallery__item figcaption {
  padding: .75rem .9rem;
  color: var(--rs-brown);
  font-size: .86rem;
  font-weight: 700;
  background: var(--rs-white);
  border-top: 1px solid rgba(61,50,41,.08);
}

/* Drone protection product landing */
.dronov-landing-hero-video {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  overflow: hidden;
  background: #0f0d0b;
}
.dronov-landing-hero-video video,
.dronov-landing-hero-video .progressive-loop-video__video {
  display: block;
  width: 100%;
  height: clamp(240px, 46vw, 560px);
  object-fit: cover;
  object-position: center;
}
.dronov-landing-hero-video__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,13,11,.15) 0%, rgba(15,13,11,.72) 72%, rgba(15,13,11,.92) 100%),
    linear-gradient(90deg, rgba(15,13,11,.55) 0%, transparent 55%);
  pointer-events: none;
}
.dronov-landing-hero-video__copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: clamp(1.25rem, 4vw, 2.5rem) 0 clamp(1.5rem, 4vw, 3rem);
  color: #fff;
}
.dronov-landing-hero-video__copy .eyebrow {
  color: rgba(255,255,255,.82);
}
.dronov-landing-hero-video__copy h1 {
  max-width: 16ch;
  margin: .35rem 0 .85rem;
  color: #fff;
  font-size: clamp(1.85rem, 4.8vw, 3.65rem);
  line-height: .98;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.dronov-landing-hero-video__copy .lead {
  max-width: 42rem;
  margin-bottom: 1.1rem;
  color: rgba(255,255,255,.88);
}
.dronov-landing-hero-video__copy .btn--ghost {
  color: #fff;
  border-color: rgba(255,255,255,.35);
}
.dronov-landing__intro {
  border-bottom: 1px solid rgba(107, 96, 92, .14);
}
.dronov-landing__intro h2 {
  max-width: 18ch;
  margin: .35rem 0 1rem;
  color: var(--rs-brown);
  font-size: clamp(1.65rem, 3.8vw, 2.75rem);
  line-height: 1.02;
  letter-spacing: -.04em;
}
.dronov-gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
}
.dronov-gallery__item {
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--radius) + 4px);
  background: #1f1a16;
  box-shadow: 0 18px 48px rgba(61,50,41,.14);
}
.dronov-gallery__item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: var(--rs-img-position);
}
.dronov-gallery__item figcaption {
  padding: .65rem .85rem;
  color: var(--rs-brown);
  font-size: .82rem;
  font-weight: 700;
  background: var(--rs-white);
  border-top: 1px solid rgba(61,50,41,.08);
}
.dronov-landing__loops .video-showcase-grid__items,
.dronov-landing__loops .attention-video-menu {
  margin-top: 0;
}

/* B2B complex product landing */
.b2b-landing__intro h2 {
  max-width: 20ch;
  margin: .35rem 0 1rem;
  color: var(--rs-brown);
  font-size: clamp(1.65rem, 3.8vw, 2.75rem);
  line-height: 1.02;
  letter-spacing: -.04em;
}
.b2b-landing__lines.auto-model-grid {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
}
@media (min-width: 1120px) {
  .b2b-landing__lines.auto-model-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.b2b-line-section__head {
  max-width: 52rem;
  margin-bottom: 1.25rem;
}
.b2b-line-section__head .lead {
  max-width: 46rem;
}
@media (min-width: 960px) {
  .vip-mercedes-gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.vip-mercedes-gallery .odeyalo-gallery__item a {
  display: block;
}

.lead-form__alt {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rs-line);
}
.lead-form__alt-label {
  margin: 0 0 .65rem;
  font-weight: 700;
  font-size: .92rem;
}
.lead-form__alt-links {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.lead-form__alt-note {
  margin: .75rem 0 0;
  font-size: .82rem;
  color: var(--rs-muted);
}
.product-hero__copy .contact-cta-bar--compact { margin-top: 1rem; }
@media (max-width: 900px) {
  .site-nav .nav-contact { display: inline-flex; }
}

/* Shared catalog polish — one calmer card/template rhythm across pages */
.grid--cards {
  align-items: stretch;
}

.grid--cards > .card {
  min-width: 0;
}

.card {
  border-radius: calc(var(--rs-radius) * 1.15);
  box-shadow: 0 1px 0 rgba(61, 50, 41, .04);
}

.card__media {
  border-bottom: 1px solid rgba(214, 207, 196, .72);
}

.card__body {
  gap: .35rem;
}

.card__meta {
  min-height: 1.25rem;
}

.card__price {
  font-size: 1rem;
  letter-spacing: -.01em;
}

.card__more {
  margin-top: .35rem;
  color: var(--rs-brown);
  font-size: .84rem;
  font-weight: 800;
}

.section-head .lead,
.section-head__lead {
  margin-top: .5rem;
  color: var(--rs-muted);
}

.category-tiles .category-tile,
.tile,
.contact-module,
.contact-cta-bar__inner--compact,
.lead-section__form,
.specs-table,
.prose {
  border-radius: calc(var(--rs-radius) * 1.15);
}

@media (max-width: 640px) {
  .grid--cards {
    grid-template-columns: 1fr;
    gap: .9rem;
  }

  .card__body {
    padding: .9rem;
  }

  .card__title {
    min-height: 0;
  }
}

/* ——— Micro-motion keyframes & a11y ——— */
@keyframes badge-shine {
  0%, 82%, 100% { transform: translate3d(-120%, 0, 0); }
  90% { transform: translate3d(120%, 0, 0); }
}
@keyframes focus-ring {
  0% { box-shadow: 0 0 0 0 rgba(107, 96, 92, .28); }
  100% { box-shadow: 0 0 0 3px rgba(107, 96, 92, .15); }
}
@keyframes cta-pulse-once {
  0% { transform: scale(1); }
  45% { transform: scale(1.03); }
  100% { transform: scale(1); }
}
@keyframes float-contacts-in {
  from { opacity: 0; transform: translate3d(0, 14px, 0); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn:hover,
  .btn:active {
    transform: none;
    box-shadow: none;
  }
  .card:hover {
    transform: none;
    will-change: auto;
  }
  .card__badge::after { animation: none; }
  .scroll-top {
    transform: none;
    transition: opacity .15s ease, background .18s ease;
  }
  .scroll-top.is-visible { transform: none; }
  .sticky-cta,
  body.has-sticky-cta .sticky-cta { transform: none; transition: none; }
  .floating-contacts { animation: none; }
  .segment-nav__pill::before { transition: none; }
  .faq--home details summary,
  .faq--home details summary::after { transition: none; }
  .order-closing-cta__btn:hover { animation: none; }
  .lead-form input:focus,
  .lead-form textarea:focus,
  .lead-form__field input:focus,
  .lead-form__field textarea:focus { animation: none; }
  .trust-strip__item:hover { transform: none; box-shadow: none; }
  .photo-collage__cell:hover img { transform: none; }
  .ambient-video,
  .ambient-video video { transition: none; }
}

/* ── Blog ─────────────────────────────────────────── */
.site-breadcrumbs {
  padding: clamp(.85rem, 2vw, 1.15rem) 0 0;
  background: var(--rs-white);
}
.blog-hero { padding-bottom: clamp(1.5rem, 4vw, 2.5rem); }
.blog-grid { align-items: stretch; }
.blog-card .card__meta { font-size: .78rem; letter-spacing: .02em; }
.article-hero { padding: clamp(1.5rem, 4vw, 2.75rem) 0 0; }
.article-hero__inner { max-width: 780px; }
.site-breadcrumbs__list,
.article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .45rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: .85rem;
  color: var(--rs-muted);
}
.site-breadcrumbs__item {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}
.site-breadcrumbs__item:not(:last-child)::after {
  content: "/";
  margin-left: .45rem;
  color: rgba(61, 50, 41, .45);
}
.site-breadcrumbs a,
.article-breadcrumb a { color: inherit; text-decoration: underline; text-underline-offset: .15em; }
.site-breadcrumbs__current {
  max-width: min(42ch, 100%);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--rs-text, #3d3229);
  font-weight: 600;
}
@media (max-width: 640px) {
  .site-breadcrumbs__current {
    max-width: 22ch;
  }
}
.article-hero h1 { max-width: 18ch; line-height: 1.08; }
.article-hero__video,
.article-hero__photo { margin-top: clamp(1.25rem, 3vw, 2rem); }
.article-body { max-width: 820px; }
.article-prose { margin-bottom: clamp(1.5rem, 3vw, 2.25rem); }
.article-media {
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
  border-radius: var(--rs-radius-lg, 1rem);
  overflow: hidden;
  background: var(--rs-surface-muted, #f5f0eb);
}
.article-media img,
.article-media .rs-video-player { width: 100%; display: block; }
.article-media img { aspect-ratio: 16 / 9; object-fit: cover; }
.article-media figcaption {
  padding: .75rem 1rem 1rem;
  font-size: .9rem;
  color: var(--rs-muted);
  line-height: 1.45;
}
.article-aside { margin: clamp(2rem, 4vw, 3rem) 0; }
.article-aside--products .grid { margin-top: 1rem; }
.section-head--compact h2 { font-size: clamp(1.15rem, 2.5vw, 1.45rem); }
.article-cta {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: var(--rs-radius-lg, 1rem);
  background: linear-gradient(135deg, rgba(185,28,28,.08), rgba(61,50,41,.06));
  border: 1px solid rgba(61,50,41,.08);
}
.article-cta .lead { margin-bottom: 1rem; }
.blog-product-teaser .blog-teaser-foot { margin-top: 1.5rem; text-align: center; }
.blog-article .lead { max-width: 68ch; }

@media (prefers-reduced-motion: reduce) {
  .site-nav__group--catalog:not([open]) > .site-nav__group-toggle,
  .site-nav__group-toggle-pulse {
    animation: none;
  }
}

