:root {
  --bg: #1a1816;
  --surface: #24211e;
  --text: #ece4d8;
  --muted: #a89f94;
  --accent: #c9a962;
  --hairline: rgba(236, 228, 216, 0.12);
  --max: 42rem;
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: Inter, system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  padding: 2.5rem 1.25rem 4rem;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
}

header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--hairline);
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.5rem;
}

h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 0.75rem;
}

.meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

.lang-nav {
  margin-top: 1.25rem;
  font-size: 0.85rem;
}

.lang-nav a {
  color: var(--accent);
  text-decoration: none;
}

.lang-nav a:hover { text-decoration: underline; }

h2 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 500;
  margin: 2rem 0 0.75rem;
  color: var(--text);
}

h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 1.25rem 0 0.5rem;
}

p, li { color: rgba(236, 228, 216, 0.92); }

ul { padding-left: 1.25rem; }

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

footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--hairline);
  font-size: 0.85rem;
  color: var(--muted);
}
