:root {
  --bg: #f7f7f3;
  --paper: #ffffff;
  --paper-2: #eef0ec;
  --ink: #20252b;
  --muted: #5d6664;
  --line: #dfe2dd;
  --green: #1e2724;
  --green-2: #303936;
  --orange: #b87843;
  --shadow: 0 20px 56px rgba(32, 37, 43, .11);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, "Helvetica Neue", sans-serif;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(42px, 6vw, 82px); line-height: .96; letter-spacing: 0; margin-bottom: 24px; }
h2 { font-size: clamp(30px, 4vw, 52px); line-height: 1.04; margin-bottom: 18px; }
h3 { font-size: 22px; line-height: 1.15; margin-bottom: 12px; }
p { color: var(--muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
  padding: 16px clamp(18px, 4vw, 54px);
  background: rgba(247, 247, 243, .94);
  border-bottom: 1px solid rgba(223, 226, 221, .86);
  backdrop-filter: blur(12px);
}
.site-header.compact { position: relative; }
.brand {
  font-weight: 800;
  font-size: 20px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand::before {
  content: "";
  width: 28px;
  height: 28px;
  display: inline-block;
  background: linear-gradient(135deg, var(--orange), #2d3331);
  clip-path: polygon(50% 0, 94% 25%, 94% 75%, 50% 100%, 6% 75%, 6% 25%);
  box-shadow: inset 0 0 0 7px rgba(247, 247, 243, .78);
}
.nav { display: flex; align-items: center; justify-content: center; gap: 18px; font-size: 14px; color: #333b39; }
.nav a:hover, .back-link:hover { color: var(--orange); }
.phone { white-space: nowrap; font-weight: 700; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--radius);
  background: var(--green);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
  box-shadow: 0 12px 28px rgba(30, 39, 36, .18);
}
.button:hover { transform: translateY(-2px); background: var(--green-2); }
.button-secondary {
  background: rgba(255, 255, 255, .72);
  color: var(--green);
  border: 1px solid #9aa29d;
  box-shadow: none;
}
.button-small { min-height: 42px; padding: 0 16px; font-size: 14px; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: minmax(440px, 53%) minmax(360px, 47%);
  gap: clamp(34px, 4.6vw, 72px);
  align-items: stretch;
  padding: clamp(40px, 4vw, 58px) clamp(34px, 4vw, 78px) clamp(28px, 3.4vw, 54px);
  background: #f6f6f4;
  overflow: hidden;
}
.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: min(680px, calc(100vh - 176px));
  flex-direction: column;
  justify-content: center;
  padding: 90px 0 0;
}
.hero-brand {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #181b1f;
}
.hero-brand-mark {
  position: relative;
  width: 94px;
  height: 86px;
  display: grid;
  place-items: end center;
  padding-bottom: 14px;
  font-weight: 900;
  font-size: 28px;
  line-height: .9;
  letter-spacing: -1px;
}
.hero-brand-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 3px solid #181b1f;
  border-top: 0;
  clip-path: polygon(50% 0, 100% 23%, 100% 100%, 0 100%, 0 23%);
}
.hero-brand-mark::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 44px;
  background: linear-gradient(153deg, transparent 48.5%, #181b1f 49%, #181b1f 51%, transparent 51.5%), linear-gradient(27deg, transparent 48.5%, #181b1f 49%, #181b1f 51%, transparent 51.5%);
  pointer-events: none;
}
.hero-brand-mark span { position: relative; z-index: 1; }
.hero-brand-text { display: grid; gap: 1px; font-size: 24px; line-height: 1.15; }
.hero-brand-text strong { font-size: 18px; line-height: 1; text-transform: uppercase; letter-spacing: .03em; }
.hero-brand-text small { font-size: 22px; line-height: 1.18; color: #24282d; }
.hero h1 {
  max-width: 760px;
  margin: 0 0 26px;
  color: #15191e;
  font-size: clamp(50px, 4.55vw, 80px);
  line-height: 1.17;
  letter-spacing: -.045em;
  font-weight: 800;
}
.hero-lead {
  max-width: 670px;
  margin-bottom: 0;
  color: #171b20;
  font-size: clamp(24px, 1.8vw, 34px);
  line-height: 1.55;
  letter-spacing: -.03em;
}
.hero-actions {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin: clamp(42px, 6vh, 64px) 0 24px;
}
.hero-actions .button {
  min-width: 240px;
  min-height: 60px;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 600;
  box-shadow: none;
}
.hero-actions .button-secondary {
  background: transparent;
  border-color: #25282b;
  color: #161a1f;
}
.hero-points {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0;
}
.hero-points span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .74);
  color: #3f4745;
  font-weight: 700;
  font-size: 14px;
}
.hero-media {
  position: relative;
  z-index: 2;
  width: min(100%, 820px);
  min-height: min(660px, calc(100vh - 210px));
  justify-self: end;
  align-self: center;
  border-radius: 24px;
  overflow: hidden;
  background: #dfe2dc;
  box-shadow: none;
}
.fade-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 1.1s ease, transform 5.4s ease;
  filter: saturate(.92) contrast(1.02) brightness(.98);
}
.fade-photo.is-active { opacity: 1; transform: scale(1); }

.section { padding: clamp(54px, 7vw, 96px) clamp(18px, 5vw, 70px); }
.section:nth-of-type(odd):not(.hero) { background: #f0f1ed; }
.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}
.split-head {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(260px, .58fr);
  gap: 32px;
  max-width: none;
  align-items: end;
}
.intro-grid, .catalog-grid, .packages, .reviews {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.feature-card, .project-card, .packages article, .reviews article, .steps article, .admin-card, .admin-edit, .lead-row {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.feature-card { padding: 24px; min-height: 190px; }
.feature-card > strong {
  display: block;
  color: var(--orange);
  font-size: 13px;
  margin-bottom: 16px;
}
.feature-mark {
  display: block;
  width: 34px;
  height: 6px;
  background: var(--orange);
  margin-bottom: 24px;
}
.feature-card p, .project-card p, .packages p, .steps p { font-size: 15px; }

 .module-benefits {
  position: relative;
  display: grid;
  gap: 0;
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section.module-benefits.module-benefits {
  background: #fff;
}
.module-benefits::before {
  content: "";
  position: absolute;
  right: clamp(24px, 8vw, 130px);
  top: 42px;
  width: min(360px, 32vw);
  height: min(360px, 32vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,120,67,.12), transparent 68%);
  pointer-events: none;
}
.module-benefits::after {
  content: "";
  position: absolute;
  left: clamp(18px, 6vw, 90px);
  bottom: 42px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(184,120,67,.16);
  pointer-events: none;
}
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.section-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}
.module-benefits__top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(520px, 1fr);
  gap: clamp(32px, 5vw, 78px);
  align-items: center;
}
.module-benefits h2 {
  max-width: 740px;
  color: var(--ink);
  letter-spacing: -.035em;
}
.module-benefits p {
  max-width: 680px;
  color: var(--muted);
}
.module-benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.module-benefit-card {
  position: relative;
  min-height: 245px;
  padding: 26px 24px 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, #fff 0%, #f5f5f1 100%);
  box-shadow: 0 18px 45px rgba(30, 39, 36, .07);
}
.module-benefit-card::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), rgba(184,120,67,.08));
}
.module-benefit-card::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -56px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 1px solid rgba(184,120,67,.14);
  background: rgba(184,120,67,.035);
}
.module-benefit-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}
.module-benefit-card small {
  display: block;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.module-benefit-card h3 {
  position: relative;
  z-index: 1;
  max-width: 300px;
  color: var(--ink);
  font-size: clamp(22px, 1.75vw, 30px);
  line-height: 1;
  letter-spacing: -.035em;
  margin-bottom: 16px;
}
.module-benefit-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: #5b625f;
}

.catalog-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -12px 0 30px;
}
.category-strip a {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #2e3633;
  font-size: 14px;
  font-weight: 800;
}
.category-strip a:first-child {
  background: var(--green);
  color: #fff;
}
.project-card {
  position: relative;
  display: flex;
  min-height: clamp(360px, 28vw, 470px);
  overflow: hidden;
  border: 0;
  border-radius: 24px;
  background: #dfe8e2;
  box-shadow: 0 22px 56px rgba(32, 37, 43, .12);
  isolation: isolate;
}
.project-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease, filter .55s ease;
  z-index: 0;
}
.project-card:hover .project-card__image {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.03);
}
.project-card__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(18, 22, 21, .12) 0%, rgba(18, 22, 21, .3) 42%, rgba(18, 22, 21, .86) 100%),
    linear-gradient(90deg, rgba(18, 22, 21, .86) 0%, rgba(18, 22, 21, .36) 48%, rgba(18, 22, 21, .12) 100%);
}
.project-card__link {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 12px;
  color: #fff;
  background: rgba(255, 255, 255, .16);
  backdrop-filter: blur(10px);
  font-weight: 800;
  transition: background .2s ease, transform .2s ease;
}
.project-card__link:hover {
  background: rgba(255, 255, 255, .26);
  transform: translateY(-2px);
}
.project-body {
  position: relative;
  z-index: 2;
  align-self: flex-end;
  width: 100%;
  padding: clamp(24px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  gap: 0;
  color: #fff;
}
.project-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 13px;
}
.project-category {
  color: rgba(255, 255, 255, .78);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 0;
}
.project-body h3 {
  max-width: 520px;
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -.035em;
}
.project-body p {
  max-width: 620px;
  color: rgba(255, 255, 255, .78);
}
.project-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 14px;
}
.project-meta span {
  padding: 8px 12px;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}
.project-body strong {
  flex-shrink: 0;
  margin-top: 0;
  color: #fff;
  font-size: clamp(18px, 1.5vw, 24px);
  white-space: nowrap;
}
.card-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.project-card .button {
  min-height: 46px;
  border-radius: 12px;
  box-shadow: none;
}
.project-card .button-secondary {
  border-color: rgba(255, 255, 255, .68);
  background: rgba(255, 255, 255, .14);
  color: #fff;
  backdrop-filter: blur(10px);
}
.project-card .button-small {
  background: #fff;
  color: var(--green);
}

