:root {
  --warm-ivory: #FAF9F5;
  --white: #FFFFFF;
  --peony-green: #315C45;
  --deep-green: #203D30;
  --soft-sage: #E8EFE9;
  --peony-rose: #B96576;
  --charcoal: #262B27;
  --muted-gray: #6D746F;
  --border: #E3E6E2;
  --radius: 14px;
  --font-main: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Lora", Georgia, "Times New Roman", serif;

  /* STYLE-002 — глобальная типографическая шкала (desktop). Токены заведены
     заранее и пока нигде не применяются — компоненты переводятся на них
     по одному, чтобы ничего не сломать за один проход. */
  --text-display: 48px; --lh-display: 1.10; --weight-display: 500;
  --text-h1: 44px;      --lh-h1: 1.15;      --weight-h1: 600;
  --text-h2: 32px;      --lh-h2: 1.20;      --weight-h2: 600;
  --text-h3: 24px;      --lh-h3: 1.30;      --weight-h3: 600;
  --text-h4: 20px;      --lh-h4: 1.35;      --weight-h4: 600;
  --text-lead: 19px;    --lh-lead: 1.55;
  --text-body: 17px;    --lh-body: 1.65;
  --text-body-sm: 15px; --lh-body-sm: 1.50;
  --text-caption: 14px; --lh-caption: 1.45;
  --text-label: 14px;   --lh-label: 1.35;   --weight-label: 600;
  --text-button: 16px;  --lh-button: 1.20;  --weight-button: 600;
  --text-nav: 16px;     --lh-nav: 1.20;     --weight-nav: 500;
  --text-breadcrumb: 14px; --lh-breadcrumb: 1.40;
}
@media (max-width: 767px) {
  :root {
    --text-display: 36px;
    --text-h1: 34px;
    --text-h2: 28px;
    --text-h3: 22px;
    --text-h4: 19px;
    --text-lead: 18px;
    --text-body: 16px;
    --text-body-sm: 14px;
    --text-caption: 13px;
  }
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font-main);
  background: var(--warm-ivory);
  color: var(--charcoal);
  font-size: var(--text-body);
  line-height: var(--lh-body);
}
a { color: var(--peony-green); }

/* STYLE-002 — базовая типографика заголовков по умолчанию. Компонентные
   селекторы (например .home-section h2, .info-card h2) специфичнее этих
   правил и продолжают их переопределять там, где нужна другая роль. */
h1 { font-size: var(--text-h1); line-height: var(--lh-h1); font-weight: var(--weight-h1); margin: 0; }
h2 { font-size: var(--text-h2); line-height: var(--lh-h2); font-weight: var(--weight-h2); margin: 0; }
h3 { font-size: var(--text-h3); line-height: var(--lh-h3); font-weight: var(--weight-h3); margin: 0; }
h4 { font-size: var(--text-h4); line-height: var(--lh-h4); font-weight: var(--weight-h4); margin: 0; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }

#about, #contacts, #reviews { scroll-margin-top: 96px; }

/* SITE-HEADER-001 */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: auto;
}
.site-header__logo-img { height: 68px; width: auto; display: block; transition: height .18s ease; }

.site-header__nav { display: none; align-items: center; gap: 4px; }

.site-header__item { position: relative; }

.site-header__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 44px;
  padding: 0 12px;
  background: none;
  border: none;
  font: inherit;
  font-size: var(--text-nav);
  font-weight: var(--weight-nav);
  color: var(--charcoal);
  text-decoration: none;
  cursor: pointer;
  border-radius: 8px;
}
.site-header__link:hover, .site-header__link:focus-visible { background: var(--soft-sage); }
.site-header__link.is-active { color: var(--peony-green); box-shadow: inset 0 -2px 0 var(--peony-green); }
.site-header__chevron { width: 10px; height: 6px; transition: transform .15s ease; }
.site-header__item.is-open .site-header__chevron,
.site-header__item:focus-within .site-header__chevron { transform: rotate(180deg); }

.site-header__menu {
  list-style: none;
  margin: 0;
  padding: 8px;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(38, 43, 39, 0.1);
  display: none;
  z-index: 10;
}
.site-header__item:hover .site-header__menu,
.site-header__item:focus-within .site-header__menu,
.site-header__item.is-open .site-header__menu {
  display: block;
}
.site-header__menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--charcoal);
  text-decoration: none;
  font-size: 15px;
}
.site-header__menu a:hover, .site-header__menu a:focus-visible { background: var(--soft-sage); color: var(--peony-green); }

