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

html { scroll-behavior: smooth; }

body.st-theme {
  margin: 0;
  min-height: 100vh;
  background: var(--st-bg);
  color: var(--st-text);
  font-family: var(--st-font-ui);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }

h1, h2, h3, h4, .st-logo, .st-footer__title, .st-form__title {
  font-family: var(--st-font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.st-shell {
  width: var(--st-shell, min(1280px, calc(100% - 64px)));
  max-width: 100%;
  margin-inline: auto;
  box-sizing: border-box;
}

.st-skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: #000;
  color: #fff;
  padding: 8px 12px;
  z-index: 1000;
}
.st-skip:focus { left: 8px; }

.st-visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* Buttons */
.st-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 3px;
  font-family: var(--st-font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color .2s, background .2s, color .2s;
}
.st-btn--ghost {
  border: 1px solid rgba(201, 168, 106, 0.75);
  background: transparent;
  color: var(--st-text);
}
.st-btn--ghost:hover {
  border-color: var(--st-gold);
  background: rgba(201, 168, 106, 0.1);
}

/* ========== HEADER (mockup 01) ========== */
.st-header {
  position: relative;
  z-index: 50;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  height: var(--st-header-h);
  background: var(--st-bg);
  border-bottom: 1px solid var(--st-line);
  box-sizing: border-box;
}
.st-header--overlay {
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  max-width: 100%;
  background: linear-gradient(180deg, rgba(3, 5, 7, 0.74) 0%, rgba(3, 5, 7, 0.28) 58%, transparent 100%);
  border-bottom: 0;
  backdrop-filter: blur(4px);
}
/* Full-bleed bar always. Side inset = padding only (never width: calc(100%-N)). */
.st-header__inner {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding-inline: max(16px, calc((100% - 1280px) / 2));
  box-sizing: border-box;
  height: var(--st-header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}
.st-header__inner > .st-logo {
  grid-column: 1;
  justify-self: start;
}
.st-header__inner > .st-nav {
  grid-column: 2;
  justify-self: center;
}
.st-header__inner > .st-header__actions {
  grid-column: 3;
  justify-self: end;
}
.st-logo__img {
  width: auto;
  height: 44px;
  max-width: 180px;
  object-fit: contain;
  object-position: left center;
}
.st-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.st-nav__link {
  font-family: var(--st-font-ui);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--st-nav-link, rgba(238, 241, 237, 0.82));
  white-space: nowrap;
  transition: color .2s, opacity .2s;
  opacity: 1;
}
.st-header .st-nav__link {
  color: var(--st-nav-link, rgba(238, 241, 237, 0.82));
}
.st-nav__link:hover,
.st-nav__link.is-current {
  color: var(--st-gold);
}
.st-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  background: rgba(4, 8, 10, 0.18);
}
.st-search-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--st-gold);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  transition: color .2s, opacity .2s;
}
.st-search-btn:hover { color: var(--st-gold-2); }

.st-header-cart {
  position: relative;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--st-gold);
  text-decoration: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  transition: color 0.2s;
}

.st-header-cart:hover {
  color: var(--st-gold-2);
}

.st-header-cart svg {
  display: block;
}

.st-header-cart__count {
  position: absolute;
  top: 2px;
  right: 0;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--st-gold);
  color: #15120c;
  font-family: var(--st-font-ui);
  font-size: 10px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  pointer-events: none;
}

.st-header-cart__count:empty,
.st-header-cart__count[data-count="0"] {
  display: none;
}

.st-header__drawer .st-header-cart {
  justify-self: start;
  margin-top: var(--st-space-2);
}

/* Mockup 01: ghost CTA — gold outline + pill radius (not white/square) */
.st-header__cta,
.st-header__drawer .st-btn--ghost {
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  border-color: var(--st-gold);
  color: var(--st-gold);
}
.st-header__cta:hover,
.st-header__drawer .st-btn--ghost:hover {
  border-color: var(--st-gold-2);
  color: var(--st-gold-2);
  background: rgba(201, 168, 106, 0.12);
}
.st-burger {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.st-burger span {
  display: block;
  height: 1.5px;
  width: 18px;
  margin-inline: auto;
  background: #fff;
}
.st-header__drawer {
  display: none;
  padding: 16px 24px 24px;
  background: var(--st-bg-2);
  border-top: 1px solid var(--st-line);
}
.st-nav--mobile {
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
body.st-nav-open .st-header__drawer { display: block; }
body.st-nav-open .st-burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.st-nav-open .st-burger span:nth-child(2) { opacity: 0; }
body.st-nav-open .st-burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.st-burger span { transition: transform .2s, opacity .2s; }

/* ========== MAIN ========== */
.st-main { min-height: 50vh; }
.st-placeholder {
  padding: calc(var(--st-header-h) + 80px) 0 120px;
}
.st-placeholder__note {
  max-width: 52ch;
  color: var(--st-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ========== HERO (mockup 01) — header/footer frozen ========== */
.st-hero {
  position: relative;
  isolation: isolate;
  /* Exact viewport — media and section share one bottom edge. */
  height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  margin: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #07090b;
}
.st-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.st-hero__bg,
.st-hero__video,
.st-hero__slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Soldier sits right-of-center in mockup; keep text zone clear. */
  object-position: 72% 38%;
}
.st-hero__bg { z-index: 0; }
.st-hero__slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.55s ease;
  pointer-events: none;
}
.st-hero__slide.is-active {
  opacity: 1;
}
.st-hero__video {
  display: block;
  background: #07090b;
}
.st-hero__media.is-fallback .st-hero__slide { display: none; }
.st-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(4, 6, 8, 0.92) 0%,
      rgba(4, 6, 8, 0.72) 22%,
      rgba(4, 6, 8, 0.28) 48%,
      rgba(4, 6, 8, 0.08) 62%,
      rgba(4, 6, 8, 0.35) 100%),
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.12) 22%,
      transparent 40%,
      transparent 68%,
      rgba(0, 0, 0, 0.62) 100%);
}
@media (prefers-reduced-motion: reduce) {
  .st-hero__video { display: none; }
}

.st-hero__layout {
  position: relative;
  z-index: 1;
  width: var(--st-shell, min(1280px, calc(100% - 64px)));
  max-width: 100%;
  margin-inline: auto;
  display: block;
  padding: calc(var(--st-header-h) + 22px) 0 56px;
  min-height: 0;
  flex: 0 1 auto;
  max-height: 100%;
  overflow: visible;
}

