/* ============================================================
   BEEECO — РЕМОНТ КВАРТИР ПОД КЛЮЧ · дизайн-система
   Палитра: графит + слоновая кость + пергамент + мёд/бронза
   Тип: Cormorant (display) + Mulish (текст)
   Подпись: план квартиры-«чертёж тушью»
   ============================================================ */

:root {
  --ink: #26241F;          /* графит — тёмные секции */
  --graphite: #32302A;     /* графит светлее — карточки на тёмном */
  --cream: #F5F1E7;        /* слоновая кость — светлые секции */
  --parchment: #EFE7D6;    /* пергамент — фон чертежа */
  --sepia: #55452C;        /* чернила чертежа */
  --sage: #7C8B6F;         /* шалфей — «входит в пакет» */
  --bronze: #A8895B;       /* бронза — премиальный акцент */
  --honey: #C89B3C;        /* мёд — «опция», второй акцент */
  --text-dark: #2A2C26;
  --text-light: #F0EBE1;
  --text-muted-dark: rgba(42, 44, 38, 0.66);
  --text-muted-light: rgba(240, 235, 225, 0.62);
  --hairline-dark: rgba(42, 44, 38, 0.18);
  --hairline-light: rgba(240, 235, 225, 0.22);
  --radius: 4px;
  --gutter: clamp(20px, 4vw, 64px);
  --section-y: clamp(72px, 10vw, 148px);
  --font-display: "Cormorant", "Cormorant Garamond", Georgia, serif;
  --font-body: "Mulish", "Segoe UI", -apple-system, sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

.container { max-width: 1280px; margin: 0 auto; padding: 0 var(--gutter); }

/* ---------- типографика ---------- */

.display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1.display { font-size: clamp(38px, 7vw, 92px); }
h2.display { font-size: clamp(30px, 4.6vw, 60px); }
h3.display { font-size: clamp(22px, 2.6vw, 32px); }

.eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  font-size: clamp(17px, 1.6vw, 21px);
  letter-spacing: 0.06em;
  color: var(--bronze);
  display: inline-block;
  margin-bottom: 18px;
}

.lead {
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 300;
  max-width: 56ch;
}

/* ---------- кнопки ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 17px 34px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: 2px solid var(--bronze); outline-offset: 3px; }

/* медовая заливка с графитовым текстом — контраст 5.9:1 */
.btn-solid { background: var(--honey); color: #221F17; }
.btn-solid:hover { background: #d8ab48; }

.btn-ghost-light { border-color: var(--hairline-light); color: var(--text-light); background: transparent; }
.btn-ghost-light:hover { border-color: var(--text-light); }

.btn-ghost-dark { border-color: rgba(42,44,38,0.35); color: var(--text-dark); background: transparent; }
.btn-ghost-dark:hover { border-color: var(--text-dark); }

/* ---------- хедер ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background-color 0.35s ease, box-shadow 0.35s ease;
}
/* подложка под шапкой до прокрутки — иначе светлое фото съедает контраст */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30,28,24,0.88) 0%, rgba(30,28,24,0.55) 60%, rgba(30,28,24,0) 100%);
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.site-header.scrolled::before { opacity: 0; }
.header-inner { position: relative; }
.site-header.scrolled {
  background: rgba(38, 36, 31, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(240,235,225,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px var(--gutter);
  color: var(--text-light);
}
.brand { text-decoration: none; line-height: 1.1; display: flex; align-items: center; gap: 12px; }
.brand-mark { flex: none; }
.brand-mark svg { display: block; }
.brand-name {
  display: block;
  font-family: var(--font-display);
  font-size: 27px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  font-weight: 500;
}
.brand-sub {
  display: block;
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-top: 3px;
}
.header-contacts {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
}
.header-place { max-width: 230px; color: var(--text-muted-light); line-height: 1.45; }
.header-phone { text-decoration: none; font-weight: 700; letter-spacing: 0.04em; white-space: nowrap; }
.header-phone:hover { color: var(--bronze); }
.header-cta { padding: 13px 26px; }

@media (max-width: 900px) { .header-place { display: none; } }
@media (max-width: 640px) { .header-cta { display: none; } }

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--text-light);
  overflow: hidden;
}
.hero-bg, .hero-bg img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-bg img { object-fit: cover; object-position: center 55%; }
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(38,36,31,0.74) 0%, rgba(38,36,31,0.30) 34%, rgba(38,36,31,0.88) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  /* верхний отступ — чтобы контент не подлезал под фиксированную шапку */
  padding: clamp(104px, 16vh, 168px) var(--gutter) clamp(48px, 7vh, 96px);
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.hero .eyebrow { color: var(--text-light); opacity: 0.85; }
.hero h1 { max-width: 14ch; text-wrap: balance; }
.hero-sub {
  margin-top: 26px;
  max-width: 52ch;
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 300;
  color: var(--text-muted-light);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 38px; }
