:root {
  color-scheme: light;
  --ink: #17231f;
  --ink-soft: #46564f;
  --paper: #f7f4ea;
  --paper-deep: #eee8d8;
  --fern: #285c48;
  --fern-dark: #173d31;
  --moss: #7e9a68;
  --water: #26768a;
  --sun: #dba24a;
  --line: rgba(23, 61, 49, 0.19);
  --white: #fffdf7;
  --shadow: 0 22px 60px rgba(28, 45, 37, 0.12);
  --radius-lg: 1.75rem;
  --radius-md: 1rem;
  --max: 74rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 18rem;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% -8%, rgba(219, 162, 74, 0.2), transparent 32rem),
    radial-gradient(circle at 95% 14%, rgba(38, 118, 138, 0.14), transparent 30rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.05rem;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--fern-dark);
  text-decoration-thickness: 0.09em;
  text-underline-offset: 0.2em;
}

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

a:focus-visible,
button:focus-visible {
  outline: 0.2rem solid var(--sun);
  outline-offset: 0.25rem;
  border-radius: 0.2rem;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--fern-dark);
  transform: translateY(-180%);
}

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

.site-header {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 244, 234, 0.9);
  backdrop-filter: blur(12px);
}

.header-inner,
.page-shell,
.footer-inner {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.header-inner {
  display: flex;
  min-height: 5.2rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  font-weight: 760;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  width: 2.25rem;
  height: 2.25rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  background: var(--fern-dark);
  box-shadow: 0 0 0 0.3rem rgba(40, 92, 72, 0.1);
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  width: 0.72rem;
  height: 0.72rem;
  border: 1px solid var(--sun);
  border-radius: 50%;
  content: "";
}

.brand-mark::after {
  width: 1.35rem;
  height: 1.35rem;
  border-color: rgba(255, 255, 255, 0.78);
}

.site-nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  list-style: none;
}

.site-nav a {
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 680;
  text-decoration: none;
}

.site-nav a[aria-current="page"] {
  color: var(--fern-dark);
  text-decoration: underline;
  text-decoration-color: var(--sun);
  text-decoration-thickness: 0.18rem;
  text-underline-offset: 0.45rem;
}

.page-shell {
  padding-block: clamp(3.5rem, 8vw, 7rem) 5rem;
}

.hero {
  position: relative;
  display: grid;
  min-height: 31rem;
  padding: clamp(2rem, 6vw, 5.5rem);
  align-content: center;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    linear-gradient(125deg, rgba(23, 61, 49, 0.98), rgba(31, 81, 68, 0.94) 53%, rgba(27, 91, 103, 0.91));
  box-shadow: var(--shadow);
}

.hero::before,
.hero::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.hero::before {
  right: -9rem;
  bottom: -14rem;
  width: 34rem;
  height: 34rem;
  box-shadow:
    0 0 0 3rem rgba(255, 255, 255, 0.025),
    0 0 0 7rem rgba(255, 255, 255, 0.018);
}

.hero::after {
  top: -6rem;
  right: 21%;
  width: 13rem;
  height: 13rem;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 50rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--sun);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.12;
  text-wrap: balance;
}

h1 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(2.7rem, 7vw, 5.8rem);
  font-weight: 540;
  letter-spacing: -0.055em;
}

