:root {
  --ink: #17352d;
  --ink-soft: #587068;
  --green: #18735c;
  --green-dark: #105745;
  --green-pale: #eaf5ef;
  --green-faint: #f5faf7;
  --line: #dce8e2;
  --white: #fff;
  --shadow: 0 18px 50px rgba(27, 72, 59, .11);
  --font-body: "DM Sans", Arial, sans-serif;
  --font-display: "Manrope", "DM Sans", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fbfdfc;
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.page-width { width: min(980px, calc(100% - 48px)); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: 8px; left: 8px; z-index: 100; padding: 10px 15px;
  background: var(--ink); color: white; border-radius: 6px; transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.legal-hero {
  padding: 56px 0 34px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(120deg, #fbfdfc 20%, #f3faf6 100%);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  color: #6b8078;
  font-size: 12px;
  font-weight: 600;
}

.breadcrumbs a {
  color: var(--green);
  text-decoration: none;
}

.breadcrumbs a:hover { text-decoration: underline; }

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.legal-hero h1 {
  max-width: 720px;
  margin: 0;
  font: 800 clamp(36px, 5vw, 58px)/1.08 var(--font-display);
  letter-spacing: -.04em;
}

.legal-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.legal-content {
  padding: 42px 0 68px;
}

.legal-card {
  padding: 36px;
  border: 1px solid #dce6e1;
  border-radius: 12px;
  background: white;
  box-shadow: 0 9px 28px rgba(27, 72, 59, .08);
}

.legal-note {
  margin: 0 0 30px;
  padding: 14px 16px;
  color: #405e54;
  border: 1px solid #c7dfd2;
  border-radius: 8px;
  background: #f6fbf8;
  font-size: 13px;
}

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

.legal-section h2 {
  margin: 0 0 10px;
  font: 800 22px var(--font-display);
  letter-spacing: -.02em;
}

.legal-section p,
.legal-section li {
  color: #526b62;
  font-size: 14px;
}

.legal-section p { margin: 0 0 13px; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul { margin: 0; padding-left: 20px; }
.legal-section li + li { margin-top: 8px; }
.legal-section a {
  color: var(--green-dark);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

@media (max-width: 620px) {
  .page-width { width: min(100% - 32px, 980px); }
  .legal-hero { padding: 38px 0 28px; }
  .legal-card { padding: 24px 18px; }
  .legal-hero h1 { font-size: 36px; }
}
