:root {
  --ink: #18342e;
  --green: #0e3b33;
  --pine-soft: #16544a;
  --paper: #faf7f1;
  --cream: #f2ecdf;
  --coral: #c4552d;
  --brass: #c19a3d;
  --muted: #4a5a56;
  --line: #d8d0c2;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", "Avenir Next", Avenir, Arial, sans-serif;
  line-height: 1.65;
}

a {
  color: var(--pine-soft);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--coral);
}

a:focus-visible {
  border-radius: 3px;
  outline: 3px solid var(--brass);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: 6px;
  background: var(--white);
  padding: 10px 14px;
  color: var(--green);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(250, 247, 241, 0.96);
}

.header-inner {
  display: flex;
  max-width: 1120px;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  padding: 14px 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.7px;
  text-decoration: none;
}

.brand:hover {
  color: var(--green);
}

.brand-mark {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--green);
  color: var(--green);
  font-family: Georgia, serif;
  transform: rotate(45deg);
}

.brand-mark span {
  transform: rotate(-45deg);
}

.header-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.legal-nav {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.legal-nav ul {
  display: flex;
  max-width: 1120px;
  gap: 7px;
  margin: 0 auto;
  padding: 10px 24px;
  overflow-x: auto;
  list-style: none;
  scrollbar-width: thin;
}

.legal-nav a {
  display: block;
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.legal-nav a:hover {
  background: var(--cream);
  color: var(--green);
}

.legal-nav a[aria-current="page"] {
  background: var(--green);
  color: var(--white);
}

.page-shell {
  display: grid;
  max-width: 1120px;
  grid-template-columns: minmax(0, 760px) 260px;
  gap: 68px;
  margin: 0 auto;
  padding: 62px 24px 90px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: Newsreader, Georgia, "Times New Roman", serif;
}

h1 {
  max-width: 720px;
  margin: 0 0 18px;
  font-size: clamp(42px, 7vw, 68px);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.lede {
  max-width: 690px;
  margin: 0 0 25px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.status-note {
  margin: 0 0 40px;
  border-left: 4px solid var(--brass);
  background: #fffaf0;
  padding: 14px 16px;
  color: #4f4b3c;
  font-size: 14px;
}

.legal-copy section {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.legal-copy h2 {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 28px;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.legal-copy h3 {
  margin: 24px 0 8px;
  color: var(--green);
  font-size: 16px;
}

.legal-copy p,
.legal-copy ul,
.legal-copy ol {
  margin-top: 0;
}

.legal-copy ul,
.legal-copy ol {
  padding-left: 22px;
}

.legal-copy li {
  margin-bottom: 8px;
}

.plain-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 40px;
}

.plain-summary article {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  padding: 18px;
}

.plain-summary strong {
  display: block;
  margin-bottom: 5px;
  color: var(--green);
}

.plain-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.confirmation-needed {
  margin: 16px 0;
  border: 1px solid #e3c5bb;
  border-radius: 8px;
  background: #fff5f0;
  padding: 14px 16px;
  color: #67382c;
  font-size: 14px;
}

.confirmation-needed strong {
  display: block;
  margin-bottom: 3px;
  color: #7d3f2d;
}

.contact-card {
  border: 1px solid #c9d6cf;
  border-radius: 10px;
  background: #f4f8f5;
  padding: 18px;
}

.contact-card p:last-child {
  margin-bottom: 0;
}

.page-aside {
  align-self: start;
  position: sticky;
  top: 24px;
}

.aside-card {
  border-top: 3px solid var(--brass);
  background: var(--green);
  padding: 22px;
  color: #e6efeb;
}

.aside-card h2 {
  margin: 0 0 12px;
  color: var(--white);
  font: 700 21px/1.1 Newsreader, Georgia, serif;
}

.aside-card p {
  margin: 0 0 14px;
  font-size: 13px;
}

.aside-card a {
  color: #f2d99c;
  font-size: 13px;
  font-weight: 800;
}

.metadata {
  margin: 18px 0 0;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 16px;
}

.metadata dt {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metadata dd {
  margin: 2px 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.metadata dd:last-child {
  margin-bottom: 0;
}

.site-footer {
  background: #082f28;
  color: #c5d7d1;
}

.footer-inner {
  display: grid;
  max-width: 1120px;
  grid-template-columns: 1fr auto;
  gap: 24px;
  margin: 0 auto;
  padding: 34px 24px;
}

.site-footer p {
  max-width: 720px;
  margin: 0;
  font-size: 12px;
}

.site-footer a {
  align-self: start;
  color: #f2d99c;
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 820px) {
  .page-shell {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .page-aside {
    position: static;
  }
}

@media (max-width: 560px) {
  .header-inner {
    min-height: 66px;
  }

  .header-label {
    display: none;
  }

  .page-shell {
    padding-top: 44px;
  }

  .plain-summary {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 44px;
  }
}

@media print {
  .skip-link,
  .legal-nav,
  .page-aside {
    display: none;
  }

  .page-shell {
    display: block;
    padding: 0;
  }

  .site-header,
  .site-footer {
    background: transparent;
    color: var(--ink);
  }
}
