:root {
  /* Гранат, ель и огонь Козы — см. дизайн-систему, одобрено 2026-09-05 */
  --color-primary: #a61b34;
  --color-primary-ink: #7a1226;
  --color-dark: #241b12;
  --color-muted: #7b6e5d;
  --color-bg: #fbf4ea;
  --color-border: #e4d6c1;

  --color-anchor: #1e3b2c;
  --color-anchor-light: #2c5641;
  --color-amber: #d98a2e;

  --anchor-bg: #dae5dc;
  --anchor-ink: #1e3b2c;

  --tekstil-bg: #f6e3d8;
  --tekstil-ink: #a9603d;
  --karton-bg: #f5e8c4;
  --karton-ink: #a6791c;
  --kombo-bg: #e1e4ef;
  --kombo-ink: #48577e;
  --derevo-bg: #eaddc8;
  --derevo-ink: #7a5230;
  --figurny-bg: #dae5dc;
  --figurny-ink: #28492f;

  --font-display: "Unbounded", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-family: var(--font-body);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-dark);
  font-family: var(--font-body);
  line-height: 1.5;
}

h1, h2, h3 {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--color-border);
}
.site-header .logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--color-primary);
  text-decoration: none;
}
.site-header nav a {
  margin-left: 1.5rem;
  color: var(--color-dark);
  font-weight: 500;
  text-decoration: none;
}
.site-header nav a:hover { color: var(--color-primary); }

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
}

.hero {
  padding: 3rem 2rem;
  border-radius: 16px;
}
.hero h1 { font-size: 2.2rem; margin: 0.75rem 0 0.5rem; }
.hero p { color: var(--color-muted); max-width: 600px; margin: 0 auto 1.5rem; }

.hero-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
  gap: 2.5rem;
  text-align: left;
  padding: 0;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.1rem;
  padding: 2.5rem 0.25rem;
}
.hero-copy p { margin: 0; max-width: 46ch; }
.hero-copy h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.08;
  margin: 0;
}
.hero-copy h1 .accent { color: var(--color-primary); }
.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 24px;
  min-height: 340px;
  background: radial-gradient(closest-side, var(--color-anchor-light) 0%, var(--color-anchor) 68%, var(--color-anchor) 100%);
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: -12%;
  background: repeating-conic-gradient(from 0deg, rgba(255, 255, 255, 0.05) 0deg 8deg, transparent 8deg 16deg);
  mix-blend-mode: overlay;
  opacity: 0.5;
}
.hero-visual img {
  position: relative;
  height: 82%;
  width: auto;
  max-width: 76%;
  object-fit: contain;
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.35));
}

.cta.cta-solid {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.cta.cta-solid:hover { background: var(--color-dark); border-color: var(--color-dark); }

.feature-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}
.feature-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1.1rem;
}
.feature-icon {
  width: 24px;
  height: 24px;
  padding: 10px;
  flex-shrink: 0;
  box-sizing: content-box;
  border-radius: 50%;
  background: var(--anchor-bg);
  color: var(--anchor-ink);
}
.feature-item h3 { margin: 0 0 0.25rem; font-size: 0.95rem; }
.feature-item p { margin: 0; color: var(--color-muted); font-size: 0.85rem; }

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.section-heading h2 { margin: 0; }
.link-all { color: var(--color-primary); text-decoration: none; font-weight: 600; font-size: 0.9rem; }
.link-all:hover { text-decoration: underline; }

