:root {
  color-scheme: light;
  --ink: #17201a;
  --muted: #5c665f;
  --line: #d7dfd8;
  --soft: #f4f8f1;
  --paper: #ffffff;
  --green: #267a4d;
  --green-dark: #145a36;
  --gold: #c18a27;
  --blue: #23638f;
  --danger: #fff2df;
  --shadow: 0 20px 60px rgba(30, 49, 36, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--soft);
  color: var(--ink);
}

body {
  margin: 0;
  line-height: 1.6;
  overflow-x: hidden;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--ink);
  color: white;
  padding: 8px 12px;
  z-index: 20;
}

.skip-link:focus {
  left: 8px;
}

.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.trust-bar {
  background: var(--danger);
  color: #4b3512;
  padding: 10px 24px;
  text-align: center;
  font-size: 14px;
  border-bottom: 1px solid #efd6a8;
  overflow-wrap: anywhere;
}

.nav {
  max-width: 1160px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-family: Georgia, serif;
  font-size: 22px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 20px;
  font-size: 15px;
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--green-dark);
  text-decoration: underline;
}

.hero {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 64px 24px 44px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 42px;
  align-items: center;
}

.hero-copy h1,
.page h1 {
  margin: 0;
  max-width: 760px;
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
  margin: 20px 0 0;
  overflow-wrap: anywhere;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--green);
  max-width: 100%;
  white-space: normal;
  text-align: center;
}

.button.primary {
  background: var(--green);
  color: white;
}

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

.hero-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 100%;
}

.field-visual {
  min-height: 210px;
  background:
    radial-gradient(circle at 70% 30%, #ffe7a3 0 36px, transparent 37px),
    linear-gradient(145deg, rgba(35, 99, 143, 0.22), transparent 34%),
    repeating-linear-gradient(105deg, #267a4d 0 16px, #328b58 16px 32px, #d7b85a 32px 36px),
    linear-gradient(#dceef0, #f9f0c6 48%, #5a9a58 49%);
}

.checklist {
  margin: 0;
  padding: 22px 24px 24px;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.notice,
.grid-section,
.source-band,
.page {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 32px 24px;
}

.notice {
  background: var(--paper);
  border: 1px solid #efd6a8;
  border-left: 6px solid var(--gold);
  border-radius: 8px;
}

.notice h2,
.content-block h2,
.source-box h2 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.25;
}

.notice p,
.content-block p,
.source-box p {
  margin: 0;
  color: var(--muted);
}

.section-heading {
  margin-bottom: 20px;
}

.section-heading h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.15;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 21px;
}

.card h2 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.card p {
  color: var(--muted);
  margin: 0 0 14px;
  overflow-wrap: anywhere;
}

.source-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.source-band h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.2;
}

.source-list,
.plain-list {
  margin: 0;
  padding-left: 20px;
}

.source-list li,
.plain-list li {
  margin-bottom: 10px;
}

.page {
  padding-top: 48px;
}

.content-block,
.source-box,
.link-list {
  margin-top: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.content-block p + p {
  margin-top: 14px;
}

.source-box {
  display: grid;
  gap: 10px;
}

.source-box a {
  display: block;
}

.link-list {
  display: grid;
  gap: 12px;
}

.link-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfdf9;
  text-decoration: none;
}

.link-row span {
  font-weight: 700;
  color: var(--ink);
}

.link-row small {
  color: var(--muted);
  text-align: right;
}

.review-strip {
  margin-top: 20px;
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdf9;
  color: var(--muted);
  font-size: 14px;
}

.review-strip a {
  color: var(--green-dark);
}

.breadcrumb {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--green-dark);
}

.safety-banner {
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid #efd6a8;
  border-left: 6px solid var(--gold);
  border-radius: 8px;
  background: var(--danger);
  color: #4b3512;
}

.safety-banner strong {
  color: #2d210d;
}

.site-footer {
  margin-top: 40px;
  padding: 28px 24px;
  background: var(--ink);
  color: white;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: white;
  margin-right: 14px;
}

@media (max-width: 820px) {
  .nav,
  .hero,
  .source-band,
  .site-footer {
    display: block;
  }

  .hero-copy,
  .page,
  .notice,
  .grid-section,
  .source-band {
    min-width: 0;
    max-width: 100%;
  }

  .hero-copy,
  .lead,
  .hero-copy h1,
  .page h1,
  .page .lead {
    width: 100%;
    max-width: 300px;
  }

  .nav-links {
    justify-content: flex-start;
    margin-top: 14px;
    flex-wrap: wrap;
    overflow-x: visible;
    padding-bottom: 4px;
    gap: 10px 14px;
    font-size: 14px;
  }

  .nav-links a {
    flex: 0 1 auto;
  }

  .card {
    padding: 20px;
    width: 100%;
    max-width: 300px;
  }

  .card h2 {
    font-size: 21px;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-copy h1,
  .page h1 {
    font-size: 34px;
    overflow-wrap: normal;
    word-break: normal;
  }

  .lead {
    font-size: 17px;
  }

  .hero-panel {
    margin-top: 28px;
  }

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

  .source-list {
    margin-top: 18px;
  }

  .link-row {
    display: block;
  }

  .link-row small {
    display: block;
    margin-top: 4px;
    text-align: left;
  }

  .review-strip {
    max-width: 300px;
  }

  .safety-banner,
  .breadcrumb {
    max-width: 300px;
  }
}
