:root {
  --black: #0a0a0a;
  --black-mid: #111111;
  --black-light: #1a1a1a;
  --gold: #C9A84C;
  --gold-bright: #D4AF37;
  --gold-dim: #8a6f2e;
  --red: #8B1A1A;
  --white: #f5f0e8;
  --white-dim: #b0a88f;
  --font-heading: 'Cinzel', Georgia, serif;
  --font-body: 'Cormorant Garamond', Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.7;
}

/* NAV */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  transition: background 0.3s;
}
#navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  border-bottom: 1px solid var(--gold-dim);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-decoration: none;
  color: var(--white-dim);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

/* HERO */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  background: radial-gradient(ellipse at center, #1a1408 0%, var(--black) 70%);
}
.rune-ring {
  font-size: 1.5rem;
  color: var(--red);
  margin-bottom: 1rem;
  letter-spacing: 0.6em;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 14vw, 9rem);
  font-weight: 900;
  line-height: 0.9;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-shadow: 0 0 60px rgba(201, 168, 76, 0.3);
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--white-dim);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

/* BUTTONS */
.btn-gold {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-decoration: none;
  color: var(--black);
  background: var(--gold);
  border: 2px solid var(--gold-bright);
  padding: 1rem 2.5rem;
  transition: background 0.2s, transform 0.2s;
}
.btn-gold:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-decoration: none;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 0.8rem 2rem;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

/* SECTIONS */
.section { padding: 6rem 2rem; }
.section-dark { background: var(--black-mid); }
.container { max-width: 1100px; margin: 0 auto; }
.centered { text-align: center; }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 2rem;
}
.section-title.centered { text-align: center; }

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.about-text p { margin-bottom: 1.2rem; color: var(--white-dim); }
.about-text em { color: var(--gold); font-style: italic; }
.about-badge { display: flex; justify-content: center; }
.book-badge {
  border: 1px solid var(--gold-dim);
  padding: 2rem 3rem;
  text-align: center;
}
.badge-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--white-dim);
  margin-bottom: 0.5rem;
}
.badge-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  line-height: 1.3;
}

/* PILLARS */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.pillar {
  border: 1px solid var(--gold-dim);
  padding: 2rem;
  background: var(--black-light);
}
.pillar-icon {
  display: block;
  font-size: 1.5rem;
  color: var(--red);
  margin-bottom: 0.75rem;
}
.pillar h3 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.pillar p { font-size: 1rem; color: var(--white-dim); }

/* AUTHOR */
.author-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
.author-logo-wrap { display: flex; justify-content: center; }
.author-monogram {
  width: 140px;
  height: 140px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  background: radial-gradient(circle, #1a1408 0%, var(--black) 70%);
}
.author-bio p { color: var(--white-dim); margin-bottom: 1.2rem; }
.author-bio em { color: var(--gold); }
.author-tagline {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--gold) !important;
}

/* PRE-ORDER */
.section-preorder {
  background: radial-gradient(ellipse at center, #1a1408 0%, var(--black) 80%);
}
.preorder-sub {
  color: var(--white-dim);
  margin-bottom: 2.5rem;
  font-size: 1.2rem;
}
.preorder-sub em { color: var(--gold); }
.preorder-box {
  max-width: 540px;
  margin: 0 auto;
  border: 1px solid var(--gold);
  padding: 3rem 2.5rem;
  text-align: center;
  background: var(--black-light);
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.1);
}
.support-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--red);
  margin-bottom: 2rem;
}
.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.payment-item { display: flex; flex-direction: column; gap: 0.25rem; }
.payment-app {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--white-dim);
}
.payment-handle {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.payment-divider {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--white-dim);
}
.payment-note {
  font-size: 0.95rem;
  color: var(--white-dim);
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--gold-dim);
  padding-top: 1.5rem;
}
.payment-thanks {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--gold);
}

/* ART TEASER */
.teaser-sub { color: var(--white-dim); margin-bottom: 2rem; }
.art-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.art-thumb {
  aspect-ratio: 1;
  background: var(--black-light);
  border: 1px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
}
.thumb-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--gold-dim);
  text-align: center;
  padding: 0.5rem;
}

/* FOOTER */
#footer {
  background: var(--black-mid);
  border-top: 1px solid var(--gold-dim);
  padding: 3rem 2rem;
  text-align: center;
}
.footer-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-links { margin-bottom: 1rem; }
.footer-links a {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--white-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.sep { color: var(--gold-dim); margin: 0 1rem; }
.footer-copy { font-size: 0.85rem; color: var(--white-dim); opacity: 0.5; }

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* RESPONSIVE */
@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1fr auto; }
  .author-grid { grid-template-columns: auto 1fr; }
}