.site-header__actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.site-header__search {
  width: 44px; height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--charcoal);
  cursor: pointer;
}
.site-header__search svg { width: 20px; height: 20px; }
.site-header__search:hover, .site-header__search:focus-visible { background: var(--soft-sage); }
a.site-header__cta { display: none; }

.site-header__burger {
  width: 44px; height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.site-header__burger span { width: 22px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: transform .18s ease, opacity .18s ease; }
.site-header__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.site-header__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-header__mobile { border-top: 1px solid var(--border); background: var(--white); }
.site-header__mobile nav { max-width: 1280px; margin: 0 auto; padding: 8px 20px 20px; display: flex; flex-direction: column; }
.site-header__mobile-group { border-bottom: 1px solid var(--border); }
.site-header__mobile-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  background: none;
  border: none;
  font: inherit;
  font-size: var(--text-nav);
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
}
.site-header__mobile-toggle .site-header__chevron { transition: transform .15s ease; }
.site-header__mobile-toggle[aria-expanded="true"] .site-header__chevron { transform: rotate(180deg); }
.site-header__mobile-submenu { list-style: none; margin: 0 0 12px; padding: 0; }
.site-header__mobile-submenu a { display: block; padding: 10px 8px; color: var(--charcoal); text-decoration: none; font-size: 15px; }
.site-header__mobile-submenu a:hover { color: var(--peony-green); }
.site-header__mobile-link {
  display: flex;
  align-items: center;
  height: 52px;
  border-bottom: 1px solid var(--border);
  color: var(--charcoal);
  text-decoration: none;
  font-size: var(--text-nav);
  font-weight: 600;
}
.site-header__mobile-cta { margin-top: 20px; text-align: center; }

@media (min-width: 1180px) {
  .site-header__nav { display: flex; }
  .site-header__search { display: flex; }
  a.site-header__cta { display: inline-block; }
  .site-header__burger { display: none; }
}

.site-header.is-scrolled .site-header__inner { padding-top: 8px; padding-bottom: 8px; }
.site-header.is-scrolled .site-header__logo-img { height: 50px; }

@media (prefers-reduced-motion: reduce) {
  .site-header__logo-img, .site-header__chevron, .site-header__burger span { transition: none; }
}

.breadcrumbs { padding: 16px 20px 0; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; padding: 0; margin: 0; color: var(--muted-gray); font-size: var(--text-breadcrumb); line-height: var(--lh-breadcrumb); }
.breadcrumbs li + li::before { content: "→"; margin-right: 6px; }
.breadcrumbs a { text-decoration: none; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 24px 20px;
  max-width: 1240px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1fr 1fr; align-items: start; }
  .hero-grid .hero-media { order: 2; }
  .hero-grid .hero-panel { order: 1; }
}
.hero-media { position: relative; aspect-ratio: 1 / 1; overflow: hidden; border-radius: var(--radius); }
.hero__cover { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-media__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--deep-green);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-media__nav:hover { background: var(--white); }
.hero-media__nav--prev { left: 12px; }
.hero-media__nav--next { right: 12px; }
.hero__text h1 { font-size: var(--text-h1); margin: 0 0 12px; }
.hero__short { font-size: var(--text-lead); line-height: var(--lh-lead); color: var(--charcoal); }

.badges { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 12px 0 0; }
.badge { background: var(--soft-sage); color: var(--deep-green); border-radius: 999px; padding: 6px 14px; font-size: var(--text-label); line-height: var(--lh-label); }
.badge--solid { background: var(--peony-green); color: var(--white); }
.badge--accent { background: var(--peony-rose); color: var(--white); }