@media (max-width: 560px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
}

.hero-ticker {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--hairline-light);
  background: rgba(38,36,31,0.55);
  backdrop-filter: blur(8px);
}
.ticker-inner { display: flex; flex-wrap: wrap; max-width: 1280px; margin: 0 auto; }
.ticker-item {
  flex: 1 1 180px;
  padding: 22px 28px;
  border-left: 1px solid var(--hairline-light);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ticker-item:first-child { border-left: none; }
.ticker-num {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.ticker-label { font-size: 12px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--text-muted-light); }

/* ---------- секции: базовое ---------- */

.section { padding: var(--section-y) 0; }
.section-dark { background: var(--ink); color: var(--text-light); }
.section-dark .eyebrow { color: var(--bronze); }
.section-head { max-width: 880px; margin-bottom: clamp(40px, 5vw, 72px); }
.section-head .lead { margin-top: 22px; color: var(--text-muted-dark); }
.section-dark .section-head .lead { color: var(--text-muted-light); }

/* ---------- почему мы ---------- */

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1px;
  background: var(--hairline-dark);
  border: 1px solid var(--hairline-dark);
}
.why-card {
  background: var(--cream);
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 240px;
}
.why-mark { font-family: var(--font-display); font-style: italic; font-size: 20px; color: var(--bronze); }
.why-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: none;
  letter-spacing: 0.01em;
}
.why-card p { font-size: 15px; color: var(--text-muted-dark); }

/* ---------- чертёж: план квартиры ---------- */

.codex { background: var(--parchment); position: relative; }
.codex::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 18% 12%, rgba(85, 69, 44, 0.07), transparent 55%),
    radial-gradient(ellipse at 85% 90%, rgba(85, 69, 44, 0.09), transparent 50%);
  pointer-events: none;
}
.codex .container { position: relative; }
.codex .eyebrow { color: var(--sepia); }
.codex-frame {
  border: 1px solid rgba(85,69,44,0.35);
  outline: 1px solid rgba(85,69,44,0.14);
  outline-offset: 6px;
  background: var(--parchment);
  padding: clamp(12px, 2vw, 28px);
}

