/* ─────────────────────────────────────────────────────────────
   Natur Agro Hungária — Spacing & layout tokens
   Generous, calm whitespace — rather empty than crowded.
   ───────────────────────────────────────────────────────────── */
:root {
  --container-max: 1240px;
  --container-pad: 24px;

  /* Vertical section rhythm — 100px desktop / 60px mobile */
  --section-py: 100px;

  /* Spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 100px;
}

@media (max-width: 768px) {
  :root { --section-py: 60px; }
}
