/* ═══════════════════════════════════════
   JAGATHI FOUNDATION – Base & Reset
   ═══════════════════════════════════════ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html, body {
  overflow-x: hidden;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  max-width: 100vw;
  transition: opacity 0.24s ease, transform 0.24s ease;
}
/* ── SECTION COMMON ── */
section {
  padding: 100px 40px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}