.calc-section { background: #ebece8; }
.calculator {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .72fr) minmax(320px, .72fr);
  gap: 22px;
  align-items: stretch;
}
.calc-form, .calc-result, .final-cta, .production, .geography, .project-detail, .legal-page, .status-page {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 42px);
}
label { display: grid; gap: 8px; color: #34443e; font-weight: 800; font-size: 14px; }
input, textarea, select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}
input::placeholder, textarea::placeholder { color: #9ba29f; }
textarea { min-height: 106px; resize: vertical; }
select { cursor: pointer; }
fieldset { border: 0; padding: 0; margin: 20px 0 0; }
legend { font-weight: 800; margin-bottom: 12px; }
.calc-form { display: grid; gap: 18px; }
.option-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.check-option {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfb;
}
.check-option input { width: 18px; min-height: 18px; }
.check-option strong { color: var(--orange); font-size: 13px; }
.calc-visual {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
}
.calc-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.calc-result { align-self: start; position: sticky; top: 96px; }
.calc-result > strong { display: block; font-size: clamp(34px, 5vw, 52px); color: var(--orange); margin-bottom: 10px; }
.calc-result small { display: block; color: var(--muted); margin-bottom: 24px; }
.lead-form { display: grid; gap: 14px; }
.agree { grid-template-columns: auto 1fr; align-items: start; font-weight: 500; color: var(--muted); }
.agree input { width: 18px; min-height: 18px; margin-top: 3px; }
.hp { position: absolute; left: -2px; top: -2px; width: 1px; height: 1px; min-height: 1px; opacity: 0; pointer-events: none; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.steps .section-head { grid-column: 1 / -1; }
.steps article { padding: 24px; }
.steps span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
  margin-bottom: 18px;
}
.production-hub {
  position: relative;
  display: grid;
  gap: 34px;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
  background:
    radial-gradient(circle at 8% 12%, rgba(184, 120, 67, .28), transparent 31%),
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, .09), transparent 28%),
    linear-gradient(135deg, #18211f 0%, #25322f 54%, #121817 100%);
}
.section.production-hub.production-hub { background: linear-gradient(135deg, #18211f 0%, #25322f 54%, #121817 100%); }
.production-hub::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.82), transparent 88%);
}
.production-hub::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -180px;
  z-index: -1;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: inset 0 0 0 76px rgba(255,255,255,.025);
}
.production-hub__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .86fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}
.production-hub .section-kicker { color: #e2ad7c; }
.production-hub .section-kicker::before { background: currentColor; }
.production-hub h2 {
  max-width: 760px;
  color: #fff;
  letter-spacing: -.035em;
}
.production-hub p {
  max-width: 720px;
  color: rgba(255,255,255,.72);
}
.production-hub__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 700px;
  margin: 30px 0 28px;
}
.production-hub__facts span {
  position: relative;
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 12px 16px 12px 42px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.9);
  font-weight: 800;
  backdrop-filter: blur(10px);
}
.production-hub__facts span::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  transform: translateY(-50%);
  box-shadow: 0 0 0 5px rgba(184, 120, 67, .15);
}
.production-hub__button {
  width: fit-content;
  background: #fff;
  color: var(--green);
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
}
.production-hub__button:hover { background: #f2eee8; color: var(--green); }
.production-hub__visual {
  position: relative;
  min-height: 460px;
  align-self: stretch;
}
.production-hub__image {
  position: absolute;
  overflow: hidden;
  background: rgba(255,255,255,.08);
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
}
.production-hub__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.94) contrast(1.04);
}
.production-hub__image--main {
  inset: 0 0 54px 42px;
  border-radius: 28px;
}
.production-hub__image--small {
  left: 0;
  bottom: 0;
  width: min(280px, 48%);
  height: 190px;
  border: 10px solid rgba(24, 33, 31, .95);
  border-radius: 24px;
}
.production-hub__label {
  position: absolute;
  right: 22px;
  bottom: 18px;
  display: grid;
  gap: 4px;
  min-width: 180px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  background: rgba(255,255,255,.92);
  color: var(--green);
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
}
.production-hub__label strong {
  font-size: 28px;
  line-height: 1;
}
.production-hub__label span {
  color: #5b625f;
  font-size: 14px;
  font-weight: 700;
}
.production-hub__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px;
  background: rgba(255,255,255,.12);
  box-shadow: 0 22px 60px rgba(0,0,0,.18);
}
.production-step {
  position: relative;
  min-height: 236px;
  padding: 30px 26px 28px;
  background: rgba(255,255,255,.075);
  overflow: hidden;
}
.production-step::before {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), rgba(255,255,255,.16));
}
.production-step::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -42px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
}
.production-step__num {
  display: inline-flex;
  margin-bottom: 34px;
  color: #e2ad7c;
  font-weight: 900;
  letter-spacing: .14em;
}
.production-step h3 {
  max-width: 260px;
  color: #fff;
  font-size: clamp(28px, 2.5vw, 44px);
  line-height: .98;
  letter-spacing: -.04em;
  margin-bottom: 18px;
}
.production-step p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: rgba(255,255,255,.68);
}
.packages { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.packages .section-head { grid-column: 1 / -1; }
.packages article, .reviews article { padding: 24px; }
.geography { position: relative; overflow: hidden; min-height: 320px; }
.map-scheme {
  position: absolute;
  right: clamp(24px, 7vw, 90px);
  top: 44px;
  width: min(380px, 42vw);
  aspect-ratio: 1.6 / 1;
  border: 1px solid var(--line);
  background: radial-gradient(circle at 20% 50%, rgba(30, 39, 36, .14), transparent 22%), radial-gradient(circle at 70% 28%, rgba(184, 120, 67, .2), transparent 20%), #eef0ec;
}
.map-scheme span { position: absolute; width: 11px; height: 11px; border-radius: 50%; background: var(--orange); }
.map-scheme span:nth-child(1) { left: 24%; top: 46%; }
.map-scheme span:nth-child(2) { left: 62%; top: 28%; }
.map-scheme span:nth-child(3) { left: 75%; top: 64%; }
.map-scheme span:nth-child(4) { left: 44%; top: 70%; }
.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.gallery .section-head { grid-column: 1 / -1; }
.gallery img { width: 100%; aspect-ratio: 1.35 / 1; object-fit: cover; border-radius: var(--radius); }
.reviews { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.reviews .section-head { grid-column: 1 / -1; }
.reviews strong, .reviews span { display: block; }
.reviews span { color: var(--muted); }
.faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 10px;
  padding: 18px 20px;
}
.faq summary { cursor: pointer; font-weight: 800; }
.faq p { margin: 12px 0 0; }
.final-cta {
  display: grid;
  grid-template-columns: 1fr minmax(320px, .76fr);
  gap: 30px;
  background: var(--green);
  color: #fff;
}
.section.final-cta { background: var(--green); }
.final-cta p { color: rgba(255,255,255,.78); }
.final-cta input, .final-cta textarea { border: 0; }
.final-cta .button { background: var(--orange); color: #151817; }
.final-cta label { color: #fff; }
.final-cta .agree { color: rgba(255,255,255,.82); }

.footer {
  padding: 34px clamp(18px, 5vw, 70px);
  background: #111615;
  color: #fff;
  display: grid;
  gap: 16px;
}
.footer nav { display: flex; gap: 16px; flex-wrap: wrap; color: rgba(255,255,255,.82); }
.footer p, .footer small { color: rgba(255,255,255,.68); margin: 0; }

.project-detail {
  margin: clamp(24px, 5vw, 70px);
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1fr);
  gap: 34px;
}
.detail-gallery > img { width: 100%; aspect-ratio: 1.15 / 1; object-fit: cover; border-radius: var(--radius); }
.detail-gallery div { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 10px; }
.detail-gallery div img { aspect-ratio: 1.25 / 1; object-fit: cover; border-radius: var(--radius); cursor: pointer; }
.detail-copy h1 { font-size: clamp(38px, 5vw, 62px); }
.detail-copy h2 { font-size: 24px; margin-top: 28px; }
.back-link { display: inline-block; margin-bottom: 20px; color: var(--orange); font-weight: 800; }
.detail-form { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.legal-page, .status-page { max-width: 860px; margin: 60px auto; }
.status-page { text-align: center; }

.admin-login { min-height: 100vh; display: grid; place-items: center; padding: 20px; }
.admin-card { width: min(420px, 100%); padding: 28px; }
.admin-shell { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }
.admin-sidebar {
  background: #111615;
  color: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.admin-sidebar h1 { font-size: 24px; margin-bottom: 18px; }
.admin-sidebar a { padding: 11px 12px; border-radius: var(--radius); color: rgba(255,255,255,.78); }
.admin-sidebar a.active, .admin-sidebar a:hover { background: rgba(255,255,255,.1); color: #fff; }
.admin-content { padding: 28px; max-width: 1200px; }
.admin-edit { padding: 22px; margin-bottom: 18px; display: grid; gap: 14px; }
.admin-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.admin-actions { display: flex; gap: 12px; }
.delete-form { margin: -8px 0 22px; }
.delete-form button {
  color: #9b2c2c;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 800;
}
.json-editor { min-height: 520px; font-family: Consolas, monospace; font-size: 14px; }
.admin-success, .admin-message {
  padding: 12px 14px;
  border-radius: var(--radius);
  background: rgba(199, 131, 72, .18);
  color: #f4d3b5;
}
.admin-message { background: #fff0e6; color: #8a4815; }
.muted { color: var(--muted); font-size: 13px; }
.lead-row { padding: 16px; margin-bottom: 12px; display: grid; gap: 6px; }
.lead-row span, .lead-row small { color: var(--muted); }

@media (max-width: 1200px) {
  .site-header { grid-template-columns: auto 1fr auto; }
  .site-header .button-small { display: none; }
  .hero {
    grid-template-columns: minmax(340px, .85fr) minmax(380px, 1fr);
    gap: 34px;
    padding-left: 34px;
    padding-right: 34px;
  }
  .hero h1 { font-size: clamp(48px, 4.7vw, 68px); }
  .hero-actions { gap: 18px; }
  .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .intro-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 1024px) {
  .hero, .calculator, .project-detail, .final-cta { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 34px; }
  .hero-copy { min-height: auto; justify-content: flex-start; }
  .hero h1 { margin: 18px 0 22px; max-width: 820px; }
  .hero-actions { margin: 42px 0 22px; }
  .hero-media { width: 100%; min-height: 460px; margin-top: 30px; border-radius: 22px; box-shadow: none; }
  .calc-result { position: static; }
  .calc-visual { order: -1; }
  .steps, .packages, .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split-head { grid-template-columns: 1fr 1fr; }
  .module-benefits__top, .production-hub__top { grid-template-columns: 1fr; }
  .module-benefits__visual, .production-hub__visual { max-width: 720px; min-height: 400px; }
  .module-benefits__grid, .production-hub__steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar { position: static; }
}


@media (max-width: 768px) {
  .site-header { grid-template-columns: auto auto; }
  .brand { font-size: 18px; }
  .phone { display: none; }
  .menu-toggle {
    display: grid;
    gap: 5px;
    justify-self: end;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    padding: 11px;
  }
  .menu-toggle span { display: block; height: 2px; background: var(--ink); }
  .nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    background: var(--paper);
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }
  .nav.is-open { display: flex; }
  .hero-brand-mark { width: 76px; height: 70px; font-size: 23px; }
  .hero-brand-text small { font-size: 18px; }
  .hero h1 { font-size: clamp(40px, 9vw, 56px); margin-top: 26px; }
  .hero-lead { font-size: 22px; line-height: 1.45; }
  .hero-actions { gap: 14px; margin-top: 34px; }
  .hero-actions .button { min-width: 0; font-size: 18px; }
  .hero-media { min-height: 320px; }
  .intro-grid, .catalog-grid, .steps, .packages, .reviews, .gallery, .option-grid, .module-benefits__grid, .production-hub__steps { grid-template-columns: 1fr; }
  .split-head { grid-template-columns: 1fr; }
  .module-benefits, .production-hub { padding: 34px 18px; gap: 24px; }
  .production-hub__facts { grid-template-columns: 1fr; margin: 24px 0; }
  .module-benefits__visual, .production-hub__visual { max-width: none; min-height: 320px; }
  .module-benefits__visual img { min-height: 320px; }
  .module-benefit-card { min-height: auto; padding: 24px 20px 22px; }
  .module-benefit-card__num { margin-bottom: 22px; }
  .module-benefit-card h3 { font-size: clamp(28px, 7vw, 38px); }
  .production-hub__image--main { inset: 0 0 42px 22px; border-radius: 22px; }
  .production-hub__image--small { width: 150px; height: 112px; border-width: 6px; border-radius: 18px; }
  .production-hub__label { right: 10px; bottom: 8px; min-width: 145px; padding: 12px 14px; border-radius: 16px; }
  .production-hub__label strong { font-size: 21px; }
  .production-step { min-height: auto; padding: 24px 20px 22px; }
  .production-step__num { margin-bottom: 22px; }
  .production-step h3 { font-size: clamp(30px, 8vw, 42px); }
  .final-cta, .calc-form, .calc-result { padding: 22px; }
  .map-scheme { position: relative; right: auto; top: auto; width: 100%; margin-top: 24px; }
  .admin-grid { grid-template-columns: 1fr; }
  .project-detail { margin: 18px; padding: 18px; }
}

@media (max-width: 480px) {
  .module-benefits__visual, .production-hub__visual { min-height: 270px; }
  .production-hub__image--small { display: none; }
  .production-hub__image--main { inset: 0; }
  .production-hub__label { position: relative; right: auto; bottom: auto; margin-top: 14px; width: 100%; }
  .module-benefits__badge { position: static; margin: 14px 0 0; }
  .module-benefits__visual { overflow: visible; background: transparent; box-shadow: none; }
  .module-benefits__visual img { border-radius: 22px; min-height: 270px; }
  h1 { font-size: 38px; }
  h2 { font-size: 30px; }
  .hero { padding: 26px 16px 30px; }
  .hero-brand { gap: 12px; }
  .hero-brand-mark { width: 64px; height: 60px; font-size: 18px; }
  .hero-brand-text strong { font-size: 14px; }
  .hero-brand-text small { font-size: 16px; }
  .hero h1 { font-size: 36px; line-height: 1.18; margin: 20px 0 16px; }
  .hero-lead { font-size: 20px; }
  .hero-actions, .card-actions { flex-direction: column; }
  .hero-actions .button { min-height: 56px; }
  .button { width: 100%; }
  .hero-media { min-height: 260px; border-radius: 18px; }
  .section { padding-left: 14px; padding-right: 14px; }
  .site-header { padding: 14px; }
}

body.admin-body, .admin-body .admin-shell, .admin-body .admin-content { background: #eef1ea !important; color: #172119 !important; }
.admin-body .admin-tree, .admin-body .admin-tree-group, .admin-body .admin-tree-field,
.admin-body .admin-tree-group summary, .admin-body .admin-project, .admin-body .admin-project summary,
.admin-body .admin-dashboard a { color: #172119 !important; }
.admin-body .admin-tree-group > summary small { color: #718078 !important; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

/* === Unified catalog-style refresh, without changing hero and catalog === */
main > .section:not(#catalog):not(.hero):not(.production-hub):not(.final-cta):not(.geography) {
  background: #fff;
}
main > .section:not(#catalog):not(.hero) .section-head {
  max-width: none;
}
main > .section:not(#catalog):not(.hero) .section-head h2,
main > .section:not(#catalog):not(.hero) > h2 {
  letter-spacing: -.04em;
}

.calc-section {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.calc-section::before {
  content: "";
  position: absolute;
  right: -180px;
  top: 34px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 120, 67, .16), transparent 66%);
  pointer-events: none;
}
.calc-section .section-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(280px, .6fr);
  gap: 28px;
  align-items: end;
}
.calc-section .section-head p {
  margin-bottom: 8px;
}
.calculator {
  position: relative;
  z-index: 1;
  padding: 12px;
  border: 1px solid rgba(223, 226, 221, .9);
  border-radius: 30px;
  background: linear-gradient(180deg, #f7f7f3 0%, #ffffff 100%);
  box-shadow: 0 24px 62px rgba(32, 37, 43, .09);
}
.calc-form,
.calc-result,
.calc-visual {
  border: 0;
  border-radius: 24px;
  box-shadow: none;
}
.calc-form {
  padding: clamp(24px, 3vw, 34px);
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(223, 226, 221, .9);
}
.calc-form label,
.lead-form label {
  letter-spacing: -.01em;
}
.calc-form input,
.calc-form textarea,
.calc-form select,
.lead-form input,
.lead-form textarea,
.lead-form select {
  border-radius: 14px;
  background: #f8f8f5;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.calc-form input:focus,
.calc-form textarea:focus,
.calc-form select:focus,
.lead-form input:focus,
.lead-form textarea:focus,
.lead-form select:focus {
  outline: 0;
  border-color: rgba(184, 120, 67, .72);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(184, 120, 67, .12);
}
.check-option {
  border-radius: 16px;
  background: #f7f7f3;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.check-option:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 120, 67, .36);
  background: #fff;
}
.calc-visual {
  position: relative;
  overflow: hidden;
  background: #dfe8e2;
}
.calc-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 22, 21, .02), rgba(18, 22, 21, .34));
  pointer-events: none;
}
.calc-visual img {
  min-height: 100%;
  transition: transform .55s ease;
}
.calculator:hover .calc-visual img {
  transform: scale(1.035);
}
.calc-result {
  align-self: stretch;
  top: 92px;
  padding: clamp(24px, 3vw, 34px);
  background:
    radial-gradient(circle at 92% 0%, rgba(184, 120, 67, .32), transparent 34%),
    linear-gradient(145deg, #1a2321 0%, #2a3532 100%);
  color: #fff;
}
.calc-result p,
.calc-result small {
  color: rgba(255, 255, 255, .72);
}
.calc-result > strong {
  color: #fff;
  letter-spacing: -.05em;
}
.calc-result .lead-form {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.calc-result .lead-form label {
  color: #fff;
}
.calc-result .lead-form .agree {
  color: rgba(255,255,255,.78);
}
.calc-result .button {
  background: #fff;
  color: var(--green);
  box-shadow: none;
}

.steps {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.steps::before {
  content: "";
  position: absolute;
  left: clamp(18px, 5vw, 70px);
  right: clamp(18px, 5vw, 70px);
  top: clamp(54px, 7vw, 96px);
  height: 1px;
  background: linear-gradient(90deg, var(--orange), rgba(184,120,67,.08));
}
.steps .section-head {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}
.steps article {
  position: relative;
  min-height: 250px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, #fff 0%, #f6f6f2 100%);
  box-shadow: 0 18px 45px rgba(30, 39, 36, .065);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.steps article:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 120, 67, .34);
  box-shadow: 0 24px 58px rgba(30, 39, 36, .1);
}
.steps article::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -54px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 1px solid rgba(184, 120, 67, .14);
  background: rgba(184, 120, 67, .035);
}
.steps span {
  width: 44px;
  height: 44px;
  margin-bottom: 30px;
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 26px rgba(30, 39, 36, .16);
}
.steps h3 {
  position: relative;
  z-index: 1;
  font-size: clamp(24px, 2vw, 34px);
  letter-spacing: -.035em;
}
.steps p {
  position: relative;
  z-index: 1;
}

.section.production-hub.production-hub,
.section.geography,
.section.final-cta {
  width: calc(100% - clamp(28px, 6vw, 96px));
  margin-left: auto;
  margin-right: auto;
  border-radius: 30px;
}
.section.production-hub.production-hub {
  margin-top: clamp(22px, 4vw, 48px);
  margin-bottom: clamp(22px, 4vw, 48px);
  box-shadow: 0 30px 80px rgba(18, 24, 23, .18);
}
.production-hub__image--main,
.production-hub__image--small,
.production-hub__label,
.production-hub__steps,
.production-step,
.production-hub__facts span {
  border-radius: 24px;
}
.production-hub__button {
  border-radius: 14px;
}

.packages {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.packages::before {
  content: "";
  position: absolute;
  right: clamp(20px, 7vw, 90px);
  top: clamp(58px, 8vw, 112px);
  width: 290px;
  height: 290px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 39, 36, .08), transparent 68%);
  pointer-events: none;
}
.packages .section-head,
.packages article {
  position: relative;
  z-index: 1;
}
.packages article {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  overflow: hidden;
  border: 0;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(18, 22, 21, .1) 0%, rgba(18, 22, 21, .78) 100%),
    radial-gradient(circle at 92% 12%, rgba(184, 120, 67, .36), transparent 30%),
    linear-gradient(135deg, #dfe8e2 0%, #b8c3bc 100%);
  box-shadow: 0 22px 56px rgba(32, 37, 43, .12);
  color: #fff;
}
.packages article::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto auto;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .14);
  backdrop-filter: blur(10px);
}
.packages article:nth-of-type(2) {
  background:
    linear-gradient(180deg, rgba(18, 22, 21, .08) 0%, rgba(18, 22, 21, .82) 100%),
    radial-gradient(circle at 8% 12%, rgba(184, 120, 67, .42), transparent 32%),
    linear-gradient(135deg, #ccd4cf 0%, #87958e 100%);
}
.packages article:nth-of-type(3) {
  background:
    linear-gradient(180deg, rgba(18, 22, 21, .08) 0%, rgba(18, 22, 21, .82) 100%),
    radial-gradient(circle at 84% 16%, rgba(255, 255, 255, .18), transparent 32%),
    linear-gradient(135deg, #2a3532 0%, #121817 100%);
}
.packages article:nth-of-type(4) {
  background:
    linear-gradient(180deg, rgba(18, 22, 21, .1) 0%, rgba(18, 22, 21, .8) 100%),
    radial-gradient(circle at 76% 8%, rgba(184, 120, 67, .38), transparent 32%),
    linear-gradient(135deg, #b98b63 0%, #3c4642 100%);
}
.packages h3 {
  color: #fff;
  font-size: clamp(26px, 2.3vw, 38px);
  letter-spacing: -.04em;
}
.packages p {
  color: rgba(255,255,255,.76);
  margin-bottom: 0;
}

.section.geography {
  position: relative;
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, .7fr);
  gap: 32px;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(18, 22, 21, .94) 0%, rgba(18, 22, 21, .72) 48%, rgba(18, 22, 21, .28) 100%),
    radial-gradient(circle at 86% 18%, rgba(184, 120, 67, .32), transparent 28%),
    linear-gradient(135deg, #24312e 0%, #101514 100%);
  color: #fff;
  box-shadow: 0 28px 72px rgba(18, 24, 23, .16);
}
.geography h2,
.geography p {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.geography h2 {
  color: #fff;
}
.geography p {
  color: rgba(255,255,255,.76);
  font-size: 18px;
}
.map-scheme {
  position: relative;
  right: auto;
  top: auto;
  z-index: 1;
  width: 100%;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,.18), transparent 22%),
    radial-gradient(circle at 70% 28%, rgba(184, 120, 67, .36), transparent 20%),
    linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.04));
  backdrop-filter: blur(10px);
}
.map-scheme span {
  box-shadow: 0 0 0 8px rgba(184, 120, 67, .2), 0 12px 28px rgba(0,0,0,.18);
}

.gallery {
  background: #fff;
}
.gallery img {
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(30, 39, 36, .08);
  transition: transform .28s ease, box-shadow .28s ease;
}
.gallery img:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(30, 39, 36, .12);
}

.reviews {
  background: #fff;
}
.reviews article {
  position: relative;
  min-height: 240px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, #fff 0%, #f6f6f2 100%);
  box-shadow: 0 18px 45px rgba(30, 39, 36, .065);
}
.reviews article::before {
  content: "“";
  position: absolute;
  right: 22px;
  top: 10px;
  color: rgba(184,120,67,.18);
  font-size: 120px;
  line-height: 1;
  font-weight: 900;
}
.reviews article p,
.reviews article strong,
.reviews article span {
  position: relative;
  z-index: 1;
}
.reviews article p {
  color: #3f4745;
  font-size: 18px;
}
.reviews strong {
  margin-top: 22px;
  color: var(--ink);
  font-size: 18px;
}

.faq {
  background: #fff;
}
.faq details {
  border-radius: 20px;
  border-color: rgba(223, 226, 221, .9);
  background: linear-gradient(180deg, #fff 0%, #f7f7f3 100%);
  box-shadow: 0 14px 34px rgba(30, 39, 36, .045);
}
.faq summary {
  list-style: none;
  position: relative;
  padding-right: 44px;
  font-size: 18px;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  transform: translateY(-50%);
}
.faq details[open] summary::after {
  content: "−";
}

.section.final-cta {
  position: relative;
  overflow: hidden;
  margin-top: clamp(22px, 4vw, 48px);
  margin-bottom: clamp(22px, 4vw, 48px);
  background:
    radial-gradient(circle at 88% 0%, rgba(184, 120, 67, .32), transparent 34%),
    linear-gradient(135deg, #18211f 0%, #25322f 100%);
  box-shadow: 0 30px 80px rgba(18, 24, 23, .18);
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}
.final-cta > *,
.final-cta .lead-form {
  position: relative;
  z-index: 1;
}
.final-cta .lead-form {
  padding: clamp(22px, 3vw, 30px);
  border-radius: 24px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
}
.final-cta .lead-form label {
  color: var(--green);
}
.final-cta .lead-form .agree {
  color: var(--muted);
}
.final-cta input,
.final-cta textarea {
  border: 1px solid var(--line);
  background: #f8f8f5;
}
.final-cta .button {
  border-radius: 14px;
  background: var(--green);
  color: #fff;
}

.footer {
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
}

.project-detail,
.legal-page,
.status-page {
  border-radius: 28px;
  box-shadow: 0 22px 56px rgba(32, 37, 43, .09);
}
.detail-gallery > img,
.detail-gallery div img {
  border-radius: 24px;
}

@media (max-width: 1024px) {
  .calc-section .section-head,
  .section.geography {
    grid-template-columns: 1fr;
  }
  .calculator {
    grid-template-columns: 1fr;
  }
  .section.production-hub.production-hub,
  .section.geography,
  .section.final-cta {
    width: calc(100% - 36px);
  }
  .calc-visual img {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .service-hub .service-panel--cycle > summary strong,
  .service-hub .service-panel--cycle[open] > summary strong {
    max-width: 225px !important;
    font-size: 28px !important;
    line-height: 1.02 !important;
  }
}

/* Исправления экрана входа и полей админки */
body.admin-body:has(.admin-login) {
  background: #03291f !important;
}

.admin-login {
  min-height: 100svh !important;
  padding: 24px 16px !important;
}

.admin-login .admin-card {
  width: min(460px, calc(100vw - 32px)) !important;
  padding: clamp(26px, 5vw, 40px) !important;
  gap: 18px !important;
  overflow: hidden;
  border: 1px solid rgba(211, 154, 36, .32) !important;
  border-radius: 28px !important;
  background: #151513 !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28) !important;
}

.admin-login .admin-card h1 {
  width: 100%;
  max-width: 100%;
  margin: 0 0 12px !important;
  color: #f8f5ed !important;
  font-size: clamp(38px, 7vw, 54px) !important;
  line-height: .98 !important;
  letter-spacing: -.035em !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

.admin-login .admin-card .admin-eyebrow {
  margin: 0 !important;
  color: #d9a52c !important;
}

.admin-login .admin-card label {
  display: grid !important;
  gap: 8px !important;
  margin: 0 !important;
  color: #f4efe4 !important;
  font-size: 14px !important;
  font-weight: 800 !important;
}

.admin-login .admin-card input,
.admin-body .admin-edit input:not([type=checkbox]),
.admin-body .admin-edit textarea,
.admin-body .admin-tree-field input:not([type=checkbox]),
.admin-body .admin-tree-field textarea {
  color: #172119 !important;
  -webkit-text-fill-color: #172119 !important;
  caret-color: #c98b10 !important;
  opacity: 1 !important;
}

.admin-login .admin-card input {
  min-height: 52px !important;
  padding: 13px 16px !important;
  border: 2px solid transparent !important;
  border-radius: 16px !important;
  background: #fff !important;
  font-size: 16px !important;
}

.admin-login .admin-card input:focus {
  border-color: #d39a24 !important;
  outline: 3px solid rgba(211, 154, 36, .18) !important;
}

.admin-login .admin-card .button {
  min-width: 132px;
  margin-top: 2px;
}

@media (max-width: 520px) {
  .admin-login .admin-card {
    padding: 26px 22px !important;
    border-radius: 22px !important;
  }

  .admin-login .admin-card h1 {
    font-size: clamp(36px, 13vw, 48px) !important;
  }
}

@media (max-width: 760px) {
  .admin-body .admin-sidebar form {
    display: block !important;
    flex: 0 0 auto;
    margin: 0 !important;
  }

  .admin-body .admin-sidebar .admin-logout {
    width: auto;
    min-height: 42px;
    white-space: nowrap;
  }
}

/* Корректировки каталога и конфигуратора от 28.07.2026 */
.hero .hero-slide:is(video) {
  object-position: center bottom !important;
}

.series-block__head {
  display: block !important;
}

.series-block__head > div {
  max-width: 980px;
}

.series-model__name {
  display: flex !important;
  align-items: center;
  gap: 12px;
}

.calc-model-name,
.gallery-model-name {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
}

.calc-model-name .sg-title-logo,
.gallery-model-name .sg-title-logo {
  width: 1.45em;
  height: 1.45em;
}

#calc-summary-title .sg-title-logo {
  width: .82em;
  height: .82em;
  vertical-align: -.06em;
}

.sg-title-logo {
  position: relative;
  flex: 0 0 auto;
  display: inline-block;
  width: .9em;
  height: .9em;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(226, 186, 98, .42);
}

.sg-title-logo img {
  display: block;
  width: auto;
  max-width: none;
  height: 100%;
}

.series-model__price {
  display: block;
  margin-top: 8px;
  color: #e2ba62;
  font-size: clamp(14px, 1.15vw, 18px);
  font-weight: 800;
  line-height: 1.25;
}

.series-model__gift {
  margin-top: 12px;
  color: rgba(244, 240, 232, .76);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.series-model__gift-note {
  margin-top: 20px !important;
  padding: 16px 18px;
  border: 1px solid rgba(226, 186, 98, .28);
  border-radius: 14px;
  background: rgba(226, 186, 98, .08);
  color: #f0cf82 !important;
  font-size: 14px !important;
  font-weight: 750;
  line-height: 1.55 !important;
}

.gallery-showcase__item.is-monochrome img {
  filter: grayscale(1) contrast(1.06);
}

.calc-model-fields {
  display: grid;
  gap: 24px;
}

.calc-option-card.is-disabled {
  opacity: .38;
  cursor: not-allowed;
  filter: grayscale(.85);
}

.calc-option-card.is-disabled:hover {
  transform: none;
}

.calc-field-hint {
  margin: 12px 0 0;
  color: rgba(255,255,255,.68);
  font-size: 14px;
}

.calc-section .calc-result {
  transition: box-shadow .35s ease, transform .35s ease;
}

.calc-section .calc-result.is-highlighted {
  box-shadow: 0 0 0 2px rgba(226, 186, 98, .9), 0 24px 70px rgba(0, 0, 0, .32);
  transform: translateY(-4px);
}

.service-payment__finance {
  margin-top: 22px !important;
  padding: 18px 20px;
  border: 1px solid rgba(226, 186, 98, .34);
  border-radius: 18px;
  background: rgba(226, 186, 98, .08);
}

.lead-success-dialog {
  width: min(560px, calc(100vw - 32px));
  padding: 38px;
  border: 1px solid rgba(226, 186, 98, .58);
  border-radius: 28px;
  color: #f8f3e9;
  background: rgba(4, 38, 28, .97);
  box-shadow: 0 32px 100px rgba(0, 0, 0, .55);
  text-align: center;
}

.lead-success-dialog::backdrop {
  background: rgba(0, 12, 8, .74);
  backdrop-filter: blur(7px);
}

.lead-success-dialog__close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  color: #f8f3e9;
  background: transparent;
  font-size: 30px;
  cursor: pointer;
}

.lead-success-dialog__mark {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin: 0 auto 20px;
  border-radius: 50%;
  color: #05271d;
  background: linear-gradient(135deg, #f2d281, #c58a0b);
  font-size: 32px;
  font-weight: 900;
}

.lead-success-dialog h2 {
  margin: 0;
  color: #fffaf0;
  font-size: clamp(25px, 4vw, 38px);
  line-height: 1.05;
}

.lead-success-dialog p {
  margin: 18px auto 24px;
  color: rgba(255,255,255,.76);
  line-height: 1.55;
}

.lead-success-dialog__button {
  min-width: 180px;
}

@media (max-width: 640px) {
  .series-model__name {
    gap: 9px;
  }

  .lead-success-dialog {
    padding: 34px 22px 26px;
    border-radius: 22px;
  }
}

/* === Мобильный «Полный цикл работ» === */
@media (max-width: 640px) {
  .service-panel--cycle > summary,
  .service-panel--cycle[open] > summary {
    position: relative;
    min-height: 132px;
    padding: 20px 68px 20px 18px;
    grid-template-columns: minmax(0, 1fr);
  }

  .service-panel--cycle > summary strong,
  .service-panel--cycle[open] > summary strong {
    max-width: 225px;
    font-size: 28px;
    line-height: 1.02;
    letter-spacing: -.035em;
  }

  .service-panel--cycle > summary .service-panel__arrow {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
  }

  .service-panel--cycle[open] > summary .service-panel__arrow {
    transform: translateY(-50%) rotate(180deg);
  }

  .service-cycle-production.section {
    width: 100% !important;
    max-width: none !important;
    padding: 32px 16px 22px !important;
    overflow: hidden !important;
  }

  .service-cycle-production::after {
    display: none !important;
  }

  .service-cycle-production .production-hub__top {
    display: block !important;
  }

  .service-cycle-production .section-kicker {
    margin-bottom: 18px !important;
    white-space: nowrap;
    font-size: 10px !important;
    letter-spacing: .16em !important;
  }

  .service-cycle-production .production-hub__copy h2 {
    max-width: 100% !important;
    margin-bottom: 18px !important;
    font-size: clamp(29px, 9vw, 34px) !important;
    line-height: 1.04 !important;
    letter-spacing: -.04em !important;
  }

  .service-cycle-production .production-hub__copy > p {
    font-size: 15px !important;
    line-height: 1.58 !important;
  }

  .service-cycle-production .production-hub__facts {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin: 24px 0 18px !important;
  }

  .service-cycle-production .production-hub__facts span {
    min-height: 0 !important;
    padding: 14px 14px 14px 42px !important;
    border-radius: 18px !important;
    font-size: 15px !important;
    line-height: 1.35 !important;
  }

  .service-cycle-production .production-hub__button {
    width: 100% !important;
    min-height: 50px;
    justify-content: center !important;
  }

  .service-cycle-production .production-hub__visual {
    min-height: 0 !important;
    max-width: none !important;
    margin-top: 28px;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(108px, .72fr);
    grid-template-areas:
      "main main"
      "small label";
    gap: 10px;
  }

  .service-cycle-production .production-hub__image {
    position: relative !important;
    inset: auto !important;
    box-shadow: none !important;
  }

  .service-cycle-production .production-hub__image--main {
    grid-area: main;
    width: 100% !important;
    height: 280px !important;
    border-radius: 20px !important;
  }

  .service-cycle-production .production-hub__image--small {
    grid-area: small;
    width: 100% !important;
    height: 108px !important;
    display: block !important;
    border: 4px solid rgba(24, 33, 31, .95) !important;
    border-radius: 16px !important;
  }

  .service-cycle-production .production-hub__label {
    position: relative !important;
    inset: auto !important;
    grid-area: label;
    width: auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 14px !important;
    align-content: center;
    border-radius: 16px !important;
  }

  .service-cycle-production .production-hub__label strong {
    font-size: 22px !important;
  }

  .service-cycle-production .production-hub__label span {
    font-size: 11px !important;
    line-height: 1.3;
  }

  .service-cycle-production .production-hub__steps {
    margin-top: 26px !important;
    grid-template-columns: 1fr !important;
    border-radius: 18px !important;
  }

  .service-cycle-production .production-step {
    min-height: 0 !important;
    padding: 22px 18px !important;
  }

  .service-cycle-production .production-step__num {
    margin-bottom: 14px !important;
  }

  .service-cycle-production .production-step h3 {
    font-size: 26px !important;
  }
}

@media (max-width: 768px) {
  .calculator {
    padding: 8px;
    border-radius: 24px;
  }
  .calc-form,
  .calc-result,
  .calc-visual,
  .steps article,
  .packages article,
  .reviews article,
  .faq details,
  .final-cta .lead-form {
    border-radius: 20px;
  }
  .steps::before,
  .packages::before,
  .calc-section::before {
    display: none;
  }
  .steps article,
  .packages article {
    min-height: auto;
  }
  .section.production-hub.production-hub,
  .section.geography,
  .section.final-cta {
    width: calc(100% - 28px);
    border-radius: 24px;
  }
  .section.geography {
    min-height: auto;
  }
  .final-cta .lead-form {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .section.production-hub.production-hub,
  .section.geography,
  .section.final-cta {
    width: calc(100% - 20px);
  }
  .calc-visual img {
    min-height: 260px;
  }
  .reviews article p {
    font-size: 16px;
  }
}

/* === Minimal refresh: remove decorative gradients from non-hero/non-catalog blocks === */
main > .section:not(.hero):not(#catalog) {
  background: #fff;
}

.module-benefits::before,
.module-benefits::after,
.calc-section::before,
.packages::before,
.steps::before,
.steps article::after,
.final-cta::before,
.production-hub::before,
.production-hub::after {
  display: none;
}

.module-benefit-card,
.steps article,
.reviews article,
.faq details,
.calc-form,
.calculator,
.calc-result,
.final-cta .lead-form {
  background: #fff;
  border: 1px solid rgba(223, 226, 221, .95);
  box-shadow: 0 14px 38px rgba(32, 37, 43, .06);
}

.module-benefit-card::before {
  background: var(--orange);
}
.module-benefit-card::after {
  display: none;
}

.calc-section {
  background: #fff;
}
.calculator {
  padding: 14px;
  border-radius: 30px;
}
.calc-form,
.calc-visual,
.calc-result {
  border-radius: 24px;
}
.calc-result {
  background: #1e2724;
  color: #fff;
  border-color: #1e2724;
  box-shadow: 0 18px 48px rgba(30, 39, 36, .16);
}
.calc-result p,
.calc-result small {
  color: rgba(255, 255, 255, .74);
}
.calc-result > strong {
  color: #fff;
}
.calc-result .lead-form label {
  color: #fff;
}
.calc-result .button {
  background: #fff;
  color: var(--green);
}
.calc-visual::after {
  background: rgba(18, 22, 21, .18);
}

.steps article {
  min-height: 230px;
  padding: 28px;
  border-radius: 24px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.steps article:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 120, 67, .38);
  box-shadow: 0 18px 44px rgba(32, 37, 43, .09);
}
.steps span {
  background: #f4eee8;
  color: var(--orange);
  box-shadow: none;
  border: 1px solid rgba(184, 120, 67, .18);
}
.steps h3 {
  font-size: clamp(22px, 1.8vw, 30px);
}

.section.production-hub.production-hub {
  background: #17201e;
  box-shadow: 0 24px 64px rgba(18, 24, 23, .18);
}
.production-hub__facts span,
.production-step,
.production-hub__steps {
  background: rgba(255, 255, 255, .07);
}
.production-step::before {
  background: var(--orange);
}

.packages {
  background: #fff;
}
.packages article,
.packages article:nth-of-type(2),
.packages article:nth-of-type(3),
.packages article:nth-of-type(4) {
  min-height: auto;
  padding: 0;
  display: grid;
  grid-template-rows: 210px 1fr;
  justify-content: stretch;
  overflow: hidden;
  border: 1px solid rgba(223, 226, 221, .95);
  border-radius: 24px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 16px 42px rgba(32, 37, 43, .07);
}
.packages article::before {
  display: none;
}
.packages article > img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}
.packages article > div {
  padding: 24px;
}
.packages h3 {
  color: var(--ink);
  font-size: clamp(24px, 2vw, 32px);
  letter-spacing: -.035em;
}
.packages p {
  color: var(--muted);
}

.section.geography {
  min-height: auto;
  grid-template-columns: minmax(0, .82fr) minmax(320px, .72fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: stretch;
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(223, 226, 221, .95);
  box-shadow: 0 18px 48px rgba(32, 37, 43, .07);
}
.geography__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.geography h2 {
  color: var(--ink);
}
.geography p {
  color: var(--muted);
}
.geography__points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}
.geography__points span {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f8f8f5;
  color: #3f4745;
  font-weight: 800;
}
.geography-photo {
  min-height: 360px;
  overflow: hidden;
  border-radius: 24px;
  background: #eef0ec;
}
.geography-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.map-scheme {
  display: none;
}

.reviews article,
.faq details {
  background: #fff;
}
.reviews article::before {
  color: rgba(184, 120, 67, .13);
}

.section.final-cta {
  background: #17201e;
  box-shadow: 0 24px 64px rgba(18, 24, 23, .18);
}
.final-cta .lead-form {
  background: #fff;
}
.final-cta input,
.final-cta textarea {
  background: #f8f8f5;
}
.final-cta .button {
  background: var(--green);
  color: #fff;
}

@media (max-width: 1024px) {
  .section.geography {
    grid-template-columns: 1fr;
  }
  .geography-photo {
    min-height: 320px;
  }
}

@media (max-width: 768px) {
  .geography__points {
    grid-template-columns: 1fr;
  }
  .packages article,
  .packages article:nth-of-type(2),
  .packages article:nth-of-type(3),
  .packages article:nth-of-type(4) {
    grid-template-rows: 220px 1fr;
  }
  .section.production-hub.production-hub,
  .section.geography,
  .section.final-cta {
    width: calc(100% - 28px);
    border-radius: 24px;
  }
}


/* === june-25 text/map fixes === */
.section.production-hub.production-hub,
.section.final-cta {
  position: relative;
}
.section.production-hub.production-hub h2,
.section.production-hub.production-hub .production-hub__copy h2,
.section.production-hub.production-hub p,
.section.production-hub.production-hub .production-hub__copy p,
.section.production-hub.production-hub .section-kicker,
.section.final-cta h2,
.section.final-cta > div p,
.section.final-cta > div {
  color: #ffffff;
}
.section.production-hub.production-hub p {
  color: rgba(255,255,255,.86);
}
.section.final-cta > div p,
.section.final-cta .agree {
  color: rgba(255,255,255,.84);
}
.section.final-cta .lead-form {
  background: #ffffff;
}
.section.final-cta .lead-form label {
  color: var(--ink);
}

.section.geography {
  min-height: auto;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  align-items: center;
  gap: clamp(22px, 3vw, 42px);
  padding-top: 28px;
  padding-bottom: 28px;
}
.geography__copy {
  max-width: 620px;
}
.geography__copy h2 {
  margin-bottom: 14px;
}
.geography__copy p {
  margin: 0;
  font-size: 18px;
  line-height: 1.65;
}
.geography__points {
  display: none !important;
}
.geography-photo {
  min-height: 0;
  height: 190px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background: #f6f6f2;
}
.geography-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .section.geography {
    grid-template-columns: 1fr;
  }
  .geography-photo {
    height: 220px;
  }
}

@media (max-width: 640px) {
  .geography-photo {
    height: 170px;
    padding: 14px;
  }
  .geography__copy p {
    font-size: 16px;
  }
}

/* === final readability and Russia map scale fix === */
.section.production-hub.production-hub {
  background: #ffffff;
  color: var(--ink);
  border: 1px solid rgba(223, 226, 221, .95);
  box-shadow: 0 18px 52px rgba(32, 37, 43, .08);
}
.section.production-hub.production-hub h2,
.section.production-hub.production-hub .production-hub__copy h2,
.section.production-hub.production-hub p,
.section.production-hub.production-hub .production-hub__copy p,
.section.production-hub.production-hub .section-kicker,
.section.production-hub.production-hub .production-step h3,
.section.production-hub.production-hub .production-step p {
  color: var(--ink);
}
.section.production-hub.production-hub p,
.section.production-hub.production-hub .production-step p {
  color: var(--muted);
}
.section.production-hub.production-hub .section-kicker {
  color: var(--orange);
}
.production-hub__facts span,
.production-step,
.production-hub__steps {
  background: #f8f8f5;
  border: 1px solid rgba(223, 226, 221, .95);
  color: var(--ink);
}
.production-hub__facts span::before {
  background: var(--orange);
}
.production-hub__button {
  background: var(--green);
  color: #fff;
}
.production-hub__button:hover {
  background: #24332f;
  color: #fff;
}
.production-hub__label {
  background: rgba(255,255,255,.94);
  color: var(--ink);
  border: 1px solid rgba(223, 226, 221, .95);
}
.production-hub__label span {
  color: var(--muted);
}

.section.final-cta {
  background: #ffffff;
  color: var(--ink);
  border: 1px solid rgba(223, 226, 221, .95);
  box-shadow: 0 18px 52px rgba(32, 37, 43, .08);
}
.section.final-cta h2,
.section.final-cta > div,
.section.final-cta > div p,
.section.final-cta label,
.section.final-cta .agree {
  color: var(--ink);
}
.section.final-cta > div p,
.section.final-cta .agree {
  color: var(--muted);
}
.section.final-cta .lead-form {
  background: #f8f8f5;
  border: 1px solid rgba(223, 226, 221, .95);
  box-shadow: none;
}
.section.final-cta input,
.section.final-cta textarea {
  background: #ffffff;
}
.section.final-cta .button {
  background: var(--green);
  color: #fff;
}

.section.geography {
  grid-template-columns: minmax(330px, .62fr) minmax(0, 1.38fr);
  min-height: 246px;
  padding: clamp(26px, 3vw, 38px) clamp(28px, 4vw, 54px);
  gap: clamp(26px, 3vw, 46px);
  align-items: center;
}
.geography__copy {
  max-width: 520px;
}
.geography-photo {
  align-self: stretch;
  width: 100%;
  height: auto;
  min-height: 206px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}
.geography-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  opacity: .92;
}

@media (max-width: 1024px) {
  .section.geography {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .geography-photo {
    min-height: 230px;
  }
  .geography-photo img {
    object-position: center;
  }
}

@media (max-width: 640px) {
  .geography-photo {
    min-height: 170px;
  }
}


/* === contacts and legal placeholder block === */
.final-cta__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.final-contacts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}
.final-contact {
  padding: 18px 20px;
  border: 1px solid rgba(223, 226, 221, .95);
  border-radius: 22px;
  background: #f8f8f5;
}
.final-contact span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}
.final-contact strong {
  display: block;
  color: var(--ink);
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.2;
  letter-spacing: -.03em;
}

.legal-placeholder {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: stretch;
  background: #f8f8f5;
  border: 1px solid rgba(223, 226, 221, .95);
  box-shadow: 0 18px 52px rgba(32, 37, 43, .06);
}
.legal-placeholder__head {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.legal-placeholder .section-kicker {
  color: var(--orange);
}
.legal-placeholder .section-kicker::before {
  background: currentColor;
}
.legal-placeholder h2 {
  margin: 12px 0 16px;
  font-size: clamp(34px, 3.2vw, 58px);
  line-height: .98;
  letter-spacing: -.055em;
  color: var(--ink);
}
.legal-placeholder p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.legal-placeholder__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.legal-placeholder__grid article {
  min-height: 150px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(223, 226, 221, .95);
  border-radius: 24px;
  background: #ffffff;
}
.legal-placeholder__grid span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}
.legal-placeholder__grid strong {
  color: var(--ink);
  font-size: clamp(20px, 1.8vw, 30px);
  line-height: 1.15;
  letter-spacing: -.04em;
}

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

@media (max-width: 768px) {
  .final-contacts,
  .legal-placeholder__grid {
    grid-template-columns: 1fr;
  }
  .legal-placeholder {
    width: calc(100% - 28px);
    border-radius: 24px;
  }
}

/* === full legal documents pages === */
.legal-body {
  background: var(--bg);
  overflow-x: hidden;
}
.legal-header.site-header {
  grid-template-columns: auto minmax(0, 1fr) auto;
}
.legal-header__nav {
  min-width: 0;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 8px;
}
.legal-header__nav a,
.legal-footer nav a {
  overflow-wrap: anywhere;
  word-break: normal;
}
.legal-header__button {
  white-space: nowrap;
}
.legal-document {
  width: min(100% - 36px, 1500px);
  margin: clamp(24px, 4vw, 54px) auto clamp(38px, 5vw, 74px);
  display: grid;
  gap: clamp(20px, 3vw, 34px);
}
.legal-hero-card {
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid rgba(223, 226, 221, .95);
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 22px 56px rgba(32, 37, 43, .08);
}
.legal-hero-card .section-kicker {
  color: var(--orange);
}
.legal-hero-card .section-kicker::before {
  background: currentColor;
}
.legal-hero-card h1 {
  max-width: 1120px;
  margin: 14px 0 22px;
  font-size: clamp(36px, 5.2vw, 86px);
  line-height: .96;
  letter-spacing: -.06em;
  overflow-wrap: anywhere;
}
.legal-hero-card p {
  max-width: 880px;
  margin-bottom: 0;
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.58;
}
.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.legal-meta span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8f8f5;
  color: #3f4745;
  font-size: 14px;
  font-weight: 800;
  overflow-wrap: anywhere;
}
.legal-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
}
.legal-toc {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(223, 226, 221, .95);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(32, 37, 43, .06);
}
.legal-toc strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 18px;
}
.legal-toc a {
  padding: 10px 12px;
  border-radius: 14px;
  color: var(--muted);
  font-weight: 800;
  font-size: 14px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}
