:root {
  --ink: #08263b;
  --ink-strong: #08263b;
  --muted: #5e6f7f;
  --accent: #bf8b34;
  --paper: #ffffff;
  --soft: #f4f7fa;
  --line: #d9e2ea;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: var(--soft);
  color: var(--ink);
}

a {
  color: var(--ink);
  font-weight: 800;
}

.top-strip {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 24px;
  background: #08263b;
  color: #fff;
  font-size: 14px;
}

.top-strip a {
  color: #fff;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 950;
  line-height: 1;
}

.brand small {
  color: var(--accent);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.main-nav a {
  text-decoration: none;
}

.eyebrow {
  color: var(--accent);
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.05;
}

.site-footer {
  padding: 32px 24px;
  background: #08263b;
  color: #fff;
  text-align: center;
}

.footer-bottom {
  margin: 0;
}

@media (max-width: 760px) {
  .site-header,
  .top-strip {
    align-items: flex-start;
    flex-direction: column;
  }
}
