:root {
  --black: #0b0a08;
  --panel: #14120e;
  --panel-2: #1b1812;
  --gold: #d4af37;
  --gold-bright: #f0cf6b;
  --gold-dim: #8a7326;
  --cream: #f5efe0;
  --cream-dim: #b8b09a;
  --red: #d8342c;
  --radius: 16px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--cream); font-family: "Inter", -apple-system, sans-serif; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 22px;
  background: rgba(11,10,8,.9); backdrop-filter: blur(10px);
  border-bottom: 1px solid #2a251c;
}
.nav-logo {
  font-family: "Anton", Impact, sans-serif; font-size: 22px; letter-spacing: .04em;
  color: var(--gold-bright); text-decoration: none;
}
.pip { color: var(--red); font-size: .55em; vertical-align: .4em; margin-left: .1em; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a {
  color: var(--cream-dim); text-decoration: none; font-size: 12px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
}
.nav-links a:hover { color: var(--cream); }
.nav-cta {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #221b05 !important; padding: 11px 18px; border-radius: 999px;
}
.burger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.burger span { display: block; width: 24px; height: 3px; background: var(--cream); margin: 5px 0; border-radius: 2px; transition: transform .2s, opacity .2s; }
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero { text-align: center; padding: 54px 20px 40px;
  background: radial-gradient(ellipse 70% 300px at 50% 0%, rgba(212,175,55,.12), transparent 70%); }
.doc-kicker { letter-spacing: .4em; text-transform: uppercase; font-size: 11px; color: var(--cream-dim); }
.hero-logo { width: min(560px, 88vw); margin: 10px 0 0; }
.hero-line {
  font-family: "Anton", Impact, sans-serif; font-size: clamp(30px, 6vw, 58px);
  line-height: 1.05; letter-spacing: .03em; margin-top: 6px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold) 55%, var(--gold-dim));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub { margin-top: 12px; }
.script { font-family: "Yellowtail", cursive; font-size: clamp(22px, 4.5vw, 32px); color: var(--gold); }

/* ---------- marquee ---------- */
.marquee { overflow: hidden; border-top: 1px solid #2a251c; border-bottom: 1px solid #2a251c;
  background: var(--panel); padding: 14px 0; white-space: nowrap; }
