:root {
  --red: #9b1c20;
  --red-dark: #7a1418;
  --ink: #13213f;
  --ink-2: #4a4f57;
  --line: #e3e1dc;
  --bg: #ffffff;
  --bg-2: #f5f2ea;
  --gold: #c9a44c;
  --max: 1120px;
  --radius: 10px;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--bg); line-height: 1.6; font-size: 17px; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); }
a:hover { color: var(--red-dark); }
h1, h2, h3 { font-family: "Oswald", "Inter", sans-serif; line-height: 1.15; letter-spacing: .01em; margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 600; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 600; }
h3 { font-size: 1.2rem; font-weight: 600; }
p { margin: 0 0 1em; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 12px; top: 12px; background: #fff; padding: 8px 12px; z-index: 99; }

/* Header */
.site-header { background: var(--ink); color: #fff; position: sticky; top: 0; z-index: 50; }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 68px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; color: #fff; text-decoration: none; }
.brand:hover { color: #fff; }
.brand-mark { width: 48px; height: 48px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: "Oswald", sans-serif; font-size: 1.35rem; letter-spacing: .06em; }
.brand-text span { font-size: .72rem; opacity: .75; letter-spacing: .04em; }
.nav { display: flex; gap: 4px; align-items: center; }
.nav a { color: #e9e9e9; text-decoration: none; padding: 8px 12px; border-radius: 6px; font-size: .95rem; }
.nav a:hover, .nav a[aria-current="page"] { background: rgba(255,255,255,.1); color: #fff; }
.nav a.btn { background: var(--red); color: #fff; margin-left: 6px; }
.nav a.btn:hover { background: var(--red-dark); }
.nav-toggle { display: none; background: none; border: 1px solid rgba(255,255,255,.3); color: #fff; border-radius: 6px; padding: 8px 12px; font-size: .95rem; }
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--ink); flex-direction: column; align-items: stretch; padding: 8px 16px 16px; border-top: 1px solid rgba(255,255,255,.1); }
  .nav.open { display: flex; }
  .nav a.btn { margin: 8px 0 0; text-align: center; }
}

/* Hero */
.hero { background: radial-gradient(ellipse at 80% 40%, #1d3160 0%, #13213f 55%, #0c1630 100%); color: #fff; padding: 88px 0 80px; }
.hero .eyebrow { color: var(--gold); }
.hero p.lead { font-size: 1.2rem; max-width: 640px; opacity: .92; }
.page-hero { background: var(--ink); color: #fff; padding: 56px 0 48px; }
.page-hero p { opacity: .85; max-width: 680px; margin: 0; }
.eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; font-weight: 700; color: var(--red); margin-bottom: .6em; display: block; }
.btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button { display: inline-block; padding: 12px 22px; border-radius: 8px; background: var(--red); color: #fff; text-decoration: none; font-weight: 600; border: 2px solid var(--red); }
.button:hover { background: var(--red-dark); border-color: var(--red-dark); color: #fff; }
.button.ghost { background: transparent; border-color: rgba(255,255,255,.6); }
.button.ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.button.outline { background: transparent; color: var(--red); }
.button.outline:hover { background: var(--red); color: #fff; }

/* Sections */
section { padding: 72px 0; }
section.alt { background: var(--bg-2); }
.grid { display: grid; gap: 24px; }
.grid.c2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid.c3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.card h3 { margin-bottom: .4em; }
.card p:last-child { margin-bottom: 0; }
.card .icon { width: 44px; height: 44px; border-radius: 10px; background: #fbeceb; color: var(--red); display: grid; place-items: center; margin-bottom: 16px; }
.card .icon svg { width: 24px; height: 24px; }
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; margin-top: 40px; }
.stat { border-left: 3px solid var(--gold); padding-left: 14px; }
.stat strong { display: block; font-family: "Oswald", sans-serif; font-size: 2rem; }
.stat span { font-size: .9rem; opacity: .8; }
.section-head { max-width: 700px; margin-bottom: 36px; }
.section-head p { color: var(--ink-2); }

/* Timeline */
.timeline { border-left: 3px solid var(--red); margin: 0; padding: 0 0 0 24px; list-style: none; }
.timeline li { position: relative; padding-bottom: 28px; }
.timeline li::before { content: ""; position: absolute; left: -32px; top: 6px; width: 13px; height: 13px; border-radius: 50%; background: #fff; border: 3px solid var(--red); }
.timeline strong { font-family: "Oswald", sans-serif; font-size: 1.15rem; display: block; }

/* Tables / lists */
table { width: 100%; border-collapse: collapse; }
th, td { text-align: left; padding: 12px 10px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-2); }
.table-wrap { overflow-x: auto; }
.price { font-family: "Oswald", sans-serif; font-size: 2.2rem; }
.price small { font-family: "Inter", sans-serif; font-size: .9rem; color: var(--ink-2); }
ul.check { list-style: none; padding: 0; margin: 0 0 1.2em; }
ul.check li { padding-left: 26px; position: relative; margin-bottom: 8px; }
ul.check li::before { content: "✓"; position: absolute; left: 0; color: var(--red); font-weight: 700; }
.tier.featured { border: 2px solid var(--red); }
.badge { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; background: var(--red); color: #fff; padding: 3px 8px; border-radius: 4px; margin-bottom: 10px; }

/* Placeholder marker — remove class once real content is in */
.todo { background: #fff4c2; outline: 1px dashed #c9a227; padding: 0 3px; border-radius: 3px; }

/* Events */
.event { display: grid; grid-template-columns: 84px 1fr; gap: 20px; align-items: start; }
.date { background: var(--ink); color: #fff; border-radius: 8px; text-align: center; padding: 10px 6px; }
.date b { display: block; font-family: "Oswald", sans-serif; font-size: 1.8rem; line-height: 1; }
.date span { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }

/* Forms */
form .row { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: 6px; }
input, select, textarea { width: 100%; padding: 11px 12px; border: 1px solid #c9c6bf; border-radius: 8px; font: inherit; background: #fff; }
input:focus, select:focus, textarea:focus { outline: 2px solid var(--red); outline-offset: 1px; }
.field { margin-bottom: 16px; }

/* CTA band */
.cta { background: var(--red); color: #fff; padding: 56px 0; }
.cta .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 20px; }
.cta h2 { margin: 0; }
.cta .button { background: #fff; color: var(--red); border-color: #fff; }
.cta .button:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* Footer */
.site-footer { background: #0c1630; color: #bdbdbd; padding: 48px 0 28px; font-size: .92rem; }
.site-footer a { color: #e5e5e5; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; color: #fff; }
.footer-grid { display: grid; gap: 28px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.site-footer h3 { color: #fff; font-size: 1rem; letter-spacing: .06em; text-transform: uppercase; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 6px; }
.legal { border-top: 1px solid #243357; margin-top: 32px; padding-top: 20px; font-size: .82rem; color: #8d8d8d; }

/* Hero with seal */
.hero-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center; }
.hero-seal { width: 100%; max-width: 400px; justify-self: center; filter: drop-shadow(0 18px 40px rgba(0,0,0,.45)); }
.motto { font-family: "Oswald", sans-serif; color: var(--gold); letter-spacing: .12em; text-transform: uppercase; font-size: .95rem; margin: -4px 0 18px; }
.hero { border-bottom: 4px solid var(--gold); }
.card .icon { background: #f7ecec; }
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-seal { max-width: 240px; grid-row: 1; }
}
.event > div { min-width: 0; }
@media (max-width: 520px) { .event { grid-template-columns: 1fr; } .date { width: 84px; } }
.page-hero .eyebrow { color: var(--gold); }

/* ---- v3: history, map, awards ---- */
@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--ink); flex-direction: column; align-items: stretch; padding: 8px 16px 16px; border-top: 1px solid rgba(255,255,255,.1); }
  .nav.open { display: flex; }
  .nav a.btn { margin: 8px 0 0; text-align: center; }
}
.muted { color: var(--ink-2); font-size: .92rem; }
.district-map { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; }
.district-map svg { width: 100%; height: auto; display: block; }
.district-map g:nth-of-type(2) path:hover { fill: var(--red); }
.district-map figcaption { font-size: .9rem; color: var(--ink-2); margin-top: 10px; text-align: center; }
.card.doc { display: flex; flex-direction: column; }
.card.doc p { flex: 1; }
.doc-link { font-weight: 600; text-decoration: none; }
.doc-link span { font-weight: 400; color: var(--ink-2); font-size: .88rem; }
.charter { columns: 2; padding-left: 1.2em; margin: 0; }
.charter li { margin-bottom: 4px; }
.stats.light { margin-top: 12px; grid-template-columns: repeat(2, 1fr); }
.stats.light .stat strong { color: var(--ink); }
details.transcript, details.more { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
details.more { margin-top: 16px; }
details > summary { cursor: pointer; padding: 16px 20px; font-weight: 600; color: var(--red); list-style-position: inside; }
.ts-body { padding: 4px 28px 24px; font-family: "Courier New", Courier, monospace; font-size: .95rem; line-height: 1.65; background: #fdfaf2; border-top: 1px solid var(--line); }
.ts-body p { margin: 0 0 1em; }
.ts-head { text-align: right; }
.ts-roll { list-style: none; padding-left: 0; }
.ts-roll li { margin-bottom: 4px; }
.ts-sig { text-align: right; }
.pp-list { list-style: none; padding: 0; margin: 0; columns: 3 260px; column-gap: 32px; }
.pp-list li { break-inside: avoid; display: flex; gap: 12px; padding: 5px 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.pp-list b { font-family: "Oswald", sans-serif; color: var(--red); min-width: 42px; }
.pp-list em { font-style: normal; color: var(--ink-2); font-size: .85rem; margin-left: 4px; }
table.compact td, table.compact th { padding: 7px 8px; font-size: .92rem; }
@media (max-width: 520px) { .ts-body { padding: 4px 16px 20px; font-size: .88rem; } .charter { columns: 1; } }
