body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--pad-x);
}

.section {
  padding: var(--section-y) 0;
  position: relative;
}

.section--dark {
  background: var(--bg-dark);
  color: var(--ink);
}

.section--warm {
  background: var(--bg-warm);
}

/* === Типографика === */
.h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink-dark);
}

.h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.022em;
  color: var(--ink-dark);
}

.h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink-dark);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--accent-mid);
  margin-bottom: 16px;
}

.eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-mid);
  box-shadow: 0 0 12px var(--accent-glow);
}

.lead {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.55;
  color: var(--ink-muted);
  max-width: 64ch;
}

/* === Section heading group === */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: clamp(40px, 5vw, 64px);
  flex-wrap: wrap;
}

.section-head__main { max-width: 720px; }
.section-head__aside {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink-muted);
  max-width: 380px;
}

.section-head .h2 { margin-bottom: 12px; }

/* === Container for hero без section-y === */
.no-y { padding: 0; }
