/* ════════════════════════════════════════════
   BASE.CSS — Reset, body, container, headings
════════════════════════════════════════════ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button {
  font-family: var(--font-sans);
}

/* ── Container ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 480px) {
  .container {
    padding: 0 18px;
  }
}

/* ── Headings ── */
h1, h2 {
  font-family: var(--font-heading);
  font-weight: var(--heading-weight);
}

h1 {
  font-size: clamp(36px, 5vw, 68px);
  letter-spacing: var(--h1-letter-spacing);
  line-height: var(--h1-line-height);
}

h2 {
  font-size: clamp(30px, 3.8vw, 52px);
  letter-spacing: var(--h2-letter-spacing);
  line-height: var(--h2-line-height);
}

/* ── Section tag ── */
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