.commerce {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 20px;
}
@media (min-width: 900px) {
  .commerce { position: sticky; top: 20px; }
}
.commerce__row { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.commerce__action { flex-shrink: 0; }
.commerce__title { font-size: var(--text-h4); line-height: var(--lh-h4); font-weight: var(--weight-h4); margin: 0 0 10px; }
.commerce__status { margin: 0; color: var(--muted-gray); }
.commerce__price { font-size: var(--text-h3); line-height: var(--lh-h3); font-weight: var(--weight-h3); margin: 6px 0 0; }
.commerce__note { color: var(--muted-gray); margin: 12px 0 0; }
.commerce__more-placeholder { color: var(--muted-gray); font-style: italic; font-size: 13px; margin: 16px 0 0; }
.btn { display: inline-block; min-height: 44px; line-height: 44px; padding: 0 24px; border-radius: 10px; text-decoration: none; font-size: var(--text-button); font-weight: var(--weight-button); }
.btn--primary { background: var(--peony-green); color: var(--white); }
.btn--primary:hover { background: var(--deep-green); }
.btn--secondary { background: var(--soft-sage); color: var(--deep-green); }
.btn--outline { background: transparent; color: var(--peony-green); border: 1px solid var(--border); }
.btn--outline:hover { border-color: var(--peony-green); }
.btn--small { min-height: 36px; line-height: 36px; padding: 0 16px; font-size: 14px; }

main.main-info, section.info-grid, section.catalog-intro, section.catalog-groups, section.catalog-list {
  max-width: 1240px; margin: 0 auto; padding: 24px 20px;
}

main.main-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 900px) {
  main.main-info { grid-template-columns: 1fr 1fr; align-items: start; }
}
.characteristics h2 { margin: 0 0 20px; }
/* Основные характеристики — 2-колоночная таблица в лёгкой карточке, чередующиеся строки */
.characteristics__list {
  display: grid;
  grid-template-columns: minmax(140px, max-content) 1fr;
  column-gap: 16px;
  row-gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.characteristics__row { display: contents; }
.characteristics__row dt, .characteristics__row dd {
  padding: 12px 16px;
  margin: 0;
  text-align: left;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.characteristics__row:nth-child(even) dt, .characteristics__row:nth-child(even) dd {
  background: var(--warm-ivory);
}
.characteristics__row dt { color: var(--muted-gray); font-weight: 400; }
.characteristics__row dd { font-weight: 600; }

section.gallery { padding: 0; }
section.gallery h2 { margin: 0 0 20px; }
.gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
@media (max-width: 560px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
}
.gallery__item { margin: 0; }
.gallery__img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--radius); display: block; cursor: zoom-in; }
.gallery__item figcaption { font-size: 12px; color: var(--muted-gray); margin-top: 4px; text-align: center; }

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 900px) {
  .info-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: min-content;
  }
  /* Строка 1 (Описание/Преимущества/Наш опыт) остаётся на стандартном stretch —
     карточки равны по высоте друг другу. Особенности ухода и Полезные статьи
     выравниваются между собой отдельно (align-self), FAQ растягивается на обе
     строки, а освободившееся место занимает «Похожие сорта». */
  .info-grid__care { grid-column: 1; grid-row: 2; }
  .info-grid__articles { grid-column: 2; grid-row: 2; }
  .info-grid__faq { grid-column: 3; grid-row: 2 / span 2; }
  .info-grid__related { grid-column: 1 / span 2; grid-row: 3; align-self: start; }
}
.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.info-card h2 { font-size: var(--text-h3); line-height: var(--lh-h3); font-weight: var(--weight-h3); margin: 0 0 12px; }
.info-card p, .info-card ul { margin: 0; }
.info-card ul { padding-left: 18px; }
.info-card li { margin-bottom: 4px; }
.placeholder-text { color: var(--muted-gray); font-style: italic; }

.experience-notes { margin: 14px 0 0; padding-top: 12px; border-top: 1px solid var(--border); }
.experience-notes__row { display: flex; justify-content: space-between; gap: 12px; font-size: 13px; padding: 4px 0; }
.experience-notes__row dt { color: var(--muted-gray); font-weight: 400; }
.experience-notes__row dd { margin: 0; text-align: right; }

.info-grid__related h2 { font-size: var(--text-h4); line-height: var(--lh-h4); font-weight: var(--weight-h4); margin: 0 0 12px; }
.related__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.related__card {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.related__media img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--radius); display: block; }
.related__card h3 { font-size: var(--text-label); line-height: var(--lh-label); font-weight: var(--weight-h4); margin: 0; }

