@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ── CSS Variables ─────────────────────────────────────── */
:root {
  --bg:            hsl(43, 20%, 90%);
  --fg:            hsl(0, 0%, 0%);
  --card:          hsl(43, 20%, 90%);
  --muted:         hsl(43, 15%, 85%);
  --muted-fg:      hsl(0, 0%, 40%);
  --border:        hsl(43, 15%, 80%);
  --navy:          hsl(220, 60%, 25%);
  --navy-dark:     hsl(220, 70%, 15%);
  --sky:           hsl(200, 85%, 60%);
  --sky-light:     hsl(200, 85%, 70%);
  --radius:        0.75rem;
  --max-w:         1320px;
  --section-py:    120px;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Space Grotesk', sans-serif; }
a  { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; display: block; }

/* ── Layout Utilities ──────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section        { padding: var(--section-py) 0; }
.section--bg    { background: var(--bg); }
.section--muted { background: hsl(43 15% 85% / 0.3); }
.section--navy  { background: var(--navy); }

/* ── Scrollbar (thin) ──────────────────────────────────── */
::-webkit-scrollbar       { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: hsl(220 60% 25% / 0.25); border-radius: 999px; }

/* ── Section label chip ────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--sky);
  margin-bottom: 1rem;
}

/* ── Shared micro-text ─────────────────────────────────── */
.micro-text {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 11px;
  font-weight: 500;
}
