/* ==========================================================================
   ГРИН СИТИ / Green House — лендинг «Живая дача»
   Пермь, ул. Причальная 1Г
   ========================================================================== */

:root {
  --paper:      #FBF7F0;
  --paper-2:    #F4EDE0;
  --paper-3:    #EDE3D2;
  --card:       #FFFFFF;

  --ink:        #211C16;
  --ink-2:      #5B5245;
  --ink-3:      #8C8172;

  --green:      #2F5D3C;
  --green-2:    #244A2F;
  --green-3:    #17301E;
  --green-soft: #E7EFE6;

  --amber:      #BE6F27;
  --amber-2:    #A75D1B;
  --amber-soft: #FAEBD7;

  --line:       #E2D7C4;
  --line-2:     #D3C4AB;

  --shadow-s: 0 1px 2px rgba(60, 45, 25, .06), 0 4px 14px rgba(60, 45, 25, .05);
  --shadow-m: 0 2px 6px rgba(60, 45, 25, .07), 0 18px 40px rgba(60, 45, 25, .09);
  --shadow-l: 0 4px 12px rgba(60, 45, 25, .09), 0 34px 70px rgba(60, 45, 25, .14);

  --r-s: 10px;
  --r-m: 16px;
  --r-l: 26px;

  --wrap: 1240px;
  --gut: 28px;

  --font-d: 'Vollkorn', Georgia, 'Times New Roman', serif;
  --font-t: 'Madefor', 'Helvetica Neue', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-t);
  font-size: 17px;
  line-height: 1.62;
  font-weight: 400;
  overflow-x: hidden;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-d);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; }

::selection { background: var(--green); color: #fff; }

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- служебные ---------- */

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gut);
}

/* элементы сеток не должны раздвигать колонку своим min-content */
.cards > *, .stories > *, .revs > *, .build > *, .pay > *, .scen > *,
.day__grid > *, .cont > *, .dnums > *, .season__grid > *, .incl > *,
.gal > *, .certs > *, .calc > *, .deliv > *, .frow > * { min-width: 0; }

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

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
}
.reveal.in { opacity: 1; transform: none; }
html.noanim .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

section { position: relative; }

.sect { padding: 96px 0; }
.sect--tight { padding: 68px 0; }
.sect--paper2 { background: var(--paper-2); }
.sect--dark { background: var(--green-3); color: #F2EDE3; }

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber-2);
  margin-bottom: 18px;
}
.sect--dark .eyebrow { color: #D5A96F; }

.h-sect {
  font-size: clamp(31px, 4.1vw, 52px);
}
.lead {
  font-size: clamp(17px, 1.55vw, 20px);
  color: var(--ink-2);
  max-width: 62ch;
  margin-top: 20px;
}
.sect--dark .lead { color: #C6BFB2; }

.head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px 44px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.head-row > div { flex: 1 1 420px; min-width: 0; }
.head-row .lead { flex: 0 1 400px; margin-top: 16px; }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, background-color .18s ease, color .18s ease, box-shadow .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--green); color: #fff; box-shadow: var(--shadow-s); }
.btn--primary:hover { background: var(--green-2); box-shadow: var(--shadow-m); }

.btn--amber { background: var(--amber); color: #fff; box-shadow: var(--shadow-s); }
.btn--amber:hover { background: var(--amber-2); box-shadow: var(--shadow-m); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--ink); background: rgba(255,255,255,.6); }

.btn--light { background: rgba(255,255,255,.94); color: var(--ink); }
.btn--light:hover { background: #fff; }

.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,.12); }

.btn--sm { padding: 11px 20px; font-size: 15px; }
.btn--wide { width: 100%; }

/* ==========================================================================
   Шапка
   ========================================================================== */

.topline {
  background: var(--green-3);
  color: #CFC7B8;
  font-size: 13.5px;
}
.topline__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 38px;
  flex-wrap: wrap;
}
.topline b { color: #F0E9DC; font-weight: 600; }
.topline__i { display: inline-flex; align-items: center; gap: 8px; }
.topline__i svg { width: 15px; height: 15px; opacity: .75; flex: none; }

.hdr {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251, 247, 240, .86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}
.hdr.stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(60,45,25,.06);
}
.hdr__in {
  display: flex;
  align-items: center;
  gap: 26px;
  min-height: 72px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex: none;
}
.logo__mark {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--green);
  display: grid; place-items: center;
  flex: none;
}
.logo__mark svg { width: 24px; height: 24px; }
.logo__txt { display: flex; flex-direction: column; line-height: 1.08; }
.logo__name {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: .01em;
}
.logo__sub {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}

