/* ==========================================================
   NINETY4MGMT — Base Styles
   Reset, Typography, Global Elements
   ========================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  color: var(--text-light);
  background-color: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  line-height: var(--lh-heading);
  color: var(--text-white);
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

p {
  color: var(--text-muted);
  line-height: var(--lh-body);
  margin-bottom: var(--space-md);
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--orange-mid);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--gold-mid);
}

a:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
  color: inherit;
}

button:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

input, textarea, select {
  font-family: var(--font-body);
  font-size: var(--fs-body);
}

/* ── Selection ── */
::selection {
  background: rgba(232, 98, 46, 0.25);
  color: var(--text-white);
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

/* ── Utility: Visually Hidden ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── Label / Eyebrow ── */
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--orange-mid);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--brand-gradient-warm-h);
  display: inline-block;
}

/* ── Section Heading ── */
.section-heading {
  max-width: 700px;
  margin-bottom: var(--space-3xl);
}

.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2 {
  margin-bottom: var(--space-lg);
}

.section-heading p {
  font-size: var(--fs-body-lg);
  color: var(--text-muted);
  line-height: var(--lh-relaxed);
}

/* ── Brand Text Colors ── */
.text-gold {
  color: var(--gold-mid);
}

.text-orange {
  color: var(--orange-mid);
}

.text-blue {
  color: var(--blue-mid);
}

.text-gradient {
  background: var(--brand-gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-full {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-cool {
  background: var(--brand-gradient-cool);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Divider ── */
.brand-divider {
  width: 60px;
  height: 2px;
  background: var(--brand-gradient-warm-h);
  border: none;
  margin: var(--space-xl) 0;
}

.brand-divider.center {
  margin-left: auto;
  margin-right: auto;
}

.gold-divider {
  width: 60px;
  height: 2px;
  background: var(--gold-gradient-h);
  border: none;
  margin: var(--space-xl) 0;
}

.gold-divider.center {
  margin-left: auto;
  margin-right: auto;
}
