/* ------------------------------
   RESET & BASE
------------------------------ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ------------------------------
   TYPOGRAPHIE
------------------------------ */

h1, h2, h3 {
  font-weight: 600;
  letter-spacing: 0.4px;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 16px;
}

.section-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 800px;
}
