/* ============================================================
   RADIO ALPINE — Reset & Base
   assets/css/base.css
   ============================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--midnight);
  color: var(--snow);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
}

/* ── Helpers communs ── */
.section-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--glacier);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 1rem;
}

.divider {
  width: 40px;
  height: 2px;
  background: var(--glacier);
  margin: 1rem 0 2.5rem;
}

section {
  padding: var(--section-padding);
  max-width: var(--section-max-width);
  margin: 0 auto;
}
