/* global.css — Base Styles */
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-1);
  background-color: var(--bg);
  line-height: 1.6;
}

/* ── Containers ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.container--sm {
  max-width: var(--container-sm);
  margin: 0 auto;
  padding: 0 var(--pad);
}

section { padding: var(--section-pad) 0; }

/* ── Section Label ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── Headings ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.display-heading {
  font-size: var(--text-hero);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.section-heading {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
}

.card-heading {
  font-size: var(--text-xl);
  font-weight: 700;
}

/* ── Body Text ── */
.body-lg {
  font-size: var(--text-lg);
  line-height: 1.7;
  color: var(--text-2);
}

.body-md {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--text-2);
}

/* ── On-Dark Context ── */
.on-dark { color: #fff; }
.on-dark h1, .on-dark h2, .on-dark h3 { color: #fff; }
.on-dark p, .on-dark .body-lg, .on-dark .body-md { color: rgba(255,255,255,0.6); }

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ── Utilities ── */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.divider { border: none; border-top: 1px solid var(--border); }
