:root {
  --bg: #0b0d10;
  --fg: #e8eaed;
  --muted: #9aa3ad;
  --line: #2a3038;
  --accent: #c4a35a;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--fg);
  font-family: Georgia, "Times New Roman", serif;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--line);
}
.logo {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--accent);
  text-decoration: none;
}
nav { display: flex; gap: 1.25rem; font-family: system-ui, sans-serif; font-size: 0.8rem; }
nav a { color: var(--muted); text-decoration: none; }
nav a:hover, nav a.active { color: var(--fg); }
main {
  max-width: 38rem;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 5rem;
}
h1 {
  font-size: clamp(2rem, 6vw, 3.1rem);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 1.25rem;
}
h2 {
  font-size: 1.35rem;
  font-weight: 400;
  margin: 2rem 0 0.6rem;
}
p, li {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}
ul { padding-left: 1.2rem; }
.en { font-style: italic; }
.btn {
  display: inline-block;
  margin-top: 1.75rem;
  padding: 0.7rem 1.15rem;
  border: 1px solid var(--line);
  color: var(--fg);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-family: system-ui, sans-serif;
}
.btn:hover { border-color: var(--accent); color: var(--accent); }
footer {
  border-top: 1px solid var(--line);
  padding: 1.25rem 1.5rem 2rem;
  color: var(--muted);
  font-family: system-ui, sans-serif;
  font-size: 0.75rem;
}
