
/* - TOKENS - */
:root {
  --bg:       #f7f2ea;
  --bg2:      #efe7db;
  --card:     #ffffff;
  --card-soft:#fbf7f0;
  --text:     #2c241d;
  --muted:    #7c6d5d;
  --line:     rgba(173,142,98,.18);
  --gold:     #c7a36c;
  --gold2:    #b98e54;
  --shadow:   0 18px 42px rgba(46,35,24,.10);
  --shadow-s: 0 10px 24px rgba(46,35,24,.08);
  --container:1360px;
  --header-h: 84px;
  --tr:       .25s ease;
}

/* - RESET - */
*, *::before, *::after { box-sizing: border-box; }
html  { scroll-behavior: smooth; }
body  { margin: 0; min-width: 320px; font-family: Inter,"Segoe UI",Arial,sans-serif;
        color: var(--text); background: linear-gradient(180deg,var(--bg) 0%,var(--bg2) 100%);
        line-height: 1.45; }
body.menu-open { overflow: hidden; }
img   { display: block; max-width: 100%; }
a     { text-decoration: none; color: inherit; }
button, input, select, textarea { font: inherit; }

/* - LAYOUT - */
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }

/* - BUTTONS - */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 22px; border-radius: 999px; border: 0;
  cursor: pointer; font-size: 12px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform var(--tr), background var(--tr), box-shadow var(--tr), color var(--tr);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--gold  { background: linear-gradient(180deg,#e6d0a1 0%,#caa469 100%);
              color: #201913; box-shadow: 0 10px 22px rgba(185,142,84,.18); }
.btn--ghost { background: rgba(255,255,255,.88); color: var(--text); border: 1px solid var(--line); }
.btn--outline { background: transparent; color: var(--gold2);
                border: 2px solid var(--gold); min-height: 48px; padding: 0 20px; }
.btn--outline:hover { background: rgba(199,163,108,.10); }

/* - HEADER - */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(0,0,0,.76); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(199,163,108,.10);
}
.site-header__inner {
  min-height: var(--header-h);
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 24px;
}
.logo { display: flex; align-items: center; gap: 14px; flex-shrink: 0; min-width: 0; }
.logo img { height: 54px; width: auto; display: block; flex-shrink: 0; object-fit: contain; }
.nav { display: flex; align-items: center; justify-content: center; gap: 26px; }
.nav a {
  position: relative; font-size: 16px; font-weight: 600;
  letter-spacing: .04em; color: rgba(244,237,226,.86); white-space: nowrap;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -8px;
  width: 100%; height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform var(--tr);
}
.nav a:hover { color: #fff; }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.nav a.active { color: #fff; }
.header-actions  { display: flex; align-items: center; gap: 16px; justify-self: end; }
.header-contact  { text-align: right; white-space: nowrap; }
.header-phone    { display: block; font-size: 16px; font-weight: 700; color: #fff; }
.header-note     { margin-top: 3px; font-size: 11px; color: rgba(244,237,226,.72); }
.burger {
  display: none; width: 46px; height: 46px; border-radius: 14px;
  border: 1px solid var(--line); background: rgba(255,255,255,.88);
  color: var(--text); padding: 0; align-items: center; justify-content: center; cursor: pointer;
}
.burger-lines,
.burger-lines::before,
.burger-lines::after {
  content: ""; display: block; width: 22px; height: 2px;
  border-radius: 999px; background: currentColor; transition: transform var(--tr), opacity var(--tr);
}
.burger-lines              { position: relative; }
.burger-lines::before      { position: absolute; top: -7px; }
.burger-lines::after       { position: absolute; top:  7px; }
.menu-open .burger-lines               { background: transparent; }
.menu-open .burger-lines::before       { transform: translateY(7px) rotate(45deg); }
.menu-open .burger-lines::after        { transform: translateY(-7px) rotate(-45deg); }
/* mobile-panel visibility controlled by transform, not display */

/* - BREADCRUMBS - */
.breadcrumbs-wrap { padding: 18px 0 0; }
.breadcrumbs {
  display: inline-flex; flex-wrap: wrap; gap: 10px; align-items: center;
  padding: 14px 18px; border-radius: 999px;
  background: rgba(255,255,255,.86); border: 1px solid var(--line);
  color: var(--muted); font-size: 14px; box-shadow: var(--shadow-s);
}
.breadcrumbs a:hover       { color: var(--gold2); }
.breadcrumbs__current      { color: var(--text); font-weight: 700; }
.breadcrumbs__separator    { opacity: .45; }

/* - HERO - */
.hero { padding: 22px 0 28px; }
.hero-reference {
  padding: 22px 0 28px !important;
  display: block !important;
}
.hero-reference .container { display: block !important; }
.hero-reference__box {
  position: relative !important; display: block !important;
  min-height: 450px !important; padding: 84px 68px 72px !important;
  border-radius: 44px !important; overflow: hidden !important;
  background:
    linear-gradient(90deg, rgba(27,26,25,.85) 0%, rgba(60,47,34,.81) 36%, rgba(200,195,189,.65) 100%),
    url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?w=1600&q=80') center/cover no-repeat !important;
  box-shadow: var(--shadow) !important;
}
.hero-reference__content {
  position: relative !important; z-index: 1 !important; max-width: 1040px !important;
}
.hero-reference__eyebrow {
  display: inline-flex !important; align-items: center !important;
  gap: 14px !important; margin-bottom: 28px !important;
  color: #e2bc83 !important; font-size: 14px !important;
  font-weight: 700 !important; letter-spacing: .18em !important; text-transform: uppercase !important;
}
.hero-reference__eyebrow::before {
  content: "" !important; width: 40px !important; height: 1px !important;
  background: currentColor !important; opacity: .75 !important;
}
.hero-reference__title {
  margin: 0 0 24px !important; font-family: Georgia,serif !important;
  font-size: clamp(40px,3.5vw,64px) !important; line-height: .98 !important;
  font-weight: 500 !important; letter-spacing: -.04em !important; color: #fff !important;
}
.hero-reference__text {
  margin: 0 !important; max-width: 760px !important; color: #f2ece4 !important;
  font-size: 20px !important; line-height: 1.35 !important;
}
.hero-reference__panel {
  position: absolute !important; right: 68px !important; top: 50% !important;
  transform: translateY(-50%) !important; width: 464px !important;
  padding: 40px 34px 30px !important; border-radius: 34px !important;
  background: rgba(6,3,0,.58) !important; border: 1px solid rgba(255,255,255,.18) !important;
  backdrop-filter: blur(2px) !important; box-shadow: 0 26px 60px rgba(73,58,42,.18) !important;
  z-index: 2 !important;
}
.hero-reference__panel-title {
  margin: 0 0 18px !important; font-family: Georgia,serif !important;
  font-size: 26px !important; font-weight: 500 !important; color: #fff !important;
}
.hero-reference__panel-text {
  margin: 0 0 22px !important; font-size: 16px !important; line-height: 1.45 !important; color: #fff !important;
}
.hero-reference__list {
  list-style: none !important; padding: 0 !important; margin: 0 0 28px !important; display: grid !important; gap: 16px !important;
}
.hero-reference__list li {
  display: flex !important; gap: 12px !important; font-size: 16px !important; line-height: 1.35 !important; color: #fff !important;
}
.hero-reference__list li::before { content: "✓" !important; color: #e2bc83 !important; font-weight: 700 !important; }

/* - SECTIONS - */
.section { padding: 34px 0 64px; }
.section-title {
  margin: 0 0 12px; font-family: Georgia,serif;
  font-size: clamp(32px,3vw,46px); line-height: 1.08;
  font-weight: 500; letter-spacing: -.02em; color: #2b241e;
}
.section-text { margin: 0; color: var(--muted); font-size: 18px; max-width: 760px; }

/* - SIDEBAR LAYOUT - */
.layout {
  display: grid; grid-template-columns: 280px minmax(0,1fr);
  gap: 26px; align-items: start;
}
.sidebar { position: sticky; top: calc(var(--header-h) + 16px); display: grid; gap: 16px; }
/* Каталог: sidebar ниже липкого cat-filter-bar (~50px) */
.catalog-main-section .sidebar { top: calc(var(--header-h) + 50px + 16px); }
.filter-box, .stats-box, .cta-box {
  background: rgba(255,255,255,.86); border: 1px solid var(--line);
  border-radius: 24px; padding: 22px; box-shadow: var(--shadow-s);
}
.filter-box h3, .stats-box h3, .cta-box h3 { margin: 0 0 16px; font-size: 22px; font-weight: 700; color: #2b241e; }
.filter-group + .filter-group { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.filter-group__title {
  margin: 0 0 12px; font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
}
.chip-list { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  padding: 10px 14px; border-radius: 999px; border: 1px solid var(--line);
  background: rgba(255,255,255,.86); color: #4b4034; font-size: 14px; font-weight: 600;
  cursor: pointer; transition: all var(--tr);
}
.chip:hover, .chip.is-active {
  background: rgba(199,163,108,.14); border-color: rgba(184,143,84,.34); color: #8f6a36;
}
.check-list { display: grid; gap: 10px; }
.check-item { display: flex; align-items: center; gap: 10px; color: var(--text); font-size: 15px; }
.check-item input { width: 18px; height: 18px; accent-color: var(--gold2); }

/* - CATALOG TOPBAR - */
.catalog-topbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-bottom: 20px; flex-wrap: wrap;
}
.catalog-topbar__left { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.count-badge {
  padding: 12px 14px; border-radius: 999px; border: 1px solid var(--line);
  background: rgba(255,255,255,.92); color: #3a3027; font-size: 14px;
  font-weight: 700; box-shadow: var(--shadow-s);
}
.sort-select {
  min-height: 48px; padding: 0 16px; border-radius: 999px; border: 1px solid var(--line);
  background: rgba(255,255,255,.92); color: var(--text); box-shadow: var(--shadow-s);
}
.mobile-filter-toggle {
  display: none; min-height: 44px; padding: 0 16px; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(255,255,255,.92);
  color: var(--text); font-size: 13px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; cursor: pointer; box-shadow: var(--shadow-s);
}

/* - PINS GRID - */
.pins-grid { column-count: 3; column-gap: 20px; }
.pin {
  break-inside: avoid; margin-bottom: 20px; overflow: hidden;
  border-radius: 24px; background: var(--card);
  border: 1px solid rgba(173,142,98,.12); box-shadow: var(--shadow-s);
  transition: transform var(--tr), box-shadow var(--tr);
  cursor: pointer; position: relative;
}
.pin:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.pin__media { position: relative; overflow: hidden; background: #e8ded1; }
/* Spacer in-flow element so aspect-ratio on .pin__media gets dimensions from its own inline style */
.pin__media::after { content: ''; display: block; width: 100%; }
.pin__media-link { position: absolute; inset: 0; z-index: 1; }
/* Слайдер — абсолютно заполняет pin__media, не влияет на его высоту */
.pin__slider { position: absolute; inset: 0; }
.pin-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .35s ease; pointer-events: none; }
.pin-slide.is-active { opacity: 1; pointer-events: auto; }
.pin-slide img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.pin:hover .pin-slide.is-active img { transform: scale(1.04); }
/* Стрелки */
.pin-arr {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 32px; height: 32px; border-radius: 50%; border: 0;
  background: rgba(25,20,14,.7); color: #fff; font-size: 20px; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--tr);
}
.pin:hover .pin-arr { opacity: 1; }
.pin-arr--prev { left: 8px; }
.pin-arr--next { right: 8px; }
.pin-arr:hover { background: rgba(199,163,108,.85); }
/* Точки */
.pin-dots { position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%); z-index: 4;
  display: flex; gap: 5px; }
.pin-dot {
  width: 6px; height: 6px; border-radius: 50%; border: 0;
  background: rgba(255,255,255,.5); cursor: pointer; padding: 0; transition: background .2s;
}
.pin-dot.is-active { background: #fff; }
/* Счётчик */
.pin__photo-count {
  position: absolute; bottom: 10px; right: 12px; z-index: 4;
  background: rgba(25,20,14,.6); color: #fff; font-size: 11px; font-weight: 600;
  padding: 2px 7px; border-radius: 999px;
}
.pin__tag {
  position: absolute; top: 14px; left: 14px; padding: 8px 12px;
  border-radius: 999px; background: rgba(255,255,255,.94);
  border: 1px solid rgba(173,142,98,.16); color: #5d4828;
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.pin__save {
  position: absolute; top: 14px; right: 14px; width: 42px; height: 42px; z-index: 5;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid rgba(173,142,98,.16);
  background: rgba(52,45,38,.92); color: #fff; font-size: 18px; cursor: pointer;
  transition: background var(--tr), transform var(--tr);
}
.pin__save:hover { background: rgba(199,163,108,.8); }
.pin__save.is-saved { background: var(--gold2); color: #fff; border-color: var(--gold2); }
.pin__save.is-saved:hover { background: #a8793e; }
.pin__save:active { transform: scale(.9); }

/* - ПЛАВАЮЩАЯ ПЛАШКА ИЗБРАННОГО - */
.fav-bar {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(120px);
  z-index: 500; display: flex; align-items: center; gap: 14px;
  background: #1a1410; color: #fff; border: 1px solid rgba(199,163,108,.25);
  border-radius: 999px; padding: 12px 20px 12px 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,.35);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), opacity .25s;
  opacity: 0; pointer-events: none; white-space: nowrap;
}
.fav-bar.is-visible { transform: translateX(-50%) translateY(0); opacity: 1; pointer-events: auto; }
.fav-bar__icon { font-size: 18px; color: var(--gold2); flex-shrink: 0; }
.fav-bar__text { font-size: 14px; color: rgba(244,237,226,.85); }
.fav-bar__count { font-size: 16px; font-weight: 800; color: #fff; }
.fav-bar__link {
  display: inline-flex; align-items: center;
  padding: 6px 16px; border-radius: 999px;
  background: linear-gradient(180deg,#e6d0a1 0%,#caa469 100%);
  color: #201913; font-size: 13px; font-weight: 700;
  text-decoration: none; white-space: nowrap;
  transition: opacity var(--tr);
}
.fav-bar__link:hover { opacity: .85; }
.fav-bar__close {
  width: 28px; height: 28px; border-radius: 50%; border: 0;
  background: rgba(255,255,255,.10); color: rgba(255,255,255,.6);
  font-size: 13px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background var(--tr);
}
.fav-bar__close:hover { background: rgba(255,255,255,.20); color: #fff; }

/* - СТРАНИЦА ИЗБРАННОГО - */
.wishlist-head { margin-bottom: 32px; }
@media (max-width: 600px) {
  .fav-bar { left: 12px; right: 12px; transform: translateY(120px); border-radius: 20px; flex-wrap: wrap; }
  .fav-bar.is-visible { transform: translateY(0); }
  .fav-bar__link { flex: 1; justify-content: center; }
}

.pin__body { display: flex; flex-direction: column; gap: 14px; padding: 20px; }
.pin__title { margin: 0; font-family: Georgia,serif; font-size: 26px; line-height: 1.08; font-weight: 500; color: #2b241e; }
.pin__desc  { margin: 0; color: var(--muted); font-size: 15px; }
.pin__meta  { display: flex; flex-wrap: wrap; gap: 8px 10px; }
.pin__meta span {
  padding: 8px 12px; border-radius: 999px; border: 1px solid var(--line);
  background: rgba(249,245,239,.96); color: #4b4034; font-size: 13px; font-weight: 600;
}
.pin__bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.price-wrap  { display: flex; flex-direction: row; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.price-label { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 700; }
.price-old   { font-size: 13px; color: var(--muted); text-decoration: line-through; }
.price-value { font-size: 28px; font-weight: 800; color: var(--gold2); }
.pin__actions { display: flex; flex-wrap: nowrap; gap: 6px; }
.pin__actions .btn { min-height: 38px; padding: 0 12px; font-size: 12px; letter-spacing: .04em; white-space: nowrap; }
.pin__specs  { display: flex; flex-wrap: wrap; gap: 6px; margin: 6px 0 10px; }
.pin-spec    { font-size: 12px; color: #7c6d5d; background: #f4f1ec; border-radius: 999px; padding: 3px 10px; }
.load-status  { text-align: center; padding: 8px 0 0; color: var(--muted); font-size: 15px; }
.loader { display: inline-flex; align-items: center; gap: 10px; }
.loader::before {
  content: ""; width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid rgba(185,142,84,.20); border-top-color: var(--gold2);
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* - CATEGORY STRIP - */
.category-strip { margin-top: 34px; display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; }
.category-card {
  overflow: hidden; border-radius: 22px; background: rgba(255,255,255,.86);
  border: 1px solid var(--line); box-shadow: var(--shadow-s);
  transition: transform var(--tr), box-shadow var(--tr); cursor: pointer;
}
.category-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.category-card__media { aspect-ratio: 16/10; overflow: hidden; }
.category-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.category-card:hover .category-card__media img { transform: scale(1.05); }
.category-card__body { padding: 18px; }
.category-card__body h3 { margin: 0 0 8px; font-size: 22px; font-weight: 700; color: #2b241e; }
.category-card__body p  { margin: 0; font-size: 15px; color: var(--muted); }

/* - ADVANTAGES - */
.advantages { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; }
.adv-card {
  padding: 22px; border-radius: 22px; background: rgba(255,255,255,.86);
  border: 1px solid var(--line); box-shadow: var(--shadow-s);
}
.adv-card__icon {
  width: 54px; height: 54px; display: grid; place-items: center;
  margin-bottom: 16px; border-radius: 50%;
  border: 1px solid rgba(173,142,98,.24); color: var(--gold2);
  font-size: 22px; font-weight: 700; background: #fff;
}
.adv-card h3 { margin: 0 0 10px; font-size: 20px; line-height: 1.15; color: #2b241e; }
.adv-card p  { margin: 0; font-size: 15px; color: var(--muted); }

/* - CTA SECTION - */
.cta-section {
  background: linear-gradient(180deg,rgba(28,26,24,.98) 0%,rgba(20,18,16,.98) 100%);
  border-top: 1px solid rgba(199,163,108,.10);
  border-bottom: 1px solid rgba(199,163,108,.10);
}
.cta-section__inner {
  display: grid; grid-template-columns: minmax(0,1fr) 440px;
  gap: 34px; align-items: center;
}
.cta-copy h2 {
  margin: 0 0 16px; font-family: Georgia,serif;
  font-size: clamp(34px,3.4vw,54px); line-height: 1.06; font-weight: 500; color: #f4ede2;
}
.cta-copy p { margin: 0 0 22px; color: rgba(244,237,226,.78); font-size: 18px; max-width: 560px; }
.cta-points { display: grid; gap: 12px; list-style: none; padding: 0; margin: 0; }
.cta-points li { display: flex; gap: 10px; color: #f4ede2; }
.cta-points li::before { content: "✓"; color: var(--gold2); font-weight: 700; }
.form-card {
  padding: 28px; border-radius: 28px; background: rgba(52,45,38,.92);
  border: 1px solid rgba(199,163,108,.14); box-shadow: 0 20px 50px rgba(0,0,0,.28);
}
.form-card h3 { margin: 0 0 8px; font-size: 28px; font-weight: 700; color: #fff; }
.form-card p  { margin: 0 0 18px; font-size: 15px; color: rgba(244,237,226,.76); }
.form-grid    { display: grid; gap: 12px; }
.field, .textarea {
  width: 100%; min-height: 54px; padding: 0 16px;
  border-radius: 16px; border: 1px solid rgba(199,163,108,.16);
  background: rgba(255,255,255,.06); color: #fff; outline: none;
}
.textarea { min-height: 110px; padding: 14px 16px; resize: vertical; }
.field::placeholder, .textarea::placeholder { color: rgba(244,237,226,.48); }
.field:focus, .textarea:focus { border-color: rgba(199,163,108,.8); background: rgba(255,255,255,.10); }
.success-message {
  display: none; margin-top: 14px; padding: 14px 16px; border-radius: 14px;
  background: rgba(47,107,79,.10); border: 1px solid rgba(99,177,136,.22); color: #27563d; font-size: 14px;
}
.success-message.is-visible { display: block; }
.form-note { margin-top: 12px; font-size: 13px; color: rgba(244,237,226,.58); }

/* - FOOTER - */
.site-footer { background: #ece4d8; border-top: 1px solid rgba(173,142,98,.12); color: #6e6152; }
.site-footer__inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px; padding: 24px 0;
}
.footer-brand { color: #2b241e; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a { font-size: 14px; color: #6e6152; transition: color var(--tr); }
.footer-links a:hover { color: var(--gold2); }

/* - MODAL - */
.lead-modal {
  position: fixed; inset: 0; display: none;
  align-items: center; justify-content: center;
  padding: 20px; background: rgba(18,16,14,.55);
  backdrop-filter: blur(6px); z-index: 300;
}
.lead-modal.is-open { display: flex; }
.lead-modal__dialog {
  position: relative; width: min(560px,100%); border-radius: 28px; padding: 32px;
  background: rgba(52,45,38,.97); border: 1px solid rgba(199,163,108,.16);
  box-shadow: 0 24px 60px rgba(0,0,0,.35); color: #fff;
}
.lead-modal__close {
  position: absolute; top: 14px; right: 14px; width: 40px; height: 40px;
  border-radius: 50%; border: 1px solid rgba(199,163,108,.16);
  background: rgba(255,255,255,.06); color: #fff; font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--tr);
}
.lead-modal__close:hover { background: rgba(255,255,255,.14); }
.lead-modal__title {
  margin: 0 0 10px; font-family: Georgia,serif;
  font-size: 34px; line-height: 1.05; font-weight: 500; color: #fff;
}
.lead-modal__text { margin: 0 0 18px; color: rgba(244,237,226,.76); font-size: 15px; }
.select {
  width: 100%; min-height: 54px; padding: 0 16px; border-radius: 16px;
  border: 1px solid rgba(199,163,108,.16); background: rgba(255,255,255,.06);
  color: #fff; outline: none; appearance: none;
}
.select option { color: #2b241e; background: #fff; }

/* - PRODUCT PAGE - */
.product-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; min-height: 560px;
}
.product-gallery { position: relative; background: #e8ded1; overflow: hidden; }
.product-gallery__main { width: 100%; height: 100%; min-height: 480px; object-fit: cover; display: block; }
.product-gallery__thumbs { display: flex; gap: 10px; padding: 14px 20px; background: rgba(255,255,255,.7); }
.gallery-thumb {
  width: 72px; height: 56px; object-fit: cover; border-radius: 10px;
  border: 2px solid transparent; cursor: pointer; opacity: .7;
  transition: opacity var(--tr), border-color var(--tr);
}
.gallery-thumb.active, .gallery-thumb:hover { opacity: 1; border-color: var(--gold); }
.product-info {
  padding: 48px 52px; background: var(--card); display: flex; flex-direction: column; gap: 20px;
}
.product-info__category {
  font-size: 12px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold2);
}
.product-info__title {
  margin: 0; font-family: Georgia,serif;
  font-size: clamp(30px,3vw,46px); line-height: 1.06; font-weight: 500; color: #2b241e;
}
.product-info__desc { color: var(--muted); font-size: 16px; line-height: 1.6; margin: 0; }
.product-specs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
}
.product-spec {
  padding: 16px 20px; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line);
}
.product-spec:nth-child(2n)       { border-right: none; }
.product-spec:nth-last-child(-n+2) { border-bottom: none; }
.product-spec__label { font-size: 11px; text-transform: uppercase; letter-spacing: .10em; color: var(--muted); font-weight: 700; margin-bottom: 5px; }
.product-spec__value { font-size: 15px; font-weight: 600; color: var(--text); }
.product-price-row { display: flex; align-items: center; gap: 20px; }
.product-price__from { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 700; }
.product-price__value { font-size: 40px; font-weight: 800; color: var(--gold2); line-height: 1; }
.product-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.product-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.product-tag {
  padding: 7px 14px; border-radius: 999px; border: 1px solid var(--line);
  background: rgba(249,245,239,.96); color: #4b4034; font-size: 13px; font-weight: 600;
}
.product-guarantee {
  padding: 16px 20px; border-radius: 14px;
  background: rgba(199,163,108,.06); border: 1px solid rgba(199,163,108,.20);
  font-size: 14px; color: var(--muted); display: flex; gap: 10px; align-items: center;
}
.product-guarantee::before { content: "🛡️"; font-size: 18px; }

/* Related section */
.related-section { padding: 52px 0 72px; }
.related-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; margin-top: 28px; }
.related-card {
  overflow: hidden; border-radius: 22px; background: var(--card);
  border: 1px solid var(--line); box-shadow: var(--shadow-s);
  transition: transform var(--tr), box-shadow var(--tr); cursor: pointer;
  text-decoration: none; color: inherit; display: block;
}
.related-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.related-card__media { aspect-ratio: 4/3; overflow: hidden; }
.related-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.related-card:hover .related-card__media img { transform: scale(1.05); }
.related-card__body { padding: 18px; }
.related-card__category { font-size: 11px; font-weight: 700; letter-spacing: .10em; text-transform: uppercase; color: var(--gold2); margin-bottom: 6px; }
.related-card__title { font-family: Georgia,serif; font-size: 20px; font-weight: 500; color: #2b241e; margin: 0 0 8px; }
.related-card__price { font-size: 18px; font-weight: 800; color: var(--gold2); }

/* - STATS BOX - */
.stats-grid { display: grid; gap: 12px; }
.stat-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--line); }
.stat-item:last-child { border-bottom: none; }
.stat-label { font-size: 14px; color: var(--muted); }
.stat-value { font-size: 18px; font-weight: 700; color: #2b241e; }

/* - RESPONSIVE - */
@media (max-width: 1220px) {
  .layout, .cta-section__inner { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .pins-grid { column-count: 2; }
  .category-strip, .advantages { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .site-header__inner { grid-template-columns: auto 1fr; }
  .nav { grid-column: 1/-1; justify-content: flex-start; padding-bottom: 10px; }
  .product-hero { grid-template-columns: 1fr; }
  .product-gallery__main { min-height: 340px; height: 56vw; }
  .product-info { padding: 32px 28px; }
  .related-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 980px) {
  :root { --header-h: 72px; }
  .nav, .header-contact { display: none; }
  .site-header__inner { grid-template-columns: minmax(0,1fr) auto; gap: 12px; }
  .header-actions { gap: 8px; }
  .header-actions .btn--gold { max-width: 170px; min-height: 42px; padding: 0 14px; font-size: 11px; }
  .burger { display: inline-flex; flex: 0 0 46px; }
  .mobile-panel {
    display: block; position: fixed; inset: var(--header-h) 0 0; z-index: 180;
    background: rgba(248,243,234,.98); transform: translateX(100%);
    transition: transform var(--tr); padding: 24px 20px 36px; overflow-y: auto;
  }
  .menu-open .mobile-panel { transform: translateX(0); }
  .mobile-panel__nav { display: grid; gap: 8px; }
  .mobile-panel__nav a {
    padding: 14px 0; border-bottom: 1px solid rgba(173,142,98,.10);
    font-size: 18px; font-weight: 600; color: #2b241e;
  }
  .mobile-panel__footer { margin-top: 24px; display: grid; gap: 14px; }
  .mobile-panel__footer a, .mobile-panel__footer p { margin: 0; color: #6e6152; }
  .mobile-filter-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .layout { grid-template-columns: 1fr; }
  .sidebar { display: none; position: static; }
  .sidebar.is-open { display: grid; }
}
@media (max-width: 720px) {
  .container { width: min(var(--container), calc(100% - 24px)); }
  .hero-reference__box { padding: 34px 22px 22px !important; border-radius: 28px !important; }
  .hero-reference__title { font-size: 38px !important; }
  .hero-reference__text  { font-size: 16px !important; }
  .hero-reference__panel {
    position: static !important; transform: none !important; width: auto !important;
    margin-top: 24px !important; padding: 24px 20px !important; border-radius: 24px !important;
  }
  .section { padding: 28px 0 48px; }
  .pins-grid { column-count: 2; column-gap: 12px; }
  .pin { margin-bottom: 12px; border-radius: 18px; }
  .pin__body { padding: 14px; }
  .pin__title { font-size: 20px; }
  .pin__desc  { font-size: 13px; }
  .pin__meta span { font-size: 11px; padding: 6px 8px; }
  .price-value { font-size: 20px; }
  .category-strip, .advantages { grid-template-columns: 1fr; }
  .catalog-topbar, .catalog-topbar__left, .site-footer__inner { flex-direction: column; align-items: stretch; }
  .pin__bottom { align-items: stretch; }
  .btn { width: 100%; }
  .product-spec { padding: 12px 14px; }
  .product-price__value { font-size: 32px; }
  .related-grid { grid-template-columns: 1fr; }
  .lead-modal__dialog { padding: 24px 18px 18px; border-radius: 22px; }
  .lead-modal__title  { font-size: 28px; }
}
@media (max-width: 420px) {
  .pins-grid { column-count: 1; }
  .hero-reference__title { font-size: 32px !important; }
  .product-hero { min-height: auto; }
}

/* -
   МОБИЛЬНОЕ МЕНЮ — полная перезапись
   - */

/* Оверлей */
.mobile-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 170;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(2px);
}
.mobile-overlay.is-open { display: block; }

/* Панель */
.mobile-panel {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(320px, 88vw);
  z-index: 180;
  background: #faf6f0;
  /* Скрываем за правым краем экрана, НЕ через display:none */
  transform: translateX(110%);
  transition: transform .32s cubic-bezier(.4,0,.2,1),
              visibility .32s;
  visibility: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: -8px 0 40px rgba(46,35,24,.18);
  /* Важно: всегда занимает место в DOM но вне вьюпорта */
  pointer-events: none;
}
.mobile-panel.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.mobile-panel__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 22px 16px;
  border-bottom: 1px solid rgba(173,142,98,.14);
  position: sticky; top: 0; background: #faf6f0; z-index: 1;
}
.mobile-panel__title { font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.mobile-panel__close {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(173,142,98,.2); background: rgba(255,255,255,.8);
  color: var(--text); font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--tr);
}
.mobile-panel__close:hover { background: rgba(199,163,108,.12); }

.mobile-panel__nav { padding: 10px 0; }
.mobile-panel__nav a {
  display: flex; align-items: center;
  padding: 15px 22px;
  font-size: 17px; font-weight: 600; color: #2b241e;
  border-bottom: 1px solid rgba(173,142,98,.08);
  transition: background var(--tr), color var(--tr);
}
.mobile-panel__nav a:hover, .mobile-panel__nav a.active { background: rgba(199,163,108,.08); color: var(--gold2); }

.mobile-panel__footer {
  padding: 20px 22px 32px;
  border-top: 1px solid rgba(173,142,98,.14);
  display: grid; gap: 12px;
}
.mobile-phone {
  font-size: 20px; font-weight: 700; color: #2b241e;
  text-decoration: none; display: block;
}
.mobile-phone:hover { color: var(--gold2); }
.mobile-panel__footer p { margin: 0; font-size: 13px; color: var(--muted); }

/* Бургер — фикс кнопки */
.burger { padding: 0; box-sizing: content-box; }
.burger-lines { display: block; }

/* При открытом меню */
body.menu-open { overflow: hidden; }

/* -
   КАТЕГОРИЙНЫЙ ФИЛЬТР-БАР (catalog.php)
   - */
.cat-filter-bar {
  background: rgba(255,255,255,.92);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: sticky; top: var(--header-h); z-index: 90;
  backdrop-filter: blur(8px);
  /* фейд-маска показывает что строку можно прокрутить */
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 12px, #000 calc(100% - 24px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 12px, #000 calc(100% - 24px), transparent 100%);
}
.cat-filter-scroll {
  display: flex; gap: 0; overflow-x: auto;
  scrollbar-width: none; -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  padding: 0 16px; /* боковые отступы чтобы первый/последний чип не обрезался маской */
}
.cat-filter-scroll::-webkit-scrollbar { display: none; }
.cat-chip {
  flex-shrink: 0; padding: 12px 16px;
  font-size: 14px; font-weight: 600; color: var(--muted);
  border-bottom: 2px solid transparent;
  white-space: nowrap; transition: color var(--tr), border-color var(--tr);
  text-decoration: none; background: none; border-top: none; border-left: none; border-right: none;
  cursor: pointer; display: inline-block;
}
.cat-chip:hover { color: var(--gold2); }
.cat-chip.active { color: var(--gold2); border-bottom-color: var(--gold2); }
@media (max-width: 600px) {
  .cat-chip { padding: 10px 12px; font-size: 13px; }
}

/* -
   БЕСКОНЕЧНЫЙ СКРОЛЛ
   - */
.infinite-loader {
  text-align: center; padding: 28px;
  color: var(--muted); font-size: 15px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}

/* -
   СТРАНИЦА УСЛУГ
   - */
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 10px;
}
.svc-page-card {
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: var(--shadow-s);
  display: flex; flex-direction: column;
  transition: transform var(--tr), box-shadow var(--tr);
}
.svc-page-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.svc-page-icon { font-size: 36px; margin-bottom: 16px; }
.svc-page-card h2 { font-size: 22px; font-weight: 700; color: #2b241e; margin: 0 0 12px; }
.svc-page-card > p { font-size: 15px; color: var(--muted); line-height: 1.65; margin: 0 0 16px; flex: 1; }
.svc-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.svc-list li { font-size: 14px; color: var(--text); display: flex; gap: 8px; align-items: flex-start; }
.svc-list li::before { content: "✓"; color: var(--gold2); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* Процесс на странице услуг */
.process-steps-row {
  display: grid; grid-template-columns: repeat(6,1fr); gap: 0;
  position: relative;
}
.process-steps-row::before {
  content: ''; position: absolute; top: 24px; left: 0; right: 0;
  height: 1px; background: var(--line);
}
.proc-item { position: relative; z-index: 1; padding: 0 18px 0 0; }
.proc-num {
  width: 48px; height: 48px; border-radius: 50%;
  border: 2px solid var(--gold); background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: Georgia,serif; font-size: 18px; color: var(--gold2);
  margin-bottom: 22px;
}
.proc-item h3 { font-size: 14px; font-weight: 700; color: #2b241e; margin: 0 0 8px; }
.proc-item p  { font-size: 13px; color: var(--muted); line-height: 1.65; margin: 0; }

/* -
   СТРАНИЦА АКЦИЙ
   - */
.akcii-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 22px; margin-top: 10px;
}
.akciya-card {
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px 26px;
  box-shadow: var(--shadow-s);
  display: flex; flex-direction: column;
  position: relative;
  transition: transform var(--tr), box-shadow var(--tr);
}
.akciya-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.akciya-card--hot { border-color: rgba(199,100,50,.3); background: rgba(255,248,240,.98); }
.akciya-card--ended { opacity: .72; }
.akciya-badge {
  position: absolute; top: 18px; right: 18px;
  padding: 5px 12px; border-radius: 999px;
  background: linear-gradient(180deg,#e6a862,#c77a2a);
  color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.akciya-badge--ended { background: #bbb; }
.akciya-icon { font-size: 38px; margin-bottom: 14px; }
.akciya-card h2 { font-size: 22px; font-weight: 700; color: #2b241e; margin: 0 0 6px; }
.akciya-period { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold2); margin: 0 0 14px; }
.akciya-desc { font-size: 15px; color: var(--muted); line-height: 1.65; margin: 0 0 16px; flex: 1; }
.akciya-list { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 7px; }
.akciya-list li { font-size: 13px; color: var(--text); display: flex; gap: 8px; }
.akciya-list li::before { content: "—"; color: var(--gold2); flex-shrink: 0; }
.akciya-footer { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-top: auto; }
.akciya-price { display: flex; flex-direction: column; gap: 3px; }
.old-price { font-size: 14px; color: var(--muted); text-decoration: line-through; }
.new-price { font-size: 22px; font-weight: 800; color: var(--gold2); }
.akciya-economy { font-size: 16px; font-weight: 700; color: var(--gold2); }

/* -
   МОДАЛЬНАЯ ФОРМА — полная перезапись для надёжности
   - */
.lead-modal {
  position: fixed; inset: 0; z-index: 400;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  background: rgba(18,16,14,.6);
  backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden;
  transition: opacity .25s, visibility .25s;
}
.lead-modal.is-open { opacity: 1; visibility: visible; }
.lead-modal__dialog {
  position: relative; width: 100%; max-width: 540px;
  border-radius: 28px; padding: 36px 32px;
  background: rgba(44,36,28,.97);
  border: 1px solid rgba(199,163,108,.18);
  box-shadow: 0 28px 80px rgba(0,0,0,.45);
  color: #fff;
  transform: translateY(16px); transition: transform .28s;
  max-height: calc(100vh - 32px); overflow-y: auto;
}
.lead-modal.is-open .lead-modal__dialog { transform: translateY(0); }
.lead-modal__close {
  position: absolute; top: 16px; right: 16px;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(199,163,108,.18);
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.8); font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--tr);
}
.lead-modal__close:hover { background: rgba(255,255,255,.14); }
.lead-modal__title { margin: 0 0 8px; font-family: Georgia,serif; font-size: 30px; font-weight: 500; color: #fff; }
.lead-modal__text  { margin: 0 0 20px; font-size: 14px; color: rgba(244,237,226,.7); line-height: 1.55; }

/* -
   RESPONSIVE — новые страницы
   - */
@media (max-width: 1100px) {
  .services-page-grid { grid-template-columns: 1fr 1fr; }
  .akcii-grid         { grid-template-columns: 1fr 1fr; }
  .process-steps-row  { grid-template-columns: repeat(3,1fr); gap: 28px; }
  .process-steps-row::before { display: none; }
}
@media (max-width: 980px) {
  /* Скрываем десктопный nav, показываем бургер */
  .nav, .header-contact { display: none !important; }
  .site-header__inner { grid-template-columns: minmax(0,1fr) auto; gap: 12px; }
  .header-actions { gap: 8px; flex-shrink: 0; }
  .header-actions .btn--gold { max-width: 160px; min-height: 42px; padding: 0 14px; font-size: 12px; }
  .burger { display: inline-flex !important; flex: 0 0 46px; }
  .logo { flex-shrink: 0; }
  .logo img { height: 46px; width: auto; flex-shrink: 0; }
}
@media (max-width: 720px) {
  .services-page-grid { grid-template-columns: 1fr; }
  .akcii-grid         { grid-template-columns: 1fr; }
  .process-steps-row  { grid-template-columns: 1fr 1fr; gap: 24px; }
  .akciya-footer      { flex-direction: column; align-items: flex-start; }
  .akciya-footer .btn { width: 100%; }
  .cat-filter-bar     { top: var(--header-h); }
}
@media (max-width: 480px) {
  .process-steps-row  { grid-template-columns: 1fr; }
  .lead-modal__dialog { padding: 28px 20px; border-radius: 20px; }
  .lead-modal__title  { font-size: 24px; }
}

/* =================================================================
   ГЕРОЙ КАТАЛОГА / СТРАНИЦ
================================================================= */
/* - CAT HERO (страницы каталога и товара) - */
.cat-hero { padding: 22px 0 28px; overflow: hidden; }
.cat-hero__box {
  position: relative; min-height: 450px;
  padding: 72px 68px 64px; border-radius: 44px; overflow: hidden;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  box-shadow: var(--shadow);
}
.cat-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(15,12,8,.88) 0%,
    rgba(44,34,22,.82) 36%,
    rgba(90,70,40,.52) 68%,
    rgba(160,130,70,.18) 100%
  );
}
.cat-hero__content { position: relative; z-index: 1; max-width: 560px; }
.cat-hero__eye {
  display: inline-flex; align-items: center; gap: 14px; margin: 0 0 22px;
  color: var(--gold); font-size: 11px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
}
.cat-hero__eye::before {
  content: ''; width: 36px; height: 1px; background: currentColor; opacity: .8;
}
.cat-hero__title {
  margin: 0 0 18px; font-family: Georgia,serif;
  font-size: clamp(34px,4vw,60px); line-height: .98;
  font-weight: 500; letter-spacing: -.03em; color: #fff;
}
.cat-hero__text {
  margin: 0 0 28px; font-size: 17px; line-height: 1.5;
  color: rgba(244,237,226,.82); max-width: 480px;
}
.cat-hero__stats { display: flex; flex-wrap: wrap; gap: 24px; }
.cat-hero__stats span {
  font-size: 13px; color: rgba(244,237,226,.65);
  display: flex; align-items: center; gap: 4px;
}
.cat-hero__stats strong { font-size: 15px; color: var(--gold2); font-weight: 700; }

/* Панель формы — тёмная, абсолютно справа (как hero-reference__panel) */
.cat-hero__panel {
  position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
  width: 420px; padding: 36px 32px 28px; border-radius: 34px;
  background: rgba(6,3,0,.60); border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(2px); box-shadow: 0 26px 60px rgba(0,0,0,.28);
  z-index: 2;
}
.cat-hero__panel-title {
  margin: 0 0 8px; font-family: Georgia,serif;
  font-size: 22px; font-weight: 500; color: #fff; line-height: 1.25;
}
.cat-hero__panel-text {
  margin: 0 0 20px; font-size: 14px; color: rgba(244,237,226,.68);
}
.cat-hero__form { display: grid; gap: 10px; }
.cat-hero__form .btn { box-sizing: border-box; width: 100%; }
.cat-hero__field {
  display: block; width: 100%; height: 48px; padding: 0 16px;
  box-sizing: border-box;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.20);
  border-radius: 12px; color: #fff; font: inherit; font-size: 14px;
  outline: none; transition: border-color var(--tr), background var(--tr);
  -webkit-appearance: none; appearance: none;
}
.cat-hero__field::placeholder { color: rgba(255,255,255,.40); }
.cat-hero__field:focus { background: rgba(255,255,255,.16); border-color: var(--gold); }
.cat-hero__field option { color: var(--text); background: #fff; }
.cat-hero__form-note { margin: 2px 0 0; font-size: 11px; color: rgba(244,237,226,.40); }
.cat-hero__panel-list {
  list-style: none; padding: 0; margin: 18px 0 0;
  padding-top: 16px; border-top: 1px solid rgba(255,255,255,.12);
  display: grid; gap: 8px;
}
.cat-hero__panel-list li {
  display: flex; gap: 10px; font-size: 13px; color: rgba(244,237,226,.72);
}
.cat-hero__panel-list li::before { content: '✓'; color: var(--gold2); font-weight: 700; }
.chip-count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 20px; height: 18px; padding: 0 5px;
  border-radius: 999px; background: rgba(199,163,108,.18);
  font-size: 11px; font-weight: 700; color: var(--gold2);
  margin-left: 2px;
}
.cat-chip.active .chip-count {
  background: rgba(185,142,84,.3);
}

/* =================================================================
   ФИЛЬТРЫ КАТАЛОГА
================================================================= */
.filter-box { background: rgba(255,255,255,.86); border:1px solid var(--line); border-radius:24px; padding:22px; box-shadow:var(--shadow-s); margin-bottom:0; }
.filter-box + .filter-box { margin-top: 14px; }
.filter-box .filter-box__head { display:flex; align-items:center; justify-content:space-between; margin-bottom:14px; }
.filter-box h3 { margin:0 0 14px; font-size:16px; font-weight:700; color:#2b241e; }
.filter-box .filter-box__head h3 { margin:0; }
.filter-reset-btn {
  font-size:11px; font-weight:700; letter-spacing:.06em; text-transform:uppercase;
  color:var(--gold2); background:none; border:none; cursor:pointer; padding:0;
  transition:color var(--tr);
}
.filter-reset-btn:hover { color:var(--gold); }

.filter-checkboxes { display:grid; gap:9px; }
.filter-check {
  display:flex; align-items:center; gap:9px;
  font-size:14px; color:var(--text); cursor:pointer;
  transition:color var(--tr);
}
.filter-check:hover { color:var(--gold2); }
.filter-check input[type="checkbox"] {
  width:17px; height:17px; accent-color:var(--gold2);
  cursor:pointer; flex-shrink:0;
}
.filter-check input:checked ~ * { color:var(--gold2); font-weight:600; }
.flt-cnt {
  margin-left:auto; font-size:11px; color:var(--muted);
  font-weight:600;
}

/* Коллапсируемые группы тегов */
.filter-box--collapsible {
  padding: 0; overflow: hidden;
  border-radius: 14px !important;
  box-shadow: none !important;
  border: 1px solid rgba(173,142,98,.15) !important;
  background: rgba(255,255,255,.75) !important;
}
.filter-box--collapsible + .filter-box--collapsible { margin-top: 6px; }
.filter-box--collapsible .filter-box__toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 9px 14px; text-align: left; gap: 8px;
}
.filter-box--collapsible .filter-box__toggle h3 {
  margin: 0; font-size: 13px !important; font-weight: 600; color: #4b4034;
}
.filter-box__arrow {
  font-size: 10px; color: var(--muted); transition: transform var(--tr); flex-shrink: 0;
}
.filter-box--collapsible.is-open .filter-box__arrow { transform: rotate(180deg); }
.filter-group-body { padding: 8px 14px 12px; }
.filter-group-body .filter-check { font-size: 13px; gap: 7px; }
.filter-group-body .filter-check input[type="checkbox"] { width: 14px; height: 14px; }

/* Активные теги фильтров */
.active-filters-row {
  display:flex; flex-wrap:wrap; align-items:center; gap:8px;
  padding:10px 0 16px;
}
.active-filters-label { font-size:12px; color:var(--muted); font-weight:600; }
.active-filter-tags { display:flex; flex-wrap:wrap; gap:6px; flex:1; }
.active-filter-tag {
  display:inline-flex; align-items:center; gap:5px;
  padding:4px 10px; border-radius:999px;
  background:rgba(199,163,108,.14); border:1px solid rgba(184,143,84,.28);
  font-size:12px; font-weight:600; color:#7a5a28;
}
.active-filter-tag button {
  background:none; border:none; cursor:pointer;
  font-size:14px; color:#9a7038; line-height:1; padding:0;
}
.active-filter-tag button:hover { color:#c0782a; }
.active-filter-count {
  display:inline-flex; align-items:center; justify-content:center;
  min-width:18px; height:18px; padding:0 4px;
  border-radius:999px; background:var(--gold2); color:#fff;
  font-size:11px; font-weight:700; margin-left:4px;
}

/* Нет результатов */
.no-results-msg {
  text-align:center; padding:60px 20px; color:var(--muted); font-size:17px; line-height:1.6;
}
.no-results-link { color:var(--gold2); font-weight:600; }
.no-results-link:hover { text-decoration:underline; }

/* Основная секция каталога без лишнего верхнего отступа */
.catalog-main-section { padding-top:24px; }

/* =================================================================
   БЛОК ПРЕИМУЩЕСТВ — иллюстрированные карточки с фоном
================================================================= */
.adv-section { background: var(--card-soft); }
.adv-section-head { margin-bottom: 36px; }

.adv-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 18px;
}

.adv-illus-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  min-height: 320px;
  display: flex; align-items: flex-end;
  background-image: var(--adv-img);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-s);
  transition: transform var(--tr), box-shadow var(--tr);
  cursor: default;
}
.adv-illus-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

/* Широкая карточка — последняя, на всю строку */
.adv-illus-card--wide {
  grid-column: 1 / -1;
  min-height: 240px;
}
.adv-illus-card--wide .adv-illus-body {
  flex-direction: row; align-items: flex-end;
  flex-wrap: wrap; gap: 20px;
  max-width: none;
}
.adv-illus-card--wide .adv-illus-body > *:not(.adv-illus-num) { flex: 1; min-width: 200px; }
.adv-illus-card--wide .adv-illus-num { flex-shrink: 0; align-self: flex-start; margin-top: 4px; }

.adv-illus-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,8,5,.92) 0%,
    rgba(10,8,5,.65) 35%,
    rgba(10,8,5,.25) 65%,
    rgba(10,8,5,.05) 100%
  );
}
.adv-illus-body {
  position: relative; z-index: 2;
  padding: 28px 26px;
  display: flex; flex-direction: column; gap: 10px;
  width: 100%;
}
.adv-illus-num {
  font-family: Georgia,serif;
  font-size: 40px; font-weight: 500; color: var(--gold2);
  line-height: 1; opacity: .7;
}
.adv-illus-body h3 {
  margin: 0;
  font-family: Georgia,serif;
  font-size: clamp(18px,1.6vw,22px);
  font-weight: 500; line-height: 1.15; color: #fff;
}
.adv-illus-body p {
  margin: 0;
  font-size: 13px; line-height: 1.65; color: rgba(244,237,226,.75);
}
.adv-illus-fact {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 13px; border-radius: 999px;
  background: rgba(199,163,108,.22); border: 1px solid rgba(199,163,108,.28);
  font-size: 12px; color: var(--gold2); font-weight: 600;
  width: fit-content; margin-top: 4px;
}
.adv-illus-fact strong { font-size: 14px; }

/* =================================================================
   RESPONSIVE — герой, фильтры, преимущества
================================================================= */
@media (max-width: 1220px) {
  .adv-cards-grid { grid-template-columns: repeat(2,1fr); }
  .adv-illus-card--wide { grid-column: 1 / -1; min-height: 200px; }
}
@media (max-width: 980px) {
  .cat-hero__box { padding: 48px 36px 40px; min-height: auto; display: flex; flex-direction: column; align-items: stretch; }
  .cat-hero__content { max-width: 100%; }
  .cat-hero__panel { position: static !important; transform: none !important; right: auto !important; top: auto !important; width: auto; box-sizing: border-box; margin-top: 28px; }
  .cat-hero__title { font-size: clamp(28px,6vw,48px); }
}
@media (max-width: 720px) {
  .adv-cards-grid { grid-template-columns: 1fr; }
  .adv-illus-card { min-height: 260px; }
  .adv-illus-card--wide { min-height: 220px; }
  .adv-illus-card--wide .adv-illus-body { flex-direction: column; }
  .cat-hero { padding: 12px 0 20px; }
  .cat-hero__box { padding: 34px 22px 28px; border-radius: 28px; }
  .cat-hero__panel { padding: 20px 16px; border-radius: 24px; }
  .cat-hero__field { height: 42px; font-size: 13px; padding: 0 12px; width:9btn--gold0%; }
  .cat-hero__form { gap: 8px; }
  .cat-hero__stats { gap: 14px; }
  .cat-hero__stats span { font-size: 12px; }
}
.sidebar--mobile-open { display: grid !important; }

/* =================================================================
   БЛОК ПРЕИМУЩЕСТВ С ИКОНКАМИ
================================================================= */
.ico-adv-section {
  background: #fff;
  padding: 32px 0;
}
.ico-adv-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.ico-adv-item {
  overflow: hidden;
  aspect-ratio: 896 / 582;
  border-radius: 12px;
}
.ico-adv-icon {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 980px) {
  .ico-adv-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 580px) {
  .ico-adv-section { padding: 20px 0; }
  .ico-adv-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

/* =================================================================
   КНОПКА «ПРИМЕНИТЬ» В ФИЛЬТРАХ
================================================================= */
.filter-apply-wrap {
  padding: 16px 22px;
  background: linear-gradient(180deg, rgba(199,163,108,.06) 0%, rgba(199,163,108,.12) 100%);
  border: 1px solid rgba(199,163,108,.22);
  border-radius: 18px;
  margin-top: 0;
}
.filter-apply-btn {
  font-size: 13px !important; min-height: 46px !important;
  box-shadow: 0 6px 18px rgba(185,142,84,.22) !important;
}
.filter-apply-count { font-weight: 800; }

/* =================================================================
   КВИЗ
================================================================= */
.quiz-section {
  padding: 80px 0 90px;
  background: linear-gradient(180deg, #f0e8d8 0%, #e8dcc8 100%);
  position: relative; overflow: hidden;
}
.quiz-section::before {
  content: '';
  position: absolute; top: -60px; right: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(199,163,108,.14) 0%, transparent 70%);
  pointer-events: none;
}

.quiz-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}

/* Левая часть */
.quiz-left { display: flex; flex-direction: column; gap: 18px; }
.quiz-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold2); display: flex; align-items: center; gap: 10px;
}
.quiz-eyebrow::before { content:''; width:28px; height:1px; background:var(--gold2); }
.quiz-title {
  font-family: Georgia,serif;
  font-size: clamp(28px,3vw,44px); font-weight: 500; line-height: 1.1;
  color: #2b241e; margin: 0;
}
.quiz-sub { font-size: 15px; color: var(--muted); line-height: 1.65; margin: 0; }
.quiz-benefits {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 9px;
}
.quiz-benefits li {
  font-size: 14px; color: var(--text); display: flex; gap: 9px; align-items: flex-start;
}
.quiz-benefits li::before { content: '✓'; color: var(--gold2); font-weight: 700; flex-shrink: 0; }
.quiz-photo-strip {
  display: flex; gap: 10px; margin-top: 4px;
}
.quiz-photo-strip img {
  width: calc(33.33% - 7px); aspect-ratio: 4/3; object-fit: cover;
  border-radius: 14px; filter: sepia(8%) brightness(.9);
}

/* Правая часть — карточка */
.quiz-card {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 22px 60px rgba(46,35,24,.12), 0 4px 16px rgba(46,35,24,.07);
  padding: 32px 30px 30px;
  position: relative;
}

/* Прогресс */
.quiz-progress {
  height: 5px; border-radius: 999px;
  background: rgba(199,163,108,.18);
  margin-bottom: 8px; overflow: hidden;
}
.quiz-progress-bar {
  height: 100%; border-radius: 999px;
  background: linear-gradient(90deg, var(--gold2) 0%, #e6c070 100%);
  transition: width .4s ease;
}
.quiz-step-label {
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 20px;
}

/* Вопрос */
.quiz-q {
  font-family: Georgia,serif; font-size: 22px; font-weight: 500;
  color: #2b241e; margin: 0 0 20px; line-height: 1.25;
}

/* Варианты ответов — стандартные */
.quiz-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.quiz-opt {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 14px; border-radius: 14px;
  border: 1.5px solid var(--line); background: rgba(255,255,255,.9);
  color: var(--text); font-size: 14px; font-weight: 600;
  cursor: pointer; text-align: left;
  transition: border-color .2s, background .2s, transform .15s, box-shadow .2s;
}
.quiz-opt:hover {
  border-color: var(--gold); background: rgba(199,163,108,.07);
  transform: translateY(-2px); box-shadow: 0 4px 14px rgba(185,142,84,.15);
}
.quiz-opt.is-selected {
  border-color: var(--gold2); background: rgba(199,163,108,.13);
  color: #7a4e10;
}
.quiz-opt--ghost { grid-column: 1/-1; justify-content: center; border-style: dashed; }
.quiz-opt-icon { font-size: 20px; flex-shrink: 0; }

/* Варианты с картинками */
.quiz-options--img { grid-template-columns: repeat(2,1fr); }
.quiz-opt--img {
  position: relative; overflow: hidden;
  height: 110px; padding: 0;
  background-image: var(--qimg);
  background-size: cover; background-position: center;
  align-items: flex-end; border-radius: 14px;
}
.quiz-opt--img::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,8,5,.7) 0%, transparent 55%);
}
.quiz-opt--img:hover::before { background: linear-gradient(to top, rgba(185,142,84,.6) 0%, rgba(10,8,5,.3) 100%); }
.quiz-opt--img.is-selected::before { background: linear-gradient(to top, rgba(185,142,84,.75) 0%, rgba(10,8,5,.2) 100%); }
.quiz-opt-img-label {
  position: relative; z-index: 1;
  color: #fff; font-size: 14px; font-weight: 700;
  padding: 10px 12px; text-shadow: 0 1px 4px rgba(0,0,0,.5);
}

/* Анимация шагов */
.quiz-step { animation: quizFadeIn .3s ease; }
@keyframes quizFadeIn { from { opacity:0; transform: translateX(16px); } to { opacity:1; transform:none; } }

/* Итоговый шаг */
.quiz-result-head { text-align:center; margin-bottom:20px; }
.quiz-result-icon { font-size:48px; margin-bottom:10px; }
.quiz-result-sub { font-size:14px; color:var(--muted); margin:8px 0 0; line-height:1.6; }
.quiz-summary {
  display: flex; flex-wrap:wrap; gap:7px; margin-bottom:18px;
}
.quiz-answer-tag {
  padding: 5px 12px; border-radius:999px;
  background: rgba(199,163,108,.13); border:1px solid rgba(184,143,84,.25);
  font-size: 12px; font-weight:600; color:#7a5220;
}
.quiz-form-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-bottom:12px; }
.quiz-field { color: var(--text) !important; background: rgba(255,255,255,.9) !important; border-color:var(--line) !important; }
.quiz-field:focus { border-color: var(--gold) !important; }
.quiz-field::placeholder { color: var(--muted) !important; }
.quiz-submit { width:100%; min-height:52px; font-size:14px !important; }

/* Успех */
.quiz-success { text-align:center; padding:20px 0; }
.quiz-success-icon { font-size:56px; margin-bottom:16px; }
.quiz-success h3 { font-family:Georgia,serif; font-size:26px; color:#2b241e; margin:0 0 12px; }
.quiz-success p { font-size:15px; color:var(--muted); line-height:1.65; margin:0; }

/* =================================================================
   RESPONSIVE — квиз, фильтр-кнопка
================================================================= */
@media (max-width:1100px) {
  .quiz-wrap { grid-template-columns:1fr; gap:36px; }
  .quiz-left { order:2; }
  .quiz-right { order:1; }
  .quiz-photo-strip { display:none; }
}
@media (max-width:600px) {
  .quiz-options { grid-template-columns:1fr; }
  .quiz-options--img { grid-template-columns:1fr 1fr; }
  .quiz-form-row { grid-template-columns:1fr; }
  .quiz-card { padding:24px 18px 22px; border-radius:22px; }
  .quiz-q { font-size:18px; }
}

/* =================================================================
   ГЛАВНАЯ: новые блоки
================================================================= */

/* Section-head (заголовок + кнопка) */
.section-head {
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:20px; margin-bottom:36px; flex-wrap:wrap;
}
.section-head .section-title, .section-head .section-text { margin-bottom:0; }

/* Сетка разделов каталога */
.cat-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
  gap:18px;
}
.cat-grid-card {
  position:relative; border-radius:20px; overflow:hidden; display:block;
  aspect-ratio:4/3; box-shadow:var(--shadow-s);
  transition:transform var(--tr), box-shadow var(--tr);
}
.cat-grid-card:hover { transform:translateY(-4px); box-shadow:var(--shadow); }
.cat-grid-card__media { position:absolute; inset:0; }
.cat-grid-card__media img { width:100%; height:100%; object-fit:cover; transition:transform .4s; }
.cat-grid-card:hover .cat-grid-card__media img { transform:scale(1.06); }
.cat-grid-card__overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(25,18,10,.78) 0%, rgba(25,18,10,.18) 55%, transparent 100%);
}
.cat-grid-card__body {
  position:absolute; bottom:0; left:0; right:0; padding:20px 18px 18px;
}
.cat-grid-card__body h3 { margin:0 0 4px; font-size:18px; font-weight:700; color:#fff; }
.cat-grid-card__body p { margin:0; font-size:13px; color:rgba(255,255,255,.78); line-height:1.35; }

/* Последние работы */
.works-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.work-card {
  position:relative; border-radius:20px; overflow:hidden; display:block;
  aspect-ratio:4/3.2; box-shadow:var(--shadow-s);
  transition:transform var(--tr), box-shadow var(--tr);
}
.work-card:hover { transform:translateY(-4px); box-shadow:var(--shadow); }
.work-card__media { position:absolute; inset:0; }
.work-card__media img { width:100%; height:100%; object-fit:cover; transition:transform .4s; }
.work-card:hover .work-card__media img { transform:scale(1.05); }
.work-card__overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(20,14,8,.82) 0%, rgba(20,14,8,.15) 60%, transparent 100%);
}
.work-card__body {
  position:absolute; bottom:0; left:0; right:0; padding:18px 16px 16px;
}
.work-card__cat { display:block; font-size:11px; font-weight:700; color:var(--gold); letter-spacing:.07em; text-transform:uppercase; margin-bottom:4px; }
.work-card__title { margin:0 0 4px; font-size:16px; font-weight:700; color:#fff; line-height:1.3; }
.work-card__price { font-size:14px; color:rgba(255,255,255,.75); font-weight:600; }

/* Как мы работаем */
.how-section { background:linear-gradient(135deg, #faf6ef 0%, #f2ebe0 100%); }
.how-steps {
  display:flex; align-items:flex-start; gap:0;
  flex-wrap:nowrap; overflow-x:auto;
}
.how-step {
  flex:1 1 180px; min-width:160px;
  background:#fff; border-radius:20px; padding:28px 22px;
  border:1px solid rgba(173,142,98,.14); box-shadow:var(--shadow-s);
  text-align:center;
}
.how-step__num { font-size:13px; font-weight:800; color:var(--gold); letter-spacing:.1em; margin-bottom:12px; }
.how-step__icon { font-size:32px; margin-bottom:12px; }
.how-step__title { margin:0 0 10px; font-size:16px; font-weight:700; color:#2b241e; }
.how-step__text { margin:0; font-size:14px; color:var(--muted); line-height:1.5; }
.how-step__arrow {
  flex-shrink:0; font-size:28px; color:var(--gold); opacity:.5;
  align-self:center; padding:0 8px;
}

/* Отзывы */
.reviews-section { background:linear-gradient(180deg, #f0e8d8 0%, #ebe0cc 100%); }
.reviews-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:20px;
}
.review-card {
  background:#fff; border-radius:20px; padding:28px 26px;
  border:1px solid rgba(173,142,98,.14); box-shadow:var(--shadow-s);
}
.review-card__stars { font-size:18px; color:#f59e0b; margin-bottom:14px; letter-spacing:2px; }
.review-card__text { margin:0 0 20px; font-size:15px; color:#3d332a; line-height:1.6; font-style:italic; }
.review-card__author { display:flex; align-items:center; gap:12px; }
.review-card__avatar {
  width:42px; height:42px; border-radius:50%; flex-shrink:0;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#fff; font-size:14px; font-weight:800;
  display:flex; align-items:center; justify-content:center;
}
.review-card__name { font-size:15px; font-weight:700; color:#2b241e; }
.review-card__meta { font-size:12px; color:var(--muted); margin-top:2px; }

/* Производство и шоурум */
.production-grid {
  display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:24px;
}
.production-card {
  border-radius:24px; overflow:hidden; background:#fff;
  border:1px solid rgba(173,142,98,.14); box-shadow:var(--shadow-s);
}
.production-card__media { aspect-ratio:16/9; overflow:hidden; }
.production-card__media img { width:100%; height:100%; object-fit:cover; transition:transform .4s; }
.production-card:hover .production-card__media img { transform:scale(1.04); }
.production-card__body { padding:28px 26px; }
.production-card__badge {
  display:inline-block; padding:4px 12px; border-radius:999px;
  background:rgba(199,163,108,.15); color:var(--gold2);
  font-size:12px; font-weight:700; letter-spacing:.06em;
  margin-bottom:14px;
}
.production-card__title { margin:0 0 12px; font-size:22px; font-weight:700; color:#2b241e; }
.production-card__text { margin:0 0 20px; font-size:15px; color:var(--muted); line-height:1.55; }
.production-card__info { display:grid; gap:10px; }
.production-info-row { display:flex; align-items:flex-start; gap:10px; font-size:14px; color:#4b4034; }
.production-info-icon { font-size:16px; flex-shrink:0; margin-top:1px; }
.production-info-row a { color:var(--gold2); font-weight:600; }

/* Адаптив новых блоков */
@media (max-width:900px) {
  .works-grid { grid-template-columns:repeat(2,1fr); }
  .production-grid { grid-template-columns:1fr; }
  .reviews-grid { grid-template-columns:1fr; }
}
@media (max-width:640px) {
  .works-grid { grid-template-columns:1fr; }
  .cat-grid { grid-template-columns:repeat(2,1fr); gap:12px; }
  .how-steps { flex-direction:column; }
  .how-step__arrow { transform:rotate(90deg); align-self:center; padding:4px 0; }
  .section-head { flex-direction:column; align-items:flex-start; }
}
