/* ============================================================
   Заборы НН — Дизайн-система
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Exo+2:wght@400;500;600;700&family=Jost:wght@300;400;500&display=swap');

/* ---------- Переменные ---------- */
:root {
  --char:   #0a0806;
  --char2:  #181210;
  --gold:   #c8791a;
  --gold2:  #a86415;
  --gold3:  #f5a832;
  --cream:  #faf6f0;
  --cream2: #f0ebe3;
  --bark:   #8a6a4a;
  --bark2:  #6a5038;
  --serif:  'Cormorant Garamond', Georgia, serif;
  --display:'Exo 2', sans-serif;
  --body:   'Jost', sans-serif;
  --r:      8px;
  --r2:     16px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--cream);
  color: var(--char);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Типография ---------- */
h1,h2,h3,h4 { font-family: var(--serif); line-height: 1.15; }
h1 { font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 600; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); font-weight: 600; }

em { font-style: italic; color: var(--gold); }

/* ---------- Навигация ---------- */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--char);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0 2.5rem;
  height: 80px;
  box-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 70px;
  width: auto;
}
.footer-logo-img {
  height: 60px;
  width: auto;
  margin-bottom: .5rem;
}
.nav-links {
  display: flex;
  gap: .25rem;
  align-items: center;
}
.nav-links a {
  font-family: var(--display);
  font-size: .78rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  padding: .4rem .7rem;
  border-radius: var(--r);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold3);
  background: rgba(255,255,255,.06);
}
.nav-cta {
  background: var(--gold) !important;
  color: #fff !important;
  padding: .4rem 1rem !important;
  border-radius: var(--r) !important;
}
.nav-cta:hover { background: var(--gold2) !important; }

.nav-socials {
  display: flex;
  gap: .5rem;
  align-items: center;
  flex-shrink: 0;
}
.nav-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  transition: background .2s;
}
.nav-socials a:hover { background: rgba(255,255,255,.18); }
.nav-socials svg { width: 18px; height: 18px; fill: rgba(255,255,255,.7); }
.nav-socials a:hover svg { fill: var(--gold3); }

