:root {
  --green: #174f2a;
  --green-dark: #103a1f;
  --green-deep: #0d371d;
  --green-soft: #e6efe8;
  --ink: #2f312d;
  --muted: #76766e;
  --paper: #edf5ef;
  --panel: #f4f1eb;
  --line: #ddd8cf;
  --claim: #f2ded2;
  --claim-border: #c36a2d;
  --amber: #db9700;
  --red: #bb211c;
  --white: #ffffff;
  --font-serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --wrap: 1080px;
  --narrow: 900px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1,
h2,
h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(3rem, 9vw, 6.1rem); color: var(--white); }
h2 { font-size: clamp(2.25rem, 5vw, 4.1rem); color: var(--ink); }
h3 { font-size: clamp(1.55rem, 3vw, 2.35rem); color: var(--ink); }

.page-title-green {
  color: var(--green);
}

p { margin: 0 0 1rem; }
hr { border: 0; border-top: 1px solid var(--line); margin: 1.6rem 0 2rem; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 2rem;
}

.narrow { max-width: var(--narrow); }

.skip-link {
  position: absolute;
  top: 0;
  left: -999px;
  background: var(--green);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 100;
}

.skip-link:focus { left: 1rem; top: 1rem; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--green);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.14);
}

.topbar-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  text-decoration: none;
}

.mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 3px;
}

.mark svg { width: 23px; height: 23px; }
.wordmark strong { display: block; font-size: 0.95rem; line-height: 1.1; }
.wordmark small { display: block; color: rgba(255,255,255,0.72); font-size: 0.72rem; letter-spacing: 0.09em; text-transform: uppercase; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.68rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.36);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 1px 0 rgba(255,255,255,0.12) inset;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--white);
  background: var(--amber);
  border-color: var(--amber);
  text-decoration: none;
}

.alert-bar {
  background: var(--red);
  color: var(--white);
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 0.85rem 1rem;
  border-top: 3px solid #d1463d;
  border-bottom: 3px solid #8d1815;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  background: transparent;
  border-radius: 3px;
  padding: 0.45rem 0.7rem;
  font: inherit;
}

.cover {
  padding: 0;
  background:
    linear-gradient(90deg, rgba(13,55,29,0.96), rgba(13,55,29,0.74)),
    radial-gradient(circle at 18% 20%, rgba(255,255,255,0.16), transparent 23%),
    linear-gradient(135deg, rgba(255,255,255,0.08) 0 12%, transparent 12% 24%, rgba(255,255,255,0.05) 24% 35%, transparent 35%),
    var(--green-deep);
  color: var(--white);
}

.cover-panel {
  background: transparent;
  color: var(--white);
  min-height: 0;
  padding: clamp(3rem, 5vw, 4.75rem) 0 0.75rem;
  max-width: 920px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.kicker,
.section-label,
.chapter,
.response-label {
  font-size: 0.79rem;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--green);
}

.cover .kicker { color: rgba(255,255,255,0.75); margin-bottom: 1.6rem; }

.cover h1 {
  font-size: clamp(3rem, 7vw, 5.35rem);
  line-height: 1.02;
}

.subtitle {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.7rem);
  color: rgba(255,255,255,0.62);
  line-height: 1.1;
}

.cover-copy {
  color: rgba(255,255,255,0.93);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  max-width: 850px;
  margin-top: 1.2rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}

.hero-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
  max-width: 1120px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0.95rem 1rem;
  border-radius: 7px;
  font-weight: 800;
  font-size: 0.94rem;
  text-decoration: none;
  box-shadow: 0 5px 16px rgba(0,0,0,0.18);
  transition: transform 0.15s ease, background 0.15s ease;
  text-align: center;
}

.hero-actions .button {
  flex: 1 1 0;
}

.cover .hero-actions .button {
  font-size: clamp(1.04rem, 1.2vw, 1.18rem);
  line-height: 1.2;
}