.legal-toc a:hover {
  background: #f8f8f5;
  color: var(--ink);
}
.legal-content {
  display: grid;
  gap: 16px;
  min-width: 0;
}
.legal-card {
  min-width: 0;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(223, 226, 221, .95);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(32, 37, 43, .055);
  scroll-margin-top: 110px;
}
.legal-card h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(25px, 2.3vw, 38px);
  letter-spacing: -.045em;
  overflow-wrap: anywhere;
}
.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
  overflow-wrap: anywhere;
}
.legal-card p:last-child {
  margin-bottom: 0;
}
.legal-card ul {
  margin: 0;
  padding-left: 22px;
}
.legal-card li + li {
  margin-top: 8px;
}
.legal-note {
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #f8f8f5;
  border: 1px solid var(--line);
  color: #3f4745 !important;
  font-weight: 700;
}
.legal-footer.footer nav {
  min-width: 0;
  row-gap: 8px;
}

@media (max-width: 1180px) {
  .legal-header.site-header {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .legal-header__nav {
    justify-content: flex-start;
  }
  .legal-header__button {
    justify-self: start;
  }
  .legal-layout {
    grid-template-columns: 1fr;
  }
  .legal-toc {
    position: static;
  }
}

@media (max-width: 640px) {
  .legal-document {
    width: calc(100% - 28px);
  }
  .legal-hero-card,
  .legal-card {
    border-radius: 24px;
  }
  .legal-hero-card h1 {
    font-size: clamp(34px, 10vw, 50px);
    letter-spacing: -.05em;
  }
  .legal-meta {
    display: grid;
  }
  .legal-card p,
  .legal-card li {
    font-size: 16px;
  }
}


/* === SVR GROUP black & gold client style === */
:root {
  --bg: #0b0b0a;
  --paper: #121211;
  --paper-2: #1a1a18;
  --ink: #f4f0e8;
  --muted: #b9b3a7;
  --line: rgba(218, 173, 84, .22);
  --green: #bd810d;
  --green-2: #d6a53c;
  --orange: #c18512;
  --gold: #c18512;
  --gold-2: #e2ba62;
  --dark: #0b0b0a;
  --shadow: 0 24px 70px rgba(0,0,0,.38);
  --radius: 30px;
}

body {
  background: #0b0b0a;
  color: var(--ink);
}
p { color: var(--muted); }
h1, h2, h3 { color: var(--ink); }

.site-header {
  background: rgba(11, 11, 10, .92);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
  grid-template-columns: auto 1fr auto;
  padding-top: 12px;
  padding-bottom: 12px;
}
.site-header .phone { display: none; }
.brand {
  min-width: 220px;
  height: 66px;
}
.brand::before { display: none; }
.brand img {
  width: 230px;
  max-height: 72px;
  object-fit: contain;
  object-position: left center;
}
.nav {
  color: rgba(244,240,232,.76);
  font-weight: 700;
}
.nav a:hover { color: var(--gold-2); }
.button,
.button-small {
  background: linear-gradient(135deg, #b87508, #d4a038);
  color: #fff;
  border: 1px solid rgba(226,186,98,.28);
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(189,129,13,.22);
  font-weight: 900;
}
.button:hover {
  background: linear-gradient(135deg, #d19821, #e5bd61);
  color: #fff;
  transform: translateY(-1px);
}
.button-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: none;
}
.button-secondary:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(226,186,98,.58);
}

main { overflow: hidden; }

.hero {
  min-height: calc(100vh - 92px);
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(420px, 1.15fr);
  align-items: stretch;
  gap: clamp(28px, 4vw, 72px);
  padding: clamp(46px, 7vw, 96px) clamp(18px, 4vw, 64px);
  background:
    radial-gradient(circle at 78% 24%, rgba(193,133,18,.24), transparent 34%),
    linear-gradient(180deg, #11110f 0%, #080807 100%);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero h1 {
  max-width: 780px;
  font-size: clamp(62px, 7.6vw, 128px);
  line-height: .86;
  text-transform: uppercase;
  letter-spacing: -.045em;
}
.hero-lead {
  max-width: 650px;
  font-size: clamp(20px, 2vw, 30px);
  color: rgba(244,240,232,.82);
}
.hero-actions { margin-top: 20px; }
.hero-points span {
  background: rgba(255,255,255,.07);
  color: var(--gold-2);
  border: 1px solid rgba(226,186,98,.2);
}
.hero-media {
  min-height: 650px;
  border-radius: 42px;
  overflow: hidden;
  border: 1px solid rgba(226,186,98,.2);
  box-shadow: 0 34px 88px rgba(0,0,0,.42);
  background: #111;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.22));
  pointer-events: none;
}
.fade-photo {
  object-fit: cover;
}

.section {
  background: #0b0b0a;
  border: 0;
}
.section-head {
  color: var(--ink);
}
.section-head p { color: var(--muted); }
.section-kicker {
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: .42em;
  font-size: 13px;
}
.section-kicker::before { background: var(--gold); }

.module-benefits,
.steps,
.production-hub,
.packages,
.geography,
.reviews,
.faq,
.final-cta,
.legal-placeholder,
.calc-section {
  background: #10100f;
  border: 1px solid rgba(226,186,98,.12);
  box-shadow: 0 26px 70px rgba(0,0,0,.24);
}

/* Catalog like reference */
#catalog.section {
  background: #070707;
  border-radius: 0;
  box-shadow: none;
  padding-top: clamp(70px, 7vw, 120px);
  padding-bottom: clamp(70px, 7vw, 120px);
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}
#catalog .section-head {
  max-width: 1280px;
  margin: 0 auto 32px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}
#catalog .section-head h2 {
  font-size: clamp(54px, 8vw, 118px);
  text-transform: uppercase;
  letter-spacing: -.055em;
  line-height: .84;
  margin: 0;
}
#catalog .section-head p {
  max-width: 440px;
  text-align: right;
}
.category-strip {
  max-width: 1280px;
  margin: 0 auto 36px;
}
.category-strip a {
  background: transparent;
  color: rgba(244,240,232,.78);
  border-color: rgba(255,255,255,.12);
}
.category-strip a:hover {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}
.catalog-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(220px, 1fr));
  gap: 26px;
}
.project-card {
  min-height: 520px;
  border-radius: 34px;
  overflow: hidden;
  background: #141414;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  display: grid;
  grid-template-rows: 58% 42%;
  transition: transform .25s ease, border-color .25s ease;
}
.project-card:hover {
  transform: translateY(-6px);
  border-color: rgba(226,186,98,.48);
}
.project-card__image {
  position: relative;
  height: 100%;
  object-fit: cover;
  grid-row: 1;
}
.project-card__shade {
  grid-row: 1 / 3;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 0 48%, rgba(0,0,0,.94) 72%, #141414 100%);
}
.project-card__link {
  right: 22px;
  top: 22px;
  padding: 11px 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--gold);
  border: 0;
  font-weight: 900;
}
.project-body {
  grid-row: 2;
  padding: 28px;
  justify-content: end;
}
.project-category {
  display: inline-flex;
  width: fit-content;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}
.project-card__topline {
  align-items: center;
}
.project-card__topline strong {
  color: rgba(244,240,232,.72);
}
.project-card h3 {
  font-size: clamp(28px, 2.4vw, 44px);
  letter-spacing: -.05em;
  color: #fff;
}
.project-meta span {
  color: rgba(244,240,232,.72);
  background: transparent;
  border-color: rgba(255,255,255,.14);
}
.project-body > p {
  color: rgba(244,240,232,.68);
}
.card-actions .button-secondary {
  color: #fff;
}
.card-actions .button-small {
  min-width: 52px;
}

/* Configurator like reference */
.calc-section {
  background: #f1eee7;
  color: #111;
  border-radius: 0;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  padding-top: clamp(70px, 7vw, 110px);
  padding-bottom: clamp(70px, 7vw, 120px);
}
.calc-section .section-head {
  text-align: center;
  max-width: 960px;
  margin: 0 auto 44px;
}
.calc-section .section-kicker {
  display: block;
  color: var(--gold);
  margin-bottom: 14px;
}
.calc-section h2 {
  color: #111;
  text-transform: uppercase;
  font-size: clamp(46px, 6vw, 92px);
  line-height: .86;
  letter-spacing: -.055em;
}
.calc-section .section-head p {
  color: #4f4a42;
  font-size: 18px;
}
.calculator {
  max-width: 1280px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.3fr) minmax(330px, .7fr);
  gap: 32px;
  align-items: stretch;
}
.calc-form {
  background: rgba(255,255,255,.44);
  border: 1px solid rgba(20,20,20,.06);
  border-radius: 30px;
  padding: clamp(28px, 4vw, 54px);
  box-shadow: none;
}
.calc-form label {
  font-size: 0;
  margin: 0;
}
.calc-form select {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.calc-choice-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 10px 0 28px;
}
.calc-choice {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: #25221e;
  font-weight: 900;
  cursor: pointer;
  transition: .2s ease;
}
.calc-choice.is-active,
.calc-choice:hover {
  background: var(--gold);
  color: #fff;
}
.calc-choice-group--cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.calc-choice-group--cards .calc-choice {
  justify-content: flex-start;
  min-height: 92px;
  border-radius: 18px;
  background: rgba(255,255,255,.46);
  border-color: rgba(20,20,20,.06);
}
.calc-choice-group--cards .calc-choice.is-active {
  background: var(--gold);
  border-color: var(--gold);
}
.calc-form label::before,
.calc-form legend {
  display: block;
  margin: 0 0 10px;
  color: #111;
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -.035em;
  font-weight: 900;
}
.calc-form label:nth-of-type(1)::before { content: "01  Модель"; }
.calc-form label:nth-of-type(2)::before { content: "02  Площадь"; }
.calc-form label:nth-of-type(3)::before { content: "03  Отделка"; }
.calc-form fieldset {
  margin-top: 10px;
  padding: 0;
  border: 0;
}
.option-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.check-option {
  font-size: 15px !important;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(20,20,20,.07);
  background: transparent;
  color: #111;
}
.check-option:has(input:checked) {
  background: var(--gold);
  color: #fff;
}
.check-option strong {
  display: none;
}
.calc-visual { display: none; }
.calc-result {
  background: var(--gold);
  color: #fff;
  border: 0;
  border-radius: 30px;
  padding: clamp(30px, 4vw, 52px);
  box-shadow: none;
}
.calc-result p,
.calc-result small,
.calc-result label,
.calc-result .agree {
  color: rgba(255,255,255,.82);
}
.calc-result strong {
  color: #fff;
  font-size: clamp(40px, 4vw, 70px);
  letter-spacing: -.06em;
}
.calc-result .lead-form {
  margin-top: 24px;
}
.calc-result input,
.calc-result textarea {
  border: 0;
  background: rgba(255,255,255,.93);
  color: #111;
}
.calc-result .button {
  width: 100%;
  background: #f4f0e8;
  color: #111;
}