/* переключатель пакета над чертежом */
.plan-switch {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(18px, 2vw, 28px);
}
.plan-switch-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--sepia);
  margin-right: 6px;
}
.plan-switch button {
  font: inherit;
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 11px 22px;
  border: 1px solid rgba(85,69,44,0.4);
  border-radius: 100px;
  background: transparent;
  color: var(--sepia);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.plan-switch button:hover { border-color: var(--sepia); }
.plan-switch button[aria-pressed="true"] { background: var(--sepia); color: var(--parchment); border-color: var(--sepia); }
.plan-switch button:focus-visible { outline: 2px solid var(--bronze); outline-offset: 2px; }
.plan-switch-rate { margin-left: auto; font-size: 14px; color: rgba(85,69,44,0.85); }
.plan-switch-rate b { font-family: var(--font-display); font-size: 22px; font-weight: 600; }

.plan-wrap { position: relative; }
.plan-wrap svg { width: 100%; height: auto; display: block; }

/* на узком экране подписи чертежа нечитаемы — даём прокрутку вбок */
@media (max-width: 720px) {
  .plan-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .plan-wrap svg { min-width: 660px; }
  .plan-hint { display: block; }
}
.plan-hint {
  display: none;
  margin-top: 10px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: rgba(85,69,44,0.7);
}

.plan-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 20px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sepia);
}
.legend-item { display: inline-flex; align-items: center; gap: 9px; }
.legend-swatch { width: 15px; height: 15px; border: 1px solid rgba(85,69,44,0.6); display: inline-block; }
.legend-swatch.wet { background: rgba(124, 139, 111, 0.34); }
.legend-swatch.dry { background: rgba(200, 155, 60, 0.20); }
.legend-swatch.extra { background: rgba(85, 69, 44, 0.09); }

/* комнаты внутри svg: заливка по типу зоны.
   Ховер и активное состояние заданы внутри самого SVG — они специфичнее. */