.button.primary {
  background: var(--amber);
  color: var(--white);
  border: 2px solid var(--amber);
}

.button.secondary {
  background: var(--amber);
  color: var(--white);
  border: 2px solid var(--amber);
}

.button.evidence-button {
  background: #9fcf8a;
  color: var(--green-dark);
  border-color: #9fcf8a;
}

.button.facebook-button {
  background: #1877f2;
  border-color: #1877f2;
}

.button.mailing-button {
  background: #b3261e;
  border-color: #b3261e;
  color: var(--white);
}

.button:hover {
  transform: translateY(-1px);
}

.inline-button {
  margin-top: 0.45rem;
  min-width: 0;
}

.hero-note {
  max-width: 830px;
  margin-top: 1.35rem;
  color: rgba(255,255,255,0.88);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.45;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.stat-row strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.stat-row span {
  display: block;
  font-size: 0.73rem;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
}

.intro-grid {
  max-width: var(--narrow);
  padding-top: 0.25rem;
  padding-bottom: 3rem;
}

.cover .intro-grid .section-label {
  color: var(--white);
  font-weight: 800;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  letter-spacing: 0.02em;
}

.cover .intro-grid .lead {
  color: var(--white);
  font-weight: 800;
}

.lead {
  font-size: clamp(1.15rem, 2.1vw, 1.55rem);
  color: var(--muted);
  line-height: 1.55;
}

#record .lead {
  color: var(--ink);
}

.note-text {
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  border-left: 4px solid var(--amber);
  background: var(--green);
  color: var(--white);
  border-radius: 6px;
  font-weight: 500;
}

.intro-warning {
  margin-top: 1.6rem;
  background: var(--claim);
  border: 1px solid #d7976c;
  border-left: 5px solid var(--amber);
  border-radius: 6px;
  padding: 1rem 1.15rem;
}

.intro-warning p {
  color: var(--ink);
  font-weight: 600;
}

.intro-warning ul {
  margin: 0.75rem 0 0;
  padding-left: 1.25rem;
}

.intro-warning li {
  margin-bottom: 0.7rem;
  color: var(--ink);
}

.intro-warning li:last-child { margin-bottom: 0; }

.fact-table {
  margin: 0;
  border: 1px solid var(--line);
}