.marquee-track { display: inline-block; animation: scroll 40s linear infinite; }
.marquee-track span {
  font-family: "Anton", sans-serif; font-size: 15px; letter-spacing: .3em;
  color: var(--gold-dim);
}
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
section { max-width: 1080px; margin: 0 auto; padding: 70px 22px; }
.h2 {
  font-family: "Anton", Impact, sans-serif; font-size: clamp(30px, 5vw, 46px);
  letter-spacing: .03em; text-transform: uppercase; margin-bottom: 8px;
  display: flex; align-items: center; gap: 16px;
}
.h2::after { content: ""; flex: 1; height: 1px; background: linear-gradient(90deg, var(--gold-dim), transparent); }
.section-sub { color: var(--cream-dim); font-size: 14px; margin-bottom: 30px; }
.dark-band { max-width: none; background: var(--panel); border-top: 1px solid #2a251c; border-bottom: 1px solid #2a251c; }
.dark-band > * { max-width: 1080px; margin-left: auto; margin-right: auto; }
.dark-band .section-sub, .dark-band .h2 { max-width: 1080px; }

/* ---------- legend ---------- */
.legend-grid { display: grid; grid-template-columns: 340px 1fr; gap: 36px; align-items: start; }
.fig { background: var(--panel); border: 1px solid #2e2718; border-radius: var(--radius); overflow: hidden; }
.fig img { width: 100%; display: block; }
.fig figcaption { padding: 12px 16px; font-size: 11px; color: var(--cream-dim); font-style: italic; line-height: 1.5; }
.fig.wide { margin-top: 34px; }
.legend-copy p { line-height: 1.85; margin-bottom: 16px; font-size: 15.5px; color: var(--cream); }
.legend-copy em { color: var(--gold-bright); font-style: normal; }
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; margin-top: 26px; }
.stat { background: var(--panel); border: 1px solid #2e2718; border-radius: 12px; padding: 16px 14px; font-size: 11.5px; color: var(--cream-dim); line-height: 1.5; }
.stat-n { display: block; font-family: "Anton", sans-serif; font-size: 30px; color: var(--gold-bright); margin-bottom: 4px; }

/* ---------- lore ---------- */
.lore-list { display: grid; gap: 14px; }
.lore { background: var(--panel-2); border: 1px solid #2e2718; border-left: 3px solid var(--gold-dim);
  border-radius: 12px; padding: 22px 24px; }
.lore-date { font-family: "Anton", sans-serif; letter-spacing: .12em; color: var(--gold-bright); font-size: 15px; }
.lore p { color: var(--cream-dim); line-height: 1.8; margin-top: 8px; font-size: 14.5px; }

/* ---------- witnesses ---------- */
.wit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.wit { background: var(--panel); border: 1px solid #2e2718; border-radius: var(--radius); padding: 24px 22px; }
.wit p { font-size: 15px; line-height: 1.7; color: var(--cream); }
.wit p::before { content: ""; display: block; font-family: "Yellowtail", cursive; color: var(--gold); font-size: 26px; }
.wit span { display: block; margin-top: 14px; color: var(--gold-dim); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }

/* ---------- empire ---------- */
.emp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.emp { background: var(--panel-2); border: 1px solid #2e2718; border-radius: var(--radius);
  overflow: hidden; text-decoration: none; color: var(--cream); transition: transform .15s, border-color .15s; }
.emp:hover { transform: translateY(-3px); border-color: var(--gold-dim); }
.emp img { width: 100%; aspect-ratio: 1.15; object-fit: cover; display: block; }
.emp-body { padding: 18px 20px 22px; }
.emp-name { font-family: "Anton", sans-serif; font-size: 20px; letter-spacing: .04em; }
.emp-body p { color: var(--cream-dim); font-size: 13px; line-height: 1.6; margin: 6px 0 12px; }
.emp-link { color: var(--gold-bright); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.emp-link em { color: var(--cream-dim); font-style: normal; }

/* ---------- footer ---------- */
.foot { text-align: center; padding: 56px 20px 44px; border-top: 1px solid #2a251c; }
.foot-word { font-family: "Anton", sans-serif; font-size: 30px; color: var(--gold-bright); }
.foot-links { margin: 16px 0 12px; color: var(--cream-dim); font-size: 13px; }
.foot-links a { color: var(--cream-dim); text-decoration: none; }
.foot-links a:hover { color: var(--gold); }
.foot-links .soon { opacity: .5; }
.foot-addr { color: var(--cream-dim); font-size: 12px; letter-spacing: .06em; margin-bottom: 14px; }
.legal { max-width: 560px; margin: 0 auto; color: #6d6350; font-size: 11px; line-height: 1.7; }

/* ---------- contact page bits ---------- */
.contact-wrap { max-width: 720px; }
.c-card { background: var(--panel); border: 1px solid #2e2718; border-radius: var(--radius); padding: 26px 22px; }
.c-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.c-input { background: var(--panel-2); border: 1px solid #2c261a; border-radius: 10px;
  color: var(--cream); font: 400 14px/1.4 "Inter", sans-serif; padding: 13px 14px; width: 100%; }
.c-input:focus { outline: none; border-color: var(--gold-dim); }
.c-msg { min-height: 130px; resize: vertical; margin-bottom: 14px; }
.gold-btn { background: linear-gradient(180deg, var(--gold-bright), var(--gold)); color: #221b05;
  border: none; cursor: pointer; font: 700 12px/1 "Inter", sans-serif; letter-spacing: .16em;
  text-transform: uppercase; padding: 15px 28px; border-radius: 999px; }
.c-hint { margin-top: 10px; font-size: 12px; color: var(--cream-dim); }
.addr-block { margin-top: 24px; background: var(--panel); border: 1px solid #2e2718;
  border-radius: var(--radius); padding: 22px; line-height: 1.8; font-size: 14.5px; }

/* ---------- mobile ---------- */
@media (max-width: 760px) {
  .burger { display: block; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--black);
    border-bottom: 1px solid #2a251c; padding: 8px 0 16px; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 24px; width: 100%; }
  .nav-cta { margin: 8px 24px 0; text-align: center; }
  section { padding: 46px 16px; }
  .legend-grid { grid-template-columns: 1fr; }
  .c-row { grid-template-columns: 1fr; }
}