.faq__item { border-bottom: 1px solid var(--border); padding: 12px 0; }
.faq__item summary { cursor: pointer; font-weight: var(--weight-h4); font-size: var(--text-h4); line-height: var(--lh-h4); list-style: none; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; float: right; color: var(--muted-gray); }
.faq__item[open] summary::after { content: "–"; }
.faq__item p { margin: 10px 0 0; color: var(--charcoal); }

p.final-cta { max-width: 1240px; margin: 24px auto 40px; padding: 0 20px; }

/* SITE-FOOTER-001 */
.site-footer { background: var(--deep-green); color: rgba(255, 255, 255, .78); }
.site-footer a { color: rgba(255, 255, 255, .78); text-decoration: none; }
.site-footer a:hover, .site-footer a:focus-visible { color: var(--white); text-decoration: underline; }

.site-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 20px 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.site-footer__brand { flex: 1 1 220px; }
.site-footer__logo { display: inline-block; }
.site-footer__logo img { height: 40px; width: auto; display: block; }
.site-footer__region { margin: 12px 0 0; font-size: var(--text-body-sm); color: rgba(255, 255, 255, .6); }

.site-footer__nav { display: none; flex: 3 1 640px; flex-wrap: wrap; gap: 24px; }
.site-footer__group { flex: 1 1 150px; min-width: 150px; }
.site-footer__heading { font-size: var(--text-label); font-weight: 600; color: var(--white); text-transform: uppercase; letter-spacing: .04em; margin: 0 0 14px; }
.site-footer__group ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer__group a { font-size: var(--text-nav); }

.site-footer__mobile-nav { display: block; width: 100%; }
.site-footer__accordion { border-top: 1px solid rgba(255, 255, 255, .15); }
.site-footer__accordion:last-child { border-bottom: 1px solid rgba(255, 255, 255, .15); }
.site-footer__accordion summary {
  cursor: pointer;
  list-style: none;
  min-height: 44px;
  display: flex;
  align-items: center;
  font-size: var(--text-label);
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.site-footer__accordion summary::-webkit-details-marker { display: none; }
.site-footer__accordion summary::after { content: "+"; margin-left: auto; color: rgba(255, 255, 255, .6); }
.site-footer__accordion[open] summary::after { content: "–"; }
.site-footer__accordion ul { list-style: none; margin: 0; padding: 0 0 16px; display: flex; flex-direction: column; gap: 4px; }
.site-footer__accordion a { display: flex; align-items: center; min-height: 40px; font-size: var(--text-nav); }

@media (min-width: 900px) {
  .site-footer__nav { display: flex; }
  .site-footer__mobile-nav { display: none; }
}

.site-footer__legal {
  border-top: 1px solid rgba(255, 255, 255, .15);
  padding: 20px;
  text-align: center;
}
.site-footer__legal p { margin: 0; font-size: var(--text-caption); }

/* ---------- Каталог: листинг /catalog/ и /catalog/{group}/ ---------- */

section.catalog-intro h1 { font-size: var(--text-h1); margin: 0 0 8px; }
.catalog-count { color: var(--muted-gray); font-size: 14px; margin: 0 0 16px; }

/* Баннер каталога — та же схема, что и у блоков на главной: фото на всю
   ширину, текст поверх подготовленной светлой зоны изображения. */
section.catalog-intro--banner { padding-top: 0; padding-bottom: 0; }
section.catalog-groups { padding-top: 24px; }
.catalog-intro__media { position: relative; border-radius: var(--radius); overflow: hidden; }
.catalog-intro__media img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 900px) {
  .catalog-intro__media img { aspect-ratio: 1975 / 566; }
}
.catalog-intro__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 20px;
  max-width: 320px;
}
.catalog-intro__content h1 { font-size: var(--text-h3); line-height: var(--lh-h3); font-weight: var(--weight-h3); margin: 0 0 8px; }
.catalog-intro__content p { font-size: var(--text-caption); line-height: var(--lh-caption); color: var(--charcoal); margin: 0; }
@media (min-width: 900px) {
  .catalog-intro__content { max-width: 420px; padding: 0 0 0 40px; }
  .catalog-intro__content h1 { font-size: var(--text-h1); line-height: var(--lh-h1); font-weight: var(--weight-h1); margin: 0 0 12px; }
  .catalog-intro__content p { font-size: var(--text-body); line-height: var(--lh-body); max-width: 380px; }
}

