:root {
  color-scheme: light;
  --ink: #17211a;
  --muted: #5e6a61;
  --paper: #fffdf7;
  --surface: #ffffff;
  --green: #164c36;
  --green-soft: #e9f2ec;
  --gold: #c99a3d;
  --line: #dfe5df;
  --shadow: 0 18px 55px rgba(22, 76, 54, 0.09);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(201, 154, 61, 0.13), transparent 28rem),
    linear-gradient(180deg, #f4f8f4 0, var(--paper) 22rem);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

a { color: var(--green); text-underline-offset: 3px; }
a:hover { color: #0e6a45; }

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

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
}

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

.mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 12px;
  background: var(--green);
  box-shadow: 0 8px 22px rgba(22, 76, 54, 0.22);
  color: #fff;
  font-family: Georgia, serif;
  font-size: 25px;
}

.language {
  display: flex;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}

.language a {
  min-width: 43px;
  padding: 5px 11px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.language a[aria-current="page"] { background: var(--green); color: #fff; }

.hero { padding: 66px 0 44px; }

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

h1, h2 { font-family: Georgia, "Times New Roman", serif; }

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 8vw, 72px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.03;
}

.lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(19px, 3vw, 23px);
  line-height: 1.5;
}

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

.content-card {
  margin: 0 0 72px;
  padding: clamp(28px, 6vw, 64px);
  border: 1px solid rgba(223, 229, 223, 0.9);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.content-card section + section { margin-top: 48px; }

h2 {
  margin: 0 0 14px;
  color: var(--green);
  font-size: clamp(25px, 4vw, 34px);
  font-weight: 600;
  line-height: 1.2;
}

p { margin: 0 0 16px; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 12px 0 0; padding-left: 23px; }
li + li { margin-top: 9px; }

.callout {
  margin: 28px 0;
  padding: 22px 24px;
  border-left: 4px solid var(--gold);
  border-radius: 4px 16px 16px 4px;
  background: #fbf5e8;
}

.callout strong { color: #694d17; }

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.link-card {
  display: block;
  min-height: 180px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(22, 76, 54, 0.06);
  color: var(--ink);
  text-decoration: none;
}

.link-card:hover { border-color: #a6b9aa; transform: translateY(-1px); }
.link-card h2 { margin-bottom: 8px; }
.link-card p { color: var(--muted); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--green);
  color: #fff;
  font-weight: 750;
  text-decoration: none;
}

.button:hover { background: #0e6a45; color: #fff; }

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 0 42px;
  color: var(--muted);
  font-size: 14px;
}

footer nav { display: flex; flex-wrap: wrap; gap: 18px; }

@media (max-width: 680px) {
  body { font-size: 16px; }
  .topbar { padding: 18px 0; }
  .hero { padding: 42px 0 32px; }
  .cards { grid-template-columns: 1fr; }
  .content-card { margin-bottom: 48px; border-radius: 22px; }
  footer { align-items: flex-start; flex-direction: column; }
}
