@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

:root {
  --bg: #111111;
  --bg-deep: #080808;
  --panel: #1b1a18;
  --panel-soft: #24221f;
  --ink: #ece3d1;
  --muted: #b9ad98;
  --faint: #807565;
  --line: #3a342c;
  --accent: #7e9bb0;
  --accent-strong: #a7c0d3;
  --danger: #9e6a5c;
  --gold: #c1a46e;
  --shadow: rgba(0,0,0,.45);
  --max: 1120px;
  --font-heading: "Cinzel", Georgia, "Times New Roman", serif;
  --font-body: "EB Garamond", Georgia, "Times New Roman", serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(126,155,176,.14), transparent 35%),
    radial-gradient(circle at bottom right, rgba(193,164,110,.08), transparent 32%),
    var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.08rem;
  line-height: 1.65;
}
a { color: var(--accent-strong); text-decoration: none; }
a:hover { text-decoration: underline; }
.site-header {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(8,8,8,.96), rgba(17,17,17,.86));
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 6px 22px var(--shadow);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.25rem .75rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: .85rem; min-width: 230px; }
.brand-mark { width: 42px; height: 42px; }
.brand-title { font-family: var(--font-heading); font-size: 1.15rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink); }
.brand-subtitle { font-family: var(--font-heading); font-size: .78rem; color: var(--muted); letter-spacing: .04em; }
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--panel-soft);
  color: var(--ink);
  padding: .45rem .65rem;
  font-family: var(--font-heading);
}
.site-nav { display: flex; gap: .3rem; flex-wrap: wrap; justify-content: flex-end; }
.site-nav a {
  color: var(--muted);
  padding: .45rem .6rem;
  border-radius: 3px;
  font-family: var(--font-heading);
  font-size: .86rem;
  letter-spacing: .04em;
}
.site-nav a:hover, .site-nav a.active { background: var(--panel-soft); color: var(--ink); text-decoration: none; }
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem 1.25rem 2.25rem;
}
.eyebrow { font-family: var(--font-heading); color: var(--gold); letter-spacing: .14em; text-transform: uppercase; font-size: .8rem; }
h1, h2, h3 { font-family: var(--font-heading); line-height: 1.15; margin: 0 0 .75rem; font-weight: 600; }
h1 { font-size: clamp(2.1rem, 5vw, 4.6rem); letter-spacing: .02em; }
h2 { font-size: clamp(1.55rem, 3vw, 2.35rem); color: var(--ink); border-bottom: 1px solid var(--line); padding-bottom: .4rem; }
h3 { font-size: 1.2rem; color: var(--accent-strong); }
.lede { max-width: 760px; font-size: 1.14rem; color: var(--muted); }
main { max-width: var(--max); margin: 0 auto; padding: 0 1.25rem 4rem; }
.section { margin: 2rem 0 2.75rem; }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card, .notice, .quote-panel {
  background: linear-gradient(180deg, var(--panel), var(--panel-soft));
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1rem;
  box-shadow: 0 10px 30px var(--shadow);
}
.card p:last-child, .notice p:last-child { margin-bottom: 0; }
.tagline { color: var(--muted); font-size: .95rem; }
.meta { color: var(--faint); font-size: .9rem; }
.badge {
  font-family: var(--font-heading);
  display: inline-block;
  border: 1px solid var(--line);
  color: var(--muted);
  padding: .12rem .45rem;
  border-radius: 999px;
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-right: .25rem;
}
.badge.known { color: var(--accent-strong); border-color: rgba(167,192,211,.45); }
.badge.warning { color: #d1a59b; border-color: rgba(158,106,92,.55); }
.callout { border-left: 4px solid var(--accent); padding: .75rem 1rem; background: rgba(126,155,176,.08); }
.list-clean { padding-left: 1.1rem; }
.list-clean li { margin: .35rem 0; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 6px; }
table { width: 100%; border-collapse: collapse; min-width: 620px; }
th, td { text-align: left; padding: .7rem .8rem; border-bottom: 1px solid var(--line); }
th { font-family: var(--font-heading); background: var(--panel-soft); color: var(--gold); font-weight: 600; }
tr:last-child td { border-bottom: none; }
.footer {
  border-top: 1px solid var(--line);
  color: var(--faint);
  background: var(--bg-deep);
  padding: 2rem 1.25rem;
}
.footer-inner { max-width: var(--max); margin: 0 auto; font-size: .9rem; }
.kicker { font-family: var(--font-heading); color: var(--gold); font-size: .9rem; text-transform: uppercase; letter-spacing: .1em; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2rem 0; }

.map-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.map-card {
  background: linear-gradient(180deg, var(--panel), var(--panel-soft));
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1rem;
  box-shadow: 0 10px 30px var(--shadow);
}
.map-card img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--bg-deep);
}
.map-card a:hover {
  text-decoration: none;
}
@media (max-width: 840px) {
  .header-inner { align-items: flex-start; flex-direction: column; }
  .menu-toggle { display: inline-block; }
  .site-nav { display: none; width: 100%; flex-direction: column; }
  .site-nav.open { display: flex; }
  .site-nav a { padding: .7rem; border-top: 1px solid var(--line); }
  .grid, .grid.two { grid-template-columns: 1fr; }
  .hero { padding-top: 2.25rem; }
}