.room[data-room="bath"],
.room[data-room="wc"] { fill: #7C8B6F; fill-opacity: 0.30; }
.room[data-room="kitchen"],
.room[data-room="bedroom"],
.room[data-room="kids"] { fill: #C89B3C; fill-opacity: 0.17; }
.room[data-room="hall"],
.room[data-room="wardrobe"],
.room[data-room="loggia"] { fill: #55452C; fill-opacity: 0.075; }
.room:focus { outline: none; }
.room:focus-visible { outline: 2px solid var(--honey); outline-offset: 2px; }
.room-num { pointer-events: none; }

/* карточка комнаты */
.room-card {
  position: absolute;
  z-index: 10;
  width: 282px;
  background: var(--cream);
  border: 1px solid rgba(85,69,44,0.4);
  box-shadow: 0 18px 44px rgba(42,44,38,0.24);
  padding: 20px 22px;
  transform: translate(-50%, calc(-100% - 14px));
}
.room-card::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -6px;
  width: 10px; height: 10px;
  background: var(--cream);
  border-right: 1px solid rgba(85,69,44,0.4);
  border-bottom: 1px solid rgba(85,69,44,0.4);
  transform: translateX(-50%) rotate(45deg);
}
.room-card[hidden] { display: none; }
.room-card.below { transform: translate(-50%, 14px); }
.room-card.below::after {
  bottom: auto; top: -6px;
  border: none;
  border-left: 1px solid rgba(85,69,44,0.4);
  border-top: 1px solid rgba(85,69,44,0.4);
}
/* тесно по вертикали: карточка просто прижата к видимой области, без «хвостика» */
.room-card.free { transform: translate(-50%, 0); }
.room-card.free::after { display: none; }
.room-card-title { font-family: var(--font-display); font-size: 22px; font-weight: 600; line-height: 1.15; }
.room-card-area { font-size: 13px; color: var(--text-muted-dark); margin-top: 2px; }
.room-card-works { list-style: none; margin-top: 14px; display: flex; flex-direction: column; gap: 7px; font-size: 13.5px; }
.room-card-works li { padding-left: 18px; position: relative; color: var(--text-muted-dark); }
.room-card-works li::before { content: "—"; position: absolute; left: 0; color: var(--bronze); }
.room-card-sum {
  margin-top: 16px;
  padding-top: 13px;
  border-top: 1px solid var(--hairline-dark);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.room-card-sum .lbl { font-size: 12px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--text-muted-dark); }
.room-card-sum .val { font-family: var(--font-display); font-size: 24px; font-weight: 600; white-space: nowrap; }
.room-card .btn { margin-top: 14px; width: 100%; justify-content: center; padding: 13px 18px; }

.codex-total {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(85,69,44,0.3);
  color: var(--sepia);
}
.codex-total .k { font-family: var(--font-display); font-style: italic; font-size: 19px; }
.codex-total .v { font-family: var(--font-display); font-size: clamp(28px, 3.4vw, 44px); font-weight: 600; }
.codex-note {
  margin-top: 16px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: rgba(85,69,44,0.75);
  max-width: 68ch;
}

/* ---------- пакеты ---------- */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(20px, 2.5vw, 36px);
}
.product-card {
  background: var(--graphite);
  border: 1px solid var(--hairline-light);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.product-card.is-featured { border-color: rgba(200,155,60,0.55); }
.product-flag {
  position: absolute;
  top: 18px; right: 0;
  background: var(--honey);
  color: #241f14;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 16px;
  z-index: 2;
}
.product-media { aspect-ratio: 4 / 2.7; overflow: hidden; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-card:hover .product-media img { transform: scale(1.04); }
.product-body { padding: clamp(24px, 2.5vw, 36px); display: flex; flex-direction: column; gap: 14px; flex: 1; }
.product-kicker { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--bronze); }
.product-body h3 { text-transform: none; letter-spacing: 0.01em; font-weight: 600; }
.product-tagline { font-size: 14px; color: var(--text-muted-light); margin-top: -6px; }
.product-facts { list-style: none; display: flex; flex-direction: column; gap: 9px; font-size: 14.5px; color: var(--text-muted-light); }
.product-facts li { padding-left: 20px; position: relative; }
.product-facts li::before { content: "—"; position: absolute; left: 0; color: var(--bronze); }
.product-price {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--hairline-light);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.product-price .num { font-family: var(--font-display); font-size: 28px; font-weight: 500; }
.product-price .per { font-size: 12px; color: var(--text-muted-light); }
.product-card .btn { margin-top: 16px; justify-content: center; }

/* ---------- объём работ ---------- */

.scope { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: clamp(28px, 4vw, 72px); align-items: center; }
.scope-figure {
  background: var(--parchment);
  border: 1px solid rgba(85,69,44,0.3);
  padding: clamp(16px, 2vw, 32px);
}
.scope-figure img { width: 100%; height: auto; }
.scope-figure figcaption {
  margin-top: 14px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: rgba(85,69,44,0.8);
  text-align: center;
}
.explication { list-style: none; margin-top: 8px; }
.explication li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 2px;
  border-bottom: 1px solid var(--hairline-dark);
  font-size: 15px;
}
.explication .idx { font-family: var(--font-display); font-style: italic; color: var(--bronze); width: 26px; flex: none; }
.explication .name { flex: 1; }
.explication .name em {
  display: block;
  font-style: normal;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted-dark);
  margin-top: 2px;
}
.explication .val { font-weight: 700; white-space: nowrap; }
.explication li.total { border-bottom: none; font-weight: 800; }
.explication li.total .val { font-family: var(--font-display); font-size: 20px; }

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

/* ---------- портфолио: полароиды ---------- */

.club-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 40px);
  align-items: start;
}
@media (max-width: 860px) { .club-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .club-strip { grid-template-columns: 1fr; } }
.polaroid {
  background: #FCFAF4;
  padding: 12px 12px 46px;
  box-shadow: 0 14px 34px rgba(42,44,38,0.18);
  position: relative;
  transition: transform 0.35s ease;
}
.polaroid:nth-child(odd) { transform: rotate(-1.6deg); }
.polaroid:nth-child(even) { transform: rotate(1.3deg) translateY(14px); }
@media (hover: hover) { .polaroid:hover { transform: rotate(0deg) translateY(0) scale(1.02); z-index: 3; } }
.polaroid img { aspect-ratio: 1 / 1.05; object-fit: cover; width: 100%; }
.polaroid figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 12px;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: #4b4a41;
}
.club-list {
  margin-top: clamp(40px, 5vw, 64px);
  columns: 3;
  column-gap: 48px;
  list-style: none;
  font-size: 15px;
  color: var(--text-muted-dark);
}
.club-list li {
  break-inside: avoid;
  padding: 9px 0 9px 24px;
  position: relative;
  border-bottom: 1px solid var(--hairline-dark);
}
.club-list li::before { content: "·"; position: absolute; left: 4px; color: var(--bronze); font-weight: 900; }
@media (max-width: 980px) { .club-list { columns: 2; } }
@media (max-width: 620px) { .club-list { columns: 1; } }

