/* ═══════════════════════════════════════════════════
   BASE — reset, body, page system, shared components
   ═══════════════════════════════════════════════════ */

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

html { font-size: 16px; }
body { background: var(--dark-bg); color: var(--white); font-family: var(--font-b); line-height: 1.6; }
a { text-decoration: none; color: inherit; }

/* ── PAGE SYSTEM ───────────────────────────────── */
/* Each .page div is hidden by default.
   JS adds .active to show the current page.        */
.page { display: none; }
.page.active { display: block; }

/* ── SHARED SECTION STYLES ─────────────────────── */
.section-eyebrow {
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--sage);
}

.section-headline {
  font-family: var(--font-d);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--white);
}

/* ── PAGE PLACEHOLDERS ─────────────────────────── */
/* Used by any page not yet built out               */
.page-placeholder {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: rgba(255,255,255,0.2);
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.page-placeholder span {
  font-size: 48px;
  color: rgba(255,255,255,0.06);
  font-weight: 900;
}
