:root {
  --navy: #0d2740;
  --orange: #f26a3d;
  --cream: #fffaf4;
  --white: #ffffff;
  --muted: #4a5a6a;
  --max-width: 720px;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--navy);
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
  line-height: 1.5;
}

a {
  color: var(--navy);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 10px 16px;
  z-index: 10;
}

.skip-link:focus {
  left: 8px;
  top: 8px;
}

header.site-header {
  background: var(--navy);
  color: var(--white);
  padding: 18px 20px;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
}

.brand img {
  width: 32px;
  height: 32px;
}

.brand span {
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.5px;
}

nav.site-nav ul {
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
}

nav.site-nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
}

nav.site-nav a:hover,
nav.site-nav a:focus-visible {
  text-decoration: underline;
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px 20px 60px;
}

.hero {
  text-align: center;
  padding: 24px 0 8px;
}

.hero img.logo {
  width: 88px;
  height: 88px;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -1px;
  margin: 0 0 8px;
}

.tagline {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 16px;
}

.description {
  font-size: 17px;
  color: var(--muted);
  max-width: 46em;
  margin: 0 auto 28px;
}

.badge {
  display: inline-block;
  background: var(--orange);
  color: var(--navy);
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 999px;
  margin-bottom: 28px;
}

.card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(13, 39, 64, 0.12);
  margin-bottom: 20px;
}

.card h2 {
  margin-top: 0;
}

.contact {
  font-size: 17px;
}

.contact a {
  font-weight: 700;
}

.links-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

article h1 {
  font-size: 30px;
  margin-bottom: 4px;
}

article h2 {
  font-size: 20px;
  margin-top: 28px;
}

article p,
article li {
  color: var(--muted);
  font-size: 16px;
}

footer.site-footer {
  text-align: center;
  padding: 24px 20px 40px;
  color: var(--muted);
  font-size: 14px;
}

footer.site-footer a {
  color: var(--navy);
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 32px;
  }

  .header-inner {
    justify-content: center;
    text-align: center;
  }
}