.catalog-groups { display: flex; flex-wrap: wrap; gap: 16px; }
.catalog-groups__tile {
  flex: 1 1 300px;
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  text-decoration: none;
  color: var(--charcoal);
}
.catalog-groups__tile img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}
.catalog-groups__tile h2 { font-size: var(--text-h3); line-height: var(--lh-h3); font-weight: var(--weight-h3); margin: 0 0 4px; }
.catalog-groups__tile p { font-size: var(--text-caption); color: var(--muted-gray); margin: 0; }
.catalog-groups__tile .arrow { margin-left: auto; color: var(--peony-green); font-size: 22px; }

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 700px) {
  .catalog-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1000px) {
  .catalog-grid { grid-template-columns: repeat(4, 1fr); }
}
.catalog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--charcoal);
}
.catalog-card__media { position: relative; aspect-ratio: 1 / 1; }
.catalog-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.catalog-card__group-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--white);
  color: var(--deep-green);
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
}
.catalog-card__body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 8px; flex-grow: 1; }
.catalog-card__body h3 { font-size: var(--text-h4); line-height: var(--lh-h4); font-weight: var(--weight-h4); margin: 0; }
.catalog-card__original { font-size: 13px; font-weight: 400; color: var(--muted-gray); }
.catalog-card__meta { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; padding: 0; margin: 0; font-size: 12px; color: var(--muted-gray); }
.catalog-card__meta li { background: var(--soft-sage); border-radius: 999px; padding: 3px 9px; }
.catalog-card__body p { font-size: 14px; margin: 0; color: var(--charcoal); flex-grow: 1; }
.catalog-card__link { font-size: 14px; font-weight: 600; color: var(--peony-green); margin-top: auto; }

/* Карточка сорта только для главной — иконки-характеристики вместо описания/бейджей */
.home-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--charcoal);
}
.home-card__media { aspect-ratio: 1 / 1; }
.home-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.home-card__body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 10px; flex-grow: 1; }
.home-card__title { font-size: var(--text-h4); font-weight: var(--weight-h4); margin: 0; line-height: var(--lh-h4); }
.home-card__original { display: block; font-size: 13px; font-weight: 400; color: var(--muted-gray); margin-top: 2px; }
.home-card__specs { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; flex-grow: 1; }
.home-card__specs li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--charcoal); }
.home-card__icon { width: 18px; height: 18px; flex-shrink: 0; }
.home-card__link { text-align: center; }

/* ---------- Главная страница ---------- */

/* HOME-HERO-001 */
.hero-home {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px 16px;
}

.hero-home__media {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero-home__img {
  order: 2;
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1717 / 850;
  object-fit: cover;
  object-position: center bottom;
}
.hero-home__overlay { order: 1; }

@media (max-width: 899px) {
  /* Desktop banner is a wide safe-zone crop (~55% blank space for the
     overlaid text); on mobile the text isn't overlaid on this image
     (it's stacked above instead), so the same wide crop just reads as
     a mostly-empty photo. Crop tighter and biased right to show the
     flower instead of the blank zone. */
  .hero-home__img { aspect-ratio: 1 / 1; object-position: right center; }
}

@media (min-width: 900px) {
  .hero-home { padding: 0 20px 20px; }
  .hero-home__media { display: block; }
  .hero-home__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 4px;
  }
}

.hero-home__title {
  font-family: var(--font-display);
  font-weight: var(--weight-display);
  font-size: var(--text-display);
  line-height: var(--lh-display);
  color: var(--charcoal);
  margin: 0 0 16px;
  max-width: 520px;
}
.hero-home__title-accent { color: var(--peony-green); }

.hero-home__subtitle { font-size: var(--text-lead); line-height: var(--lh-lead); color: var(--charcoal); margin: 0 0 24px; max-width: 460px; }

.hero-home__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
@media (min-width: 900px) {
  .hero-home__cta { margin-bottom: 32px; }
}

