@font-face {
  font-family: "Open Sans";
  src: url("/fonts/OPENSANS-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: optional;
}

@font-face {
  font-family: "Open Sans";
  src: url("/fonts/OPENSANS-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: optional;
}

@font-face {
  font-family: "Open Sans";
  src: url("/fonts/OPENSANS-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: optional;
}

@font-face {
  font-family: "Open Sans";
  src: url("/fonts/OPENSANS-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: optional;
}

:root {
  /* RISE 1.6 ? refined black/gold */
  --gold: #d4a84a;
  --gold-bright: #e8c56a;
  --gold-dark: #b8923a;
  --gold-deep: #8a7350;
  --gold-light: #f0e0b8;
  --gold-soft: rgba(212, 168, 74, 0.14);
  --gold-grad: linear-gradient(180deg, #e8c56a 0%, #d4a84a 100%);
  --black: #0a0a0a;
  --black-soft: #141414;
  --ink: #161616;
  --ink-soft: #3a3a3a;
  --muted: #6e6e6e;
  --bg: #ffffff;
  --bg-soft: #f3f3f1;
  --bg-mute: #ebebe8;
  --line: rgba(0, 0, 0, 0.08);
  --shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
  --radius: 4px;
  --container: 1180px;
  --font: "Open Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  min-height: 100vh;
}

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

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

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

/* Top bar */
.topbar {
  background: var(--black);
  color: #fff;
  border-bottom: 1px solid rgba(212, 168, 74, 0.22);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 12px 0;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex-shrink: 0;
}

.logo img {
  height: 38px;
  width: auto;
}

.logo__tag {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  font-weight: 600;
}

.topbar__contacts {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: center;
  min-width: 0;
}

.topbar__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.3;
}

.topbar__meta a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  transition: color 0.2s ease;
}

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

.topbar__sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(212, 168, 74, 0.55);
  flex-shrink: 0;
}

.topbar__item {
  display: none;
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.topbar__cta {
  display: none;
}

@media (min-width: 960px) {
  .topbar__cta {
    display: inline-flex;
    min-height: 40px;
    padding: 0 16px;
    font-size: 12px;
  }
}

/* Buttons */
.btn {
  --btn-pad-x: 22px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 var(--btn-pad-x);
  border: 0;
  border-radius: 999px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  box-shadow: none;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    filter 0.25s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

.btn--gold {
  color: #0a0a0a;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(135deg, #f0d078 0%, #e2b84a 42%, #c9962e 100%);
  border: 1px solid rgba(255, 230, 160, 0.35);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 8px 22px rgba(201, 150, 46, 0.28),
    0 2px 6px rgba(0, 0, 0, 0.18);
}

.btn--gold::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.45) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
  pointer-events: none;
  z-index: 0;
}

.btn--gold > * {
  position: relative;
  z-index: 1;
}

.btn--gold:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 12px 28px rgba(201, 150, 46, 0.38),
    0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn--gold:hover::before {
  transform: translateX(120%);
}

.btn--gold:active {
  transform: translateY(0);
  filter: brightness(0.98);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.25) inset,
    0 4px 12px rgba(201, 150, 46, 0.22);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 0 0 0 rgba(212, 168, 74, 0);
}

.btn--ghost:hover {
  border-color: rgba(240, 208, 120, 0.75);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(212, 168, 74, 0.12);
  transform: translateY(-1px);
}

.btn--dark {
  background: var(--black);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.btn--dark:hover {
  background: #1a1a1a;
  transform: translateY(-1px);
}

.btn--outline-dark {
  background: transparent;
  border: 1px solid rgba(22, 22, 22, 0.28);
  color: var(--ink);
}

.btn--outline-dark:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: var(--gold-soft);
}

.btn--sm {
  --btn-pad-x: 16px;
  min-height: 40px;
  padding: 0 var(--btn-pad-x);
  font-size: 12px;
  letter-spacing: 0.05em;
}

/* Hero */
.hero {
  position: relative;
  min-height: clamp(440px, 64vh, 640px);
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: var(--black);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.42) 42%, rgba(0, 0, 0, 0.12) 72%, rgba(0, 0, 0, 0.08) 100%),
    image-set(url("/images/hero.webp?v=1.7.3") type("image/webp"), url("/images/hero.jpg?v=1.7.3") type("image/jpeg")) center 42%/cover no-repeat;
}

.hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.55), transparent 58%);
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.55), transparent 58%);
  pointer-events: none;
  opacity: 0.7;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, transparent 35%, rgba(0, 0, 0, 0.22) 100%);
  pointer-events: none;
}


.hero__content {
  position: relative;
  z-index: 2;
  width: min(620px, 100%);
  padding: 64px 0;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  margin-bottom: 20px;
  background: none;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 0;
}

.hero__badge::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(32px, 5.2vw, 54px);
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 800;
  max-width: 15ch;
  color: #fff;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
}

.hero h1 span {
  color: var(--gold);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

.hero__lead {
  margin-top: 18px;
  max-width: 44ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.4);
}

.hero__actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Nav under hero */
.main-nav {
  background: var(--black);
  border-top: 1px solid rgba(212, 168, 74, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: sticky;
  top: 0;
  z-index: 40;
}

.main-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 52px;
}

.main-nav__links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 26px;
  list-style: none;
}

.main-nav__links a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 0;
  position: relative;
  transition: color 0.2s ease;
}

.main-nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.main-nav__links a:hover,
.main-nav__links a.is-active {
  color: #fff;
}

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

.topbar__phone {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
  min-width: 0;
  flex-shrink: 1;
}

.topbar__phone-num {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--gold);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.topbar__phone:hover .topbar__phone-num {
  color: var(--gold-bright);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  border-radius: var(--radius);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.topbar.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.topbar.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.topbar.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(212, 168, 74, 0.35);
  background: #121212;
  padding: 12px 0 20px;
}

.mobile-menu__links {
  list-style: none;
  display: grid;
  gap: 2px;
  margin-bottom: 16px;
}

.mobile-menu__links a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.mobile-menu__links a:active,
.mobile-menu__links a:hover {
  color: var(--gold);
}

.mobile-menu__cta {
  width: 100%;
}

body.menu-open {
  overflow: hidden;
}

/* Sections */
.section {
  padding: 72px 0;
}