/* Hero slides: bottom control bar — prev / counter+progress / next */
.st-hero__slides {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 4;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border: 1px solid rgba(240, 240, 236, 0.12);
  border-radius: 999px;
  background: rgba(6, 8, 10, 0.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  transform: translateX(-50%);
  pointer-events: auto;
}
.st-hero__slides-nav {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201, 168, 106, 0.42);
  border-radius: 50%;
  color: #e8d7b0;
  background: rgba(255, 255, 255, 0.03);
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
}
.st-hero__slides-nav:hover {
  color: #fff;
  border-color: rgba(225, 195, 142, 0.85);
  background: rgba(201, 168, 106, 0.14);
}
.st-hero__slides-nav:active {
  transform: scale(0.94);
}
.st-hero__slides-nav:focus-visible {
  outline: 2px solid rgba(201, 168, 106, 0.7);
  outline-offset: 2px;
}
.st-hero__slides-mid {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  min-width: 168px;
  padding: 0 4px;
}
.st-hero__slides-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0;
  background: transparent;
}
.st-hero__slides-cur {
  font-family: var(--st-font-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1;
  color: #f0f0ec;
  letter-spacing: 0.04em;
}
.st-hero__slides-sep {
  display: block;
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 106, 0.7), transparent);
}
.st-hero__slides-total {
  margin-top: 0;
  font-family: var(--st-font-ui);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.12em;
  color: rgba(240, 240, 236, 0.48);
}
.st-hero__slides-rail {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}
.st-hero__slides-seg {
  flex: 1 1 0;
  min-width: 0;
  min-height: 44px;
  margin: 0;
  padding: 10px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  appearance: none;
}
.st-hero__slides-seg-track {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: rgba(240, 240, 236, 0.18);
  overflow: hidden;
}
.st-hero__slides-seg-fill {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #c9a86a, #e1c38e);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.15s linear;
}
.st-hero__slides-seg.is-active .st-hero__slides-seg-track {
  background: rgba(240, 240, 236, 0.28);
}
.st-hero__slides-seg.is-done .st-hero__slides-seg-fill {
  transform: scaleX(1);
  transition: none;
}
.st-hero__slides-seg:hover .st-hero__slides-seg-track {
  background: rgba(240, 240, 236, 0.34);
}
.st-hero__slides-seg:focus-visible {
  outline: 2px solid rgba(201, 168, 106, 0.7);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (max-width: 1100px) {
  .st-hero__slides {
    bottom: 18px;
  }
}
@media (max-width: 720px) {
  .st-hero__slides {
    gap: 10px;
    padding: 8px 10px;
    border-radius: 18px;
  }
}
.st-hero__copy {
  position: relative;
  z-index: 1;
  max-width: 500px;
  padding-top: 18px;
  padding-bottom: 0;
  /* Left edge = shell left = header logo column. */
  margin-left: 0;
}
.st-hero__eyebrow {
  margin: 0 0 10px;
  font-family: var(--st-font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #c4a574;
}
.st-hero__title {
  margin: 0 0 10px;
  font-family: var(--st-font-display);
  /* Russo One шире Condensed: «ТРАДИЦИЙ» ≤ ~500px copy при ≤86px */
  font-size: clamp(40px, 6vw, 84px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f5 35%, #d8d8d4 70%, #a8a8a4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 3px 22px rgba(0, 0, 0, 0.55));
  overflow-wrap: anywhere;
}
.st-hero__subtitle {
  margin: 0 0 14px;
  font-family: var(--st-font-display);
  font-size: clamp(18px, 1.9vw, 28px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #f5f4ef;
  overflow-wrap: anywhere;
}
.st-hero__features {
  margin: 0 0 18px;
  font-family: var(--st-font-ui);
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(236, 236, 230, 0.76);
}
.st-hero__slogan {
  margin: 0 0 14px;
  font-family: var(--st-font-ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(210, 210, 204, 0.72);
}
.st-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
}
.st-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  box-sizing: border-box;
  font: inherit;
  font-family: var(--st-font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  cursor: pointer;
  appearance: none;
  transition: background .2s, border-color .2s, color .2s;
}
.st-hero__btn--primary {
  background: linear-gradient(90deg, #d9bd87 0%, #c9a86a 45%, #b89255 100%);
  color: #15120c;
  border: 1px solid transparent;
}
.st-hero__btn--primary:hover {
  background: linear-gradient(90deg, #e6cc98 0%, #d4b57a 50%, #c49a5e 100%);
}
.st-hero__btn--video {
  border: 1px solid rgba(201, 168, 106, 0.5);
  color: rgba(243, 242, 236, 0.92);
  background: rgba(0, 0, 0, 0.12);
  opacity: 0.92;
}
.st-hero__btn--video:hover {
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(201, 168, 106, 0.12);
}
.st-hero__play {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(201, 168, 106, 0.65);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--st-gold);
  flex-shrink: 0;
}

/* HUD — out of flow so copy stays put; bottom = actions, right = pager. */
.st-hero__hud {
  position: absolute;
  /* GPT composition: inset from pager edge, raised above action baseline. */
  right: calc(var(--st-edge, 16px) - (100vw - 100%) / 2 + 88px);
  bottom: 132px;
  z-index: 2;
  width: min(300px, 38%);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  margin: 0;
  padding: 12px 12px 10px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(5, 8, 10, 0.28), rgba(5, 8, 10, 0.1));
  backdrop-filter: blur(6px);
}
.st-hero__compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 100%;
  transform: none;
}
/* Slides 3–4 only: hide thermal compare (slides 1–2 keep it). */
.st-hero.is-hero-no-compare .st-hero__compare {
  display: none !important;
}
.st-hero__thermal {
  margin: 0;
  position: relative;
  border: 0;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: rgba(6, 8, 10, 0.18);
}
.st-hero__thermal::before { content: none; }
.st-hero__thermal::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
}
.st-hero__thermal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  filter: contrast(0.92) brightness(0.9) saturate(0.88);
}
.st-hero__thermal-cap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  margin: 0;
  padding: 7px 9px 6px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-family: var(--st-font-ui);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.18) 70%, transparent 100%);
}
.st-hero__thermal-cap-sub {
  display: block;
  padding-top: 3px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  width: fit-content;
  font-size: 8px;
  letter-spacing: 0.12em;
  opacity: 0.92;
}
.st-hero__stat {
  position: relative;
  width: 100%;
  padding: 2px 2px 0;
  border: 0;
  background: transparent;
  display: grid;
  gap: 2px;
}
.st-hero__stat::before { content: none; }
.st-hero__stat-label {
  font-family: var(--st-font-ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(243, 242, 236, 0.8);
}
.st-hero__stat-value {
  font-family: var(--st-font-display);
  font-size: clamp(56px, 5.6vw, 78px);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: 0.01em;
  color: #d4b57a;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

@media (max-width: 1100px) {
  .st-hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    height: 100dvh;
    min-height: 100dvh;
    max-height: 100dvh;
    overflow: hidden;
  }
  .st-hero__layout {
    order: 1;
    flex: 1 1 auto;
    min-height: 0;
    padding: calc(var(--st-header-h) + 28px) 0 24px;
    overflow: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .st-hero__layout::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }
  .st-hero__hud {
    position: static;
    width: min(100%, 380px);
    margin: 28px 0 0;
    right: auto;
    bottom: auto;
  }
  .st-hero__compare { transform: none; }
  .st-hero__bg,
  .st-hero__video { object-position: center center; }
  .st-hero__slides {
    order: 2;
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    z-index: 4;
    flex-shrink: 0;
    width: auto;
    max-width: none;
    margin: 0 auto 18px;
  }
}
@media (max-width: 720px) {
  .st-hero__title { font-size: clamp(36px, 11vw, 52px); }
  .st-hero__actions { flex-direction: column; align-items: stretch; }
  .st-hero__btn { width: 100%; }
  .st-hero__stat-value { font-size: 52px; }
  .st-hero__hud { width: 100%; }
  .st-hero__slides-mid {
    min-width: 0;
    flex: 1 1 auto;
  }
  .st-hero__slides-cur {
    font-size: 18px;
  }
}


/* ========== PAGE PAGER (floating section index) ========== */
.st-pager {
  position: fixed;
  right: var(--st-edge, 16px);
  top: 42%;
  transform: translateY(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  pointer-events: none;
}
.st-pager__counter {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--st-font-display);
  color: #fff;
  line-height: 1;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
  pointer-events: none;
}
.st-pager__cur {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.st-pager__sep,
.st-pager__total {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.55;
}
.st-pager__rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  pointer-events: auto;
}
.st-pager__dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  cursor: pointer;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.st-pager__dot:hover {
  border-color: #fff;
}
.st-pager__dot.is-active {
  border-color: var(--st-gold);
  background: rgba(201, 168, 106, 0.45);
  box-shadow: 0 0 0 3px rgba(201, 168, 106, 0.18);
}
@media (max-width: 1100px) {
  .st-pager { display: none; }
}

/* ========== ADVANTAGES (mockup 02) — separate section, flush under hero ========== */
.st-advantages {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  background: var(--st-bg);
}
.st-advantages__bar {
  position: relative;
  width: var(--st-shell, min(1280px, calc(100% - 64px)));
  max-width: 100%;
  margin-inline: auto;
  margin-block: 0;
  box-sizing: border-box;
  display: flex;
  align-items: stretch;
  height: 153px;
  border: 1px solid rgba(214, 196, 150, 0.14);
  border-top: 0;
  border-radius: 0 0 14px 14px;
  background: #0d0d0b;
  box-shadow: none;
}
.st-advantages__item {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 27px 12px 18px;
  text-align: center;
}
/* Short inset dividers — not full column height. */
.st-advantages__item + .st-advantages__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 58%;
  background: var(--st-line);
  pointer-events: none;
}
.st-advantages__icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
  background: transparent;
  filter: drop-shadow(0 2px 5px rgba(120, 88, 38, 0.4));
}
.st-advantages__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-top: 12px;
  max-width: 16em;
}
.st-advantages__line {
  display: block;
  font-family: var(--st-font-ui);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #cfcbc0;
}
@media (max-width: 1100px) {
  .st-advantages__bar {
    flex-wrap: wrap;
    height: auto;
    min-height: 153px;
  }
  .st-advantages__item {
    flex: 1 1 33.333%;
    min-height: 153px;
  }
  .st-advantages__item:nth-child(3)::before { display: none; }
  .st-advantages__item:nth-child(n + 4) {
    min-height: 130px;
  }
  .st-advantages__item:nth-child(n + 4)::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 58%;
    height: 1px;
    background: var(--st-line);
  }
  .st-advantages__item:nth-child(5)::before {
    display: block;
  }
}
@media (max-width: 720px) {
  .st-advantages__item {
    flex: 1 1 50%;
    min-height: 130px;
    padding-top: 22px;
  }
  .st-advantages__item::after { display: none; }
  .st-advantages__item::before { display: none; }
  .st-advantages__item:nth-child(even)::before {
    display: block;
  }
  .st-advantages__item:nth-child(n + 3)::after {
    display: block;
  }
  .st-advantages__line { font-size: 11px; letter-spacing: 0.08em; }
}

