:root {
  color-scheme: light;
  --navy: #071b3a;
  --ink: #10233f;
  --porcelain: #f7f4ee;
  --pearl: #e8ddc6;
  --bronze: #b7791f;
  --jade: #0f766e;
  --mist: #d8e0ea;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--porcelain);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

body {
  margin: 0;
}

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

.site-header {
  border-bottom: 1px solid var(--mist);
  background: var(--white);
}

.site-header-inner,
.page,
.site-footer-inner {
  width: min(100% - 40px, 760px);
  margin: 0 auto;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 750;
  text-decoration: none;
}

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

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  font-size: 14px;
}

.page {
  padding: 56px 0 72px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--jade);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  color: var(--navy);
}

h1 {
  max-width: 680px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 8vw, 54px);
  font-weight: 500;
  line-height: 1.08;
}

h2 {
  margin: 40px 0 10px;
  font-size: 22px;
  line-height: 1.3;
}

p,
li {
  font-size: 16px;
}

.lede {
  max-width: 650px;
  margin: 18px 0 0;
  color: #42546d;
  font-size: 19px;
}

.effective-date {
  margin-top: 20px;
  color: #64748b;
  font-size: 14px;
}

.notice {
  margin: 32px 0;
  border-left: 3px solid var(--bronze);
  padding: 4px 0 4px 18px;
}

ul {
  padding-left: 22px;
}

li + li {
  margin-top: 8px;
}

form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid #aab7c8;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 12px 14px;
}

textarea {
  min-height: 160px;
  resize: vertical;
}

button {
  width: fit-content;
  min-height: 48px;
  border: 0;
  border-radius: 6px;
  background: var(--navy);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 750;
  padding: 12px 20px;
}

.site-footer {
  border-top: 1px solid var(--mist);
  background: var(--white);
}

.site-footer-inner {
  padding: 24px 0 36px;
  color: #64748b;
  font-size: 14px;
}

@media (max-width: 620px) {
  .site-header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .page {
    padding-top: 40px;
  }
}
