@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-Regular.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-ExtraBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  color-scheme: light;
  --navy: #0f1f2e;
  --blue: #1b3a52;
  --ice: #eef6fa;
  --gold: #d4a84b;
  --ink: #192c3b;
  --muted: #526775;
  font-family: Inter, Arial, sans-serif;
  background: var(--ice);
}

* { box-sizing: border-box; }
html { min-width: 320px; }
body { margin: 0; color: var(--ink); background: var(--ice); line-height: 1.65; }
a { color: var(--blue); text-underline-offset: .15em; }
a:hover { color: var(--navy); }

.site-header { background: var(--navy); padding: 1.25rem clamp(1.25rem, 5vw, 4.5rem); }
.site-header__content, .legal-page { width: min(100%, 52rem); margin-inline: auto; }
.site-header__content { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.logo { display: inline-flex; line-height: 0; }
.logo img { width: min(11.5rem, 48vw); height: auto; }
.home-link { color: var(--ice); font-size: .9rem; }

.legal-page { padding: clamp(2.5rem, 7vw, 5rem) 1.25rem 4rem; }
.eyebrow { margin: 0 0 .75rem; color: var(--blue); font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
h1, h2 { color: var(--navy); line-height: 1.15; }
h1 { margin: 0; font-size: clamp(2rem, 5vw, 3.25rem); letter-spacing: -.04em; }
h2 { margin: 2.75rem 0 .75rem; font-size: clamp(1.3rem, 3vw, 1.7rem); }
p, li { font-size: 1rem; }
p { margin: .75rem 0; }
ul { padding-left: 1.25rem; }
li + li { margin-top: .35rem; }
.meta { margin-top: 1rem; color: var(--muted); font-size: .94rem; }
.contact-card { margin-top: 1rem; padding: 1.2rem; border: 1px solid #c9d9e1; background: #fff; }
.contact-card p { margin: 0; }
.contact-card p + p { margin-top: .75rem; }
.site-footer { padding: 1.5rem; color: var(--muted); font-size: .88rem; text-align: center; }

@media (max-width: 430px) {
  .site-header__content { align-items: flex-start; flex-direction: column; gap: .75rem; }
}

@media print {
  :root, body { color: #000; background: #fff; }
  .site-header, .site-footer { display: none; }
  .legal-page { width: 100%; padding: 0; }
  h1, h2, a, .eyebrow, .meta { color: #000; }
  h2 { break-after: avoid; }
  .contact-card { background: transparent; }
}