.hero-home__trust { list-style: none; display: flex; flex-direction: column; gap: 14px; padding: 0; margin: 0; max-width: 620px; }
.hero-home__trust li { display: flex; align-items: center; gap: 10px; font-size: var(--text-label); line-height: var(--lh-label); font-weight: var(--weight-label); color: var(--charcoal); }
.hero-home__trust-icon { width: 32px; height: 32px; flex-shrink: 0; color: var(--peony-green); }
@media (min-width: 900px) {
  .hero-home__trust { flex-direction: row; flex-wrap: wrap; gap: 18px 20px; }
  .hero-home__trust li { flex: 1 1 150px; }
}

/* HOME-BENEFITS-001 */
.home-benefits { background: var(--warm-ivory); }
.home-benefits__list {
  list-style: none;
  margin: 0;
  padding: 8px 20px 20px;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.home-benefits__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
}
.home-benefits__item:first-child { padding-top: 0; border-top: none; }
.home-benefits__item:not(:first-child) { border-top: 1px solid var(--border); }
.home-benefits__icon { width: 40px; height: 40px; flex-shrink: 0; object-fit: contain; }
.home-benefits__title { font-size: 14px; font-weight: 600; color: var(--charcoal); margin: 0 0 2px; line-height: 1.35; }
.home-benefits__desc { font-size: 13px; font-weight: 400; color: var(--muted-gray); margin: 0; line-height: 1.45; }
.home-benefits__link { display: flex; align-items: center; gap: 14px; text-decoration: none; color: inherit; }

@media (min-width: 600px) and (max-width: 899px) {
  .home-benefits__list { grid-template-columns: 1fr 1fr; gap: 20px 24px; }
  .home-benefits__item:nth-child(2) { border-top: none; }
  .home-benefits__item:nth-child(1), .home-benefits__item:nth-child(2) { padding-top: 0; }
}

@media (min-width: 900px) {
  .home-benefits__list {
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    padding: 10px 20px 26px;
    gap: 0;
  }
  .home-benefits__item {
    padding: 0 20px;
    border-top: none !important;
  }
  .home-benefits__item:not(:first-child) { border-left: 1px solid var(--border); }
}

.home-section { max-width: 1240px; margin: 0 auto; padding: 24px 20px; }
.home-section h2 { font-size: var(--text-h2); line-height: var(--lh-h2); font-weight: var(--weight-h2); margin: 0 0 16px; }
.home-section__head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.home-section__head h2 { margin: 0; }
.home-section__head a { font-weight: 600; text-decoration: none; white-space: nowrap; }
.home-section__more { text-align: center; margin: 24px 0 0; }

.home-section .info-card p { margin: 0 0 12px; }
.home-section .info-card p:last-child { margin-bottom: 0; }

/* HOME-FEATURE-FINAL-001 / HOME-FEATURE-MOBILE-001 */
.home-feature { max-width: 1280px; margin: 0 auto; padding: 32px 20px; }
.home-feature__viewport { overflow: hidden; border-radius: var(--radius); }
.home-feature__track { display: flex; transition: transform .45s ease; }
@media (prefers-reduced-motion: reduce) {
  .home-feature__track { transition: none; }
}

.home-feature__slide { position: relative; flex: 0 0 100%; min-height: 320px; }
.home-feature__media { position: absolute; inset: 0; z-index: 0; }
.home-feature__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}
@media (min-width: 900px) {
  .home-feature__slide { min-height: 0; }
  .home-feature__media { position: relative; inset: auto; }
  .home-feature__img { height: auto; aspect-ratio: 16 / 2.3; object-position: center; }
}

.home-feature__content {
  position: relative;
  z-index: 1;
  padding: 20px 20px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 900px) {
  .home-feature__content {
    position: absolute;
    inset: 0;
    justify-content: center;
    max-width: 380px;
    padding: 0 0 0 32px;
  }
}

.home-feature__eyebrow {
  font-size: var(--text-label);
  line-height: var(--lh-label);
  font-weight: var(--weight-label);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--peony-green);
  margin: 0 0 6px;
}
.home-feature__title { font-size: var(--text-h4); line-height: var(--lh-h4); font-weight: var(--weight-h4); color: var(--charcoal); margin: 0 0 6px; }
.home-feature__desc { font-size: var(--text-caption); line-height: var(--lh-caption); color: var(--charcoal); margin: 0 0 12px; max-width: 380px; }
.home-feature__cta { align-self: flex-start; }