/* Rest of site adjusted to black/gold */
.steps article,
.module-benefit-card,
.packages article,
.reviews article,
.faq details,
.legal-placeholder__grid article,
.final-contact {
  background: #151514 !important;
  border-color: rgba(226,186,98,.14) !important;
  color: var(--ink);
}
.steps article p,
.module-benefit-card p,
.packages p,
.reviews article p,
.faq p,
.legal-placeholder p {
  color: var(--muted);
}
.steps article span,
.module-benefit-card__num,
.packages h3,
.faq summary,
.reviews strong,
.legal-placeholder__grid strong {
  color: var(--gold-2);
}
.section.production-hub.production-hub,
.section.final-cta,
.section.geography,
.legal-placeholder {
  background: #10100f;
  color: var(--ink);
  border-color: rgba(226,186,98,.14);
}
.section.production-hub.production-hub h2,
.section.final-cta h2,
.section.geography h2,
.legal-placeholder h2 {
  color: var(--ink);
}
.section.production-hub.production-hub p,
.section.final-cta p,
.section.geography p,
.legal-placeholder p {
  color: var(--muted);
}
.production-hub__facts span,
.production-step,
.production-hub__steps {
  background: #151514;
  border-color: rgba(226,186,98,.14);
}
.production-step h3 {
  color: var(--gold-2);
}
.production-step p {
  color: var(--muted);
}
.final-cta .lead-form {
  background: #151514;
  border-color: rgba(226,186,98,.14);
}
.final-cta input,
.final-cta textarea {
  background: #0b0b0a;
  border-color: rgba(226,186,98,.18);
  color: var(--ink);
}
.footer {
  background: #050505;
  border-top: 1px solid rgba(226,186,98,.14);
  color: var(--ink);
}
.footer a, .footer p, .footer small {
  color: var(--muted);
}

/* Detail and legal pages */
.site-header.compact,
.legal-header {
  background: rgba(11,11,10,.96);
}
.project-detail,
.legal-hero-card,
.legal-content-card,
.status-page,
.legal-page {
  background: #10100f;
  border-color: rgba(226,186,98,.14);
  color: var(--ink);
}
.project-detail p,
.legal-content-card p,
.legal-content-card li {
  color: var(--muted);
}
.legal-content-card h2,
.legal-content-card h3,
.project-detail h1,
.project-detail h2 {
  color: var(--ink);
}

@media (max-width: 1180px) {
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .project-card {
    min-height: 560px;
  }
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-media {
    min-height: 520px;
  }
  .calculator {
    grid-template-columns: 1fr;
  }
  .site-header {
    grid-template-columns: auto auto;
  }
  .brand {
    min-width: 180px;
    height: 56px;
  }
  .brand img {
    width: 190px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 34px;
  }
  .hero h1 {
    font-size: clamp(48px, 17vw, 74px);
  }
  .hero-media {
    min-height: 360px;
    border-radius: 28px;
  }
  #catalog .section-head {
    display: block;
  }
  #catalog .section-head p {
    text-align: left;
    margin-top: 16px;
  }
  .catalog-grid {
    grid-template-columns: 1fr;
  }
  .project-card {
    min-height: 520px;
  }
  .calc-choice-group--cards {
    grid-template-columns: 1fr;
  }
  .brand img {
    width: 170px;
  }
}

/* === FINAL READABILITY / SIZE PASS === */
html { overflow-x: hidden; }
body { overflow-x: hidden; background: #0b0b0a; }

.site-header {
  min-height: 76px;
  padding: 10px clamp(16px, 3.4vw, 56px);
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(14px, 2vw, 28px);
}
.site-header .brand {
  width: clamp(176px, 18vw, 260px);
  min-width: 0;
  height: 58px;
  flex: 0 0 auto;
}
.site-header .brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}
.site-header .nav {
  min-width: 0;
  gap: clamp(10px, 1.45vw, 22px);
  font-size: clamp(13px, .92vw, 15px);
  line-height: 1.2;
  white-space: nowrap;
}
.site-header .button-small {
  min-height: 46px;
  padding-inline: clamp(18px, 2vw, 28px);
  font-size: 14px;
}

.hero {
  min-height: auto;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  gap: clamp(26px, 4vw, 68px);
  padding-top: clamp(52px, 6.2vw, 88px);
  padding-bottom: clamp(52px, 6.2vw, 88px);
}
.hero h1 {
  max-width: 780px;
  font-size: clamp(48px, 6.2vw, 106px);
  line-height: .9;
  letter-spacing: -.045em;
  margin-bottom: 26px;
}
.hero-lead {
  max-width: 680px;
  font-size: clamp(18px, 1.45vw, 26px);
  line-height: 1.42;
  color: rgba(244,240,232,.88);
}
.hero-actions { gap: 14px; }
.hero-actions .button { min-height: 54px; }
.hero-points { gap: 10px; margin-top: 28px; }
.hero-points span {
  font-size: 13px;
  line-height: 1.2;
  padding: 10px 14px;
}
.hero-media {
  min-height: clamp(430px, 45vw, 620px);
  border-radius: clamp(26px, 3vw, 42px);
}

.section {
  padding: clamp(58px, 6vw, 96px) clamp(18px, 4vw, 64px);
}
.section-head {
  margin-bottom: clamp(28px, 3.6vw, 52px);
}
.section-head h2,
.section h2 {
  font-size: clamp(34px, 4.2vw, 70px);
  line-height: .98;
  letter-spacing: -.045em;
}
.section-head p,
.section p {
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.65;
}
.section-kicker {
  letter-spacing: .28em;
  line-height: 1.4;
}

#catalog.section {
  padding-inline: clamp(18px, 4vw, 64px);
}
#catalog .section-head {
  max-width: 1320px;
  align-items: flex-end;
  margin-bottom: 28px;
}
#catalog .section-head h2 {
  font-size: clamp(46px, 6.5vw, 102px);
  line-height: .88;
  max-width: 760px;
}
#catalog .section-head p {
  max-width: 420px;
  font-size: 17px;
  line-height: 1.55;
}
.category-strip {
  max-width: 1320px;
  gap: 10px;
  margin-bottom: 32px;
}
.category-strip a {
  min-height: 44px;
  padding: 0 18px;
  font-size: 14px;
}
.catalog-grid {
  max-width: 1320px;
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
  gap: clamp(18px, 2vw, 28px);
  align-items: stretch;
}
.project-card {
  min-height: 490px;
  grid-template-rows: 250px 1fr;
  border-radius: 30px;
}
.project-card__image {
  height: 250px;
  width: 100%;
  grid-row: 1;
  object-fit: cover;
}
.project-card__shade {
  grid-row: 1 / 2;
  background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.36));
}
.project-card__link {
  top: 18px;
  right: 18px;
  padding: 9px 15px;
  font-size: 13px;
  line-height: 1;
}
.project-body {
  grid-row: 2;
  padding: 24px;
  min-height: 240px;
  background: #141414;
  justify-content: start;
  gap: 12px;
}
.project-card__topline {
  gap: 10px;
  margin-bottom: 2px;
}
.project-category {
  padding: 7px 13px;
  font-size: 11px;
}
.project-card__topline strong {
  font-size: 15px;
  color: rgba(244,240,232,.82);
  white-space: nowrap;
}
.project-card h3 {
  font-size: clamp(30px, 2.2vw, 42px);
  line-height: 1;
  margin: 0;
}
.project-meta { gap: 8px; }
.project-meta span {
  padding: 7px 10px;
  font-size: 13px;
  line-height: 1;
}
.project-body > p {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(244,240,232,.78);
  margin-bottom: 0;
}
.card-actions {
  margin-top: auto;
  gap: 10px;
}
.card-actions .button {
  min-height: 44px;
  padding-inline: 16px;
  font-size: 13px;
}

.calc-section {
  padding-inline: clamp(18px, 4vw, 64px);
}
.calc-section .section-head {
  margin-bottom: 38px;
}
.calc-section h2 {
  font-size: clamp(44px, 5.5vw, 88px);
  line-height: .9;
}
.calculator {
  max-width: 1280px;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, .82fr);
  gap: clamp(22px, 3vw, 36px);
}
.calc-form {
  padding: clamp(26px, 3.6vw, 48px);
  border-radius: 28px;
}
.calc-form label::before,
.calc-form legend {
  font-size: clamp(40px, 3.2vw, 26px);
  letter-spacing: -.035em;
  margin-bottom: 14px;
}
.calc-choice-group {
  gap: 10px;
  margin-bottom: 28px;
}
.calc-choice {
  min-height: 46px;
  padding: 0 18px;
  font-size: 15px;
  line-height: 1.15;
}
.calc-choice-group--cards {
  gap: 12px;
}
.calc-choice-group--cards .calc-choice {
  min-height: 76px;
  padding: 16px;
  border-radius: 18px;
  align-items: center;
  text-align: left;
  white-space: normal;
}
.option-grid {
  gap: 10px;
}
.check-option {
  min-height: 44px;
  padding: 0 16px;
  font-size: 14px !important;
  line-height: 1.2;
}
.calc-result {
  border-radius: 28px;
  padding: clamp(26px, 3.4vw, 46px);
}
.calc-result p {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 900;
}
.calc-result strong {
  display: block;
  font-size: clamp(38px, 3.7vw, 62px);
  line-height: .96;
  margin: 10px 0 12px;
  word-break: normal;
}
.calc-result small {
  display: block;
  font-size: 13px;
  line-height: 1.45;
}
.calc-result .lead-form {
  gap: 12px;
}
.calc-result input,
.calc-result textarea,
.final-cta input,
.final-cta textarea {
  min-height: 48px;
  font-size: 15px;
}
.calc-result textarea,
.final-cta textarea { min-height: 92px; }

.module-benefits__top,
.production-hub__top,
.final-cta,
.legal-placeholder,
.section.geography {
  gap: clamp(24px, 4vw, 56px);
}
.module-benefit-card,
.steps article,
.production-step,
.packages article,
.reviews article,
.faq details,
.final-contact,
.legal-placeholder__grid article {
  border-radius: 24px;
}
.module-benefit-card h3,
.steps h3,
.production-step h3,
.packages h3 {
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.08;
}
.module-benefit-card p,
.steps p,
.production-step p,
.packages p,
.reviews p,
.faq p {
  font-size: 16px;
  line-height: 1.6;
}
.production-hub__visual { min-height: clamp(320px, 32vw, 520px); }
.production-hub__image--main { border-radius: 28px; }
.production-hub__image--small { border-radius: 22px; }

.final-cta {
  grid-template-columns: minmax(0, .9fr) minmax(340px, .75fr);
}
.final-contacts {
  grid-template-columns: 1fr;
  max-width: 560px;
}
.final-contact strong {
  font-size: clamp(18px, 1.4vw, 22px);
  overflow-wrap: anywhere;
}
.legal-placeholder__grid strong,
.legal-placeholder__grid span {
  overflow-wrap: anywhere;
}
.footer {
  padding: 34px clamp(18px, 4vw, 64px);
  gap: 16px;
}
.footer nav {
  gap: 12px 18px;
  flex-wrap: wrap;
}