.nav { display: flex; gap: 4px; margin-left: auto; }
.nav a {
  padding: 9px 12px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
  white-space: nowrap;
  transition: background-color .18s ease, color .18s ease;
}
.nav a:hover { background: var(--paper-3); color: var(--ink); }

.hdr__act { display: flex; align-items: center; gap: 14px; flex: none; }
.hdr__tel {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 19px;
  text-decoration: none;
  white-space: nowrap;
}
.hdr__tel:hover { color: var(--green); }

.burger {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line-2);
  background: transparent;
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.burger span {
  display: block; width: 19px; height: 1.8px;
  background: var(--ink); border-radius: 2px;
  position: relative;
  transition: transform .25s ease, opacity .2s ease;
}
.burger span::before, .burger span::after {
  content: ''; position: absolute; left: 0;
  width: 19px; height: 1.8px; background: var(--ink); border-radius: 2px;
  transition: transform .25s ease;
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

.mnav {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--paper);
  padding: 14px var(--gut) 24px;
}
.mnav.open { display: block; }
.mnav a {
  display: block;
  padding: 13px 2px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.mnav .btn { margin-top: 18px; }

/* ==========================================================================
   Герой
   ========================================================================== */

.hero { position: relative; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,28,18,.62) 0%, rgba(20,28,18,.32) 34%, rgba(20,28,18,.24) 55%, rgba(18,26,16,.84) 100%),
    linear-gradient(102deg, rgba(16,28,14,.70) 0%, rgba(16,28,14,.40) 42%, rgba(16,28,14,0) 74%);
}
.hero__in {
  position: relative;
  padding-top: 118px;
  padding-bottom: 44px;
  min-height: min(88vh, 820px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  padding: 8px 16px 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .01em;
  margin-bottom: 26px;
}
.hero__tag i {
  width: 7px; height: 7px; border-radius: 50%;
  background: #8FD08A; flex: none;
  box-shadow: 0 0 0 4px rgba(143,208,138,.25);
  font-style: normal;
}
.hero h1 {
  font-size: clamp(38px, 5.4vw, 71px);
  line-height: 1.0;
  letter-spacing: -0.022em;
  max-width: 21ch;
  text-shadow: 0 2px 30px rgba(0,0,0,.32);
}
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: #E7C79A;
}
.hero__sub {
  margin-top: 24px;
  font-size: clamp(16.5px, 1.5vw, 19.5px);
  line-height: 1.55;
  max-width: 54ch;
  color: rgba(255,255,255,.9);
  text-shadow: 0 1px 16px rgba(0,0,0,.3);
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }

.hero__facts {
  margin-top: 52px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.22);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.hero__fact b {
  display: block;
  font-family: var(--font-d);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
}
.hero__fact span {
  display: block;
  margin-top: 7px;
  font-size: 13.5px;
  line-height: 1.35;
  color: rgba(255,255,255,.78);
}

.hero__mark {
  position: absolute;
  right: var(--gut);
  bottom: 12px;
  font-size: 11.5px;
  letter-spacing: .06em;
  color: rgba(255,255,255,.42);
  text-transform: lowercase;
}

/* ---------- бегущая строка преимуществ ---------- */

.strip {
  background: var(--green);
  color: #EAF2E7;
  overflow: hidden;
  padding: 13px 0;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: .02em;
}
.strip__track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marq 46s linear infinite;
}
.strip__track > span { display: inline-flex; align-items: center; }
.strip__track i {
  font-style: normal;
  padding: 0 20px;
  opacity: .45;
}
@keyframes marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .strip__track { animation: none; } }

/* ==========================================================================
   Один день (до/после участка)
   ========================================================================== */

.day__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 8px;
}
.day__card {
  background: var(--card);
  border-radius: var(--r-m);
  overflow: hidden;
  box-shadow: var(--shadow-s);
  display: flex;
  flex-direction: column;
}
.day__ph { position: relative; aspect-ratio: 4/3; background: var(--paper-3); }
.day__ph img { width: 100%; height: 100%; object-fit: cover; }
.day__no {
  position: absolute; left: 14px; top: 14px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(23,48,30,.86);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-d); font-weight: 700; font-size: 16px;
  backdrop-filter: blur(4px);
}
.day__b { padding: 20px 22px 24px; }
.day__b h3 { font-size: 21px; }
.day__b p { margin-top: 9px; font-size: 15.5px; color: var(--ink-2); line-height: 1.5; }

