:root {
  --color-bg: #faf7f4;
  --color-surface: #ffffff;
  --color-text: #241f1c;
  --color-text-muted: #6f645d;
  --color-primary: #1c1a19;
  --color-primary-contrast: #ffffff;
  --color-accent: #c79a5b;
  --color-border: #e7e0d9;
  --radius: 14px;
  --wrap-width: 1120px;
  --font-heading: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --shadow-soft: 0 4px 20px rgba(28, 26, 25, 0.06);
  --shadow-lift: 0 14px 32px rgba(28, 26, 25, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

.wrap {
  max-width: var(--wrap-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); text-align: center; margin-bottom: 48px; }
h3 { font-size: 1.25rem; }
p { margin: 0 0 16px; color: var(--color-text-muted); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: var(--color-surface);
  border-bottom: 2px solid var(--color-accent);
  z-index: 10;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-text);
  text-decoration: none;
}
.social-nav a {
  margin-left: 20px;
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.social-nav a:hover { color: var(--color-accent); }

/* Hero */
.hero {
  padding: 128px 0 104px;
  text-align: center;
  background: linear-gradient(180deg, var(--color-surface), var(--color-bg));
}
.hero-sub {
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: 1.1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn-primary {
  background: var(--color-primary);
  color: var(--color-primary-contrast);
}
.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}
.btn-outline:hover { border-color: var(--color-accent); }

/* Hits */
.hits { padding: 100px 0; }
.hits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.hit-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-top: 3px solid transparent;
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-top-color 0.2s ease;
}
.hit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-top-color: var(--color-accent);
}
.img-placeholder {
  aspect-ratio: 1 / 1;
  border-radius: calc(var(--radius) - 4px);
  background: repeating-linear-gradient(135deg, #efe8df, #efe8df 10px, #e7ddd0 10px, #e7ddd0 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.hit-photo {
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: calc(var(--radius) - 4px);
  border: 1px solid var(--color-border);
  object-fit: cover;
  object-position: top;
  margin-bottom: 16px;
  display: block;
}
.hit-brand {
  margin: -8px 0 8px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-style: italic;
}
.hit-rating {
  margin: -8px 0 8px;
  font-size: 0.85rem;
  color: var(--color-accent);
  font-weight: 600;
}
.hit-rating span { color: var(--color-text-muted); font-weight: 400; }
.hit-desc { min-height: 48px; }
.hit-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Guide — Как выбрать набор */
.guide { padding: 96px 0; }
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.guide-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.guide-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.guide-card h3 { margin-bottom: 8px; }
.guide-card .guide-label {
  display: block;
  font-size: 0.8rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.guide-card p { margin-bottom: 8px; font-size: 0.95rem; }
.guide-card p:last-child { margin-bottom: 0; }

/* About */
.about {
  padding: 96px 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-accent);
  border-bottom: 1px solid var(--color-accent);
}
.about .wrap { max-width: 720px; text-align: center; }

/* FAQ */
.faq { padding: 96px 0; }
.faq .wrap { max-width: 760px; }
.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 20px 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { margin-bottom: 8px; font-size: 1.05rem; }
.faq-item p { margin-bottom: 0; }

/* Footer */
.site-footer { padding: 40px 0; border-top: 1px solid var(--color-border); }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo.footer-logo,
.footer-inner .logo { font-family: var(--font-heading); }
.footer-contacts a {
  margin-left: 20px;
  color: var(--color-text-muted);
  text-decoration: none;
}

@media (max-width: 800px) {
  .hits-grid { grid-template-columns: 1fr; }
  .header-inner { height: 64px; }
  .hero { padding: 72px 0 64px; }
}

/* Landing (SKU) pages */
.back-link {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
}
.back-link:hover { color: var(--color-accent); }

.landing-hero {
  padding: 64px 0 88px;
}
.landing-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.landing-hero .img-placeholder { aspect-ratio: 4 / 5; margin-bottom: 0; }
.landing-hero-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  display: block;
}
.landing-hero h1 { text-align: left; margin-bottom: 4px; }
.landing-brand {
  display: block;
  margin: 0 0 20px;
  color: var(--color-text-muted);
  font-style: italic;
}
.review-stars { color: var(--color-accent); letter-spacing: 2px; }

.bullet-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.bullet-list li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
  color: var(--color-text);
}
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
}

.composition {
  padding: 80px 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-accent);
  border-bottom: 1px solid var(--color-accent);
}
.composition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.composition-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.reviews { padding: 80px 0; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.review-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-soft);
}
.review-author {
  display: block;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}
.review-photo-proof {
  margin-top: 32px;
  text-align: center;
}
.review-photo-proof img {
  max-width: 480px;
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}
.review-photo-proof p {
  font-size: 0.85rem;
  margin-top: 8px;
}

.cta-section {
  padding: 72px 0 104px;
  text-align: center;
}
.cta-section .btn { padding: 16px 40px; font-size: 1.05rem; }

/* Cross-sell */
.cross-sell {
  padding: 80px 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-accent);
}
.cross-sell-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.cross-sell-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cross-sell-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.cross-sell-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top;
  border-radius: calc(var(--radius) - 4px);
  border: 1px solid var(--color-border);
  margin-bottom: 12px;
}

/* Trust badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 24px 0 0;
}
.landing-hero .trust-badges { justify-content: flex-start; }
.trust-badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* Arrival announcement */
.arrival {
  padding: 20px 0;
  background: var(--color-primary);
  color: var(--color-primary-contrast);
  text-align: center;
}
.arrival p { margin: 0; color: inherit; font-size: 0.95rem; }
.arrival strong { color: var(--color-accent); }

/* More sets (secondary SKUs) */
.more-sets {
  padding: 96px 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-accent);
}
.more-sets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.more-set-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.more-set-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.more-set-card .img-placeholder {
  aspect-ratio: 1 / 1;
  margin-bottom: 12px;
}
.more-set-card h3 { font-size: 1.05rem; margin-bottom: 2px; }
.more-set-card p { font-size: 0.85rem; margin-bottom: 0; }

/* Sticky mobile CTA */
.sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  padding: 12px 16px;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.06);
}
.sticky-cta .btn { display: block; text-align: center; }

@media (max-width: 800px) {
  .landing-hero-grid { grid-template-columns: 1fr; }
  .guide-grid { grid-template-columns: 1fr; }
  .more-sets-grid { grid-template-columns: repeat(2, 1fr); }
  body:has(.sticky-cta) .sticky-cta { display: block; }
  body:has(.sticky-cta) main { padding-bottom: 76px; }
}

/* Articles (hub teaser grid) */
.articles {
  padding: 96px 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-accent);
}
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.article-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.article-card .guide-label {
  display: block;
  font-size: 0.8rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.article-card h3 { margin-bottom: 8px; }
.article-card p { margin-bottom: 0; font-size: 0.95rem; }

/* Article page */
.article-hero { padding: 56px 0 32px; max-width: 720px; margin: 0 auto; }
.article-hero h1 { text-align: left; }
.article-meta {
  display: block;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  margin-bottom: 24px;
}
.article-body { padding: 0 0 80px; max-width: 720px; margin: 0 auto; }
.article-body h2 { text-align: left; font-size: 1.35rem; margin-top: 32px; }
.article-body p { font-size: 1.02rem; }
.article-body ul { margin: 0 0 16px; padding-left: 20px; color: var(--color-text-muted); }
.article-body li { margin-bottom: 8px; }

@media (max-width: 800px) {
  .articles-grid { grid-template-columns: 1fr; }
}
