/* ── RESET ─────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "Poppins", sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* ── LAYOUT ────────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container-wide {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section {
  padding: 96px 0;
}
.section--light {
  background: var(--light);
}
.section--navy {
  background: var(--navy);
  color: var(--white);
}
.section--navy-dark {
  background: var(--navy-dark);
  color: var(--white);
}

/* ── TYPOGRAPHY ────────────────────────────────────────────── */
.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 0.75rem;
}
.section--navy .eyebrow,
.section--navy-dark .eyebrow {
  color: rgba(255, 255, 255, 0.55);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
.section--navy h1,
.section--navy h2,
.section--navy h3,
.section--navy-dark h1,
.section--navy-dark h2,
.section--navy-dark h3 {
  color: var(--white);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
}
h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}
h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}
h4 {
  font-size: 1.1rem;
}

.lead {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--mid);
  max-width: 640px;
  line-height: 1.75;
}
.section--navy .lead,
.section--navy-dark .lead {
  color: rgba(255, 255, 255, 0.7);
}

/* .section-header: used sitewide as an eyebrow/h2/lead intro wrapper.
   Base class also had zero matching CSS — most usages already carry
   their own inline margin-bottom, which safely overrides this default
   (same property, not additive like a gap would be).
   --center: used on 15+ pages but had no matching CSS at all until now —
   every "centered" section header was silently rendering left-aligned. */
.section-header {
  margin-bottom: 2rem;
}
.section-header--center {
  text-align: center;
}
.section-header--center .lead {
  margin-left: auto;
  margin-right: auto;
}