.footer-socials {
  display: flex;
  gap: .6rem;
  margin-top: .75rem;
}
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  transition: background .2s;
}
.footer-socials a:hover { background: var(--gold); }
.footer-socials svg { width: 18px; height: 18px; fill: rgba(255,255,255,.7); }
.footer-socials a:hover svg { fill: #fff; }

@media (max-width: 768px) {
  .nav-socials { display: none; }
}

.nav-phone {
  font-family: var(--display);
  font-size: .82rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}
.burger { display: none; cursor: pointer; }
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  margin: 5px 0;
  border-radius: 2px;
  transition: .3s;
}

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 56% 44%;
  min-height: 88vh;
}
.hero-l {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
  background: var(--cream);
}
.hero-r {
  background: var(--char);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.hero-r img.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .45;
}
.rcard {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r2);
  padding: 2rem 2rem 1.6rem;
  color: #fff;
  width: 100%;
  max-width: 320px;
}
.rcard .label {
  font-family: var(--display);
  font-size: .72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold3);
  margin-bottom: 1rem;
}
.rcard .val {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold3);
  line-height: 1;
  margin-bottom: .2rem;
}
.rcard .sub {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.5rem;
}
.rcard hr { border: none; border-top: 1px solid rgba(255,255,255,.12); margin: 1rem 0; }
.rcard .row { display: flex; justify-content: space-between; align-items: center; margin-bottom: .6rem; }
.rcard .row .k { font-size: .78rem; color: rgba(255,255,255,.55); }
.rcard .row .v { font-size: .85rem; font-weight: 500; color: #fff; }

/* ---------- Eyebrow / Section title ---------- */
.ey {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--display);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.ey::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.stitle { margin-bottom: 1.2rem; }
.stitle em { font-style: italic; color: var(--gold); }
.sub-text {
  color: var(--bark);
  font-size: 1rem;
  max-width: 56ch;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.hero-guarantee {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(200,121,26,.12);
  border-left: 3px solid var(--gold);
  padding: .55rem 1rem;
  font-family: var(--body);
  font-size: .92rem;
  color: var(--char);
  font-weight: 500;
  margin-bottom: 1.5rem;
  border-radius: 0 6px 6px 0;
  line-height: 1.4;
}
.hero-r .hero-guarantee,
.dark-sec .hero-guarantee {
  background: rgba(245,168,50,.15);
  color: #fff;
}

/* ---------- Кнопки ---------- */
.btn-g, .btn-d, .btn-o {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .5px;
  padding: .75rem 1.6rem;
  border-radius: var(--r);
  cursor: pointer;
  border: none;
  transition: .2s;
  white-space: nowrap;
}
.btn-g {
  background: var(--gold);
  color: #fff;
}
.btn-g:hover { background: var(--gold2); transform: translateY(-1px); }
.btn-d {
  background: var(--char);
  color: #fff;
}
.btn-d:hover { background: #000; }
.btn-o {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn-o:hover { background: var(--gold); color: #fff; }
.btn-o.light { border-color: rgba(255,255,255,.4); color: rgba(255,255,255,.8); }
.btn-o.light:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.6); }
.btns { display: flex; gap: .75rem; flex-wrap: wrap; }

/* ---------- Секции ---------- */
section { padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 5vw, 4rem); }
.container { max-width: 1200px; margin: 0 auto; }
.dark-sec {
  background: var(--char);
  color: #fff;
  position: relative;
}
.dark-sec img.sec-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .18;
  pointer-events: none;
}
.dark-sec .container { position: relative; z-index: 1; }
.dark-sec .stitle { color: #fff; }
.dark-sec .sub-text { color: rgba(255,255,255,.55); }
.dark-sec .ey { color: var(--gold3); }
.dark-sec .ey::before { background: var(--gold3); }
.cream2-sec { background: var(--cream2); }

/* ---------- Карточки продуктов ---------- */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.prd {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--r2);
  padding: 1.6rem 1.5rem;
  transition: box-shadow .2s, transform .2s;
}
.prd:hover { box-shadow: 0 8px 30px rgba(0,0,0,.1); transform: translateY(-3px); }
.prd.dk {
  background: var(--char2);
  border-color: rgba(255,255,255,.08);
  color: #fff;
}
.prd-icon { font-size: 2rem; margin-bottom: 1rem; }
.prd h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.prd.dk h3 { color: #fff; }
.prd p { font-size: .88rem; color: var(--bark); line-height: 1.6; }
.prd.dk p { color: rgba(255,255,255,.5); }
.prd .price {
  margin-top: 1.2rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold);
}
.prd.dk .price { color: var(--gold3); }

/* ---------- Карточки каталога (с фото) ---------- */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.prd-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--r2);
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
  display: flex;
  flex-direction: column;
}
.prd-card:hover {
  box-shadow: 0 12px 36px rgba(0,0,0,.12);
  transform: translateY(-4px);
}
.prd-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}
.prd-card-body {
  padding: 1.4rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.prd-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: .5rem;
  line-height: 1.35;
}
.prd-card-body p {
  font-size: .88rem;
  color: var(--bark);
  line-height: 1.6;
  flex: 1;
}
.prd-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.2rem;
  gap: 1rem;
}
.prd-card-footer .price {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold);
  white-space: nowrap;
}
.prd-card-footer .btn-link {
  font-family: var(--display);
  font-size: .85rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s;
}
.prd-card-footer .btn-link:hover { color: var(--gold3); }
.prd-card-footer .btn-link::after { content: ' →'; }

/* ---------- Шаги процесса ---------- */
.process-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 2rem; margin-top: 2rem; }
.proc {
  position: relative;
  padding-top: 1rem;
}
.proc-num {
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: .15;
  line-height: 1;
  position: absolute;
  top: 0; left: -0.3rem;
}
.proc h3 { font-size: 1rem; margin-bottom: .4rem; position: relative; padding-top: 2.5rem; }
.proc p { font-size: .85rem; color: var(--bark); line-height: 1.6; }
.dark-sec .proc p { color: rgba(255,255,255,.5); }
.dark-sec .proc h3 { color: #fff; }

/* ---------- Гарантийные карточки ---------- */
.gi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.gi {
  background: var(--char2);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r2);
  padding: 1.5rem 1.4rem;
  color: #fff;
}
.gi .val {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold3);
  line-height: 1;
  margin-bottom: .3rem;
}
.gi .lbl {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  line-height: 1.4;
}