/* ---------- гарантии ---------- */

.invest { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 4vw, 80px); align-items: center; }
.invest-media { position: relative; }
.invest-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/4.6; }
.invest-media::after {
  content: "";
  position: absolute; inset: 14px;
  border: 1px solid rgba(240,235,225,0.35);
  pointer-events: none;
}
.invest-points { list-style: none; margin-top: 30px; display: flex; flex-direction: column; }
.invest-points li {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--hairline-light);
  font-size: 15.5px;
  color: var(--text-muted-light);
}
.invest-points li:last-child { border-bottom: 1px solid var(--hairline-light); }
.invest-points .k { font-family: var(--font-display); font-size: 24px; color: var(--bronze); font-style: italic; flex: none; width: 44px; }
.invest-points strong { color: var(--text-light); font-weight: 700; }
@media (max-width: 880px) {
  .invest { grid-template-columns: 1fr; }
  .invest-media { order: -1; max-width: 480px; }
}

/* ---------- география ---------- */

.route { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: clamp(28px, 4vw, 72px); align-items: center; }
.route-map { background: var(--parchment); border: 1px solid rgba(85,69,44,0.3); padding: clamp(20px, 2.5vw, 40px); }
.route-map svg { width: 100%; height: auto; }
.route-facts { list-style: none; }
.route-facts li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 2px;
  border-bottom: 1px solid var(--hairline-dark);
  font-size: 15px;
}
.route-facts .val { font-weight: 700; white-space: nowrap; }
@media (max-width: 880px) { .route { grid-template-columns: 1fr; } }

/* ---------- шаги ---------- */

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1px; background: var(--hairline-light); border: 1px solid var(--hairline-light); }
.step { background: var(--ink); padding: clamp(26px, 2.5vw, 40px); display: flex; flex-direction: column; gap: 14px; }
.step-num { font-family: var(--font-display); font-style: italic; font-size: 30px; color: var(--bronze); }
.step h3 { font-size: 19px; font-weight: 700; text-transform: none; letter-spacing: 0.02em; font-family: var(--font-body); }
.step p { font-size: 14.5px; color: var(--text-muted-light); }

/* ---------- чего мы не делаем ---------- */

