:root {
  --bg: #FBFBFA;
  --surface: #F6F3ED;
  --border: #E3E0D8;
  --text: #16212B;
  --muted: #5A6874;
  --accent: #0E581F;
  --accent-soft: #E5EDE6;
  --plum: #5D5C7C;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0D1620;
    --surface: #16212B;
    --border: #2A3742;
    --text: #F6F3ED;
    --muted: #A8B1B8;
    --accent: #7FB98D;
    --accent-soft: #16261B;
    --plum: #A9A7C8;
  }
}
* { box-sizing: border-box; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  max-width: 680px;
  margin: 0 auto;
  padding: 64px 24px 56px;
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
.eyebrow {
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72em;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--plum);
  display: block;
  margin-bottom: 14px;
}
h1 {
  font-family: "Instrument Serif", Georgia, "Times New Roman", serif;
  font-size: 2.7em;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 10px;
}
.subtitle { color: var(--muted); margin: 0 0 40px; }
h2 { font-size: 1.06em; font-weight: 500; margin: 34px 0 10px; }
p, li { color: var(--text); }
ul { padding-left: 1.15em; }
li { margin-bottom: 8px; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 26px;
  margin: 22px 0 8px;
}
.card h2 { margin-top: 0; }
.card p:last-child { margin-bottom: 0; }
.contact-email { font-size: 1.08em; font-weight: 500; display: inline-block; margin-top: 4px; }
.faq { margin-top: 34px; }
.faq-item { padding: 20px 0; border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-item h2 { margin: 0 0 6px; }
.faq-item p { color: var(--muted); margin: 0; }
.lang-switch { display: flex; gap: 8px; margin-bottom: 36px; }
.lang-switch a {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.82em;
  font-weight: 500;
}
.lang-switch a:hover { text-decoration: none; border-color: var(--accent); color: var(--accent); }
.lang-section { padding-top: 28px; border-top: 1px solid var(--border); }
.lang-section:first-of-type { border-top: none; padding-top: 0; }
.lang-section + .lang-section { margin-top: 32px; }
footer {
  margin-top: 52px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 0.85em;
  color: var(--muted);
}
