/* ============================================================
   base.css — Design tokens, resets, global typography
   Edit colours and fonts here to change the whole site theme
   ============================================================ */

/* ── Design Tokens ───────────────────────────────────────── */
:root {
  /* Colours */
  --ink:     #0D0D0B;   /* Main text / dark backgrounds */
  --ink2:    #3A3A36;   /* Body text */
  --ink3:    #7A7A74;   /* Muted / labels */
  --paper:   #F7F5F0;   /* Page background */
  --white:   #FFFFFF;
  --accent:  #E8520A;   /* Orange — primary CTA colour */
  --accent2: #1A5FA8;   /* Blue — logo / links */
  --gold:    #C4922A;   /* Gold accent — custom section */
  --border:  #E2DED6;   /* Light borders */
  --border2: #C8C4BA;   /* Medium borders */

  /* Border radius */
  --r:  10px;
  --rl: 16px;
}

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

html {
  scroll-behavior: smooth;
}

/* ── Base Typography ─────────────────────────────────────── */
body {
  font-family: 'Outfit', sans-serif;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
}

p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink2);
  font-weight: 400;
}

a {
  text-decoration: none;
}

/* ── Shared Button Styles ────────────────────────────────── */
.btn-primary {
  padding: 13px 28px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.2px;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.btn-secondary {
  padding: 13px 28px;
  border: 1px solid var(--border2);
  background: transparent;
  color: var(--ink);
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}
.btn-secondary:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

/* ── Scroll Reveal Animations ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Section Shared Styles ───────────────────────────────── */
section {
  padding: 80px 40px;
}

.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 700;
  letter-spacing: -0.4px;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.7;
  font-weight: 400;
  max-width: 560px;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  section {
    padding: 60px 24px;
  }
}