.never-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--hairline-dark);
  border: 1px solid var(--hairline-dark);
}
.never-card {
  background: var(--cream);
  padding: clamp(26px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.never-mark {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1;
  color: var(--honey);
  border: 1px solid rgba(200,155,60,0.55);
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.never-card h3 { font-family: var(--font-display); font-size: 23px; font-weight: 600; line-height: 1.2; }
.never-card p { font-size: 15px; color: var(--text-muted-dark); }

/* ---------- отзывы ---------- */

.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(20px, 2.5vw, 36px); }
.review {
  background: var(--cream);
  border: 1px solid var(--hairline-dark);
  padding: clamp(26px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.review-stars { color: var(--honey); letter-spacing: 0.22em; font-size: 14px; }
.review-text { font-family: var(--font-display); font-size: clamp(18px, 1.8vw, 22px); line-height: 1.42; font-weight: 500; }
.review-who { margin-top: auto; display: flex; align-items: center; gap: 14px; padding-top: 14px; border-top: 1px solid var(--hairline-dark); }
.review-ava {
  width: 44px; height: 44px; flex: none;
  border: 1px solid var(--bronze);
  color: var(--bronze);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.06em;
}
.review-name { font-weight: 700; font-size: 15px; }
.review-meta { font-size: 13px; color: var(--text-muted-dark); }

/* ---------- материалы ---------- */

.brands {
  margin-top: clamp(40px, 5vw, 64px);
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  background: var(--hairline-dark);
  border: 1px solid var(--hairline-dark);
}
.brands li {
  list-style: none;
  flex: 1 1 130px;
  background: var(--cream);
  padding: 22px 10px;
  text-align: center;
  font-size: 12.5px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--text-muted-dark);
}

/* ---------- FAQ ---------- */

.faq-list { max-width: 880px; }
.faq-item { border-bottom: 1px solid var(--hairline-dark); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 24px 2px;
  font-family: var(--font-display);
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 600;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--bronze);
  flex: none;
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 2px 26px; max-width: 72ch; color: var(--text-muted-dark); font-size: 15.5px; }

/* ---------- форма/финал ---------- */

.final { position: relative; overflow: hidden; }
.final-bg, .final-bg img { position: absolute; inset: 0; width: 100%; height: 100%; }
.final-bg img { object-fit: cover; }
.final-bg::after { content: ""; position: absolute; inset: 0; background: rgba(38,36,31,0.86); }
.final .container { position: relative; z-index: 2; }
.final-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 96px); align-items: center; color: var(--text-light); }
.final-contacts { margin-top: 30px; display: flex; flex-direction: column; gap: 8px; font-size: 15px; color: var(--text-muted-light); }
.final-contacts a { color: var(--text-light); text-decoration: none; font-weight: 700; }
.final-contacts a:hover { color: var(--bronze); }

.lead-form {
  background: var(--cream);
  color: var(--text-dark);
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lead-form h3 { font-family: var(--font-display); font-size: 26px; font-weight: 600; }
.lead-form .hint { font-size: 13.5px; color: var(--text-muted-dark); margin-top: -8px; }
.form-fields { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted-dark); }
.field input, .field select, .field textarea {
  font: inherit;
  padding: 14px 16px;
  border: 1px solid rgba(42,44,38,0.28);
  border-radius: var(--radius);
  background: #FCFAF4;
  color: var(--text-dark);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 88px; }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { outline: 2px solid var(--bronze); outline-offset: 1px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip span {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid rgba(42,44,38,0.3);
  border-radius: 100px;
  font-size: 13.5px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.chip input:checked + span { background: var(--ink); color: var(--text-light); border-color: var(--ink); }
.chip input:focus-visible + span { outline: 2px solid var(--bronze); outline-offset: 2px; }
.lead-form .btn { justify-content: center; }
.form-note { font-size: 12.5px; color: var(--text-muted-dark); }
.form-note a { color: inherit; }
.form-done { display: none; padding: 18px; background: rgba(124,139,111,0.16); border: 1px solid var(--sage); font-size: 15px; }
.lead-form.sent .form-done { display: block; }
.lead-form.sent .form-fields { display: none; }

@media (max-width: 880px) { .final-grid { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }

/* ---------- футер ---------- */

.site-footer { background: var(--ink); color: var(--text-muted-light); border-top: 1px solid var(--hairline-light); }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  padding: 40px var(--gutter);
  max-width: 1280px;
  margin: 0 auto;
  font-size: 13px;
}
.footer-brand { font-family: var(--font-display); letter-spacing: 0.3em; text-transform: uppercase; font-size: 18px; color: var(--text-light); }
.footer-contact { margin-top: 10px; display: flex; flex-direction: column; gap: 4px; }
.footer-contact a { color: var(--text-light); text-decoration: none; font-weight: 700; }
.footer-contact a:hover { color: var(--bronze); }
.footer-note { max-width: 60ch; line-height: 1.6; }

/* ---------- reveal-анимации ---------- */

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- вспомогательное ---------- */

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