.section--soft {
  background: var(--bg-soft);
}


.section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.section__title {
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding-bottom: 12px;
}

.section__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

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

.section__note {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.chips {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 28px;
  padding: 4px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.chip {
  min-height: 38px;
  padding: 0 18px;
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.chip:hover {
  color: var(--ink);
  background: rgba(0, 0, 0, 0.04);
}

.chip.is-active {
  background: var(--black);
  color: #fff;
}


.section--catalog {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(212, 168, 74, 0.06), transparent 55%),
    var(--bg-soft);
  padding-top: 80px;
  padding-bottom: 80px;
}

.section--catalog::after {
  content: "";
  position: absolute;
  right: -60px;
  top: 40px;
  width: min(340px, 38vw);
  aspect-ratio: 83 / 123;
  background: url("/images/brand-mark.svg") center / contain no-repeat;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

.section--catalog > .container {
  position: relative;
  z-index: 1;
}

.section--catalog .section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.section--catalog .section__title {
  font-size: clamp(28px, 3.6vw, 38px);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding-bottom: 14px;
}

.section--catalog .section__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 2px;
  background: var(--gold);
}

.section--catalog .section__title span {
  color: var(--gold);
}

.section--catalog .section__note {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Category chips */
.section--catalog .chips {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 32px;
  padding: 5px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.section--catalog .chip {
  min-height: 40px;
  padding: 0 20px;
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.section--catalog .chip:hover {
  color: var(--ink);
  background: rgba(0, 0, 0, 0.04);
}

.section--catalog .chip.is-active {
  background: var(--black);
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

/* Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product {
  position: relative;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 12px 32px rgba(0, 0, 0, 0.06);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.product.is-hidden,
.product[hidden] {
  display: none !important;
}

.product:hover {
  border-color: rgba(212, 168, 74, 0.45);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 20px 44px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(212, 168, 74, 0.15);
  transform: translateY(-6px);
}

.product__media {
  position: relative;
  aspect-ratio: 5 / 4;
  background:
    radial-gradient(ellipse at 50% 40%, #2a2a2a 0%, #0a0a0a 70%);
  overflow: hidden;
  display: block;
}

.product__media::before {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -18%;
  width: 55%;
  aspect-ratio: 83 / 123;
  background: url("/images/brand-mark.svg") center / contain no-repeat;
  opacity: 0.08;
  pointer-events: none;
  z-index: 1;
  filter: brightness(1.3);
}

.product__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, transparent 35%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
  z-index: 2;
}

.product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  z-index: 0;
}

.product:hover .product__media img {
  transform: scale(1.06);
}

.product__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.72);
  border: 1px solid rgba(212, 168, 74, 0.45);
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
}

.product__body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 16px;
}

.product__head {
  display: grid;
  gap: 4px;
}

.product__title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0;
}

.product__title a {
  color: var(--ink);
  transition: color 0.2s ease;
}

.product__title a:hover {
  color: var(--gold-dark);
}

.product__type {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product__specs {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.product__specs li {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  justify-content: center;
  gap: 3px;
  margin: 0;
  padding: 12px 12px;
  background: #f6f6f4;
  border: 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.25;
}

.product__specs li:not(:last-child) {
  padding-bottom: 12px;
  border-bottom: 0;
}

.product__specs strong {
  color: var(--ink);
  font-weight: 800;
  text-align: left;
  font-variant-numeric: tabular-nums;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.15;
}

.product__foot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  padding-top: 2px;
}

.product__prices {
  display: grid;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(212, 168, 74, 0.12) 0%, rgba(212, 168, 74, 0.04) 100%);
  border: 1px solid rgba(212, 168, 74, 0.22);
}

.product__price {
  margin: 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.3;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product__price--rent b {
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}

.product__price--buy b {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}

.product__price b {
  text-align: right;
}

.product__foot .btn {
  width: 100%;
}


/* Category cards */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cat-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
  background: var(--black);
}

.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.75));
}

.cat-card:hover img {
  transform: scale(1.05);
}

.cat-card__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 16px 14px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cat-card__label span {
  display: block;
  margin-top: 4px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 700;
}


/* Services tiles */
.section--services {
  background: #fff;
}

.service-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-tile {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  min-height: 280px;
  overflow: hidden;
  border-radius: 16px;
  color: #fff;
  text-decoration: none;
  background: var(--black);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.service-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-tile__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.25) 40%, rgba(0, 0, 0, 0.88) 100%);
  z-index: 1;
  transition: background 0.35s ease;
}

.service-tile__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  gap: 8px;
  padding: 24px 20px;
}

.service-tile__body strong {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  padding-bottom: 10px;
}

.service-tile__body strong::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.service-tile__body span {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
}

.service-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.2);
}

.service-tile:hover img {
  transform: scale(1.07);
}

.service-tile:hover .service-tile__body strong::after {
  width: 48px;
}

.service-tile:hover .service-tile__body strong {
  color: #fff;
}

/* Stats */
.stats {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(212, 168, 74, 0.12), transparent 55%),
    var(--black);
  color: #fff;
  padding: 56px 0;
  border-top: 1px solid rgba(212, 168, 74, 0.2);
  border-bottom: 1px solid rgba(212, 168, 74, 0.2);
}

.stats::after,
.master::after,
.site-footer::before {
  content: "";
  position: absolute;
  width: min(420px, 55vw);
  aspect-ratio: 83 / 123;
  background: url("/images/brand-mark.svg") center / contain no-repeat;
  opacity: 0.08;
  pointer-events: none;
  filter: brightness(1.2);
}

.stats::after {
  right: -40px;
  bottom: -60px;
}

.stats__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}

.stat {
  padding: 22px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.stat:hover {
  border-color: rgba(212, 168, 74, 0.4);
  background: rgba(212, 168, 74, 0.08);
  transform: translateY(-2px);
}

.stat strong {
  display: block;
  font-size: clamp(34px, 4.2vw, 48px);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.stat span {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 700;
}

/* Why / about */
.section--about {
  background: var(--bg-soft);
}

.why-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}

.why-list {
  display: grid;
  gap: 14px;
}

.why-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 20px 20px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.why-item:hover {
  border-color: rgba(212, 168, 74, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.07);
}

.why-item__num {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--gold);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  border-radius: 14px;
  border: 1px solid rgba(212, 168, 74, 0.35);
}

