:root {
  --blue: #2956a0;
  --blue-dark: #1f427c;
  --blue-soft: #dce8f0;
  --green: #71a832;
  --green-dark: #4f7f1d;
  --gold: #c7a843;
  --gold-soft: #f4ecd0;
  --paper: #fff;
  --wash: #e1eaed;
  --ink: #394247;
  --muted: #78848b;
  --line: #c9ced1;
  --shadow: 0 24px 60px rgba(41, 86, 160, 0.13);
  --serif: "Times New Roman", Times, serif;
  --sans: "Open Sans", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: var(--wash);
  color: var(--muted);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  opacity: 0.78;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(113, 168, 50, 0.35);
  outline-offset: 4px;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  min-height: 100svh;
}

.container {
  margin: 0 auto;
  max-width: 1160px;
  padding: 0 22px;
  width: 100%;
}

.site-header {
  background: var(--paper);
  border-bottom: 1px solid rgba(201, 206, 209, 0.65);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

.site-header__inner {
  align-items: center;
  display: flex;
  gap: 28px;
  min-height: 118px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  height: auto;
  width: clamp(166px, 18vw, 208px);
}

.hero {
  background:
    linear-gradient(90deg, rgba(225, 234, 237, 0.98) 0%, rgba(225, 234, 237, 0.82) 42%, rgba(225, 234, 237, 0.26) 100%),
    url("landing-bg.jpg") center right / cover no-repeat;
  min-height: calc(100svh - 118px);
  overflow: hidden;
  padding: clamp(48px, 7vw, 92px) 0 46px;
}

.hero__grid {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 58px);
  grid-template-columns: minmax(0, 1fr);
}

.eyebrow {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.15;
  margin: 0 0 12px;
}

h1,
h2,
h3 {
  color: var(--blue);
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.08;
  margin: 0;
}

.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  max-width: 780px;
}

.hero__lead {
  color: var(--ink);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.65;
  margin: 22px 0 0;
  max-width: 650px;
}

.hero__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 13px 18px;
  margin-top: 32px;
}

.button {
  align-items: center;
  border-radius: 5px;
  display: inline-flex;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  justify-content: center;
  line-height: 1.15;
  min-height: 50px;
  padding: 15px 22px;
  text-align: center;
  transition: transform 180ms ease, opacity 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(1px);
}

.button--primary {
  background: var(--blue);
  box-shadow: 0 14px 28px rgba(41, 86, 160, 0.22);
  color: #fff;
}

.button--secondary {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(41, 86, 160, 0.22);
  color: var(--blue);
}

.document-hero {
  background:
    linear-gradient(90deg, rgba(225, 234, 237, 0.98), rgba(225, 234, 237, 0.66)),
    url("landing-bg.jpg") center right / cover no-repeat;
  padding: 62px 0 58px;
}

.breadcrumbs {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 12px;
}

.document-hero h1 {
  font-size: clamp(34px, 5vw, 54px);
}

.document-body {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 42px 0 62px;
}

.document-card {
  background: var(--paper);
  box-shadow: var(--shadow);
  margin: -68px auto 0;
  max-width: 920px;
  padding: clamp(26px, 4vw, 44px);
}

.document-card h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  margin-bottom: 16px;
}

.document-card h3 {
  color: var(--ink);
  font-size: 23px;
  margin: 24px 0 10px;
}

.document-card p {
  margin: 0 0 14px;
}

.document-card ul:not(.document-list) {
  margin: 0 0 18px 22px;
  padding: 0;
}

.document-card li + li {
  margin-top: 7px;
}

.document-list {
  margin: 18px 0 0;
  padding: 0;
}

.document-list li {
  border-top: 1px solid var(--line);
  display: flex;
  gap: 10px;
  justify-content: space-between;
  padding: 12px 0;
}

.document-list strong {
  color: var(--ink);
}

.site-footer {
  background: #f3f2ef;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--serif);
  padding: 26px 0;
}

.site-footer__inner {
  display: grid;
  gap: 16px 28px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 8px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .site-header__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    min-height: 0;
    padding: 20px 22px;
  }

  .hero {
    min-height: 0;
  }

  .hero__grid,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .container {
    padding: 0 16px;
  }

  .site-header__inner {
    padding: 18px 16px;
  }

  .brand img {
    width: 178px;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(225, 234, 237, 0.98), rgba(225, 234, 237, 0.86)),
      url("landing-bg.jpg") 62% center / cover no-repeat;
    padding: 34px 0 36px;
  }

  .hero h1 {
    font-size: clamp(34px, 11vw, 44px);
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .document-card {
    margin-top: -38px;
  }

  .document-list li {
    display: block;
  }

}