.fact-table div {
  display: grid;
  grid-template-columns: 38% 1fr;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.fact-table div:nth-child(odd) { background: var(--panel); }
.fact-table div:last-child { border-bottom: 0; }
.fact-table dt,
.fact-table dd {
  margin: 0;
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
}

.fact-table dt {
  color: var(--green);
  font-weight: 500;
  border-right: 1px solid var(--line);
}

.section { padding: 5.5rem 0; }
.section.tinted { background: #f8fbf8; border-block: 1px solid var(--line); }
#grounds { padding-bottom: 2.5rem; }
#object { padding-top: 2.5rem; }

.ground { margin: 0 0 3.25rem; }
.ground h3 {
  display: flex;
  gap: 0.65rem;
  align-items: baseline;
  margin-bottom: 0.35rem;
}
.ground h3 span { font-size: 0.68em; letter-spacing: 0.06em; }
.chapter { margin-bottom: 0.55rem; }

.policy-note {
  margin-top: 1.1rem;
  background: var(--green-soft);
  border: 1px solid #d1dfd4;
  border-radius: 7px;
  color: var(--green);
  padding: 1rem 1.15rem;
  font-size: 0.95rem;
}

.claim-block { margin: 0 0 3.5rem; }
.claim-block h3 { margin-bottom: 1rem; }

.claim {
  background: var(--claim);
  border: 2px solid #d7976c;
  border-radius: 6px;
  padding: 0.9rem 1rem 0.85rem;
  margin-bottom: 1rem;
}

.claim span {
  display: inline-block;
  background: #bd5518;
  color: var(--white);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  margin-bottom: 0.6rem;
}

.claim p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.45;
  margin-bottom: 1.1rem;
}

.claim small { color: var(--muted); }
.response-label { margin-bottom: 0.25rem; }

.compare-table {
  border: 1px solid var(--line);
  margin-top: 2rem;
  background: var(--white);
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr;
  border-bottom: 1px solid var(--line);
}

.table-row:last-child { border-bottom: 0; }
.table-row > div {
  padding: 0.75rem 1rem;
  border-right: 1px solid var(--line);
  font-size: 0.95rem;
}
.table-row > div:last-child { border-right: 0; }
.table-row.head > div {
  background: var(--green);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
}

.steps {
  display: grid;
  gap: 1.35rem;
  margin-bottom: 3rem;
}
.steps h3,
.plain-heading {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 0.35rem;
}

.dos-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  margin: 1rem 0 3rem;
  background: var(--white);
}
.dos-table > div {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.dos-table > div:nth-child(2n) { border-right: 0; }
.dos-head {
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
  font-weight: 600;
}
.dos-head.include { background: var(--green); }
.dos-head.avoid { background: #bd5518; }

.letter {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 1.5rem;
  margin-top: 1rem;
}

.letter ol { padding-left: 1.25rem; }
.letter li { margin-bottom: 0.85rem; }

.press-release {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: inset 5px 0 0 var(--green);
  padding: 1.5rem;
  margin-top: 1.25rem;
}

.press-release h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.15;
  margin-bottom: 0.9rem;
}

.press-release h4 {
  font-size: 1.05rem;
  margin-top: 1.2rem;
}

.press-release ul {
  padding-left: 1.25rem;
  margin: 0.75rem 0 1rem;
}

.press-release li {
  margin-bottom: 0.45rem;
}

.press-release blockquote {
  margin: 1rem 0;
  padding: 0.2rem 0 0.2rem 1rem;
  border-left: 3px solid var(--amber);
  color: var(--green);
  font-weight: 600;
}

.source-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 2rem;
}

.source-list a {
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: 1rem;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1rem;
  color: var(--ink);
  text-decoration: none;
}

.source-list a:hover {
  border-color: var(--green);
  box-shadow: inset 4px 0 0 var(--green);
}

.source-list strong {
  color: var(--green);
  font-weight: 600;
}

.source-list span {
  color: var(--muted);
  font-size: 0.95rem;
}

.footer {
  background: var(--green);
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
}
.footer-inner {
  min-height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.muted { color: var(--muted); }

@media (max-width: 880px) {
  body { font-size: 16px; }
  .wrap { padding: 0 1.15rem; }
  .topbar-inner {
    align-items: flex-start;
    gap: 0.75rem;
  }
  .nav-toggle { display: none; }
  .nav-links {
    display: flex;
    position: static;
    width: 100%;
    padding: 0;
    background: transparent;
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links.open { display: flex; }
  .nav-links a {
    flex: 0 0 auto;
    padding: 0.55rem 0.65rem;
    border-bottom: 0;
    white-space: nowrap;
    font-size: 0.78rem;
  }
  .cover { padding-top: 0; }
  .cover-panel { min-height: 0; padding: 3.25rem 0; }
  .hero-actions { flex-wrap: wrap; }
  .hero-actions .button { flex-basis: 100%; min-width: 100%; }
  .stat-row { grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 2.5rem; }
  .intro-grid,
  .fact-table div,
  .source-list a { grid-template-columns: 1fr; }
  .fact-table dt { border-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 0.25rem; }
  .fact-table dd { padding-top: 0.25rem; }
  .section { padding: 3.5rem 0; }
  .table-row { grid-template-columns: 1fr; }
  .table-row.head { display: none; }
  .table-row > div { border-right: 0; }
  .dos-table { grid-template-columns: 1fr; }
  .dos-table > div { border-right: 0; }
}
