*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #0C0A08; --bg2: #171210; --surface: #231C15;
  --text: #E6DDD0; --muted: #8A7B6A; --faint: #3A2E24;
  --gold: #C4A46B;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', sans-serif;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
}
header {
  padding: 24px 40px;
  border-bottom: 1px solid var(--faint);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.back-link {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.back-link:hover { color: var(--text); }
main {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 40px 96px;
}
h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 12px;
}
.meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 56px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
h2 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold);
  margin: 48px 0 16px;
}
p { color: var(--muted); margin-bottom: 16px; font-size: 0.95rem; }
a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
a:hover { border-bottom-color: var(--gold); }
strong { color: var(--text); font-weight: 400; }
.divider {
  border: none;
  border-top: 1px solid var(--faint);
  margin: 56px 0;
}
footer {
  text-align: center;
  padding: 32px 40px;
  border-top: 1px solid var(--faint);
  font-size: 0.8rem;
  color: var(--muted);
}
footer a { color: var(--muted); }
footer a:hover { color: var(--text); }
@media (max-width: 600px) {
  header { padding: 20px 24px; }
  main { padding: 48px 24px 80px; }
}
