:root {
  --bg: #0c0a08;
  --ink: #e9dec9;
  --gold: #c69b3f;
  --rule: rgba(198, 155, 63, 0.45);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--ink); }
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "EB Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.125rem;
  line-height: 1.65;
  padding: 1.75rem clamp(1.5rem, 5vw, 4rem) 2rem;
  position: relative;
}
body::before {
  content: "";
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='5'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 240px;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}
header, main, footer { position: relative; z-index: 1; }
a { color: var(--gold); text-decoration: none; border-bottom: 1px dotted var(--rule); transition: color 0.2s ease, border-color 0.2s ease; }
a:hover, a:focus { color: var(--ink); border-bottom-color: var(--gold); }
header { font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.6; }
header a { border-bottom: none; }
main { flex: 1; display: flex; flex-direction: column; justify-content: center; max-width: 42rem; margin: 0 auto; gap: 2.5rem; padding: 2rem 0; width: 100%; }
.hero { text-align: center; }
.wordmark {
  font-family: "Cinzel", "Trajan Pro", serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 8vw, 4.5rem);
  letter-spacing: 0.05em;
  color: var(--gold);
  line-height: 1.1;
}
.wordmark::after {
  content: "";
  display: block;
  width: 6rem;
  height: 1px;
  background: var(--rule);
  margin: 1.25rem auto 0;
}
.tagline {
  font-style: italic;
  opacity: 0.85;
  margin-top: 1.25rem;
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
}
.positioning p { text-align: center; max-width: 36rem; margin: 0 auto; }
.status { text-align: center; opacity: 0.78; }
footer { text-align: center; font-size: 0.85rem; opacity: 0.55; padding-top: 2rem; }
@media (max-width: 480px) { body { font-size: 1rem; } }