.why-item h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.why-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.why-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 100%;
  min-height: 360px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
}

.why-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.why-media:hover img {
  transform: scale(1.04);
}

.why-media__caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 16px 18px;
  background: rgba(10, 10, 10, 0.72);
  border: 1px solid rgba(212, 168, 74, 0.35);
  border-radius: 12px;
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.why-media__caption strong {
  display: block;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.why-media__caption span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* Master CTA */
.master {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.72) 55%, rgba(0, 0, 0, 0.55) 100%),
    url("/images/service-van.jpg") center/cover no-repeat;
  color: #fff;
  padding: 72px 0;
}

.master::after {
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.1;
  filter: none;
}

.master__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: center;
}

.master__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.master__eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--gold);
}

.master h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  max-width: 14ch;
  line-height: 1.1;
}

.master p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 42ch;
  font-size: 16px;
  line-height: 1.55;
}

.master__actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.master__list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.master__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.master__list li:hover {
  border-color: rgba(212, 168, 74, 0.45);
  background: rgba(212, 168, 74, 0.1);
}

.master__list li::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 3px;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(212, 168, 74, 0.18);
}

/* Callback */
.section--callback {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.section--callback::before {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -100px;
  width: min(320px, 40vw);
  aspect-ratio: 83 / 123;
  background: url("/images/brand-mark.svg") center / contain no-repeat;
  opacity: 0.04;
  pointer-events: none;
}

.callback {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: center;
  padding: 8px 0;
}

.callback__text h2 {
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
  line-height: 1.15;
  position: relative;
  padding-bottom: 14px;
}

.callback__text h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 2px;
  background: var(--gold);
}

.callback__text h2 span {
  color: var(--gold);
}

.callback__text p {
  color: var(--muted);
  margin-bottom: 22px;
  font-size: 15px;
  line-height: 1.55;
  max-width: 40ch;
}

.callback__points {
  list-style: none;
  display: grid;
  gap: 12px;
}

.callback__points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 14px;
  background: var(--bg-soft);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.callback__points li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0;
  background: var(--gold);
  flex-shrink: 0;
  border-radius: 3px;
  box-shadow: 0 0 0 4px rgba(212, 168, 74, 0.15);
}

.form {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  padding: 28px 26px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
  display: grid;
  gap: 14px;
}

.form label {
  display: grid;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  min-height: 48px;
  padding: 12px 14px;
  background: #fafafa;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: none;
  border-color: rgba(212, 168, 74, 0.7);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(212, 168, 74, 0.15);
}

.form__hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.form__status {
  font-size: 13px;
  min-height: 1.2em;
  color: var(--muted);
}

.form__status.is-ok {
  color: #1a7a3a;
}

.form__status.is-error {
  color: #b42318;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form .btn {
  margin-top: 4px;
  width: 100%;
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: rgba(255, 255, 255, 0.75);
  padding: 64px 0 28px;
  border-top: 1px solid rgba(212, 168, 74, 0.22);
}

.site-footer::before {
  right: -50px;
  bottom: -80px;
  z-index: 0;
}

.site-footer > .container {
  position: relative;
  z-index: 1;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr) 1.2fr;
  gap: 32px;
}

.footer__brand .logo {
  margin-bottom: 16px;
}

.footer__brand p,
.footer__brand a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

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

.footer__col h4,
.footer__contacts h4 {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 800;
}

.footer__col a,
.footer__contacts a,
.footer__contacts p {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease;
}

.footer__col a:hover,
.footer__contacts a:hover {
  color: #fff;
}

.footer__bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

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

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  background: rgba(0, 0, 0, 0.62);
  padding: 20px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

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

.modal__dialog {
  width: min(460px, 100%);
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px;
  position: relative;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.modal__close {
  position: absolute;
  right: 14px;
  top: 10px;
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
  transition: color 0.2s ease;
}

.modal__close:hover {
  color: var(--ink);
}

.modal__dialog h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.modal__dialog > p {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.5;
}

/* Reveal */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .product:hover,
  .service-tile:hover img,
  .cat-card:hover img,
  .btn--gold:hover {
    transform: none;
  }
}

/* Responsive */

/* ===== Mobile polish v1.7.2 ===== */
@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

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

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

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

  .why-grid,
  .master__inner,
  .callback {
    grid-template-columns: 1fr;
  }

  .topbar__cta {
    display: none !important;
  }
}