.quote-inline {
  margin-top: 34px;
  padding: 26px 30px;
  background: var(--green-soft);
  border-radius: var(--r-m);
  border-left: 4px solid var(--green);
  font-family: var(--font-d);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(18px, 1.9vw, 23px);
  line-height: 1.42;
  color: var(--green-3);
}
.quote-inline cite {
  display: block;
  margin-top: 12px;
  font-family: var(--font-t);
  font-style: normal;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-3);
}

/* ==========================================================================
   Сценарии
   ========================================================================== */

.scen {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}
.scen__card {
  position: relative;
  grid-column: span 3;
  border-radius: var(--r-l);
  overflow: hidden;
  min-height: 330px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  text-decoration: none;
  box-shadow: var(--shadow-s);
  transition: box-shadow .3s ease, transform .3s ease;
}
.scen__card:nth-child(1), .scen__card:nth-child(2) { grid-column: span 6; min-height: 430px; }
.scen__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-l); }
.scen__card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s cubic-bezier(.22,.61,.36,1);
}
.scen__card:hover img { transform: scale(1.045); }
.scen__card::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(18,24,16,.06) 0%, rgba(18,24,16,.18) 40%, rgba(14,20,12,.42) 74%, rgba(10,15,9,.62) 100%);
}
.scen__b {
  position: relative;
  padding: 76px 26px 28px;
  width: 100%;
  text-shadow: 0 1px 14px rgba(0,0,0,.4);
  background: linear-gradient(180deg,
    rgba(9,14,8,0) 0%, rgba(9,14,8,.62) 30%, rgba(8,12,7,.90) 62%, rgba(7,11,6,.96) 100%);
}
.scen__b h3 { font-size: clamp(21px, 2vw, 27px); }
.scen__b p {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,.88);
  max-width: 40ch;
}
.scen__price {
  display: inline-block;
  margin-top: 16px;
  padding: 7px 15px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-size: 14px;
  font-weight: 600;
}

/* ==========================================================================
   Каталог моделей
   ========================================================================== */

.tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.tab {
  padding: 11px 22px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: transparent;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  transition: all .18s ease;
}
.tab:hover { border-color: var(--ink-3); }
.tab[aria-pressed="true"] {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.card {
  background: var(--card);
  border-radius: var(--r-l);
  overflow: hidden;
  box-shadow: var(--shadow-s);
  display: flex;
  flex-direction: column;
  transition: box-shadow .3s ease, transform .3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); }
