: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: 10px 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; }
}

@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: 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(20px, 1.6vw, 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;
  }
}
