/* ============================================
   global.css — Reset & Design Tokens
   ============================================ */

:root {
  --navy:     #0a1628;
  --navy2:    #112040;
  --gold:     #c8963e;
  --gold-lt:  #e8b86d;
  --white:    #ffffff;
  --offwhite: #f5f7fa;
  --muted:    #8a96a8;
  --border:   rgba(200,150,62,0.25);
  --orange:   #e8620a;
  --orange-h: #d4550a;
  --shadow:   0 20px 60px rgba(10,22,40,0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--offwhite);
  color: var(--navy);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Sora', sans-serif;
}

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

a { color: inherit; }

button, input, select, textarea {
  font-family: inherit;
}