.promo-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2.5rem 0;
}
.promo-item {
  background: var(--anchor-bg);
  border-radius: 16px;
  padding: 1.75rem;
}
.promo-item-alt { background: #f3ede1; }
.promo-item h3 { margin: 0 0 0.5rem; }
.promo-item p { color: var(--color-muted); margin: 0 0 1.25rem; }

.year-badge {
  display: inline-block;
  background: var(--color-amber);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.cta {
  display: inline-block;
  background: #fff;
  color: var(--color-dark);
  border: 2px solid var(--color-dark);
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-family: var(--font-body);
}
.cta:hover { background: var(--color-dark); color: #fff; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}
.product-card .card-link {
  display: block;
  text-decoration: none;
  color: var(--color-dark);
}
.product-card .card-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card .card-image.pkg-tekstil { background: var(--tekstil-bg); }
.product-card .card-image.pkg-karton { background: var(--karton-bg); }
.product-card .card-image.pkg-kombo { background: var(--kombo-bg); }
.product-card .card-image.pkg-derevo { background: var(--derevo-bg); }
.product-card .card-image.pkg-figurny { background: var(--figurny-bg); }
.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.package-icon {
  width: 45%;
  height: 45%;
  color: rgba(36, 27, 18, 0.4);
}
.product-card h3 { font-size: 1rem; font-family: var(--font-body); font-weight: 700; margin: 0.75rem 0 0.25rem; }
.product-card .weight,
.product-card .artikul,
.product-card .moq { color: var(--color-muted); font-size: 0.85rem; margin: 0; }
.product-card .price {
  font-weight: 800;
  color: var(--color-primary);
  margin: 0.35rem 0;
  font-size: 1.05rem;
  font-variant-numeric: tabular-nums;
}
.product-card .card-cta {
  margin-top: 0.75rem;
  width: 100%;
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0;
}
.filters a {
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  text-decoration: none;
  color: var(--color-dark);
  font-size: 0.9rem;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.filters a:hover {
  border-color: var(--color-primary);
}
.filters a.active {
  background: #f6e3e6;
  border-color: var(--color-primary);
  color: var(--color-primary-ink);
  font-weight: 600;
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.product-detail .card-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-detail .card-image.pkg-tekstil { background: var(--tekstil-bg); }
.product-detail .card-image.pkg-karton { background: var(--karton-bg); }
.product-detail .card-image.pkg-kombo { background: var(--kombo-bg); }
.product-detail .card-image.pkg-derevo { background: var(--derevo-bg); }
.product-detail .card-image.pkg-figurny { background: var(--figurny-bg); }
.product-detail img { width: 100%; height: 100%; object-fit: cover; }
.product-detail .package-icon { width: 40%; height: 40%; color: rgba(36, 27, 18, 0.4); }
.product-detail h1 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin: 0 0 0.35rem; }
.product-detail .price {
  font-size: 1.5rem;
  color: var(--color-primary);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.product-detail .specs { list-style: none; padding: 0; color: var(--color-muted); }
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.9rem;
  font-variant-numeric: tabular-nums;
}
.price-table th,
.price-table td {
  text-align: left;
  padding: 0.5rem 0.7rem;
  border-bottom: 1px solid var(--color-border);
}
.price-table th {
  color: var(--color-muted);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.price-table td:nth-child(3) { color: var(--color-primary); font-weight: 800; }
.composition-details summary {
  cursor: pointer;
  color: var(--color-primary-ink);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}
.composition-list {
  list-style: disc;
  padding-left: 1.1rem;
  margin: 0.5rem 0 0;
  color: var(--color-muted);
  font-size: 0.85rem;
  max-width: 320px;
}
.composition-list li { margin-bottom: 0.15rem; }
.composition-note {
  color: var(--color-muted);
  font-size: 0.85rem;
  margin: -0.5rem 0 1.25rem;
}
.product-detail .composition-link { display: block; margin: 1rem 0; }

.archive-banner {
  background: #fff3e0;
  border: 1px solid #ffd8a8;
  padding: 0.75rem 1rem;
  border-radius: 6px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 480px;
}
.contact-form label { display: flex; flex-direction: column; gap: 0.35rem; font-weight: 600; }
.contact-form input,
.contact-form textarea {
  padding: 0.6rem;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font: inherit;
}
.contact-form button {
  align-self: flex-start;
  background: #fff;
  color: var(--color-dark);
  border: 2px solid var(--color-dark);
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}
.contact-form button:hover { background: var(--color-dark); color: #fff; }

.category-intro { color: var(--color-muted); max-width: 720px; margin: 0.5rem 0 1.25rem; }
.steps-list { padding-left: 1.25rem; color: var(--color-dark); }
.steps-list li { margin-bottom: 0.5rem; }
.cities-list { color: var(--color-muted); }

.breadcrumbs { color: var(--color-muted); font-size: 0.9rem; margin-bottom: 1rem; }
.article-list { list-style: none; padding: 0; }
.article-list li { margin-bottom: 1rem; }

.faq-list { margin: 2rem 0; }
.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 1.25rem 0;
}
.faq-item dt {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.faq-item dd {
  margin: 0;
  color: var(--color-muted);
}

.site-footer {
  text-align: center;
  padding: 1.5rem;
  color: var(--color-muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--color-border);
}

@media (max-width: 640px) {
  .product-detail { grid-template-columns: 1fr; }
  .site-header { flex-direction: column; gap: 0.5rem; }
  .hero-split { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; padding: 1.25rem 0; }
  .hero-copy { align-items: center; padding: 0; }
  .hero-copy p { margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { order: -1; min-height: 260px; border-radius: 20px; }
  .promo-banner { grid-template-columns: 1fr; }
}