@media (max-width: 860px) {
  .container {
    width: calc(100% - 28px);
  }

  .topbar {
    position: sticky;
    top: 0;
    z-index: 50;
  }

  .topbar__inner {
    min-height: 60px;
    padding: 10px 0;
    gap: 10px;
  }

  .topbar__contacts,
  .topbar__meta,
  .topbar__cta,
  .logo__tag {
    display: none !important;
  }

  .topbar__phone {
    margin-left: auto;
  }

  .topbar__phone-num {
    font-size: clamp(15px, 4.4vw, 18px);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .topbar.is-open .mobile-menu {
    display: block;
  }

  .main-nav {
    display: none;
  }

  .logo img {
    height: 30px;
  }

  .hero {
    min-height: auto;
  }

  .hero__bg {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.45) 45%, rgba(0, 0, 0, 0.7) 100%),
      image-set(url("/images/hero.webp?v=1.7.3") type("image/webp"), url("/images/hero.jpg?v=1.7.3") type("image/jpeg")) center 40%/cover no-repeat;
  }

  .hero__bg::before {
    mask-image: none;
    -webkit-mask-image: none;
    opacity: 0.35;
    background-size: 36px 36px;
  }

  .hero__content {
    padding: 40px 0 44px;
    width: 100%;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(26px, 7.2vw, 34px);
    line-height: 1.12;
    letter-spacing: 0;
    word-break: normal;
    overflow-wrap: anywhere;
    hyphens: none;
  }

  .hero h1 span {
    display: inline;
    color: var(--gold);
  }

  .hero__lead {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.45;
    max-width: none;
    color: rgba(255, 255, 255, 0.82);
  }

  .hero__badge {
    margin-bottom: 14px;
    letter-spacing: 0.1em;
    font-size: 11px;
  }

  .hero__content {
    padding: 32px 0 36px;
  }

  .section__title,
  .section--catalog .section__title,
  .callback__text h2,
  .master h2 {
    letter-spacing: 0;
    line-height: 1.15;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .section__title span,
  .callback__text h2 span {
    display: inline;
  }

  .section__note {
    letter-spacing: 0.02em;
    font-size: 12px;
    line-height: 1.4;
  }

  .product__title {
    letter-spacing: 0;
    line-height: 1.25;
  }

  .product__type {
    letter-spacing: 0.02em;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .hero__actions .btn {
    width: 100%;
    min-height: 48px;
  }

  .section {
    padding: 48px 0;
  }

  .section--catalog,
  .section--about,
  .section--callback,
  .section--services {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .section__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
  }

  .section__title,
  .section--catalog .section__title,
  .callback__text h2 {
    font-size: clamp(24px, 7vw, 30px);
  }

  .chips,
  .section--catalog .chips {
    display: flex;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 999px;
  }

  .chip,
  .section--catalog .chip {
    flex: 1;
    min-height: 40px;
    padding: 0 6px;
    font-size: 12px;
    white-space: nowrap;
    text-align: center;
  }

  .product-grid,
  .service-tiles,
  .stats__row,
  .form__row,
  .footer__grid,
  .cat-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    gap: 14px;
  }

  .product {
    border-radius: 14px;
  }

  .product__media {
    aspect-ratio: 16 / 11;
  }

  .product__body {
    padding: 14px 14px 16px;
    gap: 12px;
  }

  .product__title {
    font-size: 16px;
  }

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

  .product__specs li {
    padding: 10px;
  }

  .product__specs strong {
    font-size: 14px;
  }

  .product__prices {
    padding: 10px 12px;
  }

  .product__price--rent b {
    font-size: 15px;
  }

  .product__foot .btn {
    min-height: 44px;
  }

  .service-tile {
    aspect-ratio: 16 / 10;
    min-height: 180px;
    border-radius: 14px;
  }

  .service-tile__body {
    padding: 18px 16px;
  }

  .service-tile__body strong {
    font-size: 18px;
  }

  .stats {
    padding: 36px 0;
  }

  .stats__row {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .stat {
    padding: 16px 14px;
    border-radius: 12px;
  }

  .stat strong {
    font-size: 28px;
  }

  .stat span {
    font-size: 11px;
  }

  .why-item {
    grid-template-columns: 44px 1fr;
    padding: 14px;
    border-radius: 14px;
    gap: 12px;
  }

  .why-item__num {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 13px;
  }

  .why-item h3 {
    font-size: 15px;
  }

  .why-media {
    min-height: 220px;
    border-radius: 14px;
  }

  .why-media__caption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px 14px;
  }

  .master {
    padding: 44px 0;
  }

  .master h2 {
    max-width: none;
    font-size: clamp(24px, 7vw, 32px);
  }

  .master__actions {
    flex-direction: column;
  }

  .master__actions .btn {
    width: 100%;
  }

  .master__list li {
    padding: 14px 14px;
    border-radius: 12px;
    font-size: 13px;
  }

  .callback {
    gap: 22px;
    align-items: stretch;
  }

  .callback__points li {
    padding: 10px 12px;
    font-size: 13px;
  }

  .form {
    padding: 18px 16px;
    border-radius: 16px;
  }

  .form input,
  .form textarea,
  .form select {
    min-height: 46px;
    border-radius: 12px;
    font-size: 16px; /* prevent iOS zoom */
  }

  .footer__grid {
    gap: 22px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .modal {
    align-items: flex-end;
    padding: 0;
  }

  .modal__dialog {
    width: 100%;
    border-radius: 16px 16px 0 0;
    padding: 22px 18px 28px;
    max-height: 92vh;
    overflow: auto;
  }

  .btn {
    border-radius: 999px;
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 20px);
  }

  .hero__badge {
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(26px, 9vw, 32px);
  }

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

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

  .btn {
    min-height: 48px;
  }

  .chip,
  .section--catalog .chip {
    font-size: 11px;
    padding: 0 4px;
  }
}

/* ===== Mobile catalog/reveal fix v1.7.3 ===== */
@media (max-width: 860px) {
  /* No scroll-fade: on phones it leaves a blank half-screen before content pops in */
  .js .reveal,
  .js .reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .section--catalog .section__head {
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start;
    gap: 6px;
    margin-bottom: 16px;
  }

  .section--catalog .section__note,
  .section__note {
    width: 100%;
    max-width: none;
    text-align: left !important;
    align-self: flex-start !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    letter-spacing: 0.02em;
    font-size: 12px;
    line-height: 1.4;
  }

  .section--catalog .section__title {
    width: 100%;
    text-align: left;
  }

  /* Less empty air above catalog grid on phones */
  .section--catalog {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section--catalog .chips {
    margin-bottom: 16px;
  }
}


/* ========== Inner pages (light site, v1.8) ========== */
body.page-inner {
  background: var(--bg);
  color: var(--ink);
}

body.page-inner main {
  display: block;
}

.page-hero {
  position: relative;
  padding: 52px 0 44px;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(8, 8, 8, 0.88) 0%, rgba(8, 8, 8, 0.52) 55%, rgba(8, 8, 8, 0.72) 100%),
    url("/images/about.jpg") center / cover no-repeat;
  border-bottom: 1px solid rgba(212, 168, 74, 0.22);
  overflow: hidden;
}

.page-hero--catalog {
  background:
    linear-gradient(115deg, rgba(8, 8, 8, 0.88) 0%, rgba(8, 8, 8, 0.5) 55%, rgba(8, 8, 8, 0.7) 100%),
    url("/images/hero.webp") center / cover no-repeat;
}

.page-hero--services {
  background:
    linear-gradient(115deg, rgba(8, 8, 8, 0.88) 0%, rgba(8, 8, 8, 0.48) 55%, rgba(8, 8, 8, 0.7) 100%),
    url("/images/services/uslugi-hero.jpg") center / cover no-repeat;
}

.page-hero--contacts {
  background:
    linear-gradient(115deg, rgba(8, 8, 8, 0.9) 0%, rgba(8, 8, 8, 0.55) 55%, rgba(8, 8, 8, 0.75) 100%),
    url("/images/service-van.jpg") center / cover no-repeat;
}

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

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 16px;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--gold-bright);
}

