/* =========================================================
   DRAGON LIST GLOBAL — Design tokens, reset, typography,
   layout helpers, grid, buttons, utilities
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&display=swap');

/* ---------------------------------------------------------
   DESIGN TOKENS
   --------------------------------------------------------- */
:root {
  --navy:      #14213d;
  --navy-dark: #0b1628;
  --navy-mid:  #1e2f50;

  --gold:      #c9a84c;
  --gold-light:#e2c97e;
  --gold-dark: #a8883a;

  --cream:     #f8f5ef;
  --cream-dark:#ede9e1;

  --text:      #1a1a1a;
  --text-mid:  #4a4a4a;
  --text-light:#7a7a7a;
  --white:     #ffffff;

  --infrastructure: #2a6496;
  --policy:         #3a7a4f;
  --capital:        #8b6914;
  --federal:        #6b3a8b;

  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:  'Helvetica Neue', Helvetica, Arial, sans-serif;

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w: 1300px;
}

/* ---------------------------------------------------------
   RESET
   --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4, h5, h6, p, ul, ol, figure { margin: 0; padding: 0; }
ul, ol { list-style: none; }
html { scroll-behavior: smooth; }

/* ---------------------------------------------------------
   BASE TYPOGRAPHY
   --------------------------------------------------------- */
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
  color: var(--navy);
}
::selection { background: var(--gold); color: var(--navy); }

::-webkit-scrollbar       { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ---------------------------------------------------------
   LAYOUT
   --------------------------------------------------------- */
.page-container {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding: 0 60px;
}
.section-pad  { padding: 100px 60px; }
.hero-pad     { padding: 160px 60px 120px; }
main.has-nav-offset { padding-top: 72px; }

@media (max-width: 900px) {
  .page-container { padding: 0 24px; }
  .section-pad    { padding: 80px 24px; }
}

/* ---------------------------------------------------------
   SECTION LABELS & TITLES
   --------------------------------------------------------- */
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9a7a2a;
  margin-bottom: 16px;
  font-family: var(--font-sans);
}
.section-label--light { color: rgba(201,168,76,0.8); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 24px;
}
.section-title--light { color: var(--white); }
.section-title--lg    { font-size: clamp(36px, 4.4vw, 52px); }

.lead-text {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 720px;
}
.lead-text--light { color: rgba(255,255,255,0.78); }

/* ---------------------------------------------------------
   GOLD DIVIDERS
   --------------------------------------------------------- */
.gold-divider {
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  border: 0;
}
.gold-divider--mb-28  { margin-bottom: 28px; }
.gold-divider--mb-32  { margin-bottom: 32px; }
.gold-divider--mb-40  { margin-bottom: 40px; }
.gold-divider--center {
  max-width: 400px;
  margin: 0 auto 32px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

/* ---------------------------------------------------------
   GRID HELPERS
   --------------------------------------------------------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.grid-5 { display: grid; grid-template-columns: repeat(5,1fr); gap: 2px; }

@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; gap: 48px; }
  .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------
   BUTTONS
   --------------------------------------------------------- */
.btn-gold {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--gold); color: var(--navy);
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 600; letter-spacing: 0.16em;
  padding: 16px 36px; text-transform: uppercase; border: 0;
  transition: background var(--transition), transform var(--transition);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-outline-light {
  display: inline-flex; align-items: center; gap: 12px;
  background: transparent; border: 1px solid rgba(255,255,255,0.4); color: #fff;
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 500; letter-spacing: 0.16em;
  padding: 16px 36px; text-transform: uppercase;
  transition: color var(--transition), border-color var(--transition);
}
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline-navy {
  display: inline-flex; align-items: center; gap: 12px;
  background: none; border: 1px solid var(--navy); color: var(--navy);
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
  padding: 14px 36px; text-transform: uppercase;
  transition: background var(--transition), color var(--transition);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--gold); }

.btn-navy-gold {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--navy); color: var(--gold);
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 600; letter-spacing: 0.16em;
  padding: 16px 40px; text-transform: uppercase; border: 0;
  transition: background var(--transition), color var(--transition);
}
.btn-navy-gold:hover { background: var(--gold); color: var(--navy); }

.submit-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  background: var(--navy); color: var(--gold); width: 100%;
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 600; letter-spacing: 0.2em;
  padding: 18px 48px; border: none; text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.submit-btn:hover { background: var(--gold); color: var(--navy); }

/* ---------------------------------------------------------
   BACKGROUND HELPERS
   --------------------------------------------------------- */
.bg-cream      { background: var(--cream); }
.bg-cream2     { background: #f8f6f0; }
.bg-white      { background: #fff; }
.bg-navy       { background: var(--navy); color: rgba(255,255,255,0.85); }
.bg-navy-dark  { background: var(--navy-dark); color: rgba(255,255,255,0.85); }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4 { color: #fff; }

/* ---------------------------------------------------------
   UTILITY
   --------------------------------------------------------- */
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 40px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 40px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.flex { display: flex; flex-wrap: wrap; }
.text-mute { color: var(--text-mid); }
