:root {
  color-scheme: light;
  --ink: #14201d;
  --muted: #53615d;
  --paper: #f7f5ee;
  --surface: #ffffff;
  --line: #d7d9d2;
  --forest: #183f35;
  --gold: #c99832;
  --link: #1c5f85;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0;
}

a {
  color: var(--link);
  text-underline-offset: 3px;
}

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

.site-header {
  background: var(--forest);
  color: #ffffff;
  border-bottom: 4px solid var(--gold);
}

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

.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #ffffff;
  text-decoration: none;
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-name {
  font-size: 1.2rem;
  font-weight: 750;
}

.brand-tagline {
  color: #dbe6e1;
  font-size: 0.82rem;
}

nav {
  display: flex;
  gap: 18px;
}

nav a {
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 650;
  text-decoration: none;
}

nav a[aria-current="page"] {
  color: #f4cf7f;
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

main {
  padding: 48px 0 64px;
}

.eyebrow {
  margin: 0 0 5px;
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2 {
  line-height: 1.2;
  letter-spacing: 0;
}

h1 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 700;
}

h2 {
  margin: 38px 0 10px;
  font-size: 1.3rem;
}

.lede {
  max-width: 650px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 1.05rem;
}

.updated {
  display: inline-block;
  margin: 0 0 26px;
  padding: 5px 9px;
  background: #ece8dc;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.82rem;
}

.notice,
.contact-block {
  margin: 28px 0;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
}

ul {
  padding-left: 24px;
}

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

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0 38px;
}

.support-item {
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.support-item h2 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.support-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0 30px;
}

.footer-inner p {
  margin: 0;
}

@media (max-width: 620px) {
  .header-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-tagline {
    display: none;
  }

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

  main {
    padding-top: 36px;
  }
}
