:root {
  color-scheme: light;
  --navy: #111a2c;
  --navy-raised: #1b2944;
  --paper: #f3ecd9;
  --paper-light: #fbf7ea;
  --ink: #24211c;
  --muted: #6e6a5c;
  --gold: #c9a24b;
  --clay: #d8642a;
  --line: #d4c7a7;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  background: var(--paper);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-underline-offset: 4px;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.06;
}

.site-header {
  color: var(--paper);
  background: var(--navy);
  border-bottom: 1px solid rgba(201, 162, 75, 0.36);
}

.nav-shell {
  width: min(calc(100% - 40px), var(--max-width));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
}

.brand-link img {
  width: 184px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  color: rgba(243, 236, 217, 0.76);
  text-decoration: none;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: var(--gold);
}

.home-hero {
  min-height: 66vh;
  display: flex;
  align-items: center;
  color: var(--paper);
  background: var(--navy);
}

.hero-shell {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  padding: 66px 0 82px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: center;
  gap: 76px;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.home-hero h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: 72px;
}

.hero-copy {
  max-width: 720px;
  margin-bottom: 30px;
  color: rgba(243, 236, 217, 0.72);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.button-primary {
  color: var(--navy);
  background: var(--gold);
}

.button-secondary {
  color: var(--paper);
  background: transparent;
}

.hero-mark {
  width: 280px;
  aspect-ratio: 1;
  justify-self: end;
  border: 1px solid rgba(201, 162, 75, 0.45);
  border-radius: 8px;
  overflow: hidden;
}

.hero-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.principles-band {
  background: var(--paper-light);
  border-bottom: 1px solid var(--line);
}

.principles-grid {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.principle {
  min-height: 180px;
  padding: 34px 30px;
  border-right: 1px solid var(--line);
}

.principle:first-child {
  border-left: 1px solid var(--line);
}

.principle h2 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 25px;
}

.principle p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.contact-band {
  padding: 72px 0;
  color: var(--paper);
  background: var(--clay);
}

.contact-shell {
  width: min(calc(100% - 40px), 760px);
  margin: 0 auto;
}

.contact-shell h2 {
  margin-bottom: 14px;
  font-size: 42px;
}

.contact-shell p {
  max-width: 660px;
  margin-bottom: 0;
}

.document-hero {
  padding: 66px 0 52px;
  color: var(--paper);
  background: var(--navy);
}

.document-hero-inner,
.document-shell {
  width: min(calc(100% - 40px), 820px);
  margin: 0 auto;
}

.document-hero h1 {
  margin-bottom: 12px;
  font-size: 54px;
}

.document-hero p {
  margin-bottom: 0;
  color: rgba(243, 236, 217, 0.68);
  font-size: 13px;
}

.document-shell {
  padding: 56px 0 88px;
}

.document-shell section {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.document-shell section:first-child {
  padding-top: 0;
}

.document-shell h2 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 29px;
}

.document-shell h3 {
  margin: 24px 0 8px;
  color: var(--navy);
  font-size: 20px;
}

.document-shell p,
.document-shell li {
  color: #4f4b41;
}

.document-shell ul,
.document-shell ol {
  padding-left: 22px;
}

.document-shell li + li {
  margin-top: 8px;
}

.contact-address {
  margin: 22px 0;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-style: normal;
}

.contact-address a {
  color: var(--clay);
  font-size: 18px;
  font-weight: 800;
}

.support-topics {
  margin-top: 18px;
  border-top: 1px solid var(--line);
}

.support-topic {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.support-topic h2 {
  margin-bottom: 8px;
  font-size: 24px;
}

.support-topic p {
  margin-bottom: 0;
}

.site-footer {
  padding: 30px 0;
  color: rgba(243, 236, 217, 0.62);
  background: var(--navy);
}

.footer-shell {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 11px;
}

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

.footer-links a {
  color: inherit;
}

@media (max-width: 780px) {
  .nav-shell {
    min-height: 68px;
  }

  .brand-link img {
    width: 150px;
  }

  .site-nav {
    gap: 12px;
    font-size: 10px;
  }

  .site-nav .nav-optional {
    display: none;
  }

  .hero-shell {
    padding: 46px 0 58px;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .home-hero h1 {
    font-size: 48px;
  }

  .hero-mark {
    width: min(64vw, 260px);
    justify-self: start;
  }

  .principles-grid {
    grid-template-columns: 1fr;
  }

  .principle,
  .principle:first-child {
    min-height: auto;
    padding: 28px 20px;
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .document-hero h1 {
    font-size: 42px;
  }

  .footer-shell {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .nav-shell,
  .hero-shell,
  .principles-grid,
  .document-hero-inner,
  .document-shell,
  .footer-shell {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .home-hero h1 {
    font-size: 42px;
  }

  .nav-shell {
    gap: 12px;
  }

  .brand-link img {
    width: 132px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }
}