.breadcrumbs span[aria-hidden] {
  opacity: 0.45;
}

.page-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  max-width: 18ch;
  line-height: 1.1;
  color: #fff;
}

.page-hero p {
  margin-top: 14px;
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.55;
}

.page-section {
  position: relative;
  padding: 64px 0;
  overflow: hidden;
}

.page-section::before {
  content: "";
  position: absolute;
  inset: 8% 0 auto;
  height: 84%;
  background: url("/images/brand-mark.svg") center / min(520px, 70vw) no-repeat;
  opacity: 0.045;
  pointer-events: none;
  z-index: 0;
}

.page-section > .container {
  position: relative;
  z-index: 1;
}

.page-section--alt {
  background: var(--bg-soft);
  border-block: 1px solid rgba(0, 0, 0, 0.05);
}

.content-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: start;
}

.content-grid--reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.prose p {
  color: var(--ink-soft);
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.65;
}

.prose h2 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 28px 0 14px;
  color: var(--ink);
}

.prose a {
  color: var(--gold-dark);
}

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

.prose ul {
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.prose li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
}

.prose li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 1px;
  background: var(--gold);
}

.media-frame {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  display: block;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.feature-tile {
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  min-height: 130px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.feature-tile:hover {
  border-color: rgba(212, 168, 74, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.feature-tile strong {
  display: block;
  color: var(--gold-dark);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 6px;
}

.feature-tile h3 {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--ink);
}

.feature-tile p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

/* Catalog filters / grids — aliases + light look */
.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  padding: 4px;
  width: fit-content;
  max-width: 100%;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 999px;
}

.filter-chip {
  min-height: 38px;
  padding: 0 18px;
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
  font-family: inherit;
}

.filter-chip:hover {
  color: var(--ink);
  background: rgba(0, 0, 0, 0.04);
}

.filter-chip.is-active {
  background: var(--black);
  color: #fff;
}

.catalog-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* product-card → homepage product look */
.product-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 12px 32px rgba(0, 0, 0, 0.06);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card.is-hidden,
.product-card[hidden] {
  display: none !important;
}

.product-card:hover {
  border-color: rgba(212, 168, 74, 0.45);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 20px 44px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(212, 168, 74, 0.15);
  transform: translateY(-6px);
}

.product-card__media {
  position: relative;
  aspect-ratio: 5 / 4;
  background: radial-gradient(ellipse at 50% 40%, #2a2a2a 0%, #0a0a0a 70%);
  overflow: hidden;
}

.product-card__media a {
  display: block;
  width: 100%;
  height: 100%;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

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

.product-card__body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.product-card__title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
}

.product-card__title a {
  color: var(--ink);
  text-decoration: none;
}

.product-card__title a:hover {
  color: var(--gold-dark);
}

.product-card__specs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
}

.product-card__specs li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 12px;
}

.product-card__specs span {
  color: var(--muted);
}

.product-card__specs strong {
  color: var(--ink);
  font-weight: 700;
}

.product-card__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.product-card__link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.product-card:hover .product-card__link svg {
  transform: translateX(3px);
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.product-layout__media {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  background: radial-gradient(ellipse at 50% 40%, #2a2a2a 0%, #0a0a0a 70%);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.product-layout__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  display: block;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 22px;
}

.pill {
  border: 1px solid rgba(212, 168, 74, 0.45);
  color: var(--gold-dark);
  background: var(--gold-soft);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.specs-table {
  display: grid;
  gap: 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  overflow: hidden;
  margin: 20px 0;
  background: #fff;
}

.specs-table div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 14px;
}

.specs-table div:nth-child(even) {
  background: var(--bg-soft);
}

.specs-table div:last-child {
  border-bottom: 0;
}

.specs-table span {
  color: var(--muted);
}

.specs-table strong {
  text-align: right;
  color: var(--ink);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
  list-style: none;
  padding: 0;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "+";
  color: var(--gold-dark);
  font-weight: 800;
  line-height: 1.2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.service-card:hover {
  border-color: rgba(212, 168, 74, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.1);
}

.service-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.service-card__body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.service-card__body h2 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}

.service-card__body p {
  color: var(--ink-soft);
  font-size: 14px;
  flex: 1;
  line-height: 1.55;
  margin: 0;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}

.contact-card {
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.contact-card h2 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0 0 18px;
  color: var(--ink);
}

.contact-list {
  display: grid;
  gap: 16px;
}

.contact-list a,
.contact-list p {
  display: block;
  color: var(--ink-soft);
  font-size: 15px;
  margin: 0;
  text-decoration: none;
}

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

.contact-list strong {
  display: block;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.map-embed {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  min-height: 360px;
  background: #111;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

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

.cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(212, 168, 74, 0.35);
  border-radius: 16px;
  padding: 28px;
  background:
    linear-gradient(135deg, #141414 0%, #1c1c1c 100%);
  color: #fff;
}

.cta-band h2 {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  max-width: 22ch;
  color: #fff;
  margin: 0;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  margin-top: 8px;
}

/* Light-page ghost/outline button aliases */
.page-inner .page-section .btn--ghost,
.page-inner .btn--outline {
  background: transparent;
  border: 1px solid rgba(22, 22, 22, 0.28);
  color: var(--ink);
  backdrop-filter: none;
  box-shadow: none;
}

.page-inner .page-section .btn--ghost:hover,
.page-inner .btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: var(--gold-soft);
}

.page-inner .section__head {
  margin-bottom: 22px;
}

.page-inner .section__title {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}

@media (max-width: 1000px) {
  .content-grid,
  .content-grid--reverse,
  .product-layout,
  .contacts-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .catalog-grid,
  .related-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .page-section {
    padding: 48px 0;
  }

  .page-hero {
    padding: 40px 0 36px;
  }

  .catalog-filters {
    border-radius: 16px;
  }
}


/* Catalog page denser layout v1.8.1 */
.catalog-page .page-hero p {
  max-width: 62ch;
}

.catalog-intro {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 0 0 28px;
}

.catalog-intro__item {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
}

.catalog-intro__item strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 6px;
}

.catalog-intro__item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}

.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 20px;
  margin-bottom: 22px;
}

.catalog-toolbar__meta {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

.catalog-toolbar__meta b {
  color: var(--ink);
  font-weight: 800;
}

.catalog-page .product-grid {
  margin-top: 0;
}

.catalog-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 40px 0 8px;
}

.catalog-steps__item {
  position: relative;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 22px 20px 20px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
}

.catalog-steps__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--black);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 12px;
}