.home-feature__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}
.home-feature__arrow {
  width: 40px; height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  color: var(--charcoal);
  cursor: pointer;
}
.home-feature__arrow svg { width: 18px; height: 18px; }
.home-feature__arrow:hover, .home-feature__arrow:focus-visible { border-color: var(--peony-green); color: var(--peony-green); }
.home-feature__dots { display: flex; align-items: center; gap: 8px; }
.home-feature__dot {
  width: 8px; height: 8px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: var(--border);
  cursor: pointer;
}
.home-feature__dot.is-active { background: var(--peony-green); width: 20px; }

/* CONTACTS-001 */
#contacts { scroll-margin-top: 100px; }

.contacts-hero { max-width: 1240px; margin: 0 auto; padding: 24px 20px 8px; }
.contacts-hero__head { text-align: left; max-width: 640px; margin-bottom: 24px; }
.contacts-hero__lead { font-size: var(--text-lead); line-height: var(--lh-lead); color: var(--charcoal); margin: 12px 0 0; }

.contacts-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 340px) {
  .contacts-grid { grid-template-columns: 1fr; }
}
@media (min-width: 1024px) {
  .contacts-grid { grid-template-columns: repeat(4, 1fr); }
}

.contacts-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  min-height: 44px;
  text-decoration: none;
  color: var(--charcoal);
  transition: border-color .15s ease, background .15s ease;
}
.contacts-card:hover, .contacts-card:focus-visible { border-color: var(--peony-green); background: var(--soft-sage); }
.contacts-card__icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: var(--soft-sage);
  color: var(--peony-green);
  margin-bottom: 10px;
}
.contacts-card__icon svg { width: 20px; height: 20px; }
.contacts-card__title { font-size: var(--text-label); font-weight: var(--weight-label); line-height: var(--lh-label); color: var(--charcoal); }
.contacts-card__value { font-size: var(--text-body-sm); color: var(--muted-gray); word-break: break-word; }
.contacts-card__cta { font-size: var(--text-caption); font-weight: 600; color: var(--peony-green); margin-top: 8px; }

.contacts-email {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 18px 0 0;
  font-size: var(--text-body-sm);
}
.contacts-email__label { color: var(--muted-gray); }
.contacts-email a { color: var(--charcoal); font-weight: 600; }
.contacts-email a:hover { color: var(--peony-green); }

.contacts-location { background: var(--soft-sage); margin-top: 32px; }
.contacts-location__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 28px 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 900px) {
  .contacts-location__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}
.contacts-location__about h2 { margin-bottom: 10px; }
.contacts-location__about p { margin: 0 0 6px; color: var(--charcoal); }
.contacts-location__pickup-title { font-weight: 600; color: var(--deep-green); margin: 0 0 6px; }
.contacts-location__pickup p:last-child { color: var(--muted-gray); margin: 0; font-size: var(--text-body-sm); }

.contacts-order__grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 900px) {
  .contacts-order__grid { grid-template-columns: 1fr 1fr; }
}
.contacts-order__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.contacts-order__card h3 { margin: 0 0 12px; }
.contacts-order__card p { margin: 0 0 10px; color: var(--charcoal); font-size: var(--text-body-sm); }
.contacts-order__card-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.contacts-order__card-head h3 { margin: 0; }
.contacts-order__link { display: inline-block; margin-top: 4px; color: var(--peony-green); font-weight: 600; text-decoration: none; }
.contacts-order__link:hover { text-decoration: underline; }

.contacts-platforms__grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 900px) {
  .contacts-platforms__grid { grid-template-columns: 1fr 1fr; }
}
.contacts-platform {
  display: flex;
  align-items: center;
  gap: 16px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  text-decoration: none;
  color: var(--charcoal);
  transition: border-color .15s ease, background .15s ease;
}
.contacts-platform:hover, .contacts-platform:focus-visible { border-color: var(--peony-green); background: var(--white); }
.contacts-platform__icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--peony-green);
}
.contacts-platform__icon svg { width: 22px; height: 22px; }
.contacts-platform__body { flex: 1; min-width: 0; }
.contacts-platform__title { display: block; font-size: var(--text-label); font-weight: var(--weight-label); }
.contacts-platform__desc { display: block; font-size: var(--text-caption); color: var(--muted-gray); margin-top: 2px; }
.contacts-platform__cta { flex-shrink: 0; font-size: var(--text-caption); font-weight: 600; color: var(--peony-green); }
@media (max-width: 640px) {
  .contacts-platform { flex-direction: column; align-items: flex-start; gap: 12px; }
  .contacts-platform__cta { margin-left: 0; }
}