/* Legal pages readability */
.legal-document {
  background: #0b0b0a;
  color: var(--ink);
}
.legal-hero-card h1 {
  font-size: clamp(36px, 5vw, 78px);
  line-height: .96;
  letter-spacing: -.045em;
  overflow-wrap: anywhere;
}
.legal-hero-card p,
.legal-content-card p,
.legal-content-card li {
  font-size: 16px;
  line-height: 1.65;
}
.legal-header__nav a {
  white-space: normal;
  line-height: 1.25;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }
  .site-header .nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid rgba(226,186,98,.18);
    border-radius: 22px;
    background: rgba(11,11,10,.98);
    white-space: normal;
  }
  .site-header .nav.is-open { display: flex; }
  .menu-toggle { display: inline-flex; }
  .site-header .button-small { justify-self: end; }
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-copy { min-height: auto; }
  .calculator,
  .final-cta,
  .module-benefits__top,
  .production-hub__top,
  .legal-placeholder {
    grid-template-columns: 1fr;
  }
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  #catalog .section-head {
    display: block;
  }
  #catalog .section-head p {
    text-align: left;
    margin-top: 16px;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    grid-template-columns: 1fr auto;
  }
  .site-header .brand { width: 160px; height: 48px; }
  .site-header .button-small { display: none; }
  .hero h1 { font-size: clamp(42px, 15vw, 66px); }
  .hero-lead { font-size: 17px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .hero-media { min-height: 310px; }
  .hero-points { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  #catalog .section-head h2,
  .calc-section h2 { font-size: clamp(40px, 13vw, 62px); }
  .catalog-grid { grid-template-columns: 1fr; }
  .project-card {
    min-height: auto;
    grid-template-rows: 230px auto;
  }
  .project-card__image { height: 230px; }
  .project-body { min-height: auto; padding: 22px; }
  .card-actions { flex-direction: column; }
  .card-actions .button { width: 100%; }
  .calc-choice-group--cards { grid-template-columns: 1fr; }
  .calc-result strong { font-size: 36px; }
  .section { padding-inline: 16px; }
  .final-contacts { grid-template-columns: 1fr; }
}


/* === DARK BACKGROUND + LIGHT CARDS READABILITY FIX === */
:root {
  --dark-bg: #080807;
  --dark-panel: #0f0f0e;
  --cream-card: #f4f0e8;
  --cream-card-2: #ebe5d9;
  --dark-text: #14120f;
  --dark-muted: #5f584d;
  --gold: #c78a14;
  --gold-2: #e0b45a;
}

/* общий принцип: фон секций тёмный, карточки светлые */
body {
  background: var(--dark-bg) !important;
  color: #f7f1e7 !important;
}

/* HERO */
.hero {
  background:
    radial-gradient(circle at 82% 14%, rgba(199, 138, 20, .24), transparent 32%),
    linear-gradient(180deg, #14120f 0%, #080807 100%) !important;
}
.hero h1,
.hero .hero-copy h1 {
  color: #f6efe3 !important;
  opacity: 1 !important;
  text-shadow: 0 3px 34px rgba(0,0,0,.55) !important;
}
.hero-lead,
.hero-copy .hero-lead {
  color: rgba(247,241,231,.92) !important;
  opacity: 1 !important;
}
.hero .button-secondary,
.hero-actions .button-secondary {
  color: #f7f1e7 !important;
  border-color: rgba(247,241,231,.36) !important;
  background: rgba(255,255,255,.055) !important;
}
.hero .button-secondary:hover,
.hero-actions .button-secondary:hover {
  color: #111 !important;
  background: #f7f1e7 !important;
  border-color: #f7f1e7 !important;
}
.hero-points span {
  color: #f7d477 !important;
  background: rgba(199,138,20,.14) !important;
  border-color: rgba(224,180,90,.35) !important;
}

/* ширина больших блоков */
main > .section,
#catalog.section,
.calc-section {
  width: min(100% - 64px, 1720px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  border-radius: 34px !important;
}
#catalog.section,
.calc-section {
  padding-left: clamp(28px, 4vw, 64px) !important;
  padding-right: clamp(28px, 4vw, 64px) !important;
}

/* тёмные фоновые секции */
.module-benefits,
.steps,
.production-hub,
.section.production-hub.production-hub,
.packages,
.geography,
.reviews,
.faq,
.final-cta,
.legal-placeholder {
  background: var(--dark-panel) !important;
  color: #f7f1e7 !important;
  border: 1px solid rgba(224,180,90,.18) !important;
}

/* заголовки и тексты на тёмных местах */
.section h2,
.section-head h2,
.module-benefits h2,
.steps h2,
.production-hub h2,
.section.production-hub.production-hub h2,
.geography h2,
.final-cta h2,
.legal-placeholder h2,
.reviews h2,
.faq h2,
.packages h2 {
  color: #f7f1e7 !important;
  opacity: 1 !important;
}
.section-head p,
.module-benefits__copy p,
.production-hub__copy p,
.section.production-hub.production-hub p,
.geography p,
.final-cta p,
.legal-placeholder p {
  color: rgba(247,241,231,.78) !important;
  opacity: 1 !important;
}
.section-kicker {
  color: #e0b45a !important;
}

/* светлые карточки везде */
.module-benefit-card,
.steps article,
.production-step,
.production-hub__facts span,
.packages article,
.reviews article,
.faq details,
.final-contact,
.legal-placeholder__grid article,
.calc-form,
.calc-result,
.final-cta .lead-form,
.legal-content-card,
.legal-hero-card,
.project-detail,
.status-page,
.legal-page {
  background: var(--cream-card) !important;
  color: var(--dark-text) !important;
  border: 1px solid rgba(199,138,20,.16) !important;
  box-shadow: 0 24px 54px rgba(0,0,0,.18) !important;
}

/* текст внутри светлых карточек */
.module-benefit-card *,
.steps article *,
.production-step *,
.production-hub__facts span,
.packages article *,
.reviews article *,
.faq details *,
.final-contact *,
.legal-placeholder__grid article *,
.calc-form *,
.calc-result *,
.final-cta .lead-form *,
.legal-content-card *,
.legal-hero-card *,
.project-detail *,
.status-page *,
.legal-page * {
  color: var(--dark-text) !important;
}
.module-benefit-card p,
.steps article p,
.production-step p,
.packages article p,
.reviews article p,
.faq details p,
.final-contact span,
.legal-placeholder__grid span,
.calc-form p,
.calc-result p,
.calc-result small,
.final-cta .lead-form label,
.final-cta .lead-form .agree,
.legal-content-card p,
.legal-content-card li,
.project-detail p {
  color: var(--dark-muted) !important;
}

/* акценты на светлых карточках */
.module-benefit-card__num,
.steps article > span,
.production-step__num,
.production-step h3,
.module-benefit-card small,
.packages h3,
.reviews strong,
.faq summary,
.legal-placeholder__grid strong {
  color: #b97808 !important;
}

/* Почему выбирают */
.module-benefits__top {
  align-items: center !important;
}
.module-benefits__copy h2 {
  color: #f7f1e7 !important;
}
.module-benefits__copy p {
  max-width: 650px !important;
}

/* Как мы работаем */
.steps {
  padding-top: clamp(54px, 6vw, 96px) !important;
  padding-bottom: clamp(54px, 6vw, 96px) !important;
}
.steps article {
  min-height: 230px !important;
  border-radius: 28px !important;
}
.steps h3 {
  color: var(--dark-text) !important;
  font-size: clamp(24px, 2vw, 34px) !important;
  text-shadow: none !important;
}

/* Полный цикл */
.section.production-hub.production-hub {
  background: var(--dark-panel) !important;
}
.production-hub__button {
  background: linear-gradient(135deg, #b87508, #d4a038) !important;
  color: #fff !important;
}
.production-hub__visual,
.production-hub__image,
.production-hub__image img {
  opacity: 1 !important;
}
.production-hub__label {
  background: var(--cream-card) !important;
  color: var(--dark-text) !important;
}
.production-hub__label strong {
  color: var(--gold) !important;
}
.production-hub__label span {
  color: var(--dark-muted) !important;
}
.production-hub__facts span::before {
  background: var(--gold) !important;
}

/* Каталог и конфигуратор по ширине остальных блоков */
#catalog.section {
  background: #080807 !important;
}
#catalog .section-head,
#catalog .catalog-grid,
#catalog .category-strip,
.calc-section .section-head,
.calc-section .calculator {
  max-width: none !important;
  width: 100% !important;
}
#catalog .section-head h2,
.calc-section h2 {
  color: #f7f1e7 !important;
}
#catalog .section-head p,
.calc-section .section-head p {
  color: rgba(247,241,231,.78) !important;
}
.calc-section {
  background: var(--dark-panel) !important;
}
.calc-section .section-kicker {
  color: #e0b45a !important;
}
.calc-section .calculator {
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, .82fr) !important;
}
.calc-choice {
  color: var(--dark-text) !important;
}
.calc-choice.is-active,
.calc-choice:hover {
  background: var(--gold) !important;
  color: #fff !important;
}
.check-option {
  color: var(--dark-text) !important;
  border-color: rgba(20,18,15,.13) !important;
}
.check-option:has(input:checked) {
  background: var(--gold) !important;
}
.check-option:has(input:checked) span {
  color: #fff !important;
}
.calc-result {
  background: #c18512 !important;
}
.calc-result *,
.calc-result p,
.calc-result small,
.calc-result label,
.calc-result .agree {
  color: #fff !important;
}
.calc-result input,
.calc-result textarea {
  background: #fff !important;
  color: #111 !important;
}
.calc-result .button {
  background: #f7f1e7 !important;
  color: #111 !important;
}

/* формы в финальном CTA */
.final-cta .lead-form input,
.final-cta .lead-form textarea {
  background: #fff !important;
  color: #111 !important;
  border-color: rgba(20,18,15,.12) !important;
}
.final-cta .button {
  background: linear-gradient(135deg, #b87508, #d4a038) !important;
  color: #fff !important;
}

/* мобильная ширина */
@media (max-width: 768px) {
  main > .section,
  #catalog.section,
  .calc-section {
    width: calc(100% - 28px) !important;
    border-radius: 24px !important;
  }
  .hero h1 {
    font-size: clamp(44px, 16vw, 68px) !important;
  }
  .hero-lead {
    font-size: 18px !important;
  }
}


/* === STRUCTURE FIXES PER CLIENT REQUEST === */

/* common dark site background */
body,
main {
  background: #080807 !important;
}

/* remove wrapper look for requested sections */
.module-benefits,
.steps,
.geography {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* keep gallery as dark common block */
.gallery {
  background: #10100f !important;
  border: 1px solid rgba(224,180,90,.18) !important;
  box-shadow: 0 26px 70px rgba(0,0,0,.24) !important;
}

/* all requested cards white */
.module-benefit-card,
.steps article,
.production-step,
.production-hub__facts span,
.packages article,
.reviews article,
.faq details,
.final-contact,
.legal-placeholder__grid article,
.final-cta .lead-form {
  background: #ffffff !important;
  color: #12100d !important;
  border: 1px solid rgba(199,138,20,.18) !important;
  box-shadow: 0 24px 54px rgba(0,0,0,.18) !important;
}

.module-benefit-card *,
.steps article *,
.production-step *,
.production-hub__facts span,
.packages article *,
.reviews article *,
.faq details *,
.final-contact *,
.legal-placeholder__grid article *,
.final-cta .lead-form * {
  color: #12100d !important;
}

.module-benefit-card p,
.steps article p,
.production-step p,
.packages article p,
.reviews article p,
.faq details p,
.final-contact span,
.legal-placeholder__grid span,
.final-cta .lead-form label,
.final-cta .lead-form .agree {
  color: #5f584d !important;
}

/* titles on dark sections readable */
.module-benefits h2,
.steps h2,
.geography h2,
.gallery h2,
.reviews h2,
.faq h2,
.final-cta h2,
.legal-placeholder h2,
.production-hub h2,
.packages h2 {
  color: #f7f1e7 !important;
}

.module-benefits__copy p,
.geography p,
.reviews .section-head p,
.final-cta__content > p,
.legal-placeholder p,
.production-hub__copy p,
.packages .section-head p,
.gallery .section-head p {
  color: rgba(247,241,231,.78) !important;
}

/* catalog: no filters, 3 cards in row */
.category-strip {
  display: none !important;
}
#catalog .catalog-grid,
.catalog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 28px !important;
}
.project-card {
  min-height: 560px !important;
}

/* calculator params: no visible model select, keep only area/floors/finish/addons */
.calc-form label:has(#calc-model),
.calc-form [data-select-buttons="calc-model"] {
  display: none !important;
}
.calc-form label:nth-of-type(2)::before {
  content: "01  Площадь" !important;
}
.calc-form .calc-floor-label::before {
  content: "02  Этажность" !important;
}
.calc-form label:nth-of-type(3)::before {
  content: "03  Отделка" !important;
}
.calc-form legend::before {
  content: "04  ";
}
.calc-form legend {
  color: #12100d !important;
}

/* production block clarity */
.section.production-hub.production-hub {
  background: #10100f !important;
  border: 1px solid rgba(224,180,90,.18) !important;
  box-shadow: 0 26px 70px rgba(0,0,0,.24) !important;
}
.production-hub__facts span,
.production-step {
  background: #ffffff !important;
  color: #12100d !important;
}
.production-hub__facts span {
  color: #12100d !important;
}
.production-step h3,
.production-step__num {
  color: #b97808 !important;
}
.production-step p {
  color: #5f584d !important;
}

/* packages cards */
.packages article {
  background: #ffffff !important;
}
.packages h3 {
  color: #12100d !important;
}
.packages p {
  color: #5f584d !important;
}

/* reviews/faq/final/legal card readability */
.reviews article strong,
.faq summary,
.final-contact strong,
.legal-placeholder__grid strong {
  color: #12100d !important;
}
.reviews article span {
  color: #b97808 !important;
}

/* final CTA contact cards white */
.final-contact {
  background: #ffffff !important;
}

/* geography no wrapper */
.geography-photo {
  background: transparent !important;
  box-shadow: none !important;
}

/* responsive */
@media (max-width: 1180px) {
  #catalog .catalog-grid,
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 768px) {
  #catalog .catalog-grid,
  .catalog-grid {
    grid-template-columns: 1fr !important;
  }
  .module-benefits,
  .steps,
  .geography {
    width: calc(100% - 28px) !important;
  }
}


/* === FINAL CLIENT TUNE: no wrappers + #f4f0e8 cards + calculator params === */

/* sections without common block background */
.module-benefits,
.steps,
.geography,
.reviews,
.faq,
.gallery {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* Gallery dark inner feeling without big rounded wrapper */
.gallery {
  padding-top: clamp(48px, 6vw, 90px) !important;
  padding-bottom: clamp(48px, 6vw, 90px) !important;
}

/* all cards exact requested color */
.module-benefit-card,
.steps article,
.production-step,
.production-hub__facts span,
.packages article,
.reviews article,
.faq details,
.final-contact,
.legal-placeholder__grid article,
.final-cta .lead-form,
.calc-form,
.legal-content-card,
.legal-hero-card,
.project-detail,
.status-page,
.legal-page {
  background: #f4f0e8 !important;
  color: #14120f !important;
  border: 1px solid rgba(199, 138, 20, .20) !important;
}

/* text on cards dark */
.module-benefit-card h3,
.steps article h3,
.production-step h3,
.packages h3,
.reviews article strong,
.faq summary,
.final-contact strong,
.legal-placeholder__grid strong,
.calc-form label,
.calc-form legend,
.legal-content-card h2,
.legal-content-card h3,
.project-detail h1,
.project-detail h2 {
  color: #14120f !important;
  text-shadow: none !important;
}

.module-benefit-card p,
.steps article p,
.production-step p,
.production-hub__facts span,
.packages article p,
.reviews article p,
.reviews article span,
.faq details p,
.final-contact span,
.final-cta .lead-form label,
.final-cta .lead-form .agree,
.legal-placeholder__grid span,
.legal-content-card p,
.legal-content-card li,
.project-detail p {
  color: #4f4a42 !important;
  opacity: 1 !important;
}

/* production cards specifically */
.production-step p,
.production-step p *,
.production-hub__steps .production-step p {
  color: #4f4a42 !important;
}
.production-step h3,
.production-step__num {
  color: #14120f !important;
}
.production-step__num,
.steps article > span,
.module-benefit-card__num {
  background: #c18512 !important;
  color: #fff !important;
}

/* remove filter row completely */
.category-strip {
  display: none !important;
}

/* catalog 3 cards per row */
.catalog-grid,
#catalog .catalog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

/* calculator parameters visibility */
.calc-param--hidden,
.calc-choice-group--hidden,
.calc-form label:has(#calc-model),
.calc-form [data-select-buttons="calc-model"] {
  display: none !important;
}

.calc-form .calc-param {
  display: block !important;
  font-size: 0 !important;
  margin: 0 !important;
}

.calc-form .calc-param select {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.calc-form .calc-param::before,
.calc-form legend {
  display: block !important;
  margin: 0 0 12px !important;
  color: #14120f !important;
  font-size: clamp(22px, 1.8vw, 30px) !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  letter-spacing: -.035em !important;
  font-weight: 900 !important;
}

.calc-form .calc-param--size::before {
  content: "01  Площадь" !important;
}
.calc-form .calc-param--floor::before {
  content: "02  Этажность" !important;
}
.calc-form .calc-param--finish::before {
  content: "03  Отделка" !important;
}
.calc-form legend {
  font-size: clamp(22px, 1.8vw, 30px) !important;
}
.calc-form legend::before {
  content: "04  " !important;
}

.calc-choice-group {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 14px !important;
  margin: 10px 0 30px !important;
}
.calc-choice {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 50px !important;
  padding: 0 22px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(20, 18, 15, .10) !important;
  background: transparent !important;
  color: #14120f !important;
  font-weight: 900 !important;
  cursor: pointer !important;
}
.calc-choice.is-active,
.calc-choice:hover {
  background: #c18512 !important;
  color: #fff !important;
  border-color: #c18512 !important;
}
.calc-choice-group--cards {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}
.calc-choice-group--cards .calc-choice {
  min-height: 92px !important;
  border-radius: 18px !important;
  background: rgba(255,255,255,.46) !important;
  justify-content: flex-start !important;
}
.calc-choice-group--cards .calc-choice.is-active {
  background: #c18512 !important;
  color: #fff !important;
}

/* addons buttons */
.option-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
}
.check-option {
  background: transparent !important;
  color: #14120f !important;
  border: 1px solid rgba(20,18,15,.12) !important;
}
.check-option span {
  color: #14120f !important;
}
.check-option:has(input:checked) {
  background: #c18512 !important;
  border-color: #c18512 !important;
}
.check-option:has(input:checked) span {
  color: #fff !important;
}

/* Reviews / FAQ no common blocks but cards remain */
.reviews,
.faq {
  display: grid !important;
  gap: 18px !important;
}
.reviews .section-head,
.faq .section-head,
.gallery .section-head {
  grid-column: 1 / -1 !important;
}

/* keep dark text only inside light cards, light text on dark surroundings */
.reviews .section-head h2,
.faq .section-head h2,
.gallery .section-head h2 {
  color: #f7f1e7 !important;
}
.reviews .section-head p,
.faq .section-head p,
.gallery .section-head p {
  color: rgba(247,241,231,.78) !important;
}

/* contacts and requisites */
.final-contact,
.legal-placeholder__grid article {
  background: #f4f0e8 !important;
}

/* responsive */
@media (max-width: 1180px) {
  .catalog-grid,
  #catalog .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 768px) {
  .catalog-grid,
  #catalog .catalog-grid,
  .calc-choice-group--cards {
    grid-template-columns: 1fr !important;
  }
}


/* === TEXT VISIBILITY FIX: production cards + configurator addons === */

/* Production step cards: make every text inside visible and dark */
.production-hub__steps .production-step,
.production-step {
  background: #f4f0e8 !important;
  color: #14120f !important;
}

.production-hub__steps .production-step *,
.production-step * {
  color: #14120f !important;
  opacity: 1 !important;
  text-shadow: none !important;
  filter: none !important;
}

.production-hub__steps .production-step p,
.production-step p,
.production-hub__steps .production-step p *,
.production-step p * {
  color: #4f4a42 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Remove any light/white overlay effect on production cards */
.production-step::before,
.production-step::after {
  opacity: 1 !important;
}
.production-step p {
  display: block !important;
  font-size: 17px !important;
  line-height: 1.55 !important;
  margin-top: 14px !important;
}

/* Configurator: hide generated wrong labels inside additions */
.option-grid .check-option::before,
.option-grid .check-option::after,
.check-option::before,
.check-option::after {
  content: none !important;
  display: none !important;
}

.option-grid .check-option,
.calc-form .option-grid .check-option {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: max-content !important;
  padding: 0 20px !important;
  font-size: 15px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.option-grid .check-option span,
.calc-form .option-grid .check-option span {
  display: inline !important;
  color: #14120f !important;
  font-size: 15px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
}

.option-grid .check-option input {
  flex: 0 0 auto !important;
  width: 18px !important;
  height: 18px !important;
  margin: 0 !important;
}

.check-option:has(input:checked) span {
  color: #fff !important;
}

/* Ensure 04 Дополнения header is the only label for additions */
.calc-form fieldset legend {
  color: #14120f !important;
  font-size: clamp(22px, 1.8vw, 30px) !important;
  margin-bottom: 16px !important;
}

.calc-form fieldset legend::before {
  content: "04  " !important;
}

/* Override old nth-of-type pseudo labels inside option labels */
.calc-form .option-grid label:nth-of-type(1)::before,
.calc-form .option-grid label:nth-of-type(2)::before,
.calc-form .option-grid label:nth-of-type(3)::before,
.calc-form .option-grid label:nth-of-type(4)::before,
.calc-form .option-grid label:nth-of-type(5)::before,
.calc-form .option-grid label:nth-of-type(6)::before {
  content: none !important;
  display: none !important;
}

/* Remove accidental huge text inherited by labels */
.calc-form .option-grid label {
  font-size: 15px !important;
}


/* === STRONG FIX FOR PRODUCTION DESCRIPTION AND ADDONS LABELS === */

/* Production descriptions: override high-specificity section rules */
.section.production-hub.production-hub .production-hub__steps .production-step p,
.section.production-hub.production-hub .production-hub__steps .production-step p *,
section#production.production-hub .production-hub__steps .production-step p,
#production .production-hub__steps .production-step p {
  color: #2f2a22 !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  font-size: 18px !important;
  line-height: 1.55 !important;
  font-weight: 600 !important;
  text-shadow: none !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}

.section.production-hub.production-hub .production-hub__steps .production-step {
  background: #f4f0e8 !important;
  position: relative !important;
  overflow: visible !important;
}

.section.production-hub.production-hub .production-hub__steps .production-step h3 {
  color: #0f0d0a !important;
}

/* убрать декоративный круг, который визуально перекрывал описание */
.section.production-hub.production-hub .production-hub__steps .production-step::after {
  display: none !important;
  content: none !important;
}

/* Configurator additions: force remove generated pseudo labels */
.calc-form fieldset .option-grid .check-option::before,
.calc-form fieldset .option-grid .check-option::after,
.calc-form fieldset .option-grid label::before,
.calc-form fieldset .option-grid label::after,
.calc-form .option-grid label:nth-of-type(1)::before,
.calc-form .option-grid label:nth-of-type(2)::before,
.calc-form .option-grid label:nth-of-type(3)::before,
.calc-form .option-grid label:nth-of-type(4)::before,
.calc-form .option-grid label:nth-of-type(5)::before,
.calc-form .option-grid label:nth-of-type(6)::before,
.calc-form .option-grid label:nth-of-type(7)::before,
.calc-form .option-grid label:nth-of-type(8)::before {
  content: "" !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  font-size: 0 !important;
  line-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.calc-form fieldset .option-grid .check-option {
  font-size: 15px !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.calc-form fieldset .option-grid .check-option span {
  font-size: 15px !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}


/* === ABOUT COMPANY BLOCK === */
.about-svr {
  display: grid !important;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr) !important;
  gap: clamp(28px, 5vw, 72px) !important;
  align-items: center !important;
  background: #080807 !important;
  border: 0 !important;
  box-shadow: none !important;
  padding-top: clamp(70px, 8vw, 130px) !important;
  padding-bottom: clamp(70px, 8vw, 130px) !important;
}

.about-svr__content {
  max-width: 720px;
}

.about-svr .section-kicker {
  color: #c18512 !important;
}

.about-svr h2 {
  margin: 18px 0 24px !important;
  color: #f7f1e7 !important;
  font-size: clamp(48px, 5.8vw, 92px) !important;
  line-height: .86 !important;
  letter-spacing: -.055em !important;
  text-transform: uppercase !important;
}

.about-svr p {
  max-width: 650px !important;
  color: rgba(247,241,231,.72) !important;
  font-size: clamp(17px, 1.25vw, 22px) !important;
  line-height: 1.65 !important;
}

.about-svr__features {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
  margin-top: 34px !important;
}

.about-svr__features article {
  min-height: 76px !important;
  padding: 18px 20px !important;
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  border-radius: 18px !important;
  background: #151514 !important;
  border: 1px solid rgba(224,180,90,.16) !important;
}

.about-svr__features span {
  width: 34px !important;
  height: 34px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto !important;
  border-radius: 10px !important;
  background: #c18512 !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 900 !important;
}

.about-svr__features strong {
  color: #f7f1e7 !important;
  font-size: 16px !important;
  line-height: 1.25 !important;
}

.about-svr__contacts {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  margin-top: 28px !important;
}

.about-svr__contacts a {
  min-height: 48px !important;
  padding: 0 18px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  background: rgba(199,138,20,.14) !important;
  border: 1px solid rgba(224,180,90,.26) !important;
  color: #f7d477 !important;
  font-weight: 900 !important;
}

.about-svr__media {
  position: relative !important;
  min-height: 590px !important;
  border-radius: 34px !important;
  overflow: visible !important;
}

.about-svr__media img {
  width: 100% !important;
  height: 100% !important;
  min-height: 590px !important;
  object-fit: cover !important;
  border-radius: 34px !important;
  border: 1px solid rgba(224,180,90,.18) !important;
  box-shadow: 0 34px 80px rgba(0,0,0,.35) !important;
}

.about-svr__badge {
  position: absolute !important;
  left: -32px !important;
  bottom: -28px !important;
  min-width: 210px !important;
  padding: 22px 26px !important;
  border-radius: 22px !important;
  background: #c18512 !important;
  box-shadow: 0 22px 44px rgba(0,0,0,.28) !important;
}

.about-svr__badge strong {
  display: block !important;
  color: #fff !important;
  font-size: 46px !important;
  line-height: .9 !important;
  letter-spacing: -.05em !important;
}

.about-svr__badge span {
  display: block !important;
  margin-top: 6px !important;
  color: rgba(255,255,255,.86) !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
}

@media (max-width: 1024px) {
  .about-svr {
    grid-template-columns: 1fr !important;
  }
  .about-svr__media,
  .about-svr__media img {
    min-height: 430px !important;
  }
  .about-svr__badge {
    left: 18px !important;
    bottom: 18px !important;
  }
}

@media (max-width: 640px) {
  .about-svr__features {
    grid-template-columns: 1fr !important;
  }
  .about-svr__media,
  .about-svr__media img {
    min-height: 320px !important;
  }
  .about-svr h2 {
    font-size: clamp(42px, 14vw, 60px) !important;
  }
}


/* === HOUSE TYPE SELECTOR IN CONFIGURATOR === */

/* show model selector again as "Вид дома" */
.calc-param--type,
.calc-form label.calc-param--type,
.calc-form [data-select-buttons="calc-model"],
.calc-choice-group[data-select-buttons="calc-model"] {
  display: block !important;
}

.calc-choice-group[data-select-buttons="calc-model"] {
  display: flex !important;
  flex-wrap: wrap !important;
}

/* make sure old hidden rules do not affect the new visible type selector */
.calc-form label.calc-param--type:has(#calc-model),
.calc-form .calc-param--type,
.calc-form [data-select-buttons="calc-model"]:not(.calc-choice-group--hidden) {
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* updated numbering */
.calc-form .calc-param--type::before {
  content: "01  Вид дома" !important;
}
.calc-form .calc-param--size::before {
  content: "02  Площадь" !important;
}
.calc-form .calc-param--floor::before {
  content: "03  Этажность" !important;
}
.calc-form .calc-param--finish::before {
  content: "04  Отделка" !important;
}
.calc-form fieldset legend::before {
  content: "05  " !important;
}

/* type buttons style */
.calc-choice-group[data-select-buttons="calc-model"] .calc-choice {
  min-height: 58px !important;
  padding: 0 26px !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,.45) !important;
  border: 1px solid rgba(20,18,15,.12) !important;
  color: #14120f !important;
}
.calc-choice-group[data-select-buttons="calc-model"] .calc-choice.is-active,
.calc-choice-group[data-select-buttons="calc-model"] .calc-choice:hover {
  background: #c18512 !important;
  border-color: #c18512 !important;
  color: #fff !important;
}


/* === CATALOG BADGES ON IMAGE + REMOVE TOP DETAIL BUTTON === */
.project-card__link {
  display: none !important;
}

.project-category--image {
  position: absolute !important;
  z-index: 5 !important;
  left: 24px !important;
  top: 24px !important;
  margin: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  max-width: calc(100% - 48px) !important;
  padding: 9px 18px !important;
  border-radius: 999px !important;
  background: #c18512 !important;
  color: #fff !important;
  font-size: 13px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: .02em !important;
  box-shadow: 0 12px 28px rgba(0,0,0,.24) !important;
}

.project-card__topline {
  justify-content: flex-start !important;
}

.project-card__topline strong {
  color: rgba(244,240,232,.86) !important;
}


/* === HEADER LOGO SIZE FIX === */
.site-header .brand {
  min-width: 250px !important;
  width: 250px !important;
  height: 78px !important;
  display: inline-flex !important;
  align-items: center !important;
}

.site-header .brand img {
  width: 230px !important;
  max-width: 230px !important;
  height: auto !important;
  max-height: 74px !important;
  object-fit: contain !important;
  object-position: left center !important;
}

.site-header {
  min-height: 82px !important;
}

@media (max-width: 1024px) {
  .site-header .brand {
    min-width: 190px !important;
    width: 190px !important;
    height: 62px !important;
  }
  .site-header .brand img {
    width: 180px !important;
    max-width: 180px !important;
    max-height: 58px !important;
  }
}

@media (max-width: 640px) {
  .site-header .brand {
    min-width: 160px !important;
    width: 160px !important;
    height: 56px !important;
  }
  .site-header .brand img {
    width: 150px !important;
    max-width: 150px !important;
    max-height: 52px !important;
  }
}

/* === Этап 1: полноэкранный первый экран === */
.hero {
  min-height: calc(100svh - 82px) !important;
  display: flex !important;
  align-items: center !important;
  padding: clamp(46px, 7vh, 82px) clamp(22px, 6vw, 90px) !important;
  isolation: isolate;
  color: #fff !important;
  background: #151713 !important;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,10,9,.82) 0%, rgba(8,10,9,.54) 48%, rgba(8,10,9,.13) 100%),
    linear-gradient(0deg, rgba(8,10,9,.54), transparent 56%);
  pointer-events: none;
}

.hero .hero-media {
  position: absolute !important;
  z-index: -2 !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  max-width: none !important;
  border-radius: 0 !important;
  background: #151713 !important;
}

.hero .fade-photo {
  filter: saturate(.88) contrast(1.04) brightness(.82) !important;
}

.hero .hero-copy {
  width: min(1050px, 86vw);
  min-height: 0 !important;
  padding: 0 !important;
  justify-content: center !important;
}

.hero .hero-slogan {
  max-width: none !important;
  margin: 0 0 24px !important;
  color: #fff !important;
  background: none !important;
  font-size: clamp(60px, 6.5vw, 108px) !important;
  line-height: 1.03 !important;
  letter-spacing: -.035em !important;
  text-transform: uppercase;
  text-align: left !important;
}

.hero .hero-slogan span {
  display: table;
  white-space: nowrap;
  color: transparent !important;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 48%, #f8e8bd 76%, #e7c26c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero .hero-lead {
  max-width: 670px;
  color: #fff !important;
  font-size: clamp(40px, 3.25vw, 28px) !important;
  line-height: 1.35 !important;
  font-weight: 700;
}

.hero .hero-description {
  max-width: 700px;
  margin: 14px 0 0;
  color: rgba(255,255,255,.78) !important;
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.55;
}

.hero .hero-actions {
  margin: 28px 0 0 !important;
}

.hero .hero-actions .button {
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(193,133,18,.92) !important;
  color: #fff !important;
}

.hero-corner-title {
  position: absolute;
  z-index: 3;
  top: clamp(36px, 6vh, 72px);
  right: clamp(22px, 6vw, 90px);
  display: grid;
  justify-items: end;
  color: transparent;
  background: linear-gradient(90deg, #fff 0%, #e7c26c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(34px, 4.2vw, 70px);
  font-weight: 900;
  line-height: .9;
  letter-spacing: -.055em;
  text-align: right;
}

.hero-corner-title span:last-child {
  padding-right: .08em;
}

@media (max-width: 760px) {
  .hero {
    min-height: calc(100svh - 74px) !important;
    padding: 150px 18px 44px !important;
  }
  .hero .hero-copy {
    width: 100%;
  }
  .hero .hero-slogan {
    font-size: clamp(25px, 7vw, 38px) !important;
  }
  .hero .hero-slogan span {
    white-space: normal;
  }
  .hero .hero-description {
    display: none;
  }
  .hero-corner-title {
    top: 32px;
    right: 18px;
    font-size: clamp(34px, 12vw, 54px);
  }
}

/* Одинаковая высота карточек моделей */
.series-grid {
  align-items: stretch !important;
}

.series-model:not([open]) {
  height: 322px;
}

.series-model:not([open]) > summary {
  height: 100%;
  min-height: 0;
}

.series-model:not([open]) .series-model__cover {
  min-height: 0;
}

@media (max-width: 680px) {
  .series-model:not([open]) {
    height: auto;
  }

  .series-model:not([open]) > summary {
    height: auto;
    min-height: 480px;
  }

  .series-model:not([open]) .series-model__cover {
    min-height: 235px;
  }
}

/* === Этап 2 · серии «Озёра России» и порядок блоков === */
main {
  display: flex;
  flex-direction: column;
}

main > section {
  order: 20;
}

main > .hero { order: 1; }
main > #series-h { order: 2; }
main > #series-gh { order: 3; }
main > #series-spa { order: 4; }
main > #calculator { order: 5; }

#catalog {
  display: none !important;
}

.series-block {
  min-height: calc(100svh - 82px);
  padding: clamp(54px, 7vh, 86px) clamp(20px, 5vw, 76px) !important;
  color: #f4f0e8;
  border-top: 1px solid rgba(226, 186, 98, .12);
  background:
    radial-gradient(circle at 88% 8%, rgba(180, 122, 18, .11), transparent 31%),
    var(--site-deep-green) !important;
}

#series-gh {
  background:
    radial-gradient(circle at 12% 14%, rgba(180, 122, 18, .1), transparent 30%),
    #062219 !important;
}

.series-block__head {
  max-width: 1440px;
  margin: 0 auto clamp(30px, 4vw, 54px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(20px, 3vw, 48px);
  align-items: start;
}

.series-block__number {
  color: rgba(226, 186, 98, .38);
  font-size: clamp(58px, 7vw, 112px);
  font-weight: 900;
  line-height: .8;
  letter-spacing: -.07em;
}

.series-block__head h2 {
  max-width: 1060px;
  margin: 8px 0 12px;
  color: #f4f0e8 !important;
  font-size: clamp(36px, 4.7vw, 76px) !important;
  line-height: .98 !important;
}

.series-block__head p {
  margin: 0;
  color: #e2ba62 !important;
  font-size: clamp(17px, 1.4vw, 23px) !important;
  font-weight: 700;
}

.series-grid {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.6vw, 38px);
  align-items: start;
}

.series-model {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(226, 186, 98, .18);
  border-radius: 28px;
  background: rgba(8, 39, 29, .92);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .2);
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.series-model:hover,
.series-model[open] {
  border-color: rgba(226, 186, 98, .48);
  box-shadow: 0 28px 72px rgba(0, 0, 0, .3);
}

.series-model[open] {
  grid-column: 1 / -1;
}

.series-model > summary {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, .85fr);
  min-height: 300px;
  cursor: pointer;
  list-style: none;
}

.series-model > summary::-webkit-details-marker {
  display: none;
}

.series-model__cover {
  position: relative;
  min-height: 300px;
  overflow: hidden;
}

.series-model__cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 65%, rgba(5, 29, 21, .28));
  pointer-events: none;
}

.series-model__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) brightness(1.05);
  transition: transform .65s ease;
}

.series-model:hover .series-model__cover img {
  transform: scale(1.035);
}

.series-model__summary {
  padding: clamp(24px, 3vw, 42px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.series-model__eyebrow {
  margin-bottom: 14px;
  color: #e2ba62;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.series-model__summary > strong {
  color: #fff;
  font-size: clamp(30px, 3vw, 48px);
  line-height: .96;
}

.series-model__area {
  margin-top: 12px;
  color: rgba(244, 240, 232, .72);
  font-size: 18px;
  font-weight: 700;
}

.series-model__action {
  width: 100%;
  margin-top: auto;
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #f4f0e8;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: 14px;
  font-weight: 800;
}

.series-model__action b {
  color: #e2ba62;
  font-size: 20px;
  transition: transform .25s ease;
}

.series-model[open] .series-model__action b {
  transform: rotate(135deg);
}

.series-model__detail {
  padding: clamp(28px, 4vw, 62px);
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: clamp(30px, 5vw, 76px);
  border-top: 1px solid rgba(226, 186, 98, .17);
  background: #061f17;
}

.series-model__description {
  align-self: start;
  position: sticky;
  top: 118px;
}

.series-model__description h3 {
  margin: 12px 0 22px;
  color: #fff !important;
  font-size: clamp(38px, 4vw, 68px);
}

.series-model__description p {
  color: rgba(244, 240, 232, .76) !important;
  font-size: clamp(16px, 1.2vw, 19px) !important;
  line-height: 1.7 !important;
}

.series-model__specs {
  margin: 30px 0;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.series-model__specs > span {
  padding: 16px 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.series-model__specs small {
  color: rgba(244, 240, 232, .52);
}

.series-model__specs strong {
  color: #f4f0e8;
  text-align: right;
}

.series-model__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.series-model__gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
}

.series-model__gallery .series-model__photo {
  grid-column: 1 / -1;
}

.series-model__gallery img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: contain;
}

.series-model__gallery .series-model__photo img {
  min-height: 420px;
  object-fit: cover;
}

.series-model__gallery figcaption {
  padding: 12px 16px;
  color: #1d2823;
  border-top: 1px solid #e8e8e4;
  background: #f5f4ef;
  font-size: 13px;
  font-weight: 700;
}

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

  .series-model[open] {
    grid-column: auto;
  }

  .series-model__detail {
    grid-template-columns: 1fr;
  }

  .series-model__description {
    position: static;
  }
}

@media (max-width: 680px) {
  .series-block {
    min-height: auto;
    padding: 52px 16px !important;
  }

  .series-block__head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .series-block__number {
    font-size: 58px;
  }

  .series-model > summary {
    grid-template-columns: 1fr;
  }

  .series-model__cover {
    min-height: 235px;
  }

  .series-model__summary {
    min-height: 245px;
  }

  .series-model__gallery {
    grid-template-columns: 1fr;
  }

  .series-model__gallery .series-model__photo {
    grid-column: auto;
  }

  .series-model__gallery img,
  .series-model__gallery .series-model__photo img {
    min-height: 240px;
  }
}

/* === Админка: читаемые редакторы новой структуры === */
.admin-content .json-editor,
.admin-content input,
.admin-content textarea {
  color: #171510 !important;
  background: #fff !important;
  -webkit-text-fill-color: #171510 !important;
}

.admin-content .json-editor {
  font-family: Consolas, "Courier New", monospace !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
  tab-size: 2;
}

.admin-type-fieldset {
  margin: 18px 0;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  border: 1px solid rgba(201,145,32,.28);
  border-radius: 14px;
}

.admin-type-fieldset legend {
  padding: 0 8px;
  font-weight: 900;
}

.admin-type-fieldset label {
  display: inline-flex !important;
  align-items: center;
  gap: 9px;
}

.admin-type-fieldset input {
  width: 18px !important;
  height: 18px !important;
  min-height: 18px !important;
}

/* Admin panel 2026 */
.admin-body { margin: 0; background: #eef1ea; color: #172119; }
.admin-body .admin-shell { grid-template-columns: 280px minmax(0, 1fr); }
.admin-body .admin-sidebar { background: #03291f; color: #fff; padding: 26px 18px; gap: 4px; overflow-y: auto; }
.admin-body .admin-sidebar h1 { color: #fff; margin: 2px 10px 22px; }
.admin-body .admin-sidebar .admin-eyebrow { margin-left: 10px; }
.admin-body .admin-sidebar form { margin-top: 14px; }
.admin-logout { width: 100%; border: 1px solid rgba(255,255,255,.15); background: transparent; color: rgba(255,255,255,.72); border-radius: 10px; padding: 11px 12px; text-align: left; cursor: pointer; }
.admin-logout:hover { color: #fff; border-color: #d39a24; }
.admin-body .admin-content { width: 100%; max-width: 1480px; padding: 38px clamp(20px, 4vw, 64px) 80px; }
.admin-body .admin-content h2 { margin: 0 0 8px; font-size: clamp(30px, 4vw, 50px); line-height: 1; color: #03291f; }
.admin-body .admin-content p { max-width: 820px; }
.admin-heading { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 28px; }
.admin-eyebrow { margin: 0 0 8px; color: #c98b10; font-size: 12px; line-height: 1; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.admin-dashboard { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.admin-dashboard a { min-height: 150px; padding: 24px; display: flex; flex-direction: column; justify-content: flex-end; border: 1px solid #d5dccf; border-radius: 18px; background: #fff; color: #03291f; box-shadow: 0 10px 30px rgba(3,41,31,.05); }
.admin-dashboard a:hover { transform: translateY(-2px); border-color: #c98b10; }
.admin-dashboard strong { font-size: 22px; }
.admin-dashboard span { margin-top: 8px; color: #66736c; }
.admin-body .admin-edit { padding: 24px; border: 1px solid #d9dfd5; border-radius: 18px; background: #fff; box-shadow: 0 12px 34px rgba(3,41,31,.05); }
.admin-body .admin-edit label { display: grid; gap: 7px; font-weight: 700; }
.admin-body .admin-edit input:not([type=checkbox]), .admin-body .admin-edit textarea { width: 100%; border: 1px solid #d5dbd1; border-radius: 10px; padding: 12px 13px; background: #fbfcfa; color: #172119; font: inherit; }
.admin-body .admin-edit textarea { min-height: 110px; resize: vertical; }
.admin-project { margin: 0 0 14px; border: 1px solid #d5dccf; border-radius: 16px; background: #fff; overflow: hidden; }
.admin-project > summary { padding: 18px 22px; cursor: pointer; list-style: none; font-size: 20px; font-weight: 800; }
.admin-project > summary::after { content: '+'; float: right; color: #c98b10; }
.admin-project[open] > summary::after { content: '−'; }
.admin-project .admin-edit { margin: 0; border: 0; border-top: 1px solid #e2e6df; border-radius: 0; box-shadow: none; }
.admin-project .delete-form { padding: 0 24px 22px; }
.admin-upload { padding: 22px; display: flex; flex-wrap: wrap; align-items: center; gap: 14px; border: 1px dashed #c98b10; border-radius: 16px; background: #fff; margin-bottom: 24px; }
.admin-media-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 14px; }
.admin-media-grid article { padding: 10px; display: flex; flex-direction: column; gap: 7px; border: 1px solid #d5dccf; border-radius: 14px; background: #fff; overflow: hidden; }
.admin-media-grid img, .admin-file-icon { width: 100%; height: 150px; border-radius: 10px; object-fit: cover; background: #e9ede6; }
.admin-file-icon { display: grid; place-items: center; color: #758078; font-weight: 900; }
.admin-media-name { min-width: 0; overflow-wrap: anywhere; color: #173c31; }
.admin-media-grid article > small { color: #6c7770; }
.admin-media-path { min-height: 46px; padding: 8px; display: block; border-radius: 8px; background: #f1f4ee; color: #29342e; font-size: 11px; line-height: 1.35; white-space: normal; overflow-wrap: anywhere; user-select: all; }
.admin-copy { width: 100%; margin-top: auto; padding: 9px; border: 1px solid rgba(201,139,16,.35); background: #fff8e8; color: #74530d; border-radius: 8px; font-size: 12px; font-weight: 800; cursor: pointer; }
.admin-delete { margin-top: 6px; padding: 5px; border: 0; background: transparent; color: #9b3c32; cursor: pointer; }
.admin-media-system { min-height: 24px; display: flex; align-items: center; }
.admin-media-toolbar { margin: 0 0 18px; padding: 14px 16px; display: flex; align-items: end; justify-content: space-between; gap: 20px; border: 1px solid #d5dccf; border-radius: 14px; background: #fff; }
.admin-media-toolbar label { flex: 1; display: grid; gap: 6px; font-weight: 800; }
.admin-media-toolbar input { max-width: 560px; }
.admin-structured-form { padding: 0 !important; overflow: hidden; }
.admin-tree { padding: 22px; background: #f8faf6; }
.admin-tree-group { border: 1px solid #d8ded3; border-radius: 13px; background: #fff; overflow: hidden; }
.admin-tree-group + .admin-tree-group { margin-top: 10px; }
.admin-tree-group > summary { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 14px 16px; cursor: pointer; font-weight: 800; list-style: none; }
.admin-tree-group > summary::before { content: '›'; color: #c98b10; font-size: 22px; transition: transform .2s; }
.admin-tree-group[open] > summary::before { transform: rotate(90deg); }
.admin-tree-group > summary span { flex: 1; }
.admin-tree-group > summary small { color: #839087; font-weight: 500; }
.admin-tree-body { padding: 0 12px 12px; border-top: 1px solid #edf0eb; }
.admin-tree-row { position: relative; display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 8px; align-items: start; padding-top: 10px; }
.admin-tree-row > .admin-tree-group { min-width: 0; }
.admin-tree-field { display: grid; grid-template-columns: minmax(150px,.32fr) minmax(0,1fr); align-items: center; gap: 12px; min-height: 46px; }
.admin-tree-field > span { font-weight: 700; color: #3e4a43; }
.admin-tree-field input:not([type=checkbox]), .admin-tree-field textarea { width: 100%; min-width: 0; border: 1px solid #d6ddd2; border-radius: 8px; padding: 9px 10px; font: inherit; color: #172119; background: #fbfcfa; }
.admin-tree-field textarea { min-height: 76px; resize: vertical; }
.admin-tree-field input[type=checkbox] { width: 22px; height: 22px; accent-color: #c98b10; }
.admin-image-preview { position: relative; grid-column: 2; width: 190px; height: 108px; padding: 0; overflow: hidden; border-radius: 10px; border: 1px solid #d6ddd2; background: #eef2eb; cursor: pointer; }
.admin-image-preview img { width: 100%; height: 100%; object-fit: cover; }
.admin-image-preview b, .admin-project-asset__preview b { position: absolute; right: 8px; bottom: 8px; width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: #d39a18; color: #fff; box-shadow: 0 4px 14px rgba(0,0,0,.25); }
.admin-tree-field--asset > input { grid-column: 2; }
.admin-asset-actions { grid-column: 2; display: flex; align-items: center; flex-wrap: wrap; gap: 7px; }
.admin-asset-action { min-height: 36px; padding: 8px 11px; display: inline-flex !important; align-items: center; justify-content: center; border: 1px solid #c98b10; border-radius: 8px; background: #fff8e8; color: #73510d; font-size: 12px; font-weight: 800 !important; cursor: pointer; }
.admin-asset-action--muted { border-color: #d6ddd2; background: #f5f7f3; color: #4f5c54; }
.admin-asset-action.is-loading { opacity: .55; pointer-events: none; }
.admin-asset-status { flex-basis: 100%; color: #66736c; font-weight: 500; }
.admin-project-asset { margin: 18px 0; padding: 18px; display: grid; grid-template-columns: minmax(220px,320px) minmax(0,1fr); gap: 10px 16px; align-items: start; border: 1px solid #d7ded3; border-radius: 14px; background: #f8faf6; }
.admin-project-asset__title { grid-column: 1 / -1; font-weight: 900; }
.admin-project-asset__preview { position: relative; grid-row: span 4; width: 100%; aspect-ratio: 16/10; padding: 0; display: grid; place-items: center; overflow: hidden; border: 1px solid #d4dcd1; border-radius: 12px; background: #e8ede6; color: #66736c; cursor: pointer; }
.admin-project-asset__preview img { width: 100%; height: 100%; object-fit: cover; }
.admin-project-asset__path { display: grid; gap: 6px; }
.admin-project-asset > small { color: #68756d; }
.admin-modal-open { overflow: hidden; }
.admin-media-modal[hidden] { display: none; }
.admin-media-modal { position: fixed; inset: 0; z-index: 10000; display: grid; place-items: center; padding: 24px; }
.admin-media-modal__backdrop { position: absolute; inset: 0; background: rgba(0,25,18,.72); backdrop-filter: blur(5px); }
.admin-media-modal__dialog { position: relative; width: min(1180px,100%); max-height: min(860px,92vh); padding: 24px; display: flex; flex-direction: column; overflow: hidden; border: 1px solid rgba(211,154,24,.6); border-radius: 22px; background: #f4f6f1; box-shadow: 0 30px 90px rgba(0,0,0,.35); }
.admin-media-modal__dialog > header { display: flex; align-items: start; justify-content: space-between; gap: 20px; }
.admin-media-modal__dialog > header h2 { margin: 0 0 5px; color: #03291f; font-size: clamp(28px,4vw,44px); }
.admin-media-modal__dialog > header p { margin: 0; }
.admin-media-modal__dialog > header > button { flex: 0 0 46px; width: 46px; height: 46px; border: 1px solid #c98b10; border-radius: 50%; background: #fff; color: #03291f; font-size: 28px; cursor: pointer; }
.admin-media-modal__search { margin: 18px 0 14px; display: grid; gap: 6px; font-weight: 800; }
.admin-media-picker-grid { min-height: 220px; padding-right: 6px; display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 12px; overflow-y: auto; }
.admin-media-picker-card { min-width: 0; padding: 9px; display: flex; flex-direction: column; gap: 7px; text-align: left; border: 1px solid #d3dbcf; border-radius: 13px; background: #fff; color: #172119; cursor: pointer; }
.admin-media-picker-card:hover { border-color: #c98b10; box-shadow: 0 8px 22px rgba(3,41,31,.1); }
.admin-media-picker-card img, .admin-media-picker-card .admin-file-icon { width: 100%; height: 130px; object-fit: cover; border-radius: 9px; }
.admin-media-picker-card strong, .admin-media-picker-card code { max-width: 100%; overflow-wrap: anywhere; }
.admin-media-picker-card code { color: #69766e; font-size: 10px; }
.admin-media-picker-empty { grid-column: 1 / -1; padding: 40px; text-align: center; color: #67756d; }
.admin-row-controls { display: flex; gap: 3px; padding-top: 6px; }
.admin-row-controls button { width: 28px; height: 28px; border: 1px solid #d5dcd1; border-radius: 7px; background: #fff; color: #354139; cursor: pointer; }
.admin-row-controls button.danger { color: #a63d32; }
.admin-add, .admin-secondary { margin-top: 12px; border: 1px solid #c98b10; border-radius: 8px; padding: 9px 13px; background: #fff8e8; color: #77540c; font-weight: 800; cursor: pointer; }
.admin-raw { padding: 16px 22px; border-top: 1px solid #e2e6df; }
.admin-raw summary { cursor: pointer; font-weight: 800; }
.admin-raw .json-editor { min-height: 420px !important; margin-top: 12px; font-family: ui-monospace,Consolas,monospace !important; font-size: 13px !important; }
.admin-savebar { position: sticky; bottom: 0; z-index: 3; display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 14px 22px; border-top: 1px solid #d9dfd5; background: rgba(255,255,255,.94); backdrop-filter: blur(12px); }
.admin-savebar span { color: #66736c; font-size: 13px; }

@media (max-width: 1050px) {
  .admin-body .admin-shell { grid-template-columns: 230px minmax(0,1fr); }
  .admin-dashboard { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .admin-media-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .admin-media-picker-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
}
@media (max-width: 760px) {
  .admin-body .admin-shell { display: block; }
  .admin-body .admin-sidebar { position: static; max-height: none; display: flex; flex-direction: row; overflow-x: auto; padding: 12px; }
  .admin-body .admin-sidebar > div, .admin-body .admin-sidebar form { display: none; }
  .admin-body .admin-sidebar a { white-space: nowrap; }
  .admin-body .admin-content { padding: 24px 14px 60px; }
  .admin-heading { align-items: start; flex-direction: column; }
  .admin-dashboard, .admin-media-grid { grid-template-columns: 1fr 1fr; }
  .admin-tree-field { grid-template-columns: 1fr; gap: 5px; }
  .admin-image-preview, .admin-tree-field--asset > input, .admin-asset-actions { grid-column: 1; }
  .admin-savebar { align-items: stretch; flex-direction: column; }
  .admin-project-asset { grid-template-columns: 1fr; }
  .admin-project-asset__preview { grid-row: auto; }
  .admin-media-toolbar { align-items: stretch; flex-direction: column; }
  .admin-media-modal { padding: 10px; }
  .admin-media-modal__dialog { max-height: 96vh; padding: 16px; border-radius: 16px; }
  .admin-media-picker-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 480px) {
  .admin-dashboard, .admin-media-grid { grid-template-columns: 1fr; }
  .admin-tree { padding: 10px; }
  .admin-tree-row { grid-template-columns: minmax(0,1fr); }
  .admin-row-controls { justify-content: flex-end; }
  .admin-media-picker-grid { grid-template-columns: 1fr 1fr; }
  .admin-media-picker-card img, .admin-media-picker-card .admin-file-icon { height: 105px; }
}

.agree a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content--single {
  max-width: 1120px;
  margin: 0 auto;
}

.requisites-list {
  display: grid;
  gap: 0;
  margin: 0;
}

.requisites-list div {
  display: grid;
  grid-template-columns: minmax(190px, .42fr) minmax(0, 1fr);
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(20,18,15,.12);
}

.requisites-list dt {
  color: #6a6254;
  font-weight: 700;
}

.requisites-list dd {
  margin: 0;
  color: #171510;
  font-weight: 800;
}

@media (max-width: 640px) {
  .requisites-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* Новый конфигуратор: старые порядковые псевдоподписи здесь недопустимы */
.calc-form .calc-option-card::before,
.calc-form .calc-option-card::after,
.calc-form .calc-value-grid label::before,
.calc-form .calc-value-grid label::after,
.calc-form .calc-package-grid label::before,
.calc-form .calc-package-grid label::after {
  content: none !important;
  display: none !important;
}

.calc-form .calc-option-card > strong {
  display: block !important;
  color: #171510 !important;
  font-size: 15px !important;
  line-height: 1.2 !important;
  text-transform: none !important;
}

.calc-custom-area {
  width: min(360px, 100%);
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 12px;
  align-items: center;
}

.calc-form .calc-custom-area::before,
.calc-form .calc-custom-area::after {
  content: none !important;
  display: none !important;
}

.calc-custom-area[hidden] {
  display: none !important;
}

.calc-custom-area span {
  grid-column: 1 / -1;
  color: #5f584d !important;
  font-size: 13px !important;
  font-weight: 700;
}

.calc-custom-area input {
  min-width: 0;
  height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(20,18,15,.18);
  border-radius: 12px;
  background: rgba(255,255,255,.72);
  color: #171510;
  font: inherit;
  font-size: 18px;
  font-weight: 800;
}

.calc-custom-area strong {
  color: #c99120;
  font-size: 18px;
}

.lead-form label.agree {
  display: grid !important;
  grid-template-columns: 18px minmax(0, 1fr) !important;
  align-items: center !important;
  column-gap: 10px !important;
  line-height: 1.35 !important;
}

.lead-form label.agree input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  min-height: 18px !important;
  padding: 0 !important;
  margin: 0 !important;
  align-self: center !important;
}

.lead-form label.agree > span {
  min-width: 0;
  align-self: center;
}

.calc-section .calc-result {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-self: stretch !important;
}

.calc-section .calc-result > p {
  font-size: 15px !important;
  letter-spacing: .06em !important;
}

.calc-section .calc-result #calc-summary-title {
  font-size: clamp(30px, 2.6vw, 42px) !important;
}

.calc-section .calc-result > small {
  font-size: 14px !important;
  line-height: 1.5 !important;
}

.calc-section .calc-result .lead-form label {
  font-size: 15px !important;
}

.calc-section .calc-result .lead-form input:not([type="checkbox"]) {
  min-height: 58px !important;
  font-size: 16px !important;
}

.calc-section .calc-result .lead-form textarea {
  min-height: 120px !important;
  font-size: 16px !important;
}

.calc-section .calc-result .lead-form .button {
  min-height: 58px !important;
  font-size: 17px !important;
}

@media (max-width: 980px) {
  .calc-section .calc-result {
    justify-content: flex-start !important;
  }
}

/* === Этап 4: технологии === */
.technologies {
  color: #f6f0e4 !important;
  background: #0c0d0b !important;
}

.technologies__intro {
  max-width: none;
  margin-bottom: 30px;
}

.technologies__intro h2 {
  max-width: 900px;
  color: #fff !important;
}

.technologies__intro p {
  max-width: 1080px;
  color: rgba(255,255,255,.72) !important;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.65;
}

.technologies__body {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.technologies__list {
  display: grid;
  gap: 12px;
}

.technologies__list article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid rgba(224,180,90,.18);
}

.technologies__list article > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #c99120;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.technologies__list h3 {
  margin-bottom: 9px;
  color: #fff !important;
  font-size: clamp(21px, 1.6vw, 28px);
}

.technologies__list p {
  margin: 0;
  color: rgba(255,255,255,.68) !important;
  font-size: 15px;
  line-height: 1.6;
}

.technologies__visual {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 12px;
}

.technologies__visual img {
  width: 100%;
  object-fit: cover;
  border: 1px solid rgba(224,180,90,.18);
}

.technologies__cutaway {
  aspect-ratio: 4 / 3;
  border-radius: 28px;
}

.technologies__photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.technologies__photos img {
  aspect-ratio: 1 / 1;
  border-radius: 20px;
}

.technologies__photos img:nth-child(3) {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 8;
}

@media (max-width: 980px) {
  .technologies__body {
    grid-template-columns: 1fr;
  }
  .technologies__visual {
    position: static;
  }
}

@media (max-width: 600px) {
  .technologies__list article {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
  }
  .technologies__list article > span {
    width: 36px;
    height: 36px;
  }
}

/* === Финальная мобильная адаптация === */
@media (max-width: 760px) {
  .site-header .menu-toggle {
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    border: 1px solid rgba(231,194,108,.35) !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,.03) !important;
  }

  .site-header .menu-toggle span {
    width: 20px !important;
    height: 2px !important;
    flex: 0 0 2px !important;
    display: block !important;
    border-radius: 2px !important;
    background: #f4f0e8 !important;
  }

  .hero-corner-title {
    top: 44px !important;
    right: auto !important;
    left: 50% !important;
    width: max-content !important;
    max-width: calc(100% - 36px) !important;
    justify-items: center !important;
    transform: translateX(-50%) !important;
    text-align: center !important;
  }

  .hero-corner-title span:last-child {
    padding-right: 0 !important;
  }

  .calc-section .calculator {
    width: 100% !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 22px !important;
  }

  #calculator.calc-section {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .calc-section .calc-form,
  .calc-section .calc-result {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    grid-column: auto !important;
  }

  .calc-section .calc-form {
    padding: 18px !important;
  }

  .calc-section .calc-result {
    padding: 28px 20px !important;
  }

  .calc-section .calc-type-tabs {
    grid-template-columns: 1fr !important;
  }

  .calc-section .calc-value-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .calc-section .calc-option-card {
    width: 100% !important;
    min-width: 0 !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .calc-section .calc-package-grid,
  .calc-section .calc-form .option-grid {
    grid-template-columns: 1fr !important;
  }

  .calc-section .calc-custom-area {
    width: 100% !important;
  }
}

.about-svr h2 {
  font-size: clamp(34px, 4vw, 58px) !important;
  line-height: 1.04 !important;
}

@media (max-width: 640px) {
  .about-svr h2 {
    font-size: clamp(30px, 9vw, 42px) !important;
  }
}

/* === Этап 2: направления каталога === */
.catalog-categories {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 44px;
}

.catalog-category {
  position: relative;
  min-height: 210px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid rgba(224,180,90,.18);
  border-radius: 16px;
  color: #fff;
  background: #171713;
  box-shadow: 0 18px 44px rgba(0,0,0,.18);
}

.catalog-category:nth-child(1),
.catalog-category:nth-child(2) {
  grid-column: span 5;
  min-height: 330px;
  padding: 24px;
}

.catalog-category:nth-child(n+3) {
  grid-column: span 2;
}

.catalog-category::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6,7,6,.9), rgba(6,7,6,.08) 70%);
}

.catalog-category img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.catalog-category--bath img,
.catalog-category--utility img {
  width: 300%;
  max-width: none;
  height: 200%;
  object-fit: fill;
  transform: none;
}

.catalog-category--bath img {
  left: 0;
  top: 0;
}

.catalog-category--utility img {
  left: -100%;
  top: 0;
}

.catalog-category--gazebo img,
.catalog-category--furniture img {
  width: 200%;
  max-width: none;
  height: 200%;
  object-fit: fill;
  transform: none;
}

.catalog-category--gazebo img {
  left: 0;
  top: -100%;
}

.catalog-category--furniture img {
  left: -100%;
  top: -100%;
}

.catalog-category span,
.catalog-category small {
  position: relative;
  z-index: 1;
}

.catalog-category span {
  max-width: 180px;
  font-size: clamp(16px, 1.25vw, 21px);
  font-weight: 900;
  line-height: 1.08;
}

.catalog-category:nth-child(1) span,
.catalog-category:nth-child(2) span {
  max-width: 420px;
  font-size: clamp(28px, 2.6vw, 42px);
}

.catalog-category:nth-child(1) small,
.catalog-category:nth-child(2) small {
  font-size: 12px;
}

.catalog-category small {
  margin-top: 8px;
  color: #e5c26f;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.catalog-category:hover img {
  transform: scale(1.045);
}

.catalog-category--bath:hover img,
.catalog-category--utility:hover img,
.catalog-category--gazebo:hover img,
.catalog-category--furniture:hover img {
  transform: none;
}

.catalog-category.is-active {
  outline: 3px solid #c99120;
  outline-offset: 3px;
}

.catalog-models-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.catalog-models-head h3 {
  margin: 0;
  font-size: clamp(26px, 3vw, 42px);
}

.catalog-models-head a {
  color: #c99120;
  font-weight: 800;
}

.catalog-empty {
  padding: clamp(32px, 5vw, 64px);
  border: 1px solid rgba(224,180,90,.22);
  border-radius: 24px;
  background: rgba(255,255,255,.04);
}

.catalog-empty p {
  max-width: 720px;
}

.plan-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 28px;
}

@media (max-width: 980px) {
  .catalog-categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .catalog-category:nth-child(1),
  .catalog-category:nth-child(2),
  .catalog-category:nth-child(n+3) {
    grid-column: span 1;
  }
  .catalog-category:nth-child(1),
  .catalog-category:nth-child(2) {
    min-height: 290px;
  }
}

@media (max-width: 600px) {
  .catalog-categories {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }
  .catalog-category {
    flex: 0 0 72vw;
    min-height: 250px;
    scroll-snap-align: start;
  }
  .catalog-category:nth-child(1),
  .catalog-category:nth-child(2) {
    min-height: 250px;
  }
  .catalog-models-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* === Этап 3: конфигуратор из шести вкладок === */
.calc-form {
  display: block !important;
}

.calc-type-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 30px;
}

.calc-type-tab {
  min-height: 58px;
  padding: 10px 16px;
  border: 1px solid rgba(20,18,15,.14);
  border-radius: 14px;
  background: rgba(255,255,255,.52);
  color: #171510;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.calc-type-tab.is-active,
.calc-type-tab:hover {
  border-color: #c99120;
  background: #c99120;
  color: #fff;
}

.calc-config-section {
  margin: 0 0 30px;
}

.calc-config-section[hidden] {
  display: none !important;
}

.calc-config-section h3 {
  margin: 0 0 14px;
  font-size: 20px;
}

.calc-config-section > p {
  margin: -7px 0 14px;
  font-size: 13px;
}

.calc-value-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.calc-option-card {
  position: relative;
  min-height: 52px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(20,18,15,.13);
  border-radius: 12px;
  background: rgba(255,255,255,.48);
  color: #171510;
  cursor: pointer;
}

.calc-option-card input,
.check-option input {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none;
}

.calc-option-card.is-active {
  border-color: #c99120;
  background: rgba(201,145,32,.14);
  box-shadow: inset 0 0 0 1px #c99120;
}

.calc-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.calc-package-grid .calc-option-card {
  min-height: 150px;
  align-items: flex-start;
  flex-direction: column;
}

.calc-option-card__icon {
  color: #c99120;
  font-size: 30px;
  line-height: 1;
}

.calc-value-grid .calc-option-card:has(.calc-option-card__icon) {
  min-width: 130px;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.calc-package-grid small {
  color: #6a6254;
  font-size: 12px;
  line-height: 1.45;
}

.calc-form .option-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 9px !important;
}

.calc-form .option-grid .check-option {
  position: relative !important;
  min-height: 76px !important;
  padding: 12px !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  border: 1px solid rgba(20,18,15,.13) !important;
  border-radius: 12px !important;
  background: rgba(255,255,255,.48) !important;
  color: #171510 !important;
  cursor: pointer;
}

.calc-form .option-grid .check-option::before,
.calc-form .option-grid .check-option::after {
  display: none !important;
  content: none !important;
}

.calc-form .option-grid .check-option.is-active {
  border-color: #c99120 !important;
  background: rgba(201,145,32,.14) !important;
  box-shadow: inset 0 0 0 1px #c99120;
}

.check-option__icon {
  flex: 0 0 28px;
  color: #c99120 !important;
  font-size: 24px !important;
  text-align: center;
}

.calc-form .option-grid .check-option strong {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  color: inherit !important;
  font-size: 13px !important;
  line-height: 1.2;
}

.calc-form .option-grid .check-option {
  width: 100% !important;
  max-width: none !important;
  white-space: normal !important;
}

.calc-form .option-grid .check-option .check-option__icon {
  display: block !important;
  flex: 0 0 28px !important;
  color: #c99120 !important;
  font-size: 24px !important;
  line-height: 1 !important;
}

.calc-related-section {
  padding-top: 24px;
  border-top: 1px solid rgba(20,18,15,.12);
}

.calc-result #calc-summary-title {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.05;
}

.calc-price,
.calc-gifts {
  margin: 14px 0;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 16px;
  background: rgba(6,31,23,.18);
}

.calc-price > span,
.calc-gifts > span {
  display: block;
  margin-bottom: 7px;
  color: rgba(255,255,255,.78) !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.calc-price b {
  display: block;
  color: #fff;
  font-size: clamp(25px, 2vw, 34px);
  line-height: 1.05;
}

.calc-gifts ul {
  margin: 0;
  padding-left: 18px;
}

.calc-gifts li {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.calc-gifts li + li {
  margin-top: 6px;
}

@media (max-width: 760px) {
  .calc-type-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .calc-package-grid,
  .calc-form .option-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Контраст заголовков на светлых карточках юридических страниц */
.legal-body .legal-card h1,
.legal-body .legal-card h2,
.legal-body .legal-card h3,
.legal-body .legal-content-card h1,
.legal-body .legal-content-card h2,
.legal-body .legal-content-card h3 {
  color: #171510 !important;
  -webkit-text-fill-color: #171510 !important;
}

/* === Hero text correction: 2026-07-02 === */
.hero .hero-copy {
  transform: translateY(34px) !important;
}

.hero .hero-slogan {
  width: min(760px, 100%) !important;
  max-width: 760px !important;
  margin-bottom: 24px !important;
  font-size: clamp(44px, 4.6vw, 76px) !important;
  line-height: 1.06 !important;
  letter-spacing: -.035em !important;
}

.hero .hero-slogan span {
  display: inline !important;
  white-space: normal !important;
}

.hero .hero-slogan span:first-child::after {
  content: " ";
}

.hero-corner-title {
  font-size: clamp(68px, 8.4vw, 140px) !important;
  line-height: .86 !important;
}

@media (max-width: 980px) {
  .hero .hero-copy {
    transform: translateY(18px) !important;
  }
  .hero .hero-slogan {
    width: min(680px, 100%) !important;
    max-width: 680px !important;
    font-size: clamp(38px, 6vw, 62px) !important;
  }
  .hero-corner-title {
    font-size: clamp(54px, 9vw, 92px) !important;
  }
}

@media (max-width: 760px) {
  .hero .hero-copy {
    transform: none !important;
  }
  .hero .hero-slogan {
    width: 100% !important;
    max-width: 100% !important;
    font-size: clamp(28px, 7.2vw, 40px) !important;
    line-height: 1.1 !important;
  }
  .hero-corner-title {
    font-size: clamp(44px, 15vw, 68px) !important;
  }
}

/* === Hero title correction v3 === */
.hero .hero-slogan {
  width: min(980px, 100%) !important;
  max-width: 980px !important;
  font-size: 100px !important;
  line-height: .98 !important;
  letter-spacing: -.045em !important;
}

.hero .hero-slogan span {
  display: block !important;
  white-space: nowrap !important;
}

.hero .hero-slogan span:first-child::after {
  content: none !important;
}

.hero-corner-title {
  font-size: 100px !important;
  line-height: .86 !important;
}

@media (max-width: 1180px) {
  .hero .hero-slogan {
    font-size: clamp(68px, 8vw, 100px) !important;
    width: min(900px, 100%) !important;
    max-width: 900px !important;
  }
  .hero-corner-title {
    font-size: clamp(72px, 8.5vw, 100px) !important;
  }
}

@media (max-width: 760px) {
  .hero .hero-slogan {
    font-size: clamp(30px, 8vw, 44px) !important;
    line-height: 1.08 !important;
  }
  .hero-corner-title {
    font-size: clamp(44px, 15vw, 68px) !important;
  }
}

/* === Hero title correction v4 === */
.hero {
  min-height: calc(115vh - 92px) !important;
  padding-top: clamp(72px, 8vw, 120px) !important;
  padding-bottom: clamp(72px, 8vw, 120px) !important;
}

.hero .hero-slogan {
  width: auto !important;
  max-width: none !important;
  font-size: 70px !important;
  line-height: .98 !important;
  letter-spacing: -.045em !important;
}

.hero .hero-slogan span {
  display: block !important;
  white-space: nowrap !important;
}

.hero-corner-title {
  font-size: 90px !important;
  line-height: .86 !important;
}

@media (max-width: 1180px) {
  .hero {
    min-height: auto !important;
    padding-top: clamp(58px, 7vw, 92px) !important;
    padding-bottom: clamp(58px, 7vw, 92px) !important;
  }
  .hero .hero-slogan {
    font-size: clamp(60px, 7.6vw, 90px) !important;
  }
  .hero-corner-title {
    font-size: clamp(64px, 8vw, 90px) !important;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: calc(100svh - 74px) !important;
    padding: 150px 18px 54px !important;
  }
  .hero .hero-slogan {
    width: 100% !important;
    max-width: 100% !important;
    font-size: clamp(30px, 8vw, 44px) !important;
    line-height: 1.08 !important;
  }
  .hero .hero-slogan span {
    white-space: normal !important;
  }
  .hero-corner-title {
    font-size: clamp(44px, 15vw, 68px) !important;
  }
}

/* === Hero visibility correction v5 === */
.hero {
  min-height: calc(125svh - 92px) !important;
  align-items: flex-end !important;
  padding-top: clamp(92px, 10vh, 150px) !important;
  padding-bottom: clamp(96px, 13vh, 170px) !important;
  overflow: hidden !important;
}

.hero .hero-copy {
  width: 100% !important;
  max-width: calc(100vw - clamp(44px, 12vw, 180px)) !important;
  justify-content: flex-end !important;
  transform: none !important;
}

.hero .hero-slogan {
  width: 100% !important;
  max-width: none !important;
  font-size: 70px !important;
  line-height: 1.02 !important;
  margin: 0 0 26px !important;
}

.hero .hero-slogan span {
  display: block !important;
  white-space: normal !important;
  max-width: 100% !important;
}

.hero-corner-title {
  top: clamp(72px, 9vh, 120px) !important;
  right: clamp(22px, 6vw, 90px) !important;
  font-size: 90px !important;
  line-height: .9 !important;
}

@media (max-width: 1180px) {
  .hero {
    min-height: calc(112svh - 82px) !important;
    padding-top: clamp(80px, 9vh, 120px) !important;
    padding-bottom: clamp(72px, 10vh, 120px) !important;
  }
  .hero .hero-copy {
    max-width: calc(100vw - 44px) !important;
  }
  .hero .hero-slogan {
    font-size: clamp(56px, 7.5vw, 90px) !important;
  }
  .hero-corner-title {
    top: clamp(62px, 8vh, 100px) !important;
    font-size: clamp(56px, 8vw, 90px) !important;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: calc(100svh - 74px) !important;
    padding: 150px 18px 54px !important;
  }
  .hero .hero-copy {
    max-width: 100% !important;
  }
  .hero .hero-slogan {
    font-size: clamp(30px, 8vw, 44px) !important;
    line-height: 1.08 !important;
  }
  .hero-corner-title {
    top: 82px !important;
    font-size: clamp(42px, 14vw, 62px) !important;
  }
}


/* === Hero correction v6: fixed title lines + original mobile === */
.hero .hero-slogan span {
  display: block !important;
  white-space: nowrap !important;
}

@media (max-width: 760px) {
  .hero {
    min-height: calc(100svh - 74px) !important;
    align-items: center !important;
    padding: 150px 18px 44px !important;
  }
  .hero .hero-copy {
    width: 100% !important;
    max-width: 100% !important;
    justify-content: flex-start !important;
    transform: none !important;
  }
  .hero .hero-slogan {
    width: 100% !important;
    max-width: 100% !important;
    font-size: clamp(25px, 7vw, 38px) !important;
    line-height: 1.08 !important;
  }
  .hero .hero-slogan span {
    white-space: normal !important;
  }
  .hero-corner-title {
    top: 32px !important;
    right: 18px !important;
    font-size: clamp(34px, 12vw, 54px) !important;
  }
}

/* === Hero mobile text fix v7 === */
@media (max-width: 760px) {
  .hero .hero-lead,
  .hero-copy .hero-lead {
    max-width: 100% !important;
    font-size: clamp(16px, 4.4vw, 19px) !important;
    line-height: 1.38 !important;
    font-weight: 600 !important;
    margin: 14px 0 0 !important;
  }

  .hero .hero-description,
  .hero-copy .hero-description {
    display: block !important;
    max-width: 100% !important;
    margin: 10px 0 0 !important;
    font-size: clamp(13px, 3.7vw, 15px) !important;
    line-height: 1.45 !important;
    color: rgba(255,255,255,.78) !important;
  }
}

/* Закреплённая шапка */
.site-header,
.site-header.compact {
  position: fixed !important;
  inset: 0 0 auto 0;
  width: 100%;
  z-index: 1000 !important;
}

.site-header + main {
  margin-top: 82px;
}

/* Финальный вариант главного слогана: две строки, от белого к золоту */
.hero .hero-slogan span {
  display: block !important;
  width: fit-content;
  color: transparent !important;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 34%, #f7e5b5 68%, #d3a43b 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

@media (max-width: 760px) {
  .site-header + main {
    margin-top: 74px;
  }

  .hero .hero-slogan span {
    width: auto;
  }
}

/* === Этап 1 · 23.07.2026: глубокий зелёный фон, меню и первый экран === */
:root {
  --site-deep-green: #041b14;
  --site-deep-green-soft: #08271d;
  --site-deep-green-card: #0c3024;
}

html,
body,
main {
  background: var(--site-deep-green) !important;
}

.site-header,
.site-header.compact,
.legal-header {
  min-height: 82px !important;
  background: rgba(4, 27, 20, .96) !important;
  border-bottom-color: rgba(226, 186, 98, .16) !important;
  z-index: 1200 !important;
}

.main-header {
  grid-template-columns: auto auto minmax(0, 1fr) auto !important;
  gap: clamp(12px, 1.8vw, 26px) !important;
}

.main-header .menu-toggle {
  grid-column: 1;
}

.main-header .brand {
  grid-column: 2;
  min-width: clamp(210px, 21vw, 310px) !important;
  width: clamp(210px, 21vw, 310px) !important;
  height: 78px !important;
}

.main-header .brand img {
  width: 100% !important;
  max-width: 300px !important;
  max-height: 76px !important;
}

.main-header .button-small {
  grid-column: 4;
  width: auto !important;
  justify-self: end !important;
}

.site-header .menu-toggle {
  width: 48px !important;
  height: 48px !important;
  padding: 0 !important;
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  border: 1px solid rgba(231, 194, 108, .4) !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, .035) !important;
  cursor: pointer;
}

.site-header .menu-toggle span {
  width: 22px !important;
  height: 2px !important;
  display: block !important;
  flex: 0 0 2px !important;
  border-radius: 2px !important;
  background: #f4f0e8 !important;
  transition: transform .25s ease, opacity .2s ease;
}

.site-header .menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header .menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.site-header .menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.site-header .nav {
  position: fixed !important;
  top: 99px !important;
  left: 0 !important;
  z-index: 1190 !important;
  width: min(540px, calc(100vw - 20px)) !important;
  height: calc(100svh - 99px) !important;
  padding: 20px clamp(22px, 4vw, 48px) 36px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  gap: 0 !important;
  overflow-y: auto !important;
  color: #f4f0e8 !important;
  background: linear-gradient(180deg, #06231a 0%, #031710 100%) !important;
  border-right: 1px solid rgba(226, 186, 98, .18) !important;
  box-shadow: 22px 28px 70px rgba(0, 0, 0, .38) !important;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-104%);
  transition: transform .3s ease, opacity .25s ease, visibility .3s ease;
  white-space: normal !important;
}

.site-header .nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.site-header .nav a {
  padding: 14px 0 !important;
  display: block !important;
  color: rgba(244, 240, 232, .92) !important;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  font-size: clamp(15px, 1.15vw, 18px) !important;
  line-height: 1.35 !important;
}

.site-header .nav a:hover,
.site-header .nav a:focus-visible {
  color: #e2ba62 !important;
}

.nav-backdrop {
  position: fixed;
  inset: 99px 0 0;
  z-index: 1100;
  display: block;
  border: 0;
  background: rgba(0, 10, 7, .58);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .nav-backdrop {
  opacity: 1;
  visibility: visible;
}

.hero {
  height: calc(100svh - 82px) !important;
  min-height: calc(100svh - 82px) !important;
  padding-top: clamp(54px, 8vh, 92px) !important;
  padding-bottom: clamp(46px, 7vh, 78px) !important;
  background: var(--site-deep-green) !important;
  border-bottom-color: rgba(255, 255, 255, .08) !important;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(3, 26, 19, .6) 0%, rgba(3, 26, 19, .32) 48%, rgba(3, 26, 19, .05) 100%),
    linear-gradient(0deg, rgba(3, 22, 16, .4), transparent 58%) !important;
}

.hero .hero-media {
  background: var(--site-deep-green) !important;
}

.hero .hero-media::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, .01), rgba(2, 24, 17, .08)) !important;
}

.hero .hero-slide,
.hero .fade-photo {
  object-fit: cover;
  filter: saturate(1.06) contrast(.98) brightness(1.16) !important;
}

.hero .hero-copy {
  transform: none !important;
}

.section,
.section:nth-of-type(odd):not(.hero),
#catalog.section,
.calc-section,
.section.geography,
.gallery,
.section.production-hub.production-hub,
.legal-placeholder,
.final-cta,
.legal-document,
.status-page,
.legal-page {
  background: var(--site-deep-green) !important;
}

.catalog-category,
.project-card,
.package-card,
.production-step,
.production-hub__steps,
.legal-placeholder__grid article,
.final-contact,
.final-cta .lead-form,
.technology-card,
.reviews article,
.faq details {
  background-color: var(--site-deep-green-card) !important;
}

.final-cta input,
.final-cta textarea {
  background: var(--site-deep-green-soft) !important;
}

.footer {
  background: #02110c !important;
}

[id] {
  scroll-margin-top: 96px;
}

@media (max-width: 760px) {
  .main-header {
    min-height: 74px !important;
    grid-template-columns: auto minmax(0, 1fr) !important;
    gap: 10px !important;
    padding-inline: 14px !important;
  }

  .main-header .brand {
    min-width: min(190px, calc(100vw - 82px)) !important;
    width: min(190px, calc(100vw - 82px)) !important;
    height: 58px !important;
  }

  .main-header .brand img {
    width: 100% !important;
    max-width: 190px !important;
    max-height: 56px !important;
  }

  .site-header .button-small,
  .site-header .phone {
    display: none !important;
  }

  .site-header .nav {
    top: 79px !important;
    height: calc(100svh - 79px) !important;
  }

  .nav-backdrop {
    inset: 79px 0 0;
  }

  .hero .hero-copy {
    transform: none !important;
  }

  .hero {
    height: calc(100svh - 74px) !important;
    min-height: calc(100svh - 74px) !important;
    padding: 72px 18px 42px !important;
  }
}

/* === Блок «О компании»: реальные фотографии производства === */
.about-svr__media--collage {
  min-height: 590px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, .65fr) !important;
  grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

.about-svr__media--collage .about-svr__photo {
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(224, 180, 90, .18);
  box-shadow: 0 24px 64px rgba(0, 0, 0, .26);
}

.about-svr__media--collage .about-svr__photo--main {
  grid-row: 1 / 3;
}

.about-svr__media--collage .about-svr__photo img {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  object-fit: cover !important;
}

.about-svr__media--collage .about-svr__photo:nth-child(3) img {
  object-position: center 58% !important;
}

.about-svr__media--collage .about-svr__badge {
  min-width: 235px !important;
}

.about-svr__media--collage .about-svr__badge strong {
  font-size: 40px !important;
}

@media (max-width: 1024px) {
  .about-svr__media--collage {
    min-height: 520px !important;
  }
}

@media (max-width: 640px) {
  .about-svr__media--collage {
    min-height: 500px !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-template-rows: minmax(290px, 1.3fr) minmax(170px, .7fr) !important;
  }

  .about-svr__media--collage .about-svr__photo--main {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .about-svr__media--collage .about-svr__badge {
    left: 14px !important;
    right: 14px !important;
    bottom: 14px !important;
    min-width: 0 !important;
  }
}

/* === Страница 07 · Наши технологии === */
main > #about {
  order: 6;
}

main > #technologies {
  order: 7;
}

.technology-differences {
  padding: clamp(58px, 8vh, 98px) clamp(20px, 5vw, 76px) !important;
  color: #f4f0e8;
  border-top: 1px solid rgba(226, 186, 98, .14);
  background:
    radial-gradient(circle at 84% 8%, rgba(193, 133, 18, .12), transparent 32%),
    #041b14 !important;
}

.technology-differences__head {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto clamp(36px, 5vw, 68px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(22px, 3vw, 48px);
  align-items: start;
}

.technology-differences__number {
  color: rgba(226, 186, 98, .38);
  font-size: clamp(58px, 7vw, 112px);
  font-weight: 900;
  line-height: .8;
  letter-spacing: -.07em;
}

.technology-differences__head h2 {
  max-width: 1050px;
  margin: 10px 0 18px;
  color: #f4f0e8 !important;
  font-size: clamp(38px, 4.8vw, 76px) !important;
  line-height: 1 !important;
  letter-spacing: -.045em !important;
}

.technology-differences__head p {
  max-width: 720px;
  margin: 0;
  color: rgba(244, 240, 232, .66) !important;
  font-size: clamp(16px, 1.15vw, 19px) !important;
}

.technology-differences__grid {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.technology-difference {
  overflow: hidden;
  border: 1px solid rgba(226, 186, 98, .17);
  border-radius: 22px;
  background: rgba(8, 39, 29, .9);
  transition: border-color .22s ease, background .22s ease;
}

.technology-difference:not([open]) {
  height: 142px;
}

.technology-difference:hover,
.technology-difference[open] {
  border-color: rgba(226, 186, 98, .5);
  background: #0a3024;
}

.technology-difference[open] {
  grid-column: 1 / -1;
}

.technology-difference > summary {
  min-height: 140px;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  cursor: pointer;
  list-style: none;
}

.technology-difference > summary::-webkit-details-marker {
  display: none;
}

.technology-difference__index {
  color: #dba83f;
  font-size: 15px;
  font-weight: 900;
  align-self: start;
}

.technology-difference__title {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.technology-difference__title strong {
  color: #fff;
  font-size: clamp(19px, 1.6vw, 26px);
  line-height: 1.08;
}

.technology-difference__title small {
  color: rgba(244, 240, 232, .58);
  font-size: 14px;
  line-height: 1.35;
}

.technology-difference__toggle {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(226, 186, 98, .28);
  border-radius: 50%;
  color: #e2ba62;
  font-size: 24px;
  transition: transform .24s ease, background .24s ease;
}

.technology-difference[open] .technology-difference__toggle {
  transform: rotate(45deg);
  background: rgba(226, 186, 98, .12);
}

.technology-difference__body {
  max-width: 1120px;
  padding: 0 80px 28px 65px;
}

.technology-difference__body p {
  margin: 0 0 12px;
  color: rgba(244, 240, 232, .76) !important;
  font-size: 16px !important;
  line-height: 1.7 !important;
}

.technology-difference__body p:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .technology-differences__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .technology-differences {
    padding: 54px 16px !important;
  }

  .technology-differences__head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .technology-differences__number {
    font-size: 58px;
  }

  .technology-difference:not([open]) {
    height: auto;
  }

  .technology-difference > summary {
    min-height: 132px;
    padding: 20px 18px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
  }

  .technology-difference__toggle {
    width: 34px;
    height: 34px;
  }

  .technology-difference__body {
    padding: 0 18px 24px 52px;
  }
}

/* === Страница 08 · Галерея === */
main > #gallery {
  order: 8;
}

.gallery-showcase {
  padding: clamp(58px, 8vh, 98px) clamp(20px, 5vw, 76px) !important;
  color: #f4f0e8;
  border-top: 1px solid rgba(226, 186, 98, .14);
  background:
    radial-gradient(circle at 12% 8%, rgba(193, 133, 18, .1), transparent 28%),
    #062219 !important;
}

.gallery-showcase__head {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto clamp(34px, 5vw, 64px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(22px, 3vw, 48px);
  align-items: start;
}

.gallery-showcase__number {
  color: rgba(226, 186, 98, .38);
  font-size: clamp(58px, 7vw, 112px);
  font-weight: 900;
  line-height: .8;
  letter-spacing: -.07em;
}

.gallery-showcase__head h2 {
  max-width: 1020px;
  margin: 10px 0 18px;
  color: #f4f0e8 !important;
  font-size: clamp(38px, 4.8vw, 76px) !important;
  line-height: 1 !important;
  letter-spacing: -.045em !important;
}

.gallery-showcase__head p {
  max-width: 720px;
  margin: 0;
  color: rgba(244, 240, 232, .66) !important;
  font-size: clamp(16px, 1.15vw, 19px) !important;
}

.gallery-showcase__grid {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 148px;
  gap: 16px;
}

.gallery-showcase__item {
  position: relative;
  grid-column: span 4;
  grid-row: span 2;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(226, 186, 98, .16);
  border-radius: 24px;
  background: #09291f;
  color: #fff;
  cursor: zoom-in;
  text-align: left;
}

.gallery-showcase__item:nth-child(1),
.gallery-showcase__item:nth-child(7) {
  grid-column: span 7;
}

.gallery-showcase__item:nth-child(2),
.gallery-showcase__item:nth-child(6) {
  grid-column: span 5;
}

.gallery-showcase__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.03) brightness(1.03);
  transition: transform .7s ease, filter .3s ease;
}

.gallery-showcase__item::after {
  content: "";
  position: absolute;
  inset: 38% 0 0;
  background: linear-gradient(0deg, rgba(2, 20, 14, .88), transparent);
  pointer-events: none;
}

.gallery-showcase__item > span {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 20px;
  display: grid;
  gap: 4px;
}

.gallery-showcase__item small {
  color: #e2ba62;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.gallery-showcase__item strong {
  color: #fff;
  font-size: clamp(20px, 1.7vw, 28px);
}

.gallery-showcase__item:hover img,
.gallery-showcase__item:focus-visible img {
  transform: scale(1.045);
  filter: saturate(1.08) brightness(1.08);
}

.gallery-showcase__item:focus-visible {
  outline: 2px solid #e2ba62;
  outline-offset: 3px;
}

.gallery-lightbox {
  width: min(1180px, calc(100vw - 36px));
  max-width: none;
  max-height: calc(100svh - 36px);
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(226, 186, 98, .38);
  border-radius: 26px;
  background: #031711;
  color: #fff;
  box-shadow: 0 40px 120px rgba(0, 0, 0, .65);
}

.gallery-lightbox::backdrop {
  background: rgba(0, 12, 8, .84);
  backdrop-filter: blur(8px);
}

.gallery-lightbox img {
  width: 100%;
  max-height: calc(100svh - 120px);
  display: block;
  object-fit: contain;
  background: #020d09;
}

.gallery-lightbox p {
  margin: 0;
  padding: 16px 68px 18px 22px;
  color: rgba(244, 240, 232, .82) !important;
  font-weight: 700;
}

.gallery-lightbox__close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 50%;
  background: rgba(3, 23, 17, .78);
  color: #fff;
  cursor: pointer;
  font-size: 28px;
}

@media (max-width: 900px) {
  .gallery-showcase__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 230px;
  }

  .gallery-showcase__item,
  .gallery-showcase__item:nth-child(1),
  .gallery-showcase__item:nth-child(2),
  .gallery-showcase__item:nth-child(6),
  .gallery-showcase__item:nth-child(7) {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 640px) {
  .gallery-showcase {
    padding: 54px 16px !important;
  }

  .gallery-showcase__head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .gallery-showcase__number {
    font-size: 58px;
  }

  .gallery-showcase__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
}

/* Карта доставки без заметной прямоугольной подложки */
#delivery.section {
  order: 9;
  overflow: hidden !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #041b14 !important;
}

#delivery .geography-photo {
  position: relative !important;
  overflow: hidden !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #041b14 !important;
  box-shadow: none !important;
}

#delivery .geography-photo::after {
  display: none !important;
}

#delivery .geography-photo img {
  width: 100% !important;
  display: block !important;
  border: 0 !important;
  border-radius: 0 !important;
  filter: none !important;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%) !important;
  -webkit-mask-composite: source-in !important;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%) !important;
  mask-composite: intersect !important;
}

@media (max-width: 900px) {
  #delivery.section {
    background: #041b14 !important;
  }
}

/* === Страница 10 · Доставка, оплата, гарантии и полный цикл === */
main > #service-hub {
  order: 10;
}

.service-hub {
  position: relative;
  padding: clamp(62px, 9vh, 112px) clamp(20px, 5vw, 76px) !important;
  color: #f4f0e8;
  background:
    radial-gradient(circle at 90% 0%, rgba(193, 133, 18, .09), transparent 30%),
    #062219 !important;
}

.service-hub__number {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto clamp(26px, 4vw, 48px);
  color: rgba(226, 186, 98, .38);
  font-size: clamp(62px, 7vw, 112px);
  font-weight: 900;
  line-height: .8;
  letter-spacing: -.07em;
}

.service-hub__grid {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  border-top: 1px solid rgba(226, 186, 98, .22);
}

.service-panel {
  border-bottom: 1px solid rgba(226, 186, 98, .22);
  color: #f4f0e8;
}

.service-panel > summary {
  min-height: clamp(104px, 10vw, 154px);
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) 54px;
  gap: clamp(16px, 2vw, 32px);
  align-items: center;
  padding: 18px 0;
  list-style: none;
  cursor: pointer;
}

.service-panel > summary::-webkit-details-marker {
  display: none;
}

.service-panel__index {
  color: #e2ba62;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
}

.service-panel > summary strong {
  color: #f4f0e8;
  font-size: clamp(34px, 4.2vw, 68px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.045em;
}

.service-panel__arrow {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(226, 186, 98, .34);
  border-radius: 50%;
  color: #e2ba62;
  transition: transform .28s ease, background-color .28s ease, color .28s ease;
}

.service-panel > summary:hover .service-panel__arrow {
  background: #e2ba62;
  color: #062219;
}

.service-panel[open] .service-panel__arrow {
  transform: rotate(180deg);
}

.service-panel__body {
  padding: 0 0 clamp(42px, 6vw, 78px) 106px;
  color: rgba(244, 240, 232, .75);
}

.service-panel__body--columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 48px);
}

.service-panel__body article,
.service-panel__body section {
  min-width: 0;
}

.service-panel__body h3 {
  margin: 0 0 14px;
  color: #f4f0e8;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.18;
}

.service-panel__body p,
.service-panel__body li {
  color: rgba(244, 240, 232, .72) !important;
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.65;
}

.service-panel__body p {
  margin: 0;
}

.service-panel__body ol,
.service-panel__body ul {
  margin: 0;
  padding-left: 22px;
}

.service-panel__body li + li {
  margin-top: 12px;
}

.service-payment {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 58px);
}

.service-payment__excluded {
  padding: 24px;
  border: 1px solid rgba(226, 186, 98, .2);
  border-radius: 20px;
  background: rgba(2, 17, 12, .34);
}

.service-cycle__intro {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(400px, 1.2fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
}

.service-cycle__intro > div > h3 {
  max-width: 640px;
  font-size: clamp(34px, 4vw, 64px);
  letter-spacing: -.045em;
}

.service-cycle__intro > div > p {
  max-width: 620px;
  margin-bottom: 28px;
}

.service-cycle__intro img {
  width: 100%;
  min-height: 340px;
  max-height: 520px;
  display: block;
  object-fit: cover;
  border-radius: 26px;
}

.service-cycle__steps {
  margin-top: clamp(34px, 5vw, 68px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(226, 186, 98, .2);
}

.service-cycle__steps article {
  padding: 26px clamp(14px, 2vw, 30px) 0 0;
}

.service-cycle__steps article + article {
  padding-left: clamp(14px, 2vw, 30px);
  border-left: 1px solid rgba(226, 186, 98, .16);
}

.service-cycle__steps span {
  display: block;
  margin-bottom: 28px;
  color: #e2ba62;
  font-size: 13px;
  font-weight: 900;
}

@media (max-width: 900px) {
  .service-panel__body {
    padding-left: 0;
  }

  .service-panel__body--columns,
  .service-payment {
    grid-template-columns: 1fr;
  }

  .service-cycle__intro {
    grid-template-columns: 1fr;
  }

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

  .service-cycle__steps article:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .service-hub {
    padding: 54px 16px !important;
  }

  .service-panel > summary {
    min-height: 94px;
    grid-template-columns: 42px minmax(0, 1fr) 44px;
    gap: 10px;
  }

  .service-panel > summary strong {
    font-size: 31px;
  }

  .service-panel__arrow {
    width: 42px;
    height: 42px;
  }

  .service-cycle__intro {
    display: block;
  }

  .service-cycle__intro img {
    min-height: 240px;
    margin-top: 28px;
    border-radius: 20px;
  }

  .service-cycle__steps {
    grid-template-columns: 1fr;
  }

  .service-cycle__steps article,
  .service-cycle__steps article + article {
    padding: 22px 0;
    border-left: 0;
    border-bottom: 1px solid rgba(226, 186, 98, .16);
  }
}

/* Страница 10 · более компактная карточная композиция */
.service-hub {
  padding-top: clamp(52px, 7vh, 82px) !important;
  background:
    radial-gradient(circle at 88% 4%, rgba(193, 133, 18, .1), transparent 28%),
    #041b14 !important;
}

.service-hub__number {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: clamp(28px, 4vw, 46px);
  color: rgba(226, 186, 98, .58);
  font-size: clamp(42px, 4.6vw, 68px);
  line-height: 1;
}

.service-hub__number::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, rgba(226, 186, 98, .36), transparent);
}

.service-hub__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  border-top: 0;
}

.service-panel {
  min-width: 0;
  min-height: 232px;
  overflow: hidden;
  border: 1px solid rgba(226, 186, 98, .17);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .025), transparent 56%),
    #07271d;
  transition: border-color .25s ease, transform .25s ease, background-color .25s ease;
}

.service-panel:hover,
.service-panel[open] {
  border-color: rgba(226, 186, 98, .46);
}

.service-panel:not([open]):hover {
  transform: translateY(-3px);
}

.service-panel[open] {
  grid-column: 1 / -1;
  min-height: 0;
}

.service-panel > summary {
  height: 100%;
  min-height: 218px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 54px;
  grid-template-rows: auto minmax(54px, 1fr) auto;
  gap: 14px 20px;
  align-items: start;
  padding: clamp(26px, 3vw, 38px);
}

.service-panel > summary .service-panel__index {
  grid-column: 1;
  grid-row: 1;
}

.service-panel > summary strong {
  grid-column: 1;
  grid-row: 2;
  align-self: end;
  font-size: clamp(34px, 3.4vw, 54px);
}

.service-panel > summary small {
  grid-column: 1;
  grid-row: 3;
  max-width: 520px;
  color: rgba(244, 240, 232, .56);
  font-size: clamp(13px, .95vw, 16px);
  font-weight: 600;
  line-height: 1.45;
}

.service-panel__arrow {
  grid-column: 2;
  grid-row: 1 / 4;
  align-self: center;
}

.service-panel[open] > summary {
  height: auto;
  min-height: 126px;
  grid-template-rows: auto auto;
  align-items: center;
  border-bottom: 1px solid rgba(226, 186, 98, .15);
}

.service-panel[open] > summary .service-panel__index {
  align-self: end;
}

.service-panel[open] > summary strong {
  align-self: start;
  font-size: clamp(34px, 3.4vw, 52px);
}

.service-panel[open] > summary small {
  display: none;
}

.service-panel__body {
  padding: clamp(30px, 4vw, 56px) clamp(26px, 3vw, 42px) clamp(38px, 5vw, 66px);
}

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

  .service-panel[open] {
    grid-column: 1;
  }

  .service-panel > summary {
    min-height: 172px;
    grid-template-columns: minmax(0, 1fr) 44px;
    padding: 24px;
  }

  .service-panel > summary strong,
  .service-panel[open] > summary strong {
    font-size: clamp(30px, 10vw, 42px);
  }

  .service-panel__arrow {
    width: 42px;
    height: 42px;
  }

  .service-panel__body {
    padding: 28px 24px 38px;
  }
}

/* === Страницы 11–14 · порядок и белая типографика === */
main > #reviews {
  order: 11;
}

main > #contacts {
  order: 12;
}

main > #faq {
  order: 13;
}

main > #legal {
  order: 14;
}

#reviews,
#contacts,
#faq,
#legal {
  color: #fff !important;
}

#reviews .section-head h2,
#reviews .section-head p,
#reviews article p,
#reviews article strong,
#reviews article span,
#contacts h2,
#contacts p,
#contacts .final-contact span,
#contacts .final-contact strong,
#contacts .lead-form label,
#contacts .lead-form .agree,
#contacts .lead-form .agree span,
#contacts .lead-form .agree a,
#faq .section-head h2,
#faq details summary,
#faq details p,
#legal .section-kicker,
#legal h2,
#legal p,
#legal .legal-placeholder__grid span,
#legal .legal-placeholder__grid strong {
  color: #fff !important;
}

/* Скрытые резервные блоки: оставить в разметке для быстрого возврата */
main > .module-benefits,
main > #steps,
main > .packages,
main > #production {
  display: none !important;
}

/* Полная версия «Собственного производства» внутри карточки полного цикла */
.service-panel--cycle > .service-panel__body {
  padding: 0;
}

.service-cycle-production {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-sizing: border-box;
}

.service-cycle-production .production-hub__steps {
  gap: clamp(12px, 1.5vw, 22px) !important;
  overflow: visible !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.section.production-hub.service-cycle-production .production-hub__steps .production-step {
  overflow: hidden !important;
  border: 1px solid rgba(226, 186, 98, .26) !important;
  border-radius: 24px !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .045)) !important;
  color: #f7f1e7 !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .14),
    0 18px 40px rgba(0, 0, 0, .18) !important;
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
}

.section.production-hub.service-cycle-production .production-hub__steps .production-step h3 {
  color: #f7f1e7 !important;
}

.section.production-hub.service-cycle-production .production-hub__steps .production-step p,
.section.production-hub.service-cycle-production .production-hub__steps .production-step p * {
  color: rgba(247, 241, 231, .78) !important;
}

.section.production-hub.service-cycle-production .production-step__num {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #e2ba62 !important;
  box-shadow: none !important;
}

.service-cycle-production .production-hub__copy h2,
.service-cycle-production .production-hub__copy p,
.service-cycle-production .production-hub__copy .section-kicker {
  color: #fff !important;
}

/* === Плавное раскрытие всех аккордеонов === */
.series-model.is-animating,
.technology-difference.is-animating,
.service-panel.is-animating,
#faq details.is-animating {
  will-change: height;
}

.series-model[open] > .series-model__detail,
.technology-difference[open] > .technology-difference__body,
.service-panel[open] > .service-panel__body,
#faq details[open] > p {
  animation: accordion-content-in .42s cubic-bezier(.22, 1, .36, 1) both;
}

.series-model.is-closing > .series-model__detail,
.technology-difference.is-closing > .technology-difference__body,
.service-panel.is-closing > .service-panel__body,
#faq details.is-closing > p {
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .2s ease, transform .24s ease;
}

@keyframes accordion-content-in {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Исправленное боковое меню === */
html {
  scrollbar-gutter: stable;
}

.site-header .nav {
  width: min(520px, calc(100vw - 24px)) !important;
  padding: 14px clamp(24px, 3.3vw, 44px) 34px !important;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(226, 186, 98, .58) rgba(255, 255, 255, .04);
  transform: translate3d(-104%, 0, 0);
  transition:
    transform .42s cubic-bezier(.22, 1, .36, 1),
    opacity .28s ease,
    visibility .42s ease;
}

.site-header .nav::-webkit-scrollbar {
  width: 7px;
}

.site-header .nav::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, .035);
}

.site-header .nav::-webkit-scrollbar-thumb {
  border: 2px solid transparent;
  border-radius: 10px;
  background: rgba(226, 186, 98, .58);
  background-clip: padding-box;
}

.site-header .nav.is-open {
  transform: translate3d(0, 0, 0);
}

.site-header .nav a {
  position: relative;
  padding: 13px 14px 13px 0 !important;
  transition: color .2s ease, padding-left .25s ease, background-color .2s ease;
}

.site-header .nav a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 3px;
  height: 0;
  border-radius: 4px;
  background: #e2ba62;
  transform: translateY(-50%);
  transition: height .25s ease;
}

.site-header .nav a:hover,
.site-header .nav a:focus-visible {
  padding-left: 14px !important;
  background: linear-gradient(90deg, rgba(226, 186, 98, .08), transparent 74%);
  outline: none;
}

.site-header .nav a:hover::before,
.site-header .nav a:focus-visible::before {
  height: 56%;
}

.nav-backdrop {
  background: rgba(0, 10, 7, .64);
  backdrop-filter: blur(5px);
  transition: opacity .32s ease, visibility .32s ease;
}

@media (max-width: 640px) {
  .site-header .nav {
    width: 100vw !important;
    padding: 12px 20px 30px !important;
    border-right: 0 !important;
  }

  .site-header .nav a {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
    font-size: 15px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .series-model[open] > .series-model__detail,
  .technology-difference[open] > .technology-difference__body,
  .service-panel[open] > .service-panel__body,
  #faq details[open] > p {
    animation: none;
  }

  .site-header .nav,
  .nav-backdrop {
    transition-duration: .01ms !important;
  }
}

/* Финальная мобильная коррекция заголовка карточки полного цикла */
@media (max-width: 640px) {
  .service-hub .service-panel--cycle > summary strong,
  .service-hub .service-panel--cycle[open] > summary strong {
    max-width: 225px !important;
    font-size: 28px !important;
    line-height: 1.02 !important;
  }
}
