:root {
  --bg: #FAF8F5;
  --surface: #FFFFFF;
  --surface-alt: #F3F0EB;
  --text: #3D3A36;
  --text-muted: #7A756D;
  --sage: #A8C5B5;
  --sage-dark: #8BAF9C;
  --sand: #D4B8A0;
  --mist: #B8C9D9;
  --border: #E8E4DE;
  --radius: 16px;
  --radius-sm: 10px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 15px;
}
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,248,245,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 12px 20px;
  display: flex; gap: 6px; flex-wrap: wrap; align-items: center;
}
.nav a {
  font-size: 12px; color: var(--text-muted); text-decoration: none;
  padding: 6px 12px; border-radius: 999px;
}
.nav a:hover { background: var(--surface); color: var(--text); }
.nav .brand { font-weight: 700; margin-right: 8px; color: var(--text); }
.wrap { max-width: 1140px; margin: 0 auto; padding: 40px 20px 80px; }
h1 { font-family: Manrope, Inter, sans-serif; font-size: 2.1rem; letter-spacing: -0.03em; margin-bottom: 10px; }
h2 { font-family: Manrope, Inter, sans-serif; font-size: 1.45rem; margin: 44px 0 16px; letter-spacing: -0.02em; }
h3 { font-size: 1.05rem; margin: 24px 0 10px; font-weight: 600; }
.lead { color: var(--text-muted); max-width: 720px; margin-bottom: 28px; font-size: 1.02rem; }
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 14px;
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 900px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }
.tag {
  display: inline-block; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em;
  padding: 4px 10px; border-radius: 999px; margin-bottom: 12px;
  background: var(--mist); color: #4A6278;
}
table { width: 100%; border-collapse: collapse; font-size: 13px; }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--border); vertical-align: top; }
th { background: var(--surface-alt); font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); }
ul, ol { padding-left: 18px; } li { margin: 6px 0; }
.btn {
  display: inline-block; padding: 10px 20px; border-radius: 999px;
  background: var(--sage); color: white; text-decoration: none;
  font-size: 14px; font-weight: 600; margin-top: 8px;
}
.btn:hover { background: var(--sage-dark); }
.btn-outline {
  background: transparent; border: 1px solid var(--border); color: var(--text);
}
.kit-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.kit-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  text-decoration: none; color: inherit; display: block;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.kit-card:hover { border-color: var(--sage); box-shadow: 0 4px 20px rgba(61,58,54,0.08); }
.kit-card h3 { margin: 0 0 8px; font-size: 1.1rem; }
.kit-card p { font-size: 13px; color: var(--text-muted); margin: 0; }
.badge-own { background: #EDE4D8; color: #6B5344; font-size: 11px; padding: 3px 8px; border-radius: 999px; font-weight: 600; }
.badge-partner { background: #DDE8F0; color: #4A6278; font-size: 11px; padding: 3px 8px; border-radius: 999px; font-weight: 600; }
.badge-gost { background: var(--surface-alt); color: var(--text-muted); font-size: 11px; padding: 3px 8px; border-radius: 999px; font-weight: 600; }
.palette { display: flex; flex-wrap: wrap; gap: 10px; }
.swatch { width: 92px; }
.swatch div { height: 58px; border-radius: var(--radius-sm); border: 1px solid var(--border); margin-bottom: 6px; }
.swatch small { display: block; font-size: 10px; color: var(--text-muted); }
.swatch strong { font-size: 11px; }
.disclaimer { font-size: 12px; color: var(--text-muted); background: var(--surface-alt); padding: 12px; border-radius: var(--radius-sm); border: 1px solid var(--border); }