/* ---------- FAQ ---------- */
.faq-list { margin-top: 2rem; display: flex; flex-direction: column; gap: .75rem; max-width: 780px; }
.faq-item {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--r);
  overflow: hidden;
}
.dark-sec .faq-item { background: var(--char2); border-color: rgba(255,255,255,.08); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  text-align: left;
  font-family: var(--body);
  font-size: .93rem;
  font-weight: 500;
  color: var(--char);
  transition: color .2s;
}
.dark-sec .faq-q { color: rgba(255,255,255,.85); }
.faq-q:hover { color: var(--gold); }
.faq-q .arr {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: .7rem;
  transition: transform .3s;
}
.faq-item.open .faq-q .arr { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 500px; }
.faq-a p { padding: 0 1.4rem 1.2rem; font-size: .88rem; color: var(--bark); line-height: 1.7; }
.dark-sec .faq-a p { color: rgba(255,255,255,.5); }

/* ---------- Полоса-бегущая строка ---------- */
.strip {
  background: var(--gold);
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  padding: .6rem 0;
}
.strip-inner {
  display: inline-flex;
  gap: 0;
  animation: stripScroll 25s linear infinite;
}
.strip span {
  font-family: var(--display);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0 2.5rem;
}
.strip span::after { content: '◆'; margin-left: 2.5rem; opacity: .5; }
@keyframes stripScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- CTA-секция ---------- */
.cta-sec {
  background: var(--char);
  padding: clamp(3rem, 7vw, 5rem) clamp(1.5rem, 5vw, 4rem);
}
.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.cta-form-wrap {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r2);
  padding: 2rem;
}
.form-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 1.2rem;
}
.form-row { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-row label {
  font-family: var(--display);
  font-size: .72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.form-row input,
.form-row select,
.form-row textarea {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r);
  padding: .7rem 1rem;
  font-family: var(--body);
  font-size: .9rem;
  color: #fff;
  outline: none;
  transition: border-color .2s;
  width: 100%;
}
.form-row input::placeholder,
.form-row textarea::placeholder { color: rgba(255,255,255,.25); }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { border-color: var(--gold); }
.form-row select option { background: var(--char); color: #fff; }
.form-row textarea { resize: vertical; min-height: 90px; }
.form-note {
  font-size: .72rem;
  color: rgba(255,255,255,.3);
  margin-top: .5rem;
  line-height: 1.5;
}
.ok-msg {
  display: none;
  background: rgba(200,121,26,.15);
  border: 1px solid rgba(200,121,26,.4);
  border-radius: var(--r);
  padding: 1rem 1.2rem;
  color: var(--gold3);
  font-size: .9rem;
  margin-top: 1rem;
}

/* ---------- Контакты в CTA ---------- */
.cta-contacts { color: rgba(255,255,255,.7); }
.cta-contacts h2 { color: #fff; margin-bottom: 1rem; font-size: 1.9rem; }
.cta-contacts .ey { color: var(--gold3); }
.cta-contacts .ey::before { background: var(--gold3); }
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}
.contact-icon {
  width: 40px; height: 40px;
  background: rgba(200,121,26,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold3);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item .label { font-size: .72rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: 1px; font-family: var(--display); }
.contact-item .val { font-size: .95rem; color: #fff; font-weight: 500; margin-top: .1rem; }
.contact-item .val a { color: #fff; }
.contact-item .val a:hover { color: var(--gold3); }

/* ---------- О компании ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; max-width: 1200px; margin: 0 auto; }
.about-img {
  border-radius: var(--r2);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream2);
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img.placeholder {
  display: flex; align-items: center; justify-content: center;
  color: var(--bark); font-size: 3rem;
}
.about-checks { list-style: none; margin: 1.5rem 0; display: flex; flex-direction: column; gap: .6rem; }
.about-checks li {
  display: flex; align-items: flex-start; gap: .7rem;
  font-size: .9rem; line-height: 1.5;
}
.about-checks li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: .05rem; }

/* ---------- Отзывы ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.review-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--r2);
  padding: 1.6rem 1.5rem 1.4rem;
  position: relative;
}
.review-card::before {
  content: '«';
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--gold);
  opacity: .2;
  position: absolute;
  top: .5rem; left: 1rem;
  line-height: 1;
}
.review-text { font-size: .9rem; line-height: 1.7; color: #444; padding-top: 1.5rem; }
.review-author { margin-top: 1rem; font-family: var(--display); font-size: .78rem; font-weight: 600; color: var(--bark2); }
.stars { color: var(--gold); font-size: .75rem; margin-bottom: .5rem; letter-spacing: 2px; }

/* ---------- Преимущества ---------- */
.adv-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 2rem; margin-top: 2rem; }
.adv-item { display: flex; flex-direction: column; gap: .5rem; }
.adv-icon { font-size: 2.2rem; }
.adv-item h3 { font-size: 1rem; }
.adv-item p { font-size: .85rem; color: var(--bark); line-height: 1.6; }
.dark-sec .adv-item h3 { color: #fff; }
.dark-sec .adv-item p { color: rgba(255,255,255,.5); }

/* ---------- Калькулятор ---------- */
.calc-wrap {
  background: var(--cream2);
  border-radius: var(--r2);
  padding: 2rem;
  max-width: 680px;
  margin: 2rem auto 0;
}
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.calc-grid .form-row label { color: var(--bark); }
.calc-grid .form-row input,
.calc-grid .form-row select {
  background: #fff;
  border: 1px solid rgba(0,0,0,.12);
  color: var(--char);
}
.calc-result {
  margin-top: 1.5rem;
  background: var(--char);
  border-radius: var(--r);
  padding: 1.2rem 1.5rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.calc-result .label { font-size: .8rem; color: rgba(255,255,255,.5); font-family: var(--display); }
.calc-result .amount { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: var(--gold3); }

/* ---------- Сравнительная таблица ---------- */
.compare-table { width: 100%; border-collapse: collapse; margin-top: 2rem; font-size: .88rem; }
.compare-table th {
  background: var(--char);
  color: rgba(255,255,255,.7);
  font-family: var(--display);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: .8rem 1rem;
  text-align: left;
}
.compare-table th:first-child { border-radius: var(--r) 0 0 0; }
.compare-table th:last-child { border-radius: 0 var(--r) 0 0; }
.compare-table th.us { color: var(--gold3); }
.compare-table td { padding: .75rem 1rem; border-bottom: 1px solid rgba(0,0,0,.07); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: rgba(0,0,0,.025); }
.compare-table td.us { font-weight: 600; color: var(--gold2); }
.compare-table td.bad { color: #b0b0b0; }
.compare-table .check { color: #2a9d50; font-weight: 700; }
.compare-table .cross { color: #c0392b; }

/* ---------- Hero-tags ---------- */
.hero-tags { display: flex; gap: .5rem; flex-wrap: wrap; margin: 1.5rem 0 2rem; }
.tag {
  font-family: var(--display);
  font-size: .72rem;
  font-weight: 600;
  background: rgba(200,121,26,.1);
  border: 1px solid rgba(200,121,26,.3);
  color: var(--gold2);
  padding: .3rem .8rem;
  border-radius: 20px;
}

/* ---------- Лента-полосатый HR ---------- */
.divider { border: none; border-top: 2px solid var(--cream2); margin: 0; }

/* ---------- Хлебные крошки ---------- */
.breadcrumb {
  font-family: var(--display);
  font-size: .75rem;
  color: var(--bark);
  padding: .8rem 0 0;
  display: flex;
  gap: .5rem;
  align-items: center;
}
.breadcrumb a { color: var(--bark); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(0,0,0,.25); }

/* ---------- Footer ---------- */
footer {
  background: var(--char);
  color: rgba(255,255,255,.55);
  padding: 3rem clamp(1.5rem, 5vw, 4rem) 1.5rem;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: .5rem;
}
.footer-brand .name span { color: var(--gold3); }
.footer-brand p { font-size: .82rem; line-height: 1.6; max-width: 26ch; }
.footer-col h4 {
  font-family: var(--display);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--gold3); }
.footer-bottom {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .75rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom a { color: rgba(255,255,255,.35); }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(0,0,0,.35); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

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

@media (max-width: 1024px) {
  nav { padding: 0 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cta-inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 80px; left: 0; right: 0; background: var(--char); padding: 1rem 1.5rem; gap: .25rem; }
  .nav-links.open { display: flex; }
  .nav-phone { display: none; }
  .burger { display: flex; flex-direction: column; }
  nav { position: relative; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-l { padding: 2.5rem 1.5rem; }
  .hero-r { min-height: 240px; padding: 1.5rem; }
  .rcard { max-width: 100%; }

  .process-grid { grid-template-columns: 1fr 1fr; }
  .gi-grid { grid-template-columns: 1fr 1fr; }
  .compare-table { font-size: .78rem; }
  .compare-table th, .compare-table td { padding: .6rem .7rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .calc-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
  .gi-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .btns { flex-direction: column; }
  .btns .btn-g, .btns .btn-o { text-align: center; justify-content: center; }
}

/* ---------- Галерея ---------- */
.gallery-sec { padding: 5rem 0; background: var(--cream); }
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.photo-grid a { display: block; overflow: hidden; border-radius: 8px; aspect-ratio: 4/3; }
.photo-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.photo-grid a:hover img { transform: scale(1.06); }
/* лайтбокс */
.lb-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(10,8,6,.92); z-index: 9999;
  align-items: center; justify-content: center;
}
.lb-overlay.open { display: flex; }
.lb-overlay img { max-width: 92vw; max-height: 88vh; object-fit: contain; border-radius: 6px; }
.lb-close {
  position: absolute; top: 1.2rem; right: 1.5rem;
  color: #fff; font-size: 2.4rem; cursor: pointer; line-height: 1;
  background: none; border: none; padding: 0;
}
@media (max-width: 900px) { .photo-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .photo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .photo-grid { grid-template-columns: 1fr; } }

/* ---------- Видео-оффер ---------- */
.video-offer {
  background: var(--char);
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 4rem);
}
.video-offer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem;
  align-items: center;
}
.video-offer-player {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: var(--r2);
  overflow: hidden;
  background: #000;
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
}
.video-offer-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-offer-content {
  color: #fff;
}
.video-offer-content .ey {
  color: var(--gold3);
}
.video-offer-content .ey::before {
  background: var(--gold3);
}
.video-offer-content .stitle {
  color: #fff;
  margin-bottom: 1.2rem;
}
.video-offer-content .sub-text {
  color: rgba(255,255,255,.6);
  margin-bottom: 1.5rem;
}
.video-offer-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 2rem;
}
.video-offer-checks li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .92rem;
  color: rgba(255,255,255,.8);
  line-height: 1.5;
}
.video-offer-checks li::before {
  content: '✓';
  color: var(--gold3);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .05rem;
}
.video-offer-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.video-offer-stat .vo-val {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold3);
  line-height: 1.1;
}
.video-offer-stat .vo-lbl {
  font-size: .72rem;
  color: rgba(255,255,255,.45);
  line-height: 1.3;
  margin-top: .2rem;
}

@media (max-width: 768px) {
  .video-offer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .video-offer-player { max-width: 640px; }
}
@media (max-width: 480px) {
  .video-offer-stats { grid-template-columns: 1fr 1fr; }
}

/* ---------- Утилиты ---------- */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.w-full { width: 100%; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media (max-width: 640px) { .grid-2 { grid-template-columns: 1fr; } }

/* ---------- Плавающие кнопки (телефон + WhatsApp) ---------- */
/* ---------- Плавающая кнопка связи ---------- */
.float-contact {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1000;
}
.float-contact-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(200,121,26,.45);
  transition: transform .25s, box-shadow .25s, background .25s;
  position: relative;
  z-index: 2;
}
.float-contact-toggle:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(200,121,26,.55);
}
.float-contact.open .float-contact-toggle {
  background: var(--char);
  transform: rotate(45deg);
}
.float-contact-menu {
  position: absolute;
  bottom: 72px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(.95);
  transition: opacity .25s, transform .25s, visibility .25s;
}
.float-contact.open .float-contact-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.float-contact-item {
  display: flex;
  align-items: center;
  gap: .7rem;
  background: var(--char);
  color: #fff;
  padding: .65rem 1.1rem .65rem .75rem;
  border-radius: 30px;
  font-family: var(--display);
  font-size: .82rem;
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,.35);
  transition: background .2s, transform .2s;
}
.float-contact-item:hover {
  background: var(--char2);
  transform: translateX(-4px);
}
.float-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.float-contact-icon.phone { background: var(--gold); }
.float-contact-icon.max { background: #0077FF; }
.float-contact-icon.vk { background: #4680C2; }

/* ---------- CTA-баннер промежуточный ---------- */
.cta-banner {
  background: var(--char);
  padding: 2.5rem 0;
  text-align: center;
}
.cta-banner .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2.5rem;
}
.cta-banner-text {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: #fff;
  font-weight: 600;
}
.cta-banner-text em { color: var(--gold3); font-style: italic; }
.cta-banner-phone {
  font-family: var(--display);
  font-size: 1.1rem;
  color: var(--gold3);
  font-weight: 600;
  letter-spacing: .5px;
}
.cta-banner .btn-g { flex-shrink: 0; }

/* ---------- Мини-форма «Перезвоните мне» ---------- */
.callback-strip {
  background: linear-gradient(135deg, var(--char) 0%, var(--char2) 100%);
  padding: 2.5rem 0;
}
.callback-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
}
.callback-inner .cb-title {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: #fff;
  font-weight: 600;
}
.callback-inner .cb-title em { color: var(--gold3); font-style: italic; }
.callback-form {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  align-items: center;
}
.callback-form input {
  padding: .65rem 1rem;
  border-radius: var(--r);
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-family: var(--body);
  font-size: .9rem;
  width: 220px;
  outline: none;
}
.callback-form input::placeholder { color: rgba(255,255,255,.4); }
.callback-form input:focus { border-color: var(--gold); }
.callback-form .btn-g { white-space: nowrap; }
.callback-form .ok-msg {
  display: none;
  color: var(--gold3);
  font-size: .85rem;
  padding: .5rem;
}

/* ---------- CTA после галереи ---------- */
.gallery-cta {
  text-align: center;
  padding: 2rem 0 0;
}
.gallery-cta-text {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--char);
  margin-bottom: 1rem;
}
.gallery-cta-text em { color: var(--gold); font-style: italic; }

/* ---------- Квиз ---------- */
.quiz-sec {
  background: var(--char);
  padding: 3rem 0;
  overflow: hidden;
}
.quiz-wrap {
  max-width: 640px;
  margin: 0 auto;
}
.quiz-progress {
  display: flex;
  gap: .5rem;
  margin-bottom: 2rem;
}
.quiz-dot {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,.15);
  transition: background .3s;
}
.quiz-dot.active { background: var(--gold); }
.quiz-step {
  display: none;
  animation: quizFade .3s ease;
}
.quiz-step.active { display: block; }
@keyframes quizFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.quiz-question {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: #fff;
  text-align: center;
  margin-bottom: 1.5rem;
}
.quiz-question em { color: var(--gold3); }
.quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.quiz-opt {
  padding: 1rem;
  border-radius: var(--r2);
  border: 2px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: #fff;
  font-family: var(--body);
  font-size: .95rem;
  cursor: pointer;
  text-align: center;
  transition: all .2s;
}
.quiz-opt:hover { border-color: var(--gold); background: rgba(200,121,26,.1); }
.quiz-opt.selected { border-color: var(--gold); background: rgba(200,121,26,.15); }
.quiz-final { text-align: center; }
.quiz-final input {
  display: block;
  width: 100%;
  max-width: 360px;
  margin: .75rem auto;
  padding: .75rem 1rem;
  border-radius: var(--r);
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-family: var(--body);
  font-size: .95rem;
  outline: none;
}
.quiz-final input::placeholder { color: rgba(255,255,255,.4); }
.quiz-final input:focus { border-color: var(--gold); }
.quiz-final .btn-g { margin-top: .5rem; }
.quiz-final .ok-msg {
  display: none;
  color: var(--gold3);
  margin-top: 1rem;
  font-size: .95rem;
}
@media (max-width: 480px) {
  .quiz-options { grid-template-columns: 1fr; }
  .callback-inner { flex-direction: column; text-align: center; }
  .callback-form { justify-content: center; }
  .callback-form input { width: 100%; }
  .float-contact { bottom: 1rem; right: 1rem; }
  .float-contact-toggle { width: 52px; height: 52px; font-size: 1.4rem; }
}

/* ---------- Прайс-вкладки ---------- */
.price-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}
.price-tab {
  font-family: var(--display);
  font-size: .8rem;
  font-weight: 500;
  padding: .5rem 1.2rem;
  border-radius: var(--r);
  border: 2px solid rgba(0,0,0,.1);
  background: #fff;
  color: var(--char);
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.price-tab:hover { border-color: var(--gold); color: var(--gold); }
.price-tab.active { background: var(--gold); color: #fff; border-color: var(--gold); }
.price-panel { display: none; }
.price-panel.active { display: block; animation: quizFade .3s ease; }
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--body);
  font-size: .9rem;
}
.price-table thead th {
  background: var(--char);
  color: #fff;
  font-family: var(--display);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: .7rem 1rem;
  text-align: left;
}
.price-table tbody td {
  padding: .6rem 1rem;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.price-table tbody tr:hover { background: rgba(200,121,26,.05); }
.price-table .price-val {
  font-weight: 600;
  color: var(--gold2);
  white-space: nowrap;
}
.price-note {
  margin-top: 1rem;
  font-size: .8rem;
  color: var(--bark);
  text-align: center;
}
@media (max-width: 640px) {
  .price-table { font-size: .8rem; }
  .price-table thead th, .price-table tbody td { padding: .5rem .6rem; }
}

/* ---------- Мобильный sticky-бар ---------- */
@media (max-width: 768px) {
  .float-contact { bottom: 70px; }
}