.catalog-steps__item h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink);
}

.catalog-steps__item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

.catalog-note {
  margin: 28px 0 0;
  padding: 18px 20px;
  border-radius: 14px;
  background: var(--bg-soft);
  border: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.catalog-note a {
  color: var(--gold-dark);
  font-weight: 700;
  text-decoration: none;
}

.catalog-note a:hover {
  color: var(--gold);
}

.catalog-note__btn {
  display: inline;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: var(--gold-dark);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.catalog-note__btn:hover {
  color: var(--gold);
}

.product__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.product__actions .btn {
  width: 100%;
  justify-content: center;
}

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

@media (max-width: 640px) {
  .catalog-intro {
    grid-template-columns: 1fr;
  }
  .catalog-toolbar {
    align-items: stretch;
  }
  .catalog-toolbar .chips,
  .catalog-toolbar .catalog-filters {
    width: 100%;
  }
}

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


/* Catalog category pages + readable H1 v1.8.3 */
.page-hero--catalog h1,
.catalog-page .page-hero h1 {
  max-width: min(20em, 100%);
  letter-spacing: 0.01em;
  line-height: 1.22;
  text-transform: none;
  word-spacing: 0.02em;
  text-wrap: balance;
}

.catalog-filters a.chip {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.catalog-filters a.chip:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}


/* Catalog FAQ v1.8.4 */
.faq {
  margin: 40px 0 8px;
}

.faq__head {
  margin-bottom: 18px;
}

.faq__head h2 {
  margin: 0 0 8px;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
}

.faq__head p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.faq__list {
  display: grid;
  gap: 10px;
}

.faq__item {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.faq__item[open] {
  border-color: rgba(212, 168, 74, 0.35);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.faq__q {
  list-style: none;
  cursor: pointer;
  padding: 16px 48px 16px 18px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
  position: relative;
}

.faq__q::-webkit-details-marker {
  display: none;
}

.faq__q::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--gold-dark);
  font-weight: 800;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}

.faq__item[open] .faq__q::after {
  content: "–";
  background: var(--black);
  color: #fff;
}

.faq__a {
  padding: 0 18px 16px;
}

.faq__a p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}


/* Product page template v1.8.5 */
.product-page .page-hero h1 {
  max-width: min(22em, 100%);
  text-transform: none;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-wrap: balance;
}

.product-top {
  padding-top: 40px;
}

.product-gallery {
  display: grid;
  gap: 12px;
}

.product-gallery__main {
  border-radius: 18px;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 40%, #2a2a2a 0%, #0a0a0a 70%);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.1);
}

.product-gallery__main img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  display: block;
}

.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.product-gallery__thumb {
  margin: 0;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  overflow: hidden;
  background: #111;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-gallery__thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  opacity: 0.88;
}

.product-gallery__thumb:hover,
.product-gallery__thumb.is-active {
  border-color: rgba(212, 168, 74, 0.65);
  box-shadow: 0 0 0 1px rgba(212, 168, 74, 0.35);
}

.product-gallery__thumb.is-active img {
  opacity: 1;
}

.product-buy__eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.product-buy__title {
  margin: 0 0 10px;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
}

.product-buy__lead {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.price-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 22px;
}

.price-card {
  position: relative;
  border-radius: 18px;
  padding: 18px 18px 16px;
  display: grid;
  gap: 4px;
  overflow: hidden;
  border: 1px solid rgba(212, 168, 74, 0.28);
}

.price-card--rent {
  background:
    linear-gradient(145deg, #1a1408 0%, #0d0d0d 55%, #16100a 100%);
  color: #fff;
  border-color: rgba(212, 168, 74, 0.55);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 232, 180, 0.12);
}

.price-card--buy {
  background:
    linear-gradient(145deg, rgba(212, 168, 74, 0.18) 0%, rgba(212, 168, 74, 0.06) 100%);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(212, 168, 74, 0.12);
}

.price-card__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.price-card--buy .price-card__label {
  color: var(--gold-dark);
}

.price-card__value {
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.1;
  color: #fff;
}

.price-card--buy .price-card__value {
  color: var(--ink);
}

.price-card__unit {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}

.price-card--buy .price-card__unit {
  color: var(--muted);
}

.price-card .btn {
  margin-top: 4px;
  width: 100%;
  justify-content: center;
}

.product-buy__checks {
  margin: 0 0 20px;
}

.product-buy__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-panels {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
}

.product-panel {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
}

.product-panel__title {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.specs-table--rich {
  margin: 0;
}

.prose-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.prose-list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
}

.prose-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 1px;
  background: var(--gold);
}

.product-tabs {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.product-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 12px;
  background: var(--bg-soft);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.product-tabs__btn {
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.product-tabs__btn:hover {
  color: var(--ink);
  background: rgba(0, 0, 0, 0.04);
}

.product-tabs__btn.is-active {
  background: var(--black);
  color: #fff;
}

.product-tabs__panel {
  display: none;
  padding: 24px 22px 26px;
}

.product-tabs__panel.is-active {
  display: block;
}

.product-tabs__panel h3 {
  margin: 22px 0 10px;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.product-tabs__panel h3:first-child {
  margin-top: 0;
}

.product-card__meta {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-dark);
}

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

@media (max-width: 640px) {
  .price-cards {
    grid-template-columns: 1fr;
  }
  .product-tabs__btn {
    font-size: 12px;
    padding: 9px 12px;
  }
}


/* Product photos below title v1.8.6 */
.product-photos-section {
  padding-top: 12px;
}

.product-photos-section .section__head {
  margin-bottom: 18px;
}

.product-photos-section .section__title span {
  color: var(--gold-dark);
}

.product-photos-section .section__note {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--muted);
}

.product-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.product-photos__item {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 40%, #2a2a2a 0%, #0a0a0a 70%);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.product-photos__item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.product-photos__item:hover img {
  transform: scale(1.03);
}

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


/* About page denser layout v1.8.8 */
.about-page .page-hero h1 {
  max-width: min(20em, 100%);
  text-transform: none;
  letter-spacing: 0.01em;
  line-height: 1.22;
  text-wrap: balance;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 0 0 36px;
}

.about-stat {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 20px 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
}

.about-stat strong {
  display: block;
  font-size: clamp(28px, 3vw, 34px);
  font-weight: 800;
  color: var(--gold-dark);
  line-height: 1;
  margin-bottom: 8px;
}

.about-stat span {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 4px;
}

.about-stat p {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: var(--muted);
}

.about-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: start;
}

