:root {
  color-scheme: light;
  --cream: #f8f4ea;
  --surface: #fffdf7;
  --soft: #eef4eb;
  --forest: #194c38;
  --leaf: #72b56a;
  --ink: #1d2b24;
  --muted: #657168;
  --line: #dbe4d8;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
}

a { color: var(--forest); }

.shell {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
}

header {
  padding: 28px 0 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest);
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 11px;
  background: var(--forest);
  color: white;
}

.hero {
  padding: 54px clamp(24px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(145deg, var(--surface), var(--soft));
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--leaf);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1, h2, h3 {
  color: var(--forest);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

h1 {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 7vw, 4rem);
}

h2 { margin-top: 2.2em; }
h3 { margin-top: 1.7em; }

.intro {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.language-nav, .legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.pill {
  display: inline-block;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--forest);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.content {
  margin: 24px 0 70px;
  padding: clamp(24px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--surface);
}

.meta, .note { color: var(--muted); }

.note {
  padding: 16px 18px;
  border-left: 4px solid var(--leaf);
  border-radius: 0 14px 14px 0;
  background: var(--soft);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

th, td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th { color: var(--forest); }

.divider {
  height: 1px;
  margin: 64px 0;
  border: 0;
  background: var(--line);
}

address { font-style: normal; }

footer {
  padding: 0 0 36px;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

@media (max-width: 640px) {
  .shell { width: min(100% - 20px, 900px); }
  header { padding-top: 18px; }
  .hero, .content { border-radius: 22px; }
  .hero { padding: 34px 24px; }
  table, tbody, tr, th, td { display: block; }
  th { padding-bottom: 2px; border-bottom: 0; }
  td { padding-top: 2px; }
}