/* ========== PRODUCTS (mockup 03) ========== */
.st-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}
.st-section-head__title {
  margin: 0;
  font-family: var(--st-font-display);
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  overflow-wrap: anywhere;
}
.st-section-head__sub {
  margin: 12px 0 0;
  font-family: var(--st-font-ui);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  text-transform: none;
  color: #8e9996;
}
.st-link-gold {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(197, 164, 110, 0.58);
  font-family: var(--st-font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c5a46e;
  transition: border-color .2s, color .2s;
}
.st-link-gold:hover {
  color: #e1c38e;
  border-bottom-color: rgba(225, 195, 142, 0.85);
}
.st-link-gold__arr {
  font-family: var(--st-font-ui);
  font-size: 14px;
  line-height: 1;
}

.st-products {
  position: relative;
  z-index: 1;
  padding: 36px 0 0;
  background: var(--st-bg);
}
.st-products__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}
.st-pcard {
  position: relative;
  display: flex;
  min-width: 0;
  height: 100%;
}
.st-pcard__link {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  min-height: 410px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(10, 13, 16, 0.1) 0%, rgba(10, 13, 16, 0.72) 100%),
    #090d0f;
  color: inherit;
  transition:
    transform .32s cubic-bezier(0.22, 1, 0.36, 1),
    border-color .32s,
    box-shadow .32s;
}
.st-pcard__link:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 106, 0.38);
  box-shadow: 0 34px 72px rgba(0, 0, 0, 0.62);
}
.st-pcard__visual {
  position: relative;
  width: 100%;
  height: 100%;
}
.st-pcard__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.035);
  filter: saturate(0.82) contrast(1.08);
  transition: transform .45s cubic-bezier(0.22, 1, 0.36, 1);
}
.st-pcard__link:hover .st-pcard__visual img {
  transform: scale(1.065);
}
.st-pcard__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(7, 11, 13, 0) 0%,
    rgba(7, 11, 13, 0.03) 34%,
    rgba(7, 11, 13, 0.42) 56%,
    rgba(7, 11, 13, 0.84) 76%,
    rgba(7, 11, 13, 0.97) 100%
  );
  pointer-events: none;
}
.st-pcard__body {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  min-height: 42%;
  padding: 0 20px 18px;
  box-sizing: border-box;
}
.st-pcard__title {
  grid-column: 1 / -1;
  margin: 0;
  max-width: 100%;
  font-family: var(--st-font-display);
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.12;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #fff;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.55);
  overflow-wrap: anywhere;
  hyphens: manual;
}
.st-pcard__text {
  grid-column: 1;
  max-width: none;
  margin: 8px 0 0;
  font-family: var(--st-font-ui);
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(243, 242, 236, 0.72);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}
.st-pcard__arrow {
  grid-column: 2;
  margin: 8px 0 0 10px;
  align-self: end;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(201, 168, 106, 0.38);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--st-font-ui);
  font-size: 12px;
  line-height: 1;
  color: #efe2bf;
  pointer-events: none;
}

