*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #ffffff;
  --fg: #0d1b2a;
  --muted: #64748b;
  --rule: #e2e8f0;
  --accent: #0d1b2a;
  --accent-mid: #1a3a5c;
  --accent-light: #edf2f8;
  --link: #1a3a5c;
  --max: 760px;
  --max-wide: 1100px;
}

html { font-size: 18px; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.7;
  padding: 0;
}

/* ── NAV ── */
nav {
  background: var(--fg);
  padding: 0 2rem;
}

.nav-inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  height: 56px;
}

nav .site-name {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  margin-right: auto;
}

nav a {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.15s;
}

nav a:hover { color: #ffffff; }
nav a.active { color: #ffffff; }

/* ── HERO ── */
.hero {
  background: var(--fg);
  color: #ffffff;
  padding: 5rem 2rem 4rem;
  border-bottom: 4px solid #1a3a5c;
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.hero .tagline {
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
}

/* ── MAIN ── */
main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem 2rem 6rem;
}

main.wide {
  max-width: var(--max-wide);
}

/* ── TYPOGRAPHY ── */
h1 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: var(--fg);
}

h2 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 3rem 0 1rem;
  color: var(--accent-mid);
}

h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 1.5rem 0 0.5rem;
  color: var(--fg);
}

p {
  font-family: Georgia, 'Times New Roman', serif;
  margin-bottom: 1rem;
  line-height: 1.75;
  color: #1a1a2e;
}

p.sans {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--muted);
  font-size: 0.9rem;
}

hr {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 2.5rem 0;
}

/* ── PAGE HEADER ── */
.page-header {
  padding: 3rem 2rem 2.5rem;
  border-bottom: 1px solid var(--rule);
  max-width: var(--max-wide);
  margin: 0 auto;
}

.page-header h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.page-header .sub {
  font-family: Georgia, serif;
  font-style: italic;
  color: var(--muted);
  font-size: 1rem;
}

/* ── MISSION BLOCK ── */
.mission {
  background: var(--accent-light);
  border-left: 4px solid var(--accent-mid);
  padding: 1.75rem 2rem;
  margin: 2rem 0;
}

.mission p {
  font-size: 1.05rem;
  margin-bottom: 0;
  color: var(--fg);
}

/* ── BLOCKQUOTE ── */
blockquote {
  border-left: 3px solid var(--accent-mid);
  margin: 2rem 0;
  padding: 0.25rem 0 0.25rem 1.5rem;
  font-family: Georgia, serif;
  font-style: italic;
  color: #333;
  font-size: 1.05rem;
}

/* ── CARDS / PILLARS ── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.pillar {
  border: 1px solid var(--rule);
  padding: 1.5rem;
  background: #f8fafc;
}

.pillar h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-mid);
  margin: 0 0 0.75rem;
}

.pillar p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* ── SEAT CARDS ── */
.seats {
  margin: 2rem 0;
}

.seat {
  border-top: 1px solid var(--rule);
  padding: 1.5rem 0;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.seat:last-child { border-bottom: 1px solid var(--rule); }

.seat-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-mid);
  padding-top: 0.2rem;
}

.seat-label .seat-num {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--rule);
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 0.3rem;
  font-family: Georgia, serif;
}

.seat-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
  color: var(--fg);
}

.seat-body p {
  font-size: 0.9rem;
  color: #444;
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.65;
}

/* ── RIGHTS LIST ── */
.rights {
  margin: 2rem 0;
  list-style: none;
}

.rights li {
  border-top: 1px solid var(--rule);
  padding: 1.25rem 0;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.rights li:last-child { border-bottom: 1px solid var(--rule); }

.right-name {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-mid);
  padding-top: 0.15rem;
}

.right-desc {
  font-family: Georgia, serif;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.7;
}

/* ── PROJECT LIST ── */
.project-list {
  list-style: none;
  margin: 1.5rem 0;
}

.project-list li {
  border-top: 1px solid var(--rule);
  padding: 1.5rem 0;
}

.project-list li:last-child { border-bottom: 1px solid var(--rule); }

.project-list a {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--fg);
  text-decoration: none;
  display: block;
  margin-bottom: 0.3rem;
}

.project-list a:hover { color: var(--accent-mid); }

.project-list .status {
  display: inline-block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--accent-light);
  color: var(--accent-mid);
  padding: 0.15rem 0.5rem;
  margin-bottom: 0.4rem;
  font-family: Arial, sans-serif;
}

.project-list .desc {
  font-family: Georgia, serif;
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
}

/* ── CHARTER ARTICLES ── */
.charter-article {
  border-top: 1px solid var(--rule);
  padding: 2rem 0;
}

.charter-article:last-child { border-bottom: 1px solid var(--rule); }

.charter-article h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.charter-article h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.charter-article p {
  font-size: 0.95rem;
}

/* ── DATED STAMP ── */
.dated {
  font-family: Arial, sans-serif;
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
  display: block;
}

/* ── NAV BREADCRUMB ── */
.back-link {
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: none;
  display: inline-block;
  margin-top: 3rem;
}

.back-link:hover { color: var(--fg); }

/* ── FOOTER ── */
footer {
  background: var(--fg);
  color: rgba(255,255,255,0.4);
  padding: 2rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
}

footer a { color: rgba(255,255,255,0.5); text-decoration: none; }
footer a:hover { color: #fff; }

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  html { font-size: 16px; }
  .hero h1 { font-size: 2.2rem; }
  .pillars { grid-template-columns: 1fr; }
  .seat { grid-template-columns: 1fr; gap: 0.5rem; }
  .rights li { grid-template-columns: 1fr; gap: 0.25rem; }
  .seat-label .seat-num { display: inline; margin-right: 0.5rem; font-size: 1rem; }
}
