/* ── THETA DIVISION · BASE ── */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  background: var(--obsidian);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--white);
}

h1 { font-size: clamp(28px, 5vw, 52px); }
h2 { font-size: clamp(20px, 3vw, 32px); }
h3 { font-size: clamp(14px, 2vw, 20px); }
h4 { font-size: 13px; letter-spacing: 0.2em; color: var(--silver); }

p {
  font-family: var(--font-ui);
  font-weight: 400;
  color: var(--ghost);
  line-height: 1.7;
}

a { color: var(--gold); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--white); }

/* ── DIVIDERS ── */
.divider {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  margin: var(--sp-xl) 0;
}

.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.divider-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ash);
}

/* ── SECTION LABELS ── */
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-sm);
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}

.section-eyebrow::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold);
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--void); }
::-webkit-scrollbar-thumb { background: var(--border-hi); }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ── SELECTION ── */
::selection { background: var(--gold-mid); color: var(--white); }

/* ── UTILITY ── */
.container {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  padding: 0 var(--sp-lg);
}

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-sm { gap: var(--sp-sm); }
.gap-md { gap: var(--sp-md); }
.gap-lg { gap: var(--sp-lg); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--silver); }
.text-mono { font-family: var(--font-mono); }
.uppercase { text-transform: uppercase; letter-spacing: 0.12em; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