@media (max-width: 1180px) {
  .st-products__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 860px) {
  .st-section-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .st-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 520px) {
  .st-products__grid { grid-template-columns: 1fr; }
  .st-pcard__link { min-height: 340px; }
}

/* ========== TESTS (mockup 04) ========== */
.st-tested {
  padding: 36px 0 0;
  background: var(--st-bg);
}
.st-tested__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  min-height: 522px;
  overflow: hidden;
  border: 1px solid rgba(159, 174, 169, 0.18);
  border-radius: 12px;
  background: #090f12;
}
.st-tested__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 43px 40px 40px;
}
.st-tested__title {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: #fff;
  overflow-wrap: anywhere;
}
.st-tested__lead {
  margin: 26px 0 0;
  max-width: 420px;
  font-family: var(--st-font-ui);
  font-size: 15.5px;
  line-height: 1.75;
  letter-spacing: 0;
  text-transform: none;
  color: #a6a39b;
}
.st-tested__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  min-height: 46px;
  margin-top: 30px;
  padding: 0 24px;
  border-radius: 3px;
  background: linear-gradient(90deg, #d9bd87 0%, #c9a86a 45%, #b89255 100%);
  font-family: var(--st-font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #15120c;
  box-shadow: 0 12px 34px rgba(197, 164, 110, 0.16);
  transition: filter .2s, transform .2s;
}
.st-tested__cta:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}
.st-tested__cta-arr {
  font-family: var(--st-font-ui);
  font-size: 14px;
  line-height: 1;
}
.st-tested__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 34px;
  margin-top: auto;
  padding-top: 26px;
  border-top: 1px solid rgba(159, 174, 169, 0.18);
}
.st-tested__stat {
  min-width: 120px;
  max-width: 170px;
  text-align: center;
}
.st-tested__stat-value {
  display: block;
  font-family: var(--st-font-display);
  font-size: clamp(28px, 2.8vw, 30px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  color: #d4b57a;
}
.st-tested__stat-label {
  display: block;
  margin-top: 10px;
  font-family: var(--st-font-ui);
  font-size: 12.5px;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(243, 242, 236, 0.55);
}
.st-tested__media {
  position: relative;
  min-height: 522px;
  overflow: hidden;
  background: #020506;
}
.st-tested__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.08) saturate(0.92);
}
.st-tested__hud {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.st-tested__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(176, 199, 194, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(176, 199, 194, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.st-tested__split {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(237, 240, 236, 0.35);
  transform: translateX(-50%);
}
.st-tested__split::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 34px;
  margin: -17px 0 0 -17px;
  border: 1px solid rgba(237, 240, 236, 0.55);
  border-radius: 50%;
  background: rgba(4, 8, 10, 0.72);
}
.st-tested__corner {
  position: absolute;
  width: 26px;
  height: 26px;
}
.st-tested__corner--tl {
  top: 14px;
  left: 14px;
  border-top: 1px solid rgba(197, 164, 110, 0.58);
  border-left: 1px solid rgba(197, 164, 110, 0.58);
}
.st-tested__corner--br {
  right: 14px;
  bottom: 14px;
  border-right: 1px solid rgba(197, 164, 110, 0.58);
  border-bottom: 1px solid rgba(197, 164, 110, 0.58);
}
.st-tested__tag {
  position: absolute;
  top: 22px;
  padding: 2px 8px 2px 14px;
  border: 0;
  font-family: var(--st-font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
  color: #fff;
  text-align: left;
  background: none;
  transform: translateX(-50%);
  max-width: calc(50% - 36px);
  box-sizing: border-box;
}
.st-tested__tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.58)) 0 0 / 3px 1px no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.58)) 0 100% / 3px 1px no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.58)) 0 0 / 1px 100% no-repeat;
}
.st-tested__tag--hot { left: 25%; }
.st-tested__tag--cold { left: 75%; }
.st-tested__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 54px;
  height: 54px;
  margin: -27px 0 0 -27px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(4, 8, 10, 0.55);
  color: #fff;
  font-size: 16px;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: opacity .25s, transform .25s;
}
.st-tested__play:hover {
  border-color: #fff;
  transform: scale(1.04);
}
.st-tested__media.is-playing .st-tested__play {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 980px) {
  .st-tested__panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .st-tested__media {
    order: -1;
    min-height: 320px;
  }
  .st-tested__copy {
    padding: 32px 24px 28px;
  }
  .st-tested__stats {
    margin-top: 28px;
  }
}

/* ========== HOW IT WORKS (mockup 05) ========== */
.st-how {
  padding: 43px 0 0;
  background: var(--st-bg);
}
.st-section-head--how {
  margin-bottom: 28px;
}
.st-how__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}
.st-hcard {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(159, 174, 169, 0.18);
  border-radius: 12px;
  background: #0c1215;
}
.st-hcard__img {
  position: relative;
  flex-shrink: 0;
  line-height: 0;
}
.st-hcard__num {
  position: absolute;
  top: 14px;
  left: 18px;
  z-index: 2;
  font-family: var(--st-font-head);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #c5a46e;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.65);
  pointer-events: none;
}
.st-hcard__img img {
  display: block;
  width: 100%;
  height: auto;
}
.st-hcard__body {
  flex: 1;
  padding: 17px 18px 20px;
}
.st-hcard__title {
  margin: 0;
  min-height: 2.7em;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #f0f0eb;
  overflow-wrap: anywhere;
}
.st-hcard__text {
  margin: 10px 0 0;
  font-family: var(--st-font-ui);
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--st-muted);
}

@media (max-width: 1180px) {
  .st-how__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .st-how__grid {
    grid-template-columns: 1fr;
  }
}

