/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--color-ink);
  background: var(--color-dark-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }

/* Sticky site header — keeps nav + mobile menu anchored together */
body > header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-dark-bg);
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
}
h1 {
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: -0.5px;
}
h2 {
  font-size: 36px;
  line-height: 1.1;
}
h3 {
  font-size: 22px;
  line-height: 1.2;
}

@media (min-width: 768px) {
  h1 { font-size: 64px; letter-spacing: -1px; }
  h2 { font-size: 44px; }
}

/* Italic accent in headings */
h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--color-brand-blue);
}

/* Section label */
.label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--color-brand-blue-bright);
  display: block;
  margin-bottom: var(--space-3);
}

/* Lead text */
.lead {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-text-muted);
}

@media (min-width: 768px) {
  .lead { font-size: 17px; }
}

/* Utility */
.text-center { text-align: center; }
.text-muted   { color: var(--color-text-muted); }
.text-light   { color: var(--color-text-light); }
.text-faint   { color: var(--color-text-faint); }

.section {
  padding: var(--section-pad-v) var(--section-pad-h);
}
.section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.section__inner--hero {
  max-width: var(--max-width-hero);
  margin: 0 auto;
}

hr.divider {
  border: none;
  border-top: 0.5px solid var(--color-border);
  margin: 0;
}

/* Dark section base */
.section--dark {
  background: var(--color-dark-bg);
  color: var(--color-dark-text);
}
.section--dark .lead {
  color: var(--color-dark-text-sub);
}
.section--dark .label {
  color: var(--color-blue-light);
}
