@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Source+Serif+4:ital,opsz,wght@0,8..60,400;0,8..60,500;0,8..60,600;1,8..60,400&family=Instrument+Sans:wght@400;500;600&display=swap');

:root {
  --forest: #003321;
  --forest-dark: #001a10;
  --antique: #C8A96E;
  --antique-light: #DBC393;
  --ink: #1A1C18;
  --graphite: #35382F;
  --stone: #747570;
  --ash: #8C8D88;
  --linen: #E8E4DC;
  --paper: #FAF5EA;
  --parchment: #EFE9D8;
  --white: #FFFFFF;
  --display: 'EB Garamond', Georgia, serif;
  --serif: 'Source Serif 4', Georgia, serif;
  --sans: 'Instrument Sans', system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--graphite);
  font-family: var(--serif);
  line-height: 1.66;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration-color: rgba(200, 169, 110, 0.7);
  text-underline-offset: 0.18em;
}

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

.page {
  min-height: 100vh;
  background:
    linear-gradient(rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0)),
    var(--paper);
}

.topbar {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0 0;
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  color: var(--stone);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.topbar a {
  text-decoration: none;
}

.topbar a[aria-current="page"] {
  color: var(--forest);
}

.content {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 76px 0 92px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #8E7748;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 24px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(40px, 8vw, 68px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0;
}

.intro {
  max-width: 680px;
  margin: 0 0 54px;
  color: var(--graphite);
  font-size: 18px;
  line-height: 1.62;
}

.updated {
  margin: 0 0 42px;
  color: var(--stone);
  font-family: var(--sans);
  font-size: 13px;
}

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

.legal-section h2 {
  margin: 0 0 14px;
  color: var(--forest);
  font-family: var(--display);
  font-size: clamp(25px, 5vw, 34px);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: 0;
}

.legal-section p,
.legal-section li {
  color: var(--graphite);
  font-size: 16px;
}

.legal-section p {
  margin: 0 0 16px;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

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

strong {
  color: var(--ink);
  font-weight: 600;
}

.note {
  margin-top: 22px;
  padding: 18px 20px;
  background: rgba(239, 233, 216, 0.72);
  border: 1px solid rgba(212, 207, 189, 0.72);
  color: var(--graphite);
}

.site-footer {
  background: var(--forest);
  color: var(--white);
}

.footer-inner {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0 44px;
}

.footer-wordmark {
  display: block;
  width: min(220px, 64vw);
  height: auto;
  margin: 0 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
}

.footer-links,
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  font-family: var(--sans);
  font-size: 13px;
}

.footer-links {
  margin-bottom: 18px;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--antique-light);
}

.footer-meta {
  color: rgba(255, 255, 255, 0.68);
}

.footer-contact {
  color: var(--antique-light);
  font-family: var(--sans);
  font-size: 13px;
  text-align: right;
  text-decoration: none;
}

@media (max-width: 640px) {
  .topbar {
    justify-content: flex-start;
    padding-top: 24px;
    gap: 14px;
    font-size: 11px;
  }

  .content {
    padding: 58px 0 72px;
  }

  .intro {
    font-size: 16px;
    margin-bottom: 42px;
  }

  .legal-section {
    padding: 26px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-contact {
    text-align: left;
  }
}
