:root {
  --bg: #0c0a12;
  --bg-alt: #15111f;
  --panel: #1a1526;
  --line: #322a42;
  --gold: #c9a24b;
  --gold-bright: #e6c874;
  --ember: #b5432f;
  --text: #ece6f2;
  --muted: #a89bc0;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "EB Garamond", Georgia, serif;
  font-size: 1.08rem;
  line-height: 1.7;
}

h1, h2, h3, .wordmark {
  font-family: "Cinzel", Georgia, serif;
  letter-spacing: 0.02em;
}

a { color: var(--gold-bright); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1000px; margin: 0 auto; padding: 0 24px; }

/* Header */
header.site-header {
  background: rgba(12,10,18,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.wordmark {
  font-size: 1.15rem;
  color: var(--gold-bright);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 26px;
  margin: 0;
  padding: 0;
}
nav.main-nav a {
  color: var(--muted);
  font-family: "Cinzel", serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
nav.main-nav a:hover, nav.main-nav a.active { color: var(--gold-bright); text-decoration: none; }

/* Hero */
.hero {
  position: relative;
  padding: 110px 0 90px;
  background:
    radial-gradient(ellipse at 50% -10%, rgba(197,145,45,0.14), transparent 60%),
    radial-gradient(ellipse at 80% 110%, rgba(181,67,47,0.12), transparent 55%),
    var(--bg);
  border-bottom: 1px solid var(--line);
  text-align: center;
  overflow: hidden;
}
.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.72rem;
  color: var(--gold);
  margin-bottom: 22px;
  font-family: "Cinzel", serif;
}
.hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  color: var(--text);
  margin: 0 0 8px;
  text-shadow: 0 0 30px rgba(201,162,75,0.25);
}
.hero .subtitle {
  font-family: "Cinzel", serif;
  color: var(--gold);
  font-size: clamp(1rem, 2vw, 1.3rem);
  letter-spacing: 0.05em;
  margin-bottom: 30px;
}
.hero p.lead {
  max-width: 620px;
  margin: 0 auto 36px;
  color: var(--muted);
  font-size: 1.15rem;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 2px;
  font-family: "Cinzel", serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid var(--gold);
  transition: all 0.15s ease;
}
.btn.primary { background: var(--gold); color: #16111f; }
.btn.primary:hover { background: var(--gold-bright); text-decoration: none; }
.btn.secondary { background: transparent; color: var(--gold-bright); }
.btn.secondary:hover { background: rgba(201,162,75,0.1); text-decoration: none; }

.divider {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 46px auto;
  opacity: 0.6;
}

/* Sections */
section { padding: 78px 0; }
section.alt { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 50px; }
.section-head .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.7rem;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
  font-family: "Cinzel", serif;
}
.section-head h2 { font-size: 2rem; margin: 0 0 14px; color: var(--text); }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* Blurb */
.blurb-box {
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  padding: 40px;
  font-size: 1.15rem;
  color: #ddd3ea;
  max-width: 760px;
  margin: 0 auto;
}
.blurb-box em { color: var(--gold-bright); font-style: normal; }

/* Fact grid */
.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
  margin-top: 50px;
}
@media (max-width: 760px) { .fact-grid { grid-template-columns: repeat(2, 1fr); } }
.fact { padding: 20px 10px; border-top: 1px solid var(--line); }
.fact .val { font-family: "Cinzel", serif; color: var(--gold-bright); font-size: 1.3rem; display: block; margin-bottom: 6px; }
.fact .label { font-size: 0.82rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* World cards */
.world-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 820px) { .world-grid { grid-template-columns: 1fr; } }
.world-card {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 28px 24px;
}
.world-card h3 { color: var(--gold-bright); font-size: 1.15rem; margin: 0 0 10px; }
.world-card p { color: var(--muted); font-size: 0.98rem; margin: 0; }

/* Character rows */
.character {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 30px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.character:last-child { border-bottom: none; }
@media (max-width: 640px) { .character { grid-template-columns: 1fr; } }
.character .role {
  font-family: "Cinzel", serif;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}
.character h3 { margin: 6px 0 10px; color: var(--text); font-size: 1.35rem; }
.character p { color: var(--muted); margin: 0; }

/* Quote */
blockquote.pull {
  font-family: "Cinzel", serif;
  font-size: 1.4rem;
  color: var(--gold-bright);
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}
blockquote.pull cite {
  display: block;
  font-style: normal;
  font-family: "EB Garamond", serif;
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 20px;
}

/* Timeline */
.timeline { display: grid; gap: 0; max-width: 640px; margin: 0 auto; }
.tl-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.tl-item:last-child { border-bottom: none; }
.tl-date { font-family: "Cinzel", serif; color: var(--gold); font-size: 0.95rem; }
.tl-desc h4 { margin: 0 0 4px; color: var(--text); }
.tl-desc p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* Newsletter / links */
.link-row {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}
.link-pill {
  border: 1px solid var(--line);
  padding: 10px 20px;
  font-family: "Cinzel", serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.link-pill:hover { color: var(--gold-bright); border-color: var(--gold); text-decoration: none; }

form.signup-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 30px auto 0;
  flex-wrap: wrap;
  justify-content: center;
}
form.signup-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 13px 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}

.note-banner {
  background: rgba(201,162,75,0.08);
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  font-size: 0.85rem;
  padding: 10px 16px;
  text-align: center;
}

/* Footer */
footer.site-footer {
  background: #0a080f;
  border-top: 1px solid var(--line);
  padding: 46px 0 32px;
  color: var(--muted);
}
footer.site-footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
footer.site-footer .wordmark { color: var(--gold-bright); font-size: 1rem; }
footer.site-footer a { color: var(--muted); font-size: 0.85rem; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.foot-note { font-size: 0.78rem; color: #6b6084; margin-top: 6px; }
