:root {
  --ink: #171717;
  --muted: #626a73;
  --paper: #fbfaf6;
  --surface: #ffffff;
  --line: #dfd8cb;
  --green: #14614f;
  --green-deep: #0a3d34;
  --blue: #2e5e8c;
  --coral: #c85f4e;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: var(--green);
  font-weight: 780;
  text-decoration: none;
}

.nav {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 18px clamp(18px, 5vw, 72px);
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.brand {
  color: var(--ink);
  font-weight: 900;
}

.nav a:not(.brand) {
  color: var(--green-deep);
}

.hero {
  padding: 72px clamp(18px, 5vw, 72px) 36px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(10, 61, 52, .96), rgba(46, 94, 140, .92)),
    var(--green-deep);
}

.hero-inner,
.content {
  width: min(920px, 100%);
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 7px 10px;
  color: var(--green-deep);
  background: #fff;
  border-radius: var(--radius);
  font-size: .8rem;
  font-weight: 850;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 14px;
  font-size: 3.4rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 1.1rem;
}

.content {
  padding: 44px 18px 72px;
}

.notice,
section {
  margin-bottom: 22px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.notice {
  border-color: rgba(200, 95, 78, .28);
  background: #fff8f6;
}

h2 {
  margin: 0 0 12px;
  font-size: 1.55rem;
  line-height: 1.16;
}

p,
li {
  color: var(--muted);
}

ul,
ol {
  margin-bottom: 0;
  padding-left: 22px;
}

.meta {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .95rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 72px) 38px;
  color: #69717a;
  border-top: 1px solid var(--line);
}

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

  h1 {
    font-size: 2.55rem;
  }
}