/* ========== PROCESS (mockup 06) ========== */
.st-process {
  padding: 34px 0 0;
  background: var(--st-bg);
}
.st-process__panel {
  position: relative;
  min-height: 331px;
  overflow: hidden;
  border: 1px solid rgba(159, 174, 169, 0.18);
  border-radius: 14px;
  background: #090f12;
}
.st-process__title {
  margin: 0;
  padding: 40px 280px 0 39px;
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: #fff;
}
.st-process__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 22px 280px 36px 39px;
}
.st-pstep {
  position: relative;
  min-width: 0;
  padding-right: 10px;
}
.st-pstep__icon {
  flex-shrink: 0;
  line-height: 0;
}
.st-pstep__icon img {
  display: block;
  width: 75px;
  height: 75px;
  margin-left: -10px;
  object-fit: contain;
  image-rendering: auto;
}
.st-pstep:not(.st-pstep--last)::after {
  content: '';
  position: absolute;
  top: 73px;
  left: 80px;
  right: 4px;
  border-top: 1px dashed rgba(201, 162, 94, 0.4);
  pointer-events: none;
}
.st-pstep--last::after {
  content: '';
  position: absolute;
  top: 73px;
  left: 80px;
  width: min(120px, calc(100% - 84px));
  border-top: 1px dashed rgba(201, 162, 94, 0.4);
  pointer-events: none;
}
.st-pstep--last::before {
  content: '→';
  position: absolute;
  top: 65px;
  left: calc(80px + min(120px, calc(100% - 84px)) + 6px);
  font-family: var(--st-font-ui);
  font-size: 12px;
  line-height: 1;
  color: #c5a46e;
  pointer-events: none;
}
.st-pstep__num {
  margin-top: 18px;
  font-family: var(--st-font-head);
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #c5a46e;
}
.st-pstep__num--light {
  color: #c5a46e;
}
.st-pstep__title {
  margin: 8px 0 0;
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e8e6df;
  overflow-wrap: anywhere;
}
.st-pstep__text {
  margin: 8px 0 0;
  min-height: 2.4em;
  font-family: var(--st-font-ui);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.55;
  color: #8e9996;
}
.st-process__statue {
  position: absolute;
  top: 4px;
  right: 0;
  width: min(354px, 34%);
  pointer-events: none;
}
.st-process__statue img {
  display: block;
  width: 100%;
  height: auto;
  image-rendering: auto;
  filter: drop-shadow(0 20px 48px rgba(0, 0, 0, 0.55));
}

@media (max-width: 1080px) {
  .st-process__title {
    padding-right: 220px;
  }
  .st-process__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 16px;
    padding: 22px 220px 36px 39px;
  }
  .st-process__panel {
    min-height: 420px;
  }
  .st-process__statue {
    width: min(280px, 32%);
  }
  .st-pstep:nth-child(2)::after,
  .st-pstep:nth-child(4)::after,
  .st-pstep--last::after,
  .st-pstep--last::before {
    display: none;
  }
}
@media (max-width: 680px) {
  .st-process__title {
    padding-right: 24px;
  }
  .st-process__steps {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 24px 32px;
  }
  .st-process__panel {
    min-height: 0;
  }
  .st-process__statue {
    position: relative;
    top: auto;
    width: min(240px, 70%);
    margin: 0 auto 8px;
  }
  .st-pstep:not(.st-pstep--last)::after,
  .st-pstep--last::after,
  .st-pstep--last::before {
    display: none;
  }
}

/* ========== FABRIC / TECH LAYERS (mockup 07 + GPT density) ========== */
.st-fabric {
  padding-top: 18px;
  background: #000;
}
.st-fabric__band {
  background: #0d0d0c;
}
.st-fabric__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 0 40px;
  align-items: stretch;
  min-height: 460px;
  padding: 0;
}
.st-fabric__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 0 40px;
}
.st-fabric__eyebrow {
  margin: 0;
  font-family: var(--st-font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #c4a574;
}
.st-fabric__title {
  margin: 22px 0 0;
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #fff;
  overflow-wrap: anywhere;
}
.st-fabric__lead {
  max-width: 340px;
  margin: 22px 0 0;
  font-family: var(--st-font-ui);
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.72;
  color: #8e9996;
}
.st-fabric__cta {
  gap: 10px;
  width: min(243px, 100%);
  min-height: 44px;
  margin-top: 26px;
}
.st-fabric__cta-arr {
  font-family: var(--st-font-ui);
  font-size: 14px;
  line-height: 1;
}
.st-fabric__media {
  position: relative;
  align-self: stretch;
  min-width: 0;
  min-height: 420px;
  overflow: hidden;
  line-height: 0;
  border-radius: 12px;
  background: #0a0c0e;
}
.st-fabric__video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 900px) {
  .st-fabric__layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .st-fabric__copy {
    padding: 36px 0 32px;
  }
  .st-fabric__lead,
  .st-fabric__title {
    max-width: none;
  }
  .st-fabric__media {
    order: -1;
    min-height: 260px;
  }
}

/* ========== THERMAL PROOF (mockup 08) ========== */
.st-thermo {
  padding: 18px 0 0;
  background: #000;
}
.st-thermo__layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
  gap: 0 40px;
  align-items: center;
  min-height: 0;
}
.st-thermo__copy {
  padding: 24px 0 28px;
}
.st-thermo__eyebrow {
  margin: 0;
  font-family: var(--st-font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #c4a574;
}
.st-thermo__title {
  margin: 12px 0 0;
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: #fff;
  overflow-wrap: anywhere;
}
.st-thermo__lead {
  max-width: 340px;
  margin: 14px 0 0;
  font-family: var(--st-font-ui);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--st-muted);
}
.st-thermo__cta {
  width: min(243px, 100%);
  min-height: 44px;
  margin-top: 16px;
}
.st-thermo__panels {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 18px 0;
  min-width: 0;
}
.st-thermo__panel {
  margin: 0;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.st-thermo__caption {
  margin: 0;
  font-family: var(--st-font-ui);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
  color: #e8e6df;
}
.st-thermo__img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 10px;
  border-radius: 6px;
  background:
    linear-gradient(135deg, #1a2420 0%, #0c1210 50%, #1a2228 100%);
  min-height: 180px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .st-thermo__layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .st-thermo__copy {
    padding-bottom: 28px;
  }
  .st-thermo__panels {
    gap: 16px;
    padding-top: 0;
    padding-bottom: 28px;
  }
}

/* ========== PRODUCTION + SERVICES (mockup 09) ========== */
.st-duo {
  padding: 18px 0 0;
  background: var(--st-bg);
}
.st-duo__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 16px;
  align-items: stretch;
  width: min(var(--st-shell, 1280px), calc(100% - 64px));
  max-width: 100%;
  margin-inline: auto;
  overflow: visible;
  border: 0;
  border-radius: 0;
}
.st-duo__card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid rgba(159, 174, 169, 0.14);
  border-radius: 4px;
  background: #0b1013;
}
.st-duo__card--factory {
  padding: 28px 30px 28px;
}
.st-duo__card--factory .st-duo__copy {
  position: relative;
  z-index: 2;
  max-width: 300px;
}
.st-duo__card--services {
  padding: 28px 30px 28px;
}
.st-duo__eyebrow {
  margin: 0;
  font-family: var(--st-font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #c4a574;
}
.st-duo__title {
  margin: 13px 0 0;
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 1.2;
  letter-spacing: 0.015em;
  color: #fff;
  overflow-wrap: anywhere;
}
.st-duo__lead {
  position: relative;
  z-index: 2;
  max-width: 290px;
  margin: 12px 0 0;
  font-family: var(--st-font-ui);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  color: #8e9996;
}
.st-duo__cta {
  position: relative;
  z-index: 2;
  min-height: 40px;
  margin-top: 14px;
  padding-inline: 20px;
  font-size: 11.5px;
}
.st-duo__factory-photo {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: min(640px, 92%);
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  filter: saturate(0.68) brightness(0.78) contrast(1.08);
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.18) 12%,
    rgba(0, 0, 0, 0.7) 24%,
    #000 36%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.18) 12%,
    rgba(0, 0, 0, 0.7) 24%,
    #000 36%
  );
}
.st-duo__services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 0;
}
.st-scard {
  min-height: 0;
  padding: 14px 14px 12px;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.st-scard__icon {
  width: 44px;
  height: 44px;
}
.st-scard__label {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 10px;
}
.st-scard__line {
  display: block;
  font-family: var(--st-font-ui);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #cfcbc0;
}

@media (max-width: 900px) {
  .st-duo__grid {
    grid-template-columns: 1fr;
    gap: 14px;
    width: min(var(--st-shell, 1280px), calc(100% - 32px));
  }
  .st-duo__card {
    min-height: 0;
  }
  .st-duo__card--factory,
  .st-duo__card--services {
    padding: 24px 24px 28px;
  }
  .st-duo__factory-photo {
    width: 100%;
    opacity: 0.48;
  }
  .st-duo__services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 20px 0 0;
  }
}

