/* ============================================================
   TYPOGRAPHIC SYSTEM — WBM
   Профессиональная, сдержанная, деловая типографика
   ============================================================ */

/* Импорт профессиональных шрифтов */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600;700&display=swap');

/* ── Базовые настройки ── */
body {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* ── Заголовки ── */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 0.6em;
    color: inherit;
}

h1 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 600;
    letter-spacing: -0.01em;
}

h4 {
    font-size: 1.15rem;
    font-weight: 600;
}

h5 {
    font-size: 1rem;
    font-weight: 600;
}

/* ── Параграфы ── */
p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 1em;
    color: inherit;
}

/* ── Специальные классы ── */
.lead {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.75;
    opacity: 0.85;
}

.small-text,
small {
    font-size: 0.8125rem;
    font-weight: 400;
    line-height: 1.5;
}

.caption {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.6;
}

/* ── Навигация ── */
.nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9375rem;
    letter-spacing: 0.01em;
}

/* ── Кнопки ── */
.btn {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ── Веса шрифтов ── */
.font-light    { font-weight: 300; }
.font-regular  { font-weight: 400; }
.font-medium   { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold     { font-weight: 700; }

/* ── Цвета текста ── */
.text-primary   { color: var(--accent-color); }
.text-secondary { color: var(--text-muted); }
.text-dark      { color: var(--dark-color); }
.text-light     { color: var(--text-color); }
.text-muted     { color: var(--text-muted); }

/* ── Адаптивность ── */
@media (max-width: 768px) {
    body { font-size: 15px; }
}

@media (max-width: 480px) {
    body { font-size: 14px; }
    h1   { letter-spacing: -0.02em; }
}