.hero .lede {
  max-width: 44rem;
  margin: 1.5rem 0 0;
  color: rgba(255, 253, 247, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.status-pill {
  display: inline-flex;
  margin-top: 1.75rem;
  padding: 0.55rem 0.9rem;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--white);
  background: rgba(9, 34, 27, 0.38);
  font-size: 0.88rem;
  font-weight: 720;
}

.status-pill::before {
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 0 0 0.24rem rgba(219, 162, 74, 0.18);
  content: "";
}

.section {
  padding-block: clamp(3rem, 7vw, 5.5rem);
}

.section + .section {
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  margin-bottom: 2rem;
  gap: 0.65rem;
}

.section-heading h2,
.prose h2 {
  margin: 0;
  color: var(--fern-dark);
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 540;
  letter-spacing: -0.035em;
}

.section-heading p {
  max-width: 48rem;
  margin: 0;
  color: var(--ink-soft);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card {
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 247, 0.72);
}

.card-number {
  display: block;
  margin-bottom: 1.6rem;
  color: var(--water);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-style: italic;
}

.card h3 {
  margin: 0 0 0.7rem;
  color: var(--fern-dark);
  font-size: 1.35rem;
  font-weight: 600;
}

.card p {
  margin: 0;
  color: var(--ink-soft);
}

.fact-panel {
  display: grid;
  padding: clamp(1.5rem, 4vw, 2.8rem);
  grid-template-columns: minmax(0, 1.1fr) minmax(15rem, 0.9fr);
  gap: clamp(2rem, 5vw, 5rem);
  border: 1px solid rgba(38, 118, 138, 0.23);
  border-radius: var(--radius-lg);
  background: rgba(224, 239, 237, 0.55);
}

.fact-panel h2 {
  margin: 0 0 1rem;
  color: var(--fern-dark);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.fact-panel p {
  margin: 0;
  color: var(--ink-soft);
}

.plain-list,
.prose ul {
  margin: 0;
  padding-left: 1.2rem;
}

.plain-list li + li,
.prose li + li {
  margin-top: 0.55rem;
}

.notice {
  padding: 1.25rem 1.4rem;
  border-left: 0.3rem solid var(--sun);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: rgba(255, 253, 247, 0.76);
}

.notice strong {
  color: var(--fern-dark);
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button-link {
  display: inline-flex;
  min-height: 3rem;
  padding: 0.7rem 1rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--fern);
  border-radius: 999px;
  color: var(--white);
  background: var(--fern);
  font-size: 0.93rem;
  font-weight: 740;
  text-decoration: none;
}

.button-link.secondary {
  color: var(--fern-dark);
  background: transparent;
}

.page-title {
  max-width: 52rem;
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
  border-bottom: 1px solid var(--line);
}

.page-title h1 {
  max-width: none;
  color: var(--fern-dark);
  font-size: clamp(2.7rem, 6vw, 5rem);
}

.page-title .lede {
  max-width: 46rem;
  margin: 1.25rem 0 0;
  color: var(--ink-soft);
  font-size: 1.18rem;
}

.prose {
  max-width: 51rem;
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
}

.prose section + section {
  margin-top: 3.5rem;
}

.prose h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
}

.prose h3 {
  margin: 1.8rem 0 0.6rem;
  color: var(--fern-dark);
  font-size: 1.28rem;
}

.prose p {
  margin: 0 0 1rem;
}

.prose .notice {
  margin-block: 1.5rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  background: var(--paper-deep);
}

.footer-inner {
  display: grid;
  padding-block: 2.5rem;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 1.5rem;
}

.footer-inner p {
  max-width: 45rem;
  margin: 0;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
  font-size: 0.9rem;
  font-weight: 650;
}

@media (max-width: 52rem) {
  .header-inner {
    padding-block: 1rem;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav ul {
    flex-wrap: wrap;
  }

  .card-grid,
  .fact-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 27rem;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 31rem) {
  body {
    font-size: 1rem;
  }

  .header-inner,
  .page-shell,
  .footer-inner {
    width: min(calc(100% - 1.25rem), var(--max));
  }

  .brand {
    align-items: flex-start;
    line-height: 1.25;
  }

  .site-nav ul {
    gap: 0.7rem 1rem;
  }

  .hero {
    padding: 1.5rem;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.5rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  body {
    background: #fff;
  }

  .site-header,
  .site-footer,
  .skip-link {
    display: none;
  }

  .page-shell {
    width: 100%;
    padding: 0;
  }

  a {
    color: inherit;
  }
}