.about-split__media {
  display: grid;
  gap: 14px;
}

.about-split__media .media-frame {
  margin: 0;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.about-pillar {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.about-pillar:hover {
  border-color: rgba(212, 168, 74, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.about-pillar__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--black);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 12px;
}

.about-pillar h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink);
}

.about-pillar p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.about-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.about-service {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 20px 18px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.about-service:hover {
  border-color: rgba(212, 168, 74, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.about-service strong {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink);
}

.about-service span {
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
  flex: 1;
}

.about-service em {
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-dark);
}

.about-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.about-step {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 20px 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
}

.about-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 12px;
}

.about-step h3 {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.about-step p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

.about-geo {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

.about-geo__card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
}

.about-geo__card h2 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.about-geo__card p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.about-geo__list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.about-geo__list li {
  font-size: 14px;
  color: var(--ink-soft);
  padding-left: 18px;
  position: relative;
}

.about-geo__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 1px;
}

.about-geo__media {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  background: #111;
  min-height: 280px;
}

.about-geo__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 280px;
}

.about-page .section__head {
  margin-bottom: 22px;
}

.about-page .section__title {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
}

.about-page .section__title span {
  color: var(--gold-dark);
}

.about-page .section__note {
  margin: 8px 0 0;
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 1000px) {
  .about-stats,
  .about-services,
  .about-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-split,
  .about-geo {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .about-stats,
  .about-pillars,
  .about-services,
  .about-steps {
    grid-template-columns: 1fr;
  }
}


/* About UI polish v1.8.9 */
.prose a.btn,
.prose a.btn:hover {
  text-decoration: none;
}

.prose a.btn--gold,
.prose a.btn--gold:hover {
  color: #0a0a0a;
}

.prose a.btn--outline-dark {
  color: var(--ink);
}

.prose a.btn--outline-dark:hover {
  color: var(--gold-dark);
}

.faq__q::after {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  line-height: 1 !important;
  font-size: 18px !important;
  padding: 0;
  box-sizing: border-box;
}

.faq__item[open] .faq__q::after {
  content: "−" !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  transform: translateY(-50%);
  padding-bottom: 1px;
}

/* Why — list rows with icons */
.about-why {
  display: grid;
  gap: 14px;
}

.about-why__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  padding: 22px 22px 22px 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--gold);
}

.about-why__item--alt {
  background: linear-gradient(135deg, #141414 0%, #1c1c1c 100%);
  color: #fff;
  border-color: rgba(212, 168, 74, 0.28);
  border-left-color: var(--gold-bright);
}

.about-why__item--alt h3 {
  color: #fff;
}

.about-why__item--alt p {
  color: rgba(255, 255, 255, 0.72);
}

.about-why__item--alt .about-why__num {
  color: var(--gold-bright);
}

.about-why__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-soft);
  color: var(--gold-dark);
  flex-shrink: 0;
}

.about-why__item--alt .about-why__icon {
  background: rgba(212, 168, 74, 0.16);
  color: var(--gold-bright);
}

.about-why__icon svg {
  width: 26px;
  height: 26px;
}

.about-why__num {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 6px;
}

.about-why__item h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink);
}

.about-why__item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* Directions — varied tiles */
.about-dirs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.about-dir {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
  padding: 22px 20px;
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  overflow: hidden;
}

.about-dir::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
}

.about-dir:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(212, 168, 74, 0.4);
}

.about-dir--dark {
  background: linear-gradient(160deg, #121212 0%, #1a1a1a 100%);
  color: #fff;
  border-color: rgba(212, 168, 74, 0.3);
}

.about-dir--dark strong,
.about-dir--dark em {
  color: #fff;
}

.about-dir--dark span:not(.about-dir__icon) {
  color: rgba(255, 255, 255, 0.7);
}

.about-dir--dark em {
  color: var(--gold-bright) !important;
}

.about-dir--gold {
  background:
    linear-gradient(145deg, rgba(212, 168, 74, 0.2) 0%, rgba(212, 168, 74, 0.06) 55%, #fff 100%);
  border-color: rgba(212, 168, 74, 0.35);
}

.about-dir__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  color: var(--gold-dark);
}

.about-dir--dark .about-dir__icon {
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold-bright);
}

.about-dir--gold .about-dir__icon {
  background: rgba(212, 168, 74, 0.18);
  color: var(--gold-dark);
}

.about-dir__icon svg {
  width: 24px;
  height: 24px;
}

.about-dir strong {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink);
}

.about-dir > span:not(.about-dir__icon) {
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  flex: 1;
}

.about-dir em {
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-dark);
}

/* Flow — process timeline */
.about-flow {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: none;
  position: relative;
}

.about-flow::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, rgba(212, 168, 74, 0.15), rgba(212, 168, 74, 0.55), rgba(212, 168, 74, 0.15));
  z-index: 0;
}

.about-flow__item {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 14px;
}

.about-flow__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid rgba(212, 168, 74, 0.45);
  color: var(--gold-dark);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.about-flow__icon svg {
  width: 28px;
  height: 28px;
}

.about-flow__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 26px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: var(--black);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.about-flow__item h3 {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink);
}

.about-flow__item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

@media (max-width: 1000px) {
  .about-dirs {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 12px;
  }
  .about-flow::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .about-dirs,
  .about-flow {
    grid-template-columns: 1fr;
  }
  .about-why__item {
    grid-template-columns: 1fr;
  }
}

/* About dirs dark title fix v1.8.10 */
.about-dir--dark strong {
  color: #fff !important;
}
.about-dir--dark .about-dir__icon {
  color: var(--gold-bright);
}