.card__ph {
  position: relative;
  aspect-ratio: 16/11;
  background: var(--paper-3);
  overflow: hidden;
}
.card__ph img { width: 100%; height: 100%; object-fit: cover; }
.card__badge {
  position: absolute; left: 16px; top: 16px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.93);
  font-size: 12.5px; font-weight: 600;
  letter-spacing: .01em;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.card__badge--stock { background: #DFF0DA; color: var(--green-2); }
.card__b { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.card__b h3 { font-size: 23px; }
.card__size {
  margin-top: 6px;
  font-size: 14px;
  color: var(--ink-3);
  font-weight: 500;
  letter-spacing: .02em;
}
.card__spec {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.card__spec li {
  position: relative;
  padding-left: 20px;
  font-size: 14.7px;
  line-height: 1.42;
  color: var(--ink-2);
}
.card__spec li::before {
  content: '';
  position: absolute; left: 2px; top: 8px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber);
}
.card__foot {
  margin-top: auto;
  padding-top: 22px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px 14px;
  flex-wrap: wrap;
}
.card__price { min-width: 0; flex: 1 1 auto; }
.card__price small {
  display: block;
  font-size: 12.5px;
  color: var(--ink-3);
  font-weight: 500;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.card__price b {
  display: block;
  font-family: var(--font-d);
  font-size: clamp(20px, 1.55vw, 25px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.card--cta {
  background: var(--green-3);
  color: #E9E3D8;
  justify-content: center;
  min-height: 320px;
}
.card--cta:hover { transform: none; box-shadow: var(--shadow-s); }
.card--cta .card__b { padding: 34px 30px; }
.card--cta h3 { color: #fff; font-size: 25px; }
.card--cta p { margin-top: 14px; font-size: 15.5px; line-height: 1.55; color: #BDB6A9; }
.card--cta .card__foot { padding-top: 26px; gap: 10px; }
.card--cta .btn--ghost { color: #E9E3D8; border-color: rgba(255,255,255,.28); }
.card--cta .btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.1); }

.addons {
  margin-top: 30px;
  background: var(--card);
  border-radius: var(--r-m);
  box-shadow: var(--shadow-s);
  padding: 8px 26px;
}
.addons__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.addons__row:last-child { border-bottom: 0; }
.addons__row span { font-size: 16px; }
.addons__row em {
  font-style: normal;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 19px;
}

/* ==========================================================================
   Калькулятор
   ========================================================================== */

.calc {
  display: grid;
  grid-template-columns: 1.25fr .95fr;
  gap: 30px;
  align-items: start;
}
.calc__form {
  background: var(--card);
  border-radius: var(--r-l);
  box-shadow: var(--shadow-s);
  padding: 32px;
}
.fgroup + .fgroup { margin-top: 26px; }
.flabel {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 11px;
}

.seg { display: flex; gap: 8px; flex-wrap: wrap; }
.seg input { position: absolute; opacity: 0; pointer-events: none; }
.seg label {
  padding: 11px 19px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  transition: all .16s ease;
  user-select: none;
}
.seg label:hover { border-color: var(--ink-3); }
.seg input:checked + label {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.seg input:focus-visible + label { outline: 3px solid var(--amber); outline-offset: 2px; }

/* select: своя стрелка */
.sel { position: relative; }
.sel select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  padding: 14px 38px 14px 16px;
  border-radius: var(--r-s);
  border: 1px solid var(--line-2);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  cursor: pointer;
  line-height: 1.3;
}
.sel select:hover { border-color: var(--ink-3); }
.sel::after {
  content: '';
  position: absolute;
  right: 15px; top: 50%;
  width: 12px; height: 12px;
  margin-top: -6px;
  pointer-events: none;
  background: no-repeat center / 12px 12px
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M1.5 4L6 8.5L10.5 4' fill='none' stroke='%235B5245' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.checks { display: flex; flex-direction: column; gap: 12px; }
.chk {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-s);
  transition: border-color .16s ease, background-color .16s ease;
}
.chk:hover { border-color: var(--line-2); background: var(--paper); }
.chk input { position: absolute; opacity: 0; pointer-events: none; }
.chk__box {
  width: 21px; height: 21px;
  border-radius: 6px;
  border: 1.6px solid var(--line-2);
  flex: none;
  margin-top: 1px;
  display: grid; place-items: center;
  transition: all .16s ease;
  background: #fff;
}
.chk__box svg { width: 12px; height: 12px; opacity: 0; transition: opacity .14s ease; }
.chk input:checked + .chk__box { background: var(--green); border-color: var(--green); }
.chk input:checked + .chk__box svg { opacity: 1; }
.chk input:focus-visible + .chk__box { outline: 3px solid var(--amber); outline-offset: 2px; }
.chk__t { font-size: 15.5px; line-height: 1.4; }
.chk__t small { display: block; color: var(--ink-3); font-size: 13.5px; margin-top: 2px; }
.chk[hidden] { display: none; }

.stepper { display: flex; align-items: center; gap: 0; }
.stepper button {
  width: 46px; height: 46px;
  border: 1px solid var(--line-2);
  background: var(--paper);
  cursor: pointer;
  font-size: 21px;
  line-height: 1;
  display: grid; place-items: center;
  transition: background-color .16s ease;
}
.stepper button:hover { background: var(--paper-3); }
.stepper button:first-child { border-radius: var(--r-s) 0 0 var(--r-s); }
.stepper button:last-child { border-radius: 0 var(--r-s) var(--r-s) 0; }
.stepper input {
  width: 74px; height: 46px;
  border: 1px solid var(--line-2);
  border-left: 0; border-right: 0;
  background: #fff;
  text-align: center;
  font: inherit;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  -moz-appearance: textfield;
}
.stepper input::-webkit-outer-spin-button,
.stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.stepper__hint { font-size: 13.5px; color: var(--ink-3); margin-top: 9px; line-height: 1.4; }

.calc__out {
  position: sticky;
  top: 92px;
  background: var(--green-3);
  color: #EFE9DE;
  border-radius: var(--r-l);
  padding: 30px;
  box-shadow: var(--shadow-m);
}
.calc__out h3 { color: #fff; font-size: 22px; }
.calc__total {
  margin-top: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.calc__total small {
  display: block;
  font-size: 12.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #9EAE9A;
  margin-bottom: 6px;
}
.calc__total b {
  font-family: var(--font-d);
  font-size: clamp(34px, 3.6vw, 46px);
  font-weight: 700;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.02em;
}
.calc__lines { margin: 20px 0 0; padding: 0; list-style: none; }
.calc__lines li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  font-size: 15px;
  border-bottom: 1px dashed rgba(255,255,255,.13);
}
.calc__lines li:last-child { border-bottom: 0; }
.calc__lines span { color: #C3BCAF; }
.calc__lines em { font-style: normal; font-weight: 600; color: #fff; white-space: nowrap; }
.calc__inst {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: var(--r-s);
  background: rgba(255,255,255,.07);
  font-size: 14.5px;
  line-height: 1.5;
  color: #CFC8BB;
}
.calc__inst b { color: #fff; font-weight: 600; }
.calc__note {
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.5;
  color: #9C958A;
}
.calc__out .btn { margin-top: 20px; }

.calc__base {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.calc__base-t {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #9EAE9A;
  margin-bottom: 12px;
}
.calc__base ul { margin: 0; padding: 0; list-style: none; }
.calc__base li {
  position: relative;
  padding: 5px 0 5px 24px;
  font-size: 14.5px;
  line-height: 1.45;
  color: #CFC8BB;
}
.calc__base li::before {
  content: '';
  position: absolute; left: 0; top: 10px;
  width: 14px; height: 14px; border-radius: 50%;
  background: rgba(143,208,138,.22) no-repeat center / 9px 9px
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6.4L4.7 9L10 3' fill='none' stroke='%23A9D6A3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.calc__base p { margin-top: 14px; font-size: 14px; color: #9C958A; line-height: 1.5; }

/* ==========================================================================
   Как устроено (конструктив)
   ========================================================================== */

.build {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.build__card {
  background: var(--card);
  border-radius: var(--r-m);
  overflow: hidden;
  box-shadow: var(--shadow-s);
  display: flex;
  flex-direction: column;
}
.build__ph { aspect-ratio: 16/9; background: var(--paper-3); flex: none; overflow: hidden; }
.build__ph img { width: 100%; height: 100%; object-fit: cover; }
.build__b { padding: 24px; }
.build__b h3 { font-size: 20px; }
.build__b p { margin-top: 10px; font-size: 15.5px; color: var(--ink-2); line-height: 1.55; }
.build__b .vs {
  display: inline-block;
  margin-top: 14px;
  padding: 6px 13px;
  border-radius: 999px;
  background: var(--amber-soft);
  color: var(--amber-2);
  font-size: 13.5px;
  font-weight: 600;
}

.incl {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.panel {
  background: var(--card);
  border-radius: var(--r-m);
  box-shadow: var(--shadow-s);
  padding: 30px;
}
.panel--green { background: var(--green-soft); box-shadow: none; border: 1px solid #D5E3D2; }
.panel h3 { font-size: 22px; }
.panel > p { margin-top: 10px; color: var(--ink-2); font-size: 15.5px; }
.plist { margin: 20px 0 0; padding: 0; list-style: none; }
.plist li {
  position: relative;
  padding: 11px 0 11px 32px;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  line-height: 1.45;
}
.panel--green .plist li { border-color: #D5E3D2; }
.plist li:last-child { border-bottom: 0; }
.plist li::before {
  content: '';
  position: absolute; left: 0; top: 16px;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: var(--green) no-repeat center / 10px 10px
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6.4L4.7 9L10 3' fill='none' stroke='%23fff' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.plist li b { font-weight: 600; }
.plist li small { display: block; color: var(--ink-3); font-size: 14px; margin-top: 2px; }

.plist--gift li::before {
  background-color: var(--amber);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6.4L4.7 9L10 3' fill='none' stroke='%23fff' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.gifts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.gifts span {
  padding: 9px 17px;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--line);
  font-size: 15px;
  box-shadow: var(--shadow-s);
}

/* ==========================================================================
   Оплата / доставка
   ========================================================================== */

.pay {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pay__card {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: var(--r-m);
  padding: 30px;
}
.pay__card h3 { color: #fff; font-size: 21px; }
.pay__card p { margin-top: 12px; color: #C0B9AC; font-size: 15.5px; line-height: 1.58; }
.pay__ic {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: rgba(212,169,111,.16);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.pay__ic svg { width: 23px; height: 23px; stroke: #D9B279; fill: none; stroke-width: 1.6; }
.pay__card ul { margin: 14px 0 0; padding: 0 0 0 18px; color: #C0B9AC; font-size: 15px; line-height: 1.7; }

.deliv {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: center;
}
.deliv__ph { border-radius: var(--r-l); overflow: hidden; box-shadow: var(--shadow-m); }
.deliv__ph img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.dnums { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 26px; }
.dnum {
  background: var(--card);
  border-radius: var(--r-m);
  padding: 22px 24px;
  box-shadow: var(--shadow-s);
}
.dnum b {
  display: block;
  font-family: var(--font-d);
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
}
.dnum span { display: block; margin-top: 8px; font-size: 14.5px; color: var(--ink-2); line-height: 1.4; }

/* ==========================================================================
   Сезон
   ========================================================================== */

.season { position: relative; overflow: hidden; color: #F2EDE3; }
.season__bg { position: absolute; inset: 0; }
.season__bg img { width: 100%; height: 100%; object-fit: cover; }
.season__bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(12,20,14,.82) 0%, rgba(12,20,14,.58) 46%, rgba(10,17,12,.86) 100%),
    linear-gradient(100deg, rgba(10,18,12,.62) 0%, rgba(10,18,12,.10) 78%);
}
.season__in { position: relative; padding-top: 96px; padding-bottom: 96px; }

.season__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.season__c {
  background: rgba(11,18,13,.62);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--r-m);
  padding: 26px 24px 28px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.season__n {
  display: block;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .08em;
  color: #D5A96F;
  margin-bottom: 14px;
}
.season__c h3 { font-size: 20px; color: #fff; }
.season__c p { margin-top: 10px; font-size: 15.2px; line-height: 1.55; color: #C0B9AC; }

.season__q {
  margin: 34px 0 0;
  padding: 0 0 0 22px;
  border-left: 3px solid #D5A96F;
  font-family: var(--font-d);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(18px, 1.9vw, 24px);
  line-height: 1.42;
  color: #EDE7DB;
  max-width: 70ch;
}
.season__q cite {
  display: block;
  margin-top: 12px;
  font-family: var(--font-t);
  font-style: normal;
  font-size: 14px;
  color: #9C958A;
}

/* ==========================================================================
   Истории покупателей
   ========================================================================== */

.stories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.story {
  background: var(--card);
  border-radius: var(--r-l);
  box-shadow: var(--shadow-s);
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.story__hl {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 23px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--green-2);
}
.story__t {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.58;
  color: var(--ink-2);
  flex: 1;
}
.story__m {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-3);
}
.ava {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-2);
  display: grid; place-items: center;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 17px;
  flex: none;
}
.story__m b { color: var(--ink); font-weight: 600; display: block; font-size: 15px; }

/* ==========================================================================
   Отзывы
   ========================================================================== */

.rate {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  background: var(--card);
  border-radius: var(--r-l);
  box-shadow: var(--shadow-s);
  padding: 28px 34px;
  margin-bottom: 34px;
}
.rate__big {
  font-family: var(--font-d);
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}
.rate__stars { display: flex; gap: 3px; margin-bottom: 6px; }
.rate__stars svg { width: 18px; height: 18px; fill: #E2A33C; }
.rate__d { font-size: 15px; color: var(--ink-2); }
.rate__sep { width: 1px; align-self: stretch; background: var(--line); }
.rate__i b { display: block; font-family: var(--font-d); font-size: 26px; font-weight: 700; line-height: 1.1; }
.rate__i span { font-size: 14px; color: var(--ink-3); }
.rate .btn { margin-left: auto; }

.revs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.rev {
  background: var(--card);
  border-radius: var(--r-m);
  box-shadow: var(--shadow-s);
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.rev__h { display: flex; align-items: center; gap: 10px 12px; margin-bottom: 14px; flex-wrap: wrap; }
.rev__h > span { min-width: 0; }
.rev__h b { font-size: 15.5px; font-weight: 600; display: block; }
.rev__h span { font-size: 13px; color: var(--ink-3); }
.rev__st { margin-left: auto; display: flex; gap: 2px; flex: none; }
.rev__st svg { width: 13px; height: 13px; fill: #E2A33C; }
.rev__t { font-size: 15.3px; line-height: 1.55; color: var(--ink-2); flex: 1; }
.rev__i {
  margin-top: 14px;
  font-size: 13px;
  color: var(--ink-3);
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.revs__more { display: flex; justify-content: center; margin-top: 30px; }

/* ==========================================================================
   Галерея
   ========================================================================== */

.gal {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.gal button {
  padding: 0; border: 0; cursor: pointer;
  border-radius: var(--r-s);
  overflow: hidden;
  background: var(--paper-3);
  aspect-ratio: 4/3;
  position: relative;
  display: block;
}
.gal button img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s cubic-bezier(.22,.61,.36,1), filter .3s ease;
}
.gal button:hover img { transform: scale(1.06); }
.gal button.tall { aspect-ratio: 4/3; }

.certs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.certs button {
  padding: 10px; border: 1px solid var(--line); cursor: pointer;
  border-radius: var(--r-s);
  background: var(--card);
  display: block;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.certs button:hover { border-color: var(--line-2); box-shadow: var(--shadow-s); }
.certs button img { width: 100%; aspect-ratio: 3/4; object-fit: contain; }

/* лайтбокс */
.lb {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(16,20,14,.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4vh 4vw;
}
.lb.open { display: flex; }
.lb img {
  max-width: 100%;
  max-height: 84vh;
  object-fit: contain;
  border-radius: 8px;
}
.lb__cnt { font-size: 14px; color: rgba(255,255,255,.6); margin-top: 16px; text-align: center; }
.lb__btn {
  position: absolute;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background-color .2s ease;
}
.lb__btn:hover { background: rgba(255,255,255,.24); }
.lb__btn svg { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: 2; }
.lb__prev { left: 3vw; top: 50%; margin-top: -26px; }
.lb__next { right: 3vw; top: 50%; margin-top: -26px; }
.lb__close { right: 3vw; top: 3vh; }
.lb__fig { display: flex; flex-direction: column; align-items: center; }

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq { max-width: 900px; margin: 0 auto; }
.faq__i { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  padding: 24px 46px 24px 0;
  cursor: pointer;
  position: relative;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.28;
  letter-spacing: -0.01em;
}
.faq__q::after {
  content: '';
  position: absolute;
  right: 8px; top: 50%;
  width: 15px; height: 15px;
  margin-top: -7px;
  background: no-repeat center / 15px 15px
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M1.5 4L6 8.5L10.5 4' fill='none' stroke='%232F5D3C' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  transition: transform .28s ease;
}
.faq__i.open .faq__q::after { transform: rotate(180deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.22,.61,.36,1);
}
.faq__i.open .faq__a { max-height: 640px; }
.faq__a p {
  padding: 0 40px 26px 0;
  color: var(--ink-2);
  font-size: 16.5px;
  line-height: 1.62;
}

/* ==========================================================================
   Заявка
   ========================================================================== */

.form-sec {
  background: var(--green-3);
  color: #EFE9DE;
  border-radius: var(--r-l);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
}
.form-sec__ph { position: relative; min-height: 100%; }
.form-sec__ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.form-sec__b { padding: 48px; }
.form-sec__b h2 { color: #fff; font-size: clamp(28px, 3vw, 40px); }
.form-sec__b > p { margin-top: 14px; color: #BDB6A9; font-size: 16.5px; max-width: 44ch; }

.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 26px; }
.field { display: block; }
.field span {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #9AA396;
  margin-bottom: 8px;
}
.field input, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--r-s);
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.07);
  color: #fff;
  font: inherit;
  font-size: 16px;
}
.field textarea { min-height: 96px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.34); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: #7FA07F;
  background: rgba(255,255,255,.11);
}
.field input[aria-invalid="true"] { border-color: #D98A6A; }
.field--full { grid-column: 1 / -1; }
.field .err { display: none; color: #E0A98D; font-size: 13px; margin-top: 6px; letter-spacing: 0; text-transform: none; font-weight: 400; }
.field.bad .err { display: block; }

.form-sec .sel select {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.18);
  color: #fff;
}
.form-sec .sel select option { background: #1B3722; color: #fff; }
.form-sec .sel::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M1.5 4L6 8.5L10.5 4' fill='none' stroke='%23BDB6A9' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.form-foot { margin-top: 24px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.form-note { font-size: 13px; color: #8E877C; line-height: 1.55; max-width: 44ch; }
.form-note b { color: #C6BFB2; font-weight: 600; }
.form-ok {
  display: none;
  margin-top: 22px;
  padding: 20px 22px;
  border-radius: var(--r-m);
  background: rgba(143,208,138,.13);
  border: 1px solid rgba(143,208,138,.32);
  color: #D9EBD5;
  font-size: 15.5px;
  line-height: 1.55;
}
.form-ok.show { display: block; }
.form-ok b { color: #fff; }

/* ==========================================================================
   Контакты и подвал
   ========================================================================== */

.cont {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cont__c {
  background: var(--card);
  border-radius: var(--r-m);
  box-shadow: var(--shadow-s);
  padding: 28px;
}
.cont__c h3 { font-size: 18px; margin-bottom: 12px; }
.cont__c p, .cont__c a { font-size: 16px; color: var(--ink-2); text-decoration: none; line-height: 1.55; display: block; }
.cont__c a:hover { color: var(--green); }
.cont__c a[href^="mailto"], .cont__c a[href^="http"] {
  text-decoration: underline;
  text-decoration-color: var(--line-2);
  text-underline-offset: 3px;
}
.cont__c strong { color: var(--ink); font-weight: 600; }
.cont__warn {
  margin-top: 12px;
  font-size: 13.5px;
  color: var(--amber-2);
  line-height: 1.45;
}

.foot {
  background: var(--green-3);
  color: #9C958A;
  padding: 54px 0 40px;
  font-size: 14.5px;
}
.foot__top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,.11);
}
.foot .logo__name { color: #F2EDE3; }
.foot .logo__sub { color: #8B8478; }
.foot__links { display: flex; gap: 28px; flex-wrap: wrap; }
.foot__links a { color: #C0B9AC; text-decoration: none; }
.foot__links a:hover { color: #fff; }
.foot__bot { padding-top: 26px; display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.foot__dis { max-width: 62ch; font-size: 13px; line-height: 1.6; color: #857E73; }

/* мобильная нижняя панель */
.mbar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 70;
  background: rgba(251,247,240,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}
.mbar .btn { flex: 1; padding: 13px 12px; font-size: 15px; }

/* ==========================================================================
   Адаптив
   ========================================================================== */

@media (max-width: 1370px) {
  .hdr__tel { display: none; }
  .nav a { padding: 9px 10px; }
}

@media (max-width: 1120px) {
  .nav { display: none; }
  .burger { display: grid; }
  .cards, .stories, .revs, .build, .pay, .season__grid { grid-template-columns: repeat(2, 1fr); }
  .gal { grid-template-columns: repeat(4, 1fr); }
  .certs { grid-template-columns: repeat(4, 1fr); }
  .calc { grid-template-columns: 1fr; }
  .calc__out { position: static; }
  .day__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  :root { --gut: 22px; }
  .sect { padding: 74px 0; }
  .scen { grid-template-columns: repeat(2, 1fr); }
  .scen__card, .scen__card:nth-child(1), .scen__card:nth-child(2) { grid-column: span 1; min-height: 320px; }
  .form-sec { grid-template-columns: 1fr; }
  .form-sec__ph { min-height: 260px; }
  .form-sec__b { padding: 34px 28px; }
  .deliv { grid-template-columns: 1fr; }
  .cont { grid-template-columns: repeat(2, 1fr); }
  .incl { grid-template-columns: 1fr; }
  .hero__facts { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .hdr__tel { display: none; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  :root { --gut: 18px; --r-l: 20px; }
  .sect { padding: 58px 0; }
  .sect--tight { padding: 46px 0; }
  .topline__in { min-height: 0; padding-top: 8px; padding-bottom: 8px; font-size: 12.5px; gap: 4px 10px; }
  .topline__i--hide { display: none; }
  .hdr__in { min-height: 62px; }
  .hdr__act .btn { display: none; }
  .hero__in { padding-top: 68px; padding-bottom: 32px; min-height: 0; }
  .hero h1 { max-width: 100%; }
  .hero__cta { gap: 10px; }
  .hero__cta .btn { flex: 1 1 auto; }
  .hero__bg::after {
    background:
      linear-gradient(180deg, rgba(18,26,16,.58) 0%, rgba(18,26,16,.44) 34%, rgba(16,24,14,.62) 66%, rgba(14,22,12,.86) 100%);
  }
  .hero__tag { font-size: 12.5px; padding: 7px 14px 7px 11px; }
  .hero__facts { margin-top: 36px; gap: 18px 16px; }
  .cards, .stories, .revs, .build, .pay, .scen, .day__grid, .cont, .dnums, .season__grid { grid-template-columns: 1fr; }
  .season__in { padding-top: 58px; padding-bottom: 58px; }
  .gal { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .certs { grid-template-columns: repeat(2, 1fr); }
  .calc__form { padding: 22px; }
  .calc__out { padding: 24px; }
  .panel { padding: 24px; }
  .story, .rev { padding: 22px; }
  .frow { grid-template-columns: 1fr; }
  .rate { padding: 22px; gap: 18px; }
  .rate .btn { margin-left: 0; width: 100%; }
  .rate__sep { display: none; }
  .mbar { display: flex; }
  body { padding-bottom: 74px; }
  .lb__prev { left: 10px; }
  .lb__next { right: 10px; }
  .lb__close { right: 10px; top: 10px; }
  .lb__btn { width: 44px; height: 44px; }
  .quote-inline { padding: 22px; }
  .foot { padding-bottom: 96px; }
  .addons { padding: 4px 20px; }
}

@media (max-width: 400px) {
  .hero__facts { grid-template-columns: 1fr 1fr; }
  .seg label { padding: 10px 15px; font-size: 14.5px; }
  .tab { padding: 10px 16px; font-size: 14.5px; }
}


/* ---------- аудит: якоря и липкая панель ---------- */
section[id],div[id]{scroll-margin-top:110px}
@media (max-width:900px){
  section[id],div[id]{scroll-margin-top:80px}
  body{padding-bottom:78px}
  .btn{min-height:44px}
}
.day__note{margin:18px 0 0;font-size:13.5px;line-height:1.55;opacity:.72;max-width:64ch}
.day__note a{border-bottom:1px solid currentColor}
