:root {
  color-scheme: light;
  --navy: #071d2d;
  --ink: #102738;
  --red: #c2192b;
  --cream: #f4f0e8;
  --line: #d9d6ce;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  margin: 0;
  background: #fffdf9;
  color: var(--ink);
  font:
    17px/1.75 system-ui,
    -apple-system,
    sans-serif;
}
a {
  color: inherit;
  text-underline-offset: 5px;
}
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 5px;
}
.skip {
  position: absolute;
  top: -90px;
  left: 16px;
  padding: 12px;
  background: white;
  z-index: 5;
}
.skip:focus {
  top: 12px;
}
.site-header {
  padding: 24px max(24px, calc((100vw - 1180px) / 2));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  border-bottom: 1px solid var(--line);
}
.brand {
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
  line-height: 1.2;
}
.brand span {
  display: block;
  text-transform: uppercase;
  color: var(--red);
  font-size: 11px;
  letter-spacing: 0.2em;
  margin-top: 6px;
}
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
  font-weight: 700;
}
nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}
main {
  max-width: 1180px;
  margin: auto;
  padding: 0 24px;
}
.page-hero {
  padding: 78px 0 56px;
  border-bottom: 1px solid var(--line);
}
.eyebrow {
  color: var(--red);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}
h1 {
  max-width: 18ch;
  font-size: clamp(39px, 5.5vw, 70px);
  line-height: 1.07;
  letter-spacing: -0.055em;
  margin: 18px 0 28px;
}
.lead {
  max-width: 75ch;
  font-size: 20px;
  color: #536371;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  padding: 12px 22px;
  border: 1px solid var(--line);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  border-radius: 3px;
}
.primary {
  color: white;
  background: var(--red);
  border-color: var(--red);
}
.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 64px;
  padding: 54px 0;
  align-items: start;
}
article section {
  margin-bottom: 40px;
}
h2 {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}
article p,
details p {
  color: #536371;
}
aside {
  background: var(--cream);
  padding: 26px;
  border-top: 4px solid var(--red);
}
aside a {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 700;
}
.faq {
  border-top: 1px solid var(--line);
  padding: 36px 0;
}
details {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
summary {
  cursor: pointer;
  font-weight: 700;
  min-height: 44px;
}
.related {
  padding: 30px 0 65px;
}
.related > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.related a {
  display: flex;
  align-items: center;
  min-height: 60px;
  background: var(--cream);
  padding: 16px;
  font-size: 14px;
}
footer {
  padding: 45px max(24px, calc((100vw - 1132px) / 2));
  background: var(--navy);
  color: #d9e3e9;
  font-size: 14px;
}
footer b {
  color: white;
  font-size: 20px;
}
@media (max-width: 700px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  nav {
    gap: 20px;
  }
  .page-hero {
    padding-top: 38px;
  }
  .lead {
    font-size: 18px;
  }
  .content-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .related > div {
    grid-template-columns: 1fr;
  }
  .actions .button {
    width: 100%;
    justify-content: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