@media (max-width: 520px) {
  .st-duo__services-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== MISSION / CTA BAND (mockup 10) ========== */
.st-mission {
  position: relative;
  margin-top: 26px;
  height: 187px;
  overflow: hidden;
  background: #0e0e0d;
}
.st-mission__photo {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  /* Под заголовок (shell ~22.7% + 26%) + мягкий выход в фон */
  width: calc(
    (100vw - min(var(--st-shell, 1280px), 100vw - 64px)) / 2
    + min(var(--st-shell, 1280px), 100vw - 64px) * 0.49
  );
  max-width: 660px;
  height: 187px;
  max-height: none;
  object-fit: cover;
  object-position: left top;
  -webkit-mask-image: linear-gradient(
    90deg,
    #000 0%,
    #000 58%,
    rgba(0, 0, 0, 0.92) 68%,
    rgba(0, 0, 0, 0.55) 80%,
    rgba(0, 0, 0, 0.18) 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    #000 0%,
    #000 58%,
    rgba(0, 0, 0, 0.92) 68%,
    rgba(0, 0, 0, 0.55) 80%,
    rgba(0, 0, 0, 0.18) 92%,
    transparent 100%
  );
}
.st-mission__layout {
  position: relative;
  z-index: 2;
  height: 187px;
  padding: 0;
}
.st-mission__title {
  position: absolute;
  top: 47px;
  left: 22.73%;
  width: 28%;
  min-width: 220px;
  margin: 0;
  font-size: clamp(22px, 2.1vw, 26px);
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: #fff;
  overflow-wrap: anywhere;
}
.st-mission__lead {
  position: absolute;
  top: 53px;
  left: 50.55%;
  width: 28%;
  min-width: 220px;
  margin: 0;
  font-family: var(--st-font-ui);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.65;
  color: #8f8c84;
}
.st-mission__cta {
  position: absolute;
  top: 57px;
  right: 0;
  width: 159px;
  min-height: 46px;
  padding-inline: 12px;
  font-size: 12px;
  border-radius: 4px;
}

@media (max-width: 1180px) {
  .st-mission__title {
    left: 20%;
    width: 30%;
    font-size: 24px;
  }
  .st-mission__lead {
    left: 48%;
    width: 30%;
  }
}

@media (max-width: 980px) {
  .st-mission {
    height: auto;
    min-height: 187px;
  }
  .st-mission__layout {
    display: grid;
    gap: 14px;
    height: auto;
    padding: 28px 0 32px;
  }
  .st-mission__title,
  .st-mission__lead,
  .st-mission__cta {
    position: static;
    width: auto;
    max-width: none;
  }
  .st-mission__cta {
    justify-self: start;
  }
  .st-mission__photo {
    width: min(520px, 88vw);
    opacity: 0.55;
  }
}

/* ========== ABOUT (mockup 11) ========== */
.st-about {
  background: #0c0c0b;
  padding: 12px 0 26px;
}
.st-about--page {
  padding: var(--st-space-8) 0 var(--st-space-12);
}
.st-about--page .st-about__page-lead {
  margin: var(--st-space-3) 0 var(--st-space-5);
  max-width: 48ch;
}
.st-about__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 611px;
  align-items: start;
  min-height: 222px;
}
.st-about__copy {
  position: relative;
  z-index: 1;
  margin-right: -48px;
  padding-right: 48px;
}
/* Keep all four values inside the copy column beside the video. */
@media (min-width: 1181px) {
  #about .st-about__video {
    align-self: start;
    top: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }
  #about .st-about__copy {
    margin-right: 0;
    padding-right: 24px;
  }
  #about .st-about__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 20px 24px;
  }
  #about .st-acard,
  #about .st-acard:nth-child(3) {
    width: auto;
    min-width: 0;
  }
}
.st-about__eyebrow {
  margin: 0;
  font-family: var(--st-font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #c4a574;
}
.st-about__title {
  margin: 10px 0 0;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.15;
  letter-spacing: 0.015em;
  color: #fff;
  overflow-wrap: anywhere;
}
.st-about__grid {
  display: flex;
  gap: 0;
  width: 728px;
  max-width: 100%;
  margin-top: 22px;
}
.st-acard {
  flex: 0 0 182px;
  width: 182px;
}
.st-acard:nth-child(3) {
  flex: 0 0 184px;
  width: 184px;
}
.st-acard__icon {
  width: 46px;
  height: 46px;
  margin-left: -4px;
}
.st-acard__title {
  margin: 12px 0 0;
  font-family: var(--st-font-display);
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #edebe4;
}
.st-acard__text {
  margin: 8px 0 0;
  min-height: 2.95em;
  font-family: var(--st-font-ui);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: #8f8c84;
}
.st-about__video {
  position: relative;
  top: 8px;
  width: 611px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--st-line);
  border-radius: 10px;
  line-height: 0;
  background: #0c0c0b;
}
.st-about__video::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 30%, rgba(0, 0, 0, 0.82) 100%);
  pointer-events: none;
}
.st-about__video-el {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.55s ease;
  background: #0c0c0b;
}
.st-about__video:not(.is-playing) .st-about__video-el:first-child {
  opacity: 1;
}
.st-about__video.is-playing .st-about__video-el.is-active {
  opacity: 1;
}
.st-about__video-bar {
  position: absolute;
  bottom: 14px;
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
  pointer-events: none;
}
.st-about__video-bar-ico {
  display: grid;
  flex-shrink: 0;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(240, 238, 232, 0.85);
  border-radius: 50%;
  font-size: 8px;
  line-height: 1;
  color: #f0eee8;
}
.st-about__video-label {
  margin: 0;
  font-family: var(--st-font-display);
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f0eee8;
  white-space: nowrap;
}
.st-about__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: -26px 0 0 -26px;
  border-radius: 50%;
  transition: transform 0.2s, opacity 0.2s;
}
.st-about__play-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(240, 238, 232, 0.85);
  border-radius: 50%;
}
.st-about__play-tri {
  position: relative;
  margin-left: 3px;
  font-size: 15px;
  line-height: 1;
  color: #f0eee8;
}
.st-about__play:hover {
  transform: scale(1.05);
}
.st-about__video.is-playing .st-about__play,
.st-about__video.is-playing .st-about__video-bar {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 1180px) {
  .st-about__layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .st-about__copy {
    margin-right: 0;
    padding-right: 0;
  }
  .st-about__video {
    top: auto;
    width: 100%;
    max-width: 720px;
    height: auto;
    aspect-ratio: 16 / 9;
    margin-top: 28px;
  }
  .st-about__grid {
    width: 100%;
    flex-wrap: wrap;
    gap: 24px 20px;
  }
  .st-acard,
  .st-acard:nth-child(3) {
    flex: 1 1 calc(50% - 10px);
    width: auto;
    max-width: none;
  }
}