/* Services hub v1.9.0 */
.services-page .page-hero h1 {
  max-width: min(20em, 100%);
  text-transform: none;
  letter-spacing: 0.01em;
  line-height: 1.22;
  text-wrap: balance;
}

.services-intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 32px;
}

.services-intro__text p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.services-intro__text p:last-child {
  margin-bottom: 0;
}

.services-intro__aside {
  display: grid;
  gap: 10px;
}

.services-chip {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.services-chip__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-soft);
  color: var(--gold-dark);
}

.services-chip__icon svg {
  width: 20px;
  height: 20px;
}

.services-chip strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 2px;
}

.services-chip span {
  font-size: 13px;
  line-height: 1.4;
  color: var(--muted);
}

.services-page .services-grid {
  gap: 20px;
}

.services-page .service-card {
  position: relative;
}

.services-page .service-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.72);
  border: 1px solid rgba(212, 168, 74, 0.45);
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.services-page .service-card__body {
  gap: 10px;
}

.services-page .service-card__body h2 {
  margin: 0;
}

.services-page .service-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.services-page .service-card__list li {
  position: relative;
  padding-left: 14px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink-soft);
}

.services-page .service-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 1px;
  background: var(--gold);
}

.services-page .service-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 4px;
}

.services-page .service-card__actions .btn {
  min-height: 40px;
  padding: 0 16px;
  font-size: 12px;
}

.services-extras {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 14px;
  margin-top: 36px;
}

.services-extra {
  border-radius: 18px;
  padding: 22px 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #fff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
}

.services-extra--dark {
  background: linear-gradient(160deg, #121212 0%, #1a1a1a 100%);
  color: #fff;
  border-color: rgba(212, 168, 74, 0.3);
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

.services-extra--dark h3,
.services-extra--dark p {
  color: inherit;
}

.services-extra--dark p {
  color: rgba(255, 255, 255, 0.72);
}

.services-extra--gold {
  background: linear-gradient(145deg, rgba(212, 168, 74, 0.18) 0%, rgba(212, 168, 74, 0.05) 100%);
  border-color: rgba(212, 168, 74, 0.35);
}

.services-extra h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink);
}

.services-extra p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.services-flow {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.services-flow__item {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 18px 16px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
  text-align: left;
}

.services-flow__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: var(--black);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.services-flow__item h3 {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.services-flow__item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}

.services-page .section__head {
  margin: 40px 0 18px;
}

.services-page .section__title {
  margin: 0;
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.services-page .section__title span {
  color: var(--gold-dark);
}

.services-page .section__note {
  margin: 8px 0 0;
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 1000px) {
  .services-intro,
  .services-extras {
    grid-template-columns: 1fr;
  }
  .services-extra--dark {
    grid-row: auto;
  }
  .services-flow {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-flow {
    grid-template-columns: 1fr;
  }
}


/* Services extras readability v1.9.1 */
.services-extras {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.services-extra {
  border-radius: 18px;
  padding: 22px 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
  min-height: 0;
}

.services-extra--dark {
  grid-row: auto;
  background: linear-gradient(160deg, #161616 0%, #222 100%);
  border-color: rgba(212, 168, 74, 0.4);
  color: #fff;
}

.services-extra--dark h3 {
  color: #fff !important;
}

.services-extra--dark p {
  color: rgba(255, 255, 255, 0.88) !important;
}

.services-extra--gold {
  background: #fff8ea;
  border-color: rgba(212, 168, 74, 0.45);
}

.services-extra--gold h3 {
  color: var(--ink) !important;
}

.services-extra--gold p {
  color: var(--ink-soft) !important;
}

.services-extra h3 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink);
}

.services-extra p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}

@media (max-width: 640px) {
  .services-extras {
    grid-template-columns: 1fr;
  }
}

.services-extra--lead {
  grid-column: 1 / -1;
  background: #fff;
  border: 1px solid rgba(212, 168, 74, 0.4);
  border-left: 5px solid var(--gold);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.06);
}
.services-extra--lead h3 {
  color: var(--ink) !important;
}
.services-extra--lead p {
  color: var(--ink-soft) !important;
  font-size: 15px;
  max-width: 70ch;
}


/* Service detail pages (montazh first) v1.9.2 */
.service-detail .page-hero h1 {
  max-width: min(20em, 100%);
  text-transform: none;
  letter-spacing: 0.01em;
  line-height: 1.22;
  text-wrap: balance;
}

.service-detail .prose a.btn,
.service-detail .prose a.btn:hover {
  text-decoration: none;
}

.service-detail .prose a.btn--gold,
.service-detail .prose a.btn--gold:hover {
  color: #0a0a0a;
}

.service-detail .prose a.btn--outline-dark {
  color: var(--ink);
}

.service-chips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0 0 32px;
}

.service-chip {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.service-chip__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-soft);
  color: var(--gold-dark);
  flex-shrink: 0;
}

.service-chip__icon svg {
  width: 20px;
  height: 20px;
}

.service-chip strong {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 2px;
}

.service-chip span {
  font-size: 13px;
  line-height: 1.35;
  color: var(--muted);
}

.service-detail__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: start;
}

.service-detail__media {
  display: grid;
  gap: 14px;
}

.service-req {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
}

.service-req__card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
}

.service-req__card--lead {
  border-left: 5px solid var(--gold);
  border-color: rgba(212, 168, 74, 0.35);
}

.service-req__card h2 {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.service-req .specs-table {
  margin: 0;
}

.service-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.service-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}

.service-steps__num {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--black);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.service-steps strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 2px;
  color: var(--ink);
}

.service-steps span {
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}

.service-related {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 8px;
}

.service-related a {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.service-related a:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 168, 74, 0.45);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.service-related strong {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink);
}

.service-related span {
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
  flex: 1;
}

.service-related em {
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-dark);
}

.service-detail .section__head {
  margin: 40px 0 18px;
}

.service-detail .section__title {
  margin: 0;
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.service-detail .section__title span {
  color: var(--gold-dark);
}

.service-detail .section__note {
  margin: 8px 0 0;
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 1000px) {
  .service-chips,
  .service-detail__grid,
  .service-req,
  .service-related {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .service-chips {
    grid-template-columns: 1fr;
  }
}

/* Product gallery thumbs auto-fit v2.0.1 */
.product-gallery__thumbs {
  grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
  max-width: 420px;
}

