/* ═══════════════════════════════════════════════════════
   BASE — variables, reset, typography, utilities
   ═══════════════════════════════════════════════════════ */

/* ─── Design Tokens ─────────────────────────────────── */
:root {
  /* Gold palette */
  --gold:        #C9973A;
  --gold-light:  #E8B84B;
  --gold-pale:   #F5D98A;
  --gold-dim:    rgba(201, 151, 58, 0.15);
  --gold-border: rgba(201, 151, 58, 0.25);

  /* Background scale */
  --bg:   #08080D;
  --bg2:  #0F0F18;
  --bg3:  #141420;

  /* Surface / card scale */
  --card:  #111119;
  --card2: #16161F;

  /* Text scale */
  --text:       #FFFFFF;
  --text-muted: #9090A8;
  --text-dim:   #5A5A72;

  /* Status */
  --success: #22C55E;
  --danger:  #EF4444;

  /* Shape */
  --radius:    16px;
  --radius-sm: 10px;
  --radius-xs: 8px;

  /* Motion */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* ─── Scrollbar ──────────────────────────────────────── */
::-webkit-scrollbar          { width: 6px; }
::-webkit-scrollbar-track    { background: var(--bg); }
::-webkit-scrollbar-thumb    { background: var(--gold); border-radius: 3px; }

/* ─── Layout Utilities ───────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section    { padding: 120px 0; }
.section-sm { padding: 80px 0; }

/* ─── Section Header ─────────────────────────────────── */
/* Center-aligned header block used across multiple sections */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.section-header .section-sub {
  margin: 0 auto;
}

/* ─── Typography Utilities ───────────────────────────── */
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
  margin: 24px 0;
}

/* ─── Color Utilities ────────────────────────────────── */
.gold {
  color: var(--gold);
}

.gold-grad {
  background: linear-gradient(135deg, var(--gold-pale), var(--gold), #A0702A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Tag / Eyebrow Label ────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  background: var(--gold-dim);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