@media (max-width: 560px) {
  .st-about__title {
    font-size: 32px;
  }
  .st-about__grid {
    flex-direction: column;
    gap: 20px;
  }
  .st-acard,
  .st-acard:nth-child(3) {
    flex-basis: auto;
    width: 100%;
  }
  .st-about__video-label {
    white-space: normal;
    text-align: center;
  }
}

/* ========== CERTIFICATES (о компании) ========== */
.st-certs {
  padding: var(--st-space-10) 0 var(--st-space-12);
  border-top: 1px solid var(--st-line);
  background:
    linear-gradient(180deg, rgba(201, 168, 106, 0.04), transparent 28%),
    var(--st-bg);
}

.st-certs__head {
  max-width: 42rem;
  margin: 0 0 var(--st-space-8);
}

.st-certs__eyebrow {
  margin: 0 0 var(--st-space-2);
  font-family: var(--st-font-ui);
  font-size: var(--st-text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--st-gold);
}

.st-certs__title {
  margin: 0 0 var(--st-space-3);
  font-family: var(--st-font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--st-text);
}

.st-certs__lead {
  margin: 0;
  max-width: 48ch;
  font-size: var(--st-text-md);
  line-height: 1.5;
  color: var(--st-text-secondary);
}

.st-certs__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--st-space-4);
  margin: 0;
  padding: 0;
  list-style: none;
}

.st-certs__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--st-line);
  border-radius: var(--st-radius-md);
  background: var(--st-bg-panel);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.st-certs__card:hover {
  border-color: rgba(201, 168, 106, 0.55);
  transform: translateY(-2px);
}

.st-certs__visual {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 210 / 297; /* A4 portrait */
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--st-line);
}

.st-certs__visual img,
.st-certs__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: var(--st-space-2);
  background: #fff;
  image-rendering: auto;
}

.st-certs__pdf {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.5rem;
  min-height: 4.5rem;
  border: 1px solid rgba(201, 168, 106, 0.45);
  border-radius: 4px;
  font-family: var(--st-font-ui);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--st-gold);
}

.st-certs__name {
  display: block;
  margin: 0;
  padding: var(--st-space-3) var(--st-space-4) var(--st-space-2);
  font-family: var(--st-font-ui);
  font-size: var(--st-text-sm);
  font-weight: 600;
  line-height: 1.35;
  color: var(--st-text);
}

.st-certs__action {
  display: block;
  margin-top: auto;
  padding: 0 var(--st-space-4) var(--st-space-4);
  font-family: var(--st-font-ui);
  font-size: var(--st-text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--st-gold);
}

@media (max-width: 1023px) {
  .st-certs__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .st-certs__grid {
    grid-template-columns: 1fr;
  }
}

/* ========== FOOTER (mockup 12) ========== */
.st-footer {
  background: var(--st-bg-2);
  border-top: 1px solid var(--st-line);
}
.st-footer__top {
  display: grid;
  /* mockup 12: contacts ~41%, form+map panel ~59% */
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.45fr);
  gap: 36px;
  /* start — иначе stretch тянет панель по высоте контактов и ломает ratio */
  align-items: start;
  padding: 36px 0 32px;
}
.st-footer__eyebrow {
  margin: 0 0 10px;
  font-family: var(--st-font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--st-gold);
}
.st-footer__title {
  margin: 0 0 24px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  color: #fff;
}
.st-contacts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "phone address"
    "email address";
  column-gap: 28px;
  row-gap: 22px;
  align-items: start;
}
.st-contacts__item--phone { grid-area: phone; }
.st-contacts__item--email { grid-area: email; }
.st-contacts__item--address { grid-area: address; align-self: start; }
.st-contacts__item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
}
.st-contacts__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 106, 0.55);
  color: var(--st-gold);
  display: grid;
  place-items: center;
}
.st-contacts__main {
  display: block;
  color: #f2f1eb;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.st-contacts__sub {
  display: block;
  margin-top: 3px;
  color: var(--st-muted);
  font-size: 12px;
}
.st-social {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}
.st-social__link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: transparent;
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: border-color .2s, background .2s;
  color: #fff;
  text-decoration: none;
}
a.st-social__link { cursor: pointer; }
span.st-social__link { cursor: default; }
.st-social__link:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.st-social__icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

