/* ─────────────────────────────────────────
   Base — reset, body, shared helpers
───────────────────────────────────────── */

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Urbanist', sans-serif;
  background-color: var(--c-dark-green);
  color: var(--c-on-surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

img { display: block; width: 100%; }

a { text-decoration: none; color: inherit; }

button { font-family: inherit; }

/* ── Container ── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--page-pad);
}

/* ── Section vertical rhythm ── */
.section-pad { padding-block: var(--sp-xl); }

@media (max-width: 767px) {
  .section-pad { padding-block: var(--sp-lg); }
}

/* ── Shared section label + title ── */
.section-label {
  display: block;
  font-size: 0.75rem;
  line-height: 1rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--c-on-surface-var);
  margin-bottom: var(--sp-sm);
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 3rem);
  line-height: 1.17;
  letter-spacing: -0.01em;
  font-weight: 700;
  color: var(--c-on-surface);
}

/* ── Material Symbols ── */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  display: inline-flex;
  align-items: center;
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