.contacts-final { background: var(--soft-sage); margin-top: 32px; }
.contacts-final__inner { max-width: 640px; margin: 0 auto; padding: 40px 20px; text-align: center; }
.contacts-final__inner h2 { margin-bottom: 12px; }
.contacts-final__inner p { margin: 0 0 20px; color: var(--charcoal); }
.contacts-final__actions { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* SOVETY-GUIDE-001 */
.guide { max-width: 760px; margin: 0 auto; padding: 24px 20px 48px; }
.guide__lead { font-size: var(--text-lead); line-height: var(--lh-lead); color: var(--charcoal); margin: 12px 0 0; }
.guide__scope { font-size: var(--text-body-sm); color: var(--muted-gray); margin: 16px 0 0; }

.guide__summary {
  background: var(--soft-sage);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 28px 0;
}
.guide__summary h2 { font-size: var(--text-h4); margin: 0 0 10px; }
.guide__summary p { margin: 0 0 10px; color: var(--charcoal); }
.guide__summary p:last-child { margin-bottom: 0; }

.guide__toc {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 0 0 32px;
}
.guide__toc p { font-size: var(--text-label); font-weight: var(--weight-label); color: var(--muted-gray); text-transform: uppercase; letter-spacing: .04em; margin: 0 0 12px; }
.guide__toc ol { margin: 0; padding-left: 20px; }
.guide__toc li { margin-bottom: 6px; }
.guide__toc a { color: var(--charcoal); text-decoration: none; }
.guide__toc a:hover { color: var(--peony-green); text-decoration: underline; }

.guide h2 { margin: 40px 0 16px; scroll-margin-top: 90px; }
.guide h3 { margin: 28px 0 12px; scroll-margin-top: 90px; }
.guide > p, .guide li { color: var(--charcoal); }
.guide p { margin: 0 0 16px; }
.guide ul, .guide ol { padding-left: 22px; margin: 0 0 16px; }
.guide li { margin-bottom: 6px; }
.guide strong { font-weight: 600; }

.guide blockquote {
  margin: 24px 0;
  padding: 16px 20px;
  border-left: 3px solid var(--peony-green);
  background: var(--soft-sage);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--deep-green);
}
.guide blockquote p { margin: 0; }

.guide__visual { margin: 28px 0; }
.guide__visual img, .guide__visual svg { width: 100%; height: auto; display: block; border-radius: var(--radius); }
.guide__visual figcaption { font-size: var(--text-caption); color: var(--muted-gray); text-align: center; margin-top: 10px; }

.guide__steps { list-style: none; padding: 0; margin: 0 0 16px; counter-reset: step; }
.guide__steps li {
  counter-increment: step;
  position: relative;
  padding: 0 0 0 40px;
  margin-bottom: 20px;
}
.guide__steps li::before {
  content: counter(step);
  position: absolute;
  left: 0; top: 2px;
  width: 26px; height: 26px;
  border-radius: 999px;
  background: var(--peony-green);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.guide__steps h3 { margin: 0 0 6px; font-size: var(--text-h4); }
.guide__steps p { margin: 0; }

.guide__links { list-style: none; padding: 0; margin: 0 0 16px; }
.guide__links li { margin-bottom: 8px; }
.guide__links a { color: var(--peony-green); font-weight: 600; text-decoration: none; }
.guide__links a:hover { text-decoration: underline; }

.guide__cta {
  background: var(--soft-sage);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  margin: 32px 0;
}
.guide__cta h2 { margin: 0 0 10px; }
.guide__cta p { color: var(--charcoal); margin: 0 0 18px; }

.guide__sources { font-size: var(--text-body-sm); color: var(--muted-gray); }
.guide__sources li { margin-bottom: 10px; }
.guide__sources a { color: var(--peony-green); }
.guide__method { font-size: var(--text-body-sm); color: var(--muted-gray); margin-top: 24px; }
.guide__method p { margin: 0 0 10px; }