/* Form over map — quieter panel (GPT composition), keep landscape ratio */
.st-footer__panel {
  position: relative;
  display: flex;
  align-items: stretch;
  align-self: start;
  width: 100%;
  aspect-ratio: 2.4 / 1;
  height: auto;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  background: #0c0e10;
}
.st-footer__map {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  /* map ~60% visible + under form */
  left: 22%;
  z-index: 0;
  min-height: 0;
  background: #0e1012;
}
.st-footer__map iframe,
.st-footer__map.is-embed iframe,
.st-contacts-page__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter:
    grayscale(0.35)
    contrast(1.05)
    brightness(0.78)
    saturate(0.75);
}
/*
  Dark tactical map (mockup): near-black land, light-grey roads.
  Filter ONLY tile panes — controls must stay untouched.
*/
.st-footer__map [class*="ground-pane"] {
  filter:
    grayscale(1)
    invert(0.92)
    contrast(1.08)
    brightness(0.68)
    sepia(0.22)
    hue-rotate(170deg)
    saturate(0.3);
}
.st-footer__map [class*="places-pane"],
.st-footer__map [class*="areas-pane"] {
  filter: grayscale(1) brightness(0.5) contrast(0.9);
  opacity: 0.5;
}
.st-footer__map [class*="controls-pane"] {
  filter: none !important;
  z-index: 600 !important;
}
/* Do not restyle zoom buttons — Yandex draws +/- via backgrounds; overrides break them */
.st-footer__map [class*="copyrights-pane"],
.st-footer__map [class*="gototech"] {
  opacity: 0.28;
  filter: grayscale(1);
}
/* Fade is a sibling of the map — wide dissolve under form */
.st-footer__map-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 78%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(18, 20, 22, 1) 0%,
    rgba(18, 20, 22, 0.97) 16%,
    rgba(18, 20, 22, 0.82) 36%,
    rgba(18, 20, 22, 0.45) 58%,
    rgba(18, 20, 22, 0.12) 78%,
    rgba(18, 20, 22, 0) 100%
  );
}
.st-footer__panel .st-form {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: 40%;
  max-width: 320px;
  min-height: 100%;
  padding: 20px 22px;
  box-sizing: border-box;
  background: linear-gradient(
    90deg,
    rgba(12, 14, 16, 0.92) 0%,
    rgba(12, 14, 16, 0.78) 42%,
    rgba(12, 14, 16, 0.28) 78%,
    rgba(12, 14, 16, 0) 100%
  );
}
.st-form__title {
  margin: 0 0 6px;
  font-size: clamp(18px, 1.6vw, 22px);
  color: #fff;
}
.st-form__lead {
  margin: 0 0 16px;
  color: var(--st-muted);
  font-size: 13px;
  line-height: 1.4;
  max-width: 36ch;
}
.st-form__field {
  display: block;
  margin-bottom: 12px;
}
.st-form__field input {
  width: 100%;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid rgba(159, 174, 169, 0.35);
  background: transparent;
  outline: none;
}
.st-form__field input::placeholder { color: rgba(159, 174, 169, 0.7); }
.st-form__field input:focus { border-bottom-color: var(--st-gold); }
.st-form__hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.st-form__status {
  margin: 0 0 12px;
  font-family: var(--st-font-ui);
  font-size: 13px;
  line-height: 1.4;
}
.st-form__status.is-ok { color: #9fc49a; }
.st-form__status.is-err { color: #e2a3a3; }
.st-form .st-btn { margin-top: auto; }
.st-form .st-btn:disabled {
  opacity: 0.55;
  cursor: wait;
}

/* Afterfooter — bar under contacts (mockup 12 bottom) */
.st-afterfooter {
  border-top: 1px solid var(--st-line);
  background: var(--st-bg-deep);
}
.st-afterfooter__inner {
  min-height: 80px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
}
.st-logo__img--footer {
  height: 40px;
  width: auto;
  max-width: 200px;
}
.st-nav--footer {
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.st-nav--footer .st-nav__link {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(180, 188, 184, 0.85);
}
.st-nav--footer .st-nav__link:hover {
  color: var(--st-gold);
}
.st-afterfooter__copy {
  margin: 0;
  color: var(--st-muted);
  font-size: 12px;
  line-height: 1.35;
  white-space: pre-line;
  text-align: right;
}
.st-to-top {
  width: var(--st-touch-min);
  height: var(--st-touch-min);
  border: 1px solid rgba(201, 168, 106, 0.55);
  display: grid;
  place-items: center;
  color: var(--st-gold);
  flex-shrink: 0;
}
.st-to-top:hover {
  background: rgba(201, 168, 106, 0.1);
}

@media (max-width: 1100px) {
  .st-nav:not(.st-nav--mobile):not(.st-nav--footer) { display: none; }
  .st-burger { display: flex; }
  .st-header__cta { display: none; }
  .st-footer__top { grid-template-columns: 1fr; gap: 36px; }
  .st-contacts {
    grid-template-columns: 1fr;
    grid-template-areas:
      "phone"
      "email"
      "address";
    row-gap: 18px;
  }
  .st-footer__panel {
    display: flex;
    flex-direction: column;
    aspect-ratio: auto;
    min-height: 0;
  }
  .st-footer__map {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    order: 2;
    width: 100%;
    min-height: 220px;
  }
  .st-footer__map-fade {
    width: 100%;
    height: 42%;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
      0deg,
      rgba(18, 20, 22, 0.95) 0%,
      rgba(18, 20, 22, 0.4) 55%,
      transparent 100%
    );
  }
  .st-footer__panel .st-form {
    order: 1;
    width: 100%;
    max-width: none;
    min-height: 0;
    height: auto;
    padding: 20px 20px 16px;
    background: var(--st-bg-panel);
  }
  .st-form .st-btn { margin-top: 12px; align-self: flex-start; }
  .st-afterfooter__inner {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "logo top"
      "nav nav"
      "copy copy";
    padding-block: 18px;
    gap: 14px;
  }
  .st-logo--footer { grid-area: logo; }
  .st-to-top { grid-area: top; justify-self: end; }
  .st-nav--footer { grid-area: nav; justify-content: flex-start; }
  .st-afterfooter__copy { grid-area: copy; white-space: normal; text-align: left; }
}

@media (max-width: 720px) {
  :root { --st-shell: min(1280px, calc(100% - 32px)); --st-header-h: 64px; }
  .st-logo {
    display: inline-flex;
    align-items: center;
    min-height: var(--st-touch-min);
    min-width: var(--st-touch-min);
  }
  .st-logo__img { height: 36px; }
  .st-header__inner {
    padding-inline: max(12px, env(safe-area-inset-left, 0px)) max(12px, env(safe-area-inset-right, 0px));
  }
}

/* Product search dialog. */
.st-search-dialog {
  box-sizing: border-box;
  width: min(560px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  margin: auto;
  padding: 24px;
  color: #edebe4;
  background: #101516;
  border: 1px solid #8b754f;
  border-radius: 12px;
}
.st-search-dialog::backdrop { background: rgb(0 0 0 / 75%); }
.st-search-dialog__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 24px; }
.st-search-dialog__head h2 { margin: 0; font-size: 24px; }
.st-search-dialog__head button { flex: 0 0 44px; width: 44px; height: 44px; border: 1px solid #8b754f; border-radius: 50%; background: transparent; color: #edebe4; font-size: 28px; cursor: pointer; }
.st-search-dialog label { display: block; margin-bottom: 10px; }
.st-search-dialog__row { display: flex; gap: 12px; }
.st-search-dialog input[type="search"] { box-sizing: border-box; min-width: 0; width: 100%; min-height: 48px; padding: 12px; border: 1px solid #8b754f; border-radius: 4px; color: #fff; background: #080d0e; font: inherit; font-size: 16px; }
.st-search-dialog input:focus-visible, .st-search-dialog button:focus-visible { outline: 2px solid #d2b16d; outline-offset: 3px; }
body.st-search-open { overflow: hidden; }
@media (max-width: 560px) {
  .st-search-dialog { padding: 20px; }
  .st-search-dialog__head h2 { font-size: 20px; }
  .st-search-dialog__row { flex-direction: column; }
}
.st-search-dialog button[type=submit] { min-height: 48px; padding: 12px 24px; color: #141615; background: linear-gradient(110deg, #d5bd84, #b99450); border: 1px solid #c4a574; border-radius: 4px; cursor: pointer; }
.st-hero__title[data-st-hero-copy],
.st-hero__subtitle[data-st-hero-copy] {
  white-space: pre-line;
}
