:root {
  color-scheme: light;
  --ink: #16382d;
  --muted: #5f6f64;
  --paper: #f7f0dc;
  --card: #fffaf0;
  --accent: #d29a2e;
  --line: rgba(22, 56, 45, 0.18);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 17px/1.65 "Nunito", ui-rounded, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: var(--ink); text-decoration-color: var(--accent); text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover { color: #0d5a42; }

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

header { padding: 28px 0 20px; border-bottom: 1px solid var(--line); }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 900; text-decoration: none; }
.brand img { width: 44px; height: 44px; border-radius: 12px; }
.tools { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.language { font-size: 14px; font-weight: 800; }

main { padding: 64px 0 72px; }
.eyebrow { margin: 0 0 10px; color: #8a651b; font-size: 13px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
h1 { max-width: 720px; margin: 0; font-size: clamp(42px, 8vw, 74px); line-height: .98; letter-spacing: -.045em; }
.lede { max-width: 680px; margin: 24px 0 40px; color: var(--muted); font-size: 20px; }
.card { margin: 22px 0; padding: 28px; background: var(--card); border: 1px solid var(--line); border-radius: 22px; }
h2 { margin: 0 0 10px; font-size: 25px; line-height: 1.2; }
p, ul { margin: 0 0 16px; }
.card > :last-child { margin-bottom: 0; }
.contact { display: inline-flex; margin-top: 8px; padding: 13px 18px; border-radius: 999px; background: var(--ink); color: white; font-weight: 900; text-decoration: none; }
.contact:hover { color: white; background: #0d5a42; }
.meta { margin-top: 32px; color: var(--muted); font-size: 14px; }

footer { padding: 24px 0 36px; border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; }

@media (max-width: 560px) {
  .tools { align-items: flex-start; }
  .brand span { display: none; }
  main { padding-top: 44px; }
  .card { padding: 22px; border-radius: 18px; }
}
