:root {
  --burgundy: #8B1E2F;
  --burgundy-dark: #6c1724;
  --cream: #FBF6EE;
  --ink: #241412;
  --gold: #C9A24B;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: -apple-system, "Segoe UI", Roboto, Arial, sans-serif; color: var(--ink); background: var(--cream); line-height: 1.6; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; font-weight: 700; margin-top: 0; }
a { color: var(--burgundy); }
a:hover { color: var(--burgundy-dark); }
.site-header { background: var(--burgundy); color: #fff; }
.nav-wrap { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: #fff; }
.brand img { height: 44px; width: auto; display: block; }
.brand-name { font-family: Georgia, "Times New Roman", serif; font-size: 1.25rem; font-weight: 700; color: #fff; }
nav ul { list-style: none; display: flex; gap: 22px; margin: 0; padding: 0; }
nav a { color: #f3e4e6; text-decoration: none; font-size: 0.95rem; }
nav a:hover, nav a.active { color: #fff; text-decoration: underline; }
.hero { background: var(--burgundy); color: #fff; text-align: center; padding: 64px 24px 72px; }
.hero img.mascot { height: 180px; margin-bottom: 18px; }
.hero h1 { font-size: 2.4rem; margin-bottom: 8px; }
.hero .tagline { color: var(--gold); letter-spacing: 0.03em; font-size: 1.05rem; margin-bottom: 20px; }
.hero p.lead { max-width: 640px; margin: 0 auto 26px; color: #f3e4e6; font-size: 1.05rem; }
.btn { display: inline-block; background: var(--gold); color: var(--ink); padding: 12px 26px; border-radius: 4px; text-decoration: none; font-weight: 700; font-size: 0.95rem; }
.btn:hover { background: #d9b967; color: var(--ink); }
.btn-outline { display: inline-block; border: 1.5px solid #fff; color: #fff; padding: 10px 24px; border-radius: 4px; text-decoration: none; font-size: 0.95rem; margin-left: 10px; }
.btn-outline:hover { background: rgba(255,255,255,0.12); color: #fff; }
main { max-width: 900px; margin: 0 auto; padding: 56px 24px; }
.section-title { font-size: 1.7rem; margin-bottom: 6px; }
.section-sub { color: #6b4a4f; margin-bottom: 28px; }
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; margin: 28px 0; }
.card { background: #fff; border: 1px solid #eadfd7; border-radius: 8px; padding: 22px; }
.card h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--burgundy); }
.stat-row { display: flex; gap: 34px; flex-wrap: wrap; margin: 30px 0; }
.stat { text-align: left; }
.stat .num { font-family: Georgia, serif; font-size: 2.1rem; color: var(--burgundy); font-weight: 700; }
.stat .label { font-size: 0.9rem; color: #6b4a4f; }
.callout { background: #fff; border-left: 4px solid var(--gold); padding: 18px 22px; margin: 26px 0; border-radius: 0 6px 6px 0; }
.placeholder-note { background: #fff7e6; border: 1px dashed #c9a24b; padding: 12px 16px; border-radius: 6px; font-size: 0.85rem; color: #6b4a1f; margin: 18px 0; }
.site-footer { background: var(--ink); color: #cbb8ba; text-align: center; padding: 30px 24px; font-size: 0.85rem; }
.site-footer a { color: #f3e4e6; }
.timeline { margin: 28px 0; padding-left: 0; list-style: none; }
.timeline li { padding: 14px 0 14px 22px; border-left: 2px solid var(--burgundy); position: relative; margin-left: 8px; }
.timeline li::before { content: ""; position: absolute; left: -7px; top: 18px; width: 12px; height: 12px; border-radius: 50%; background: var(--gold); }
.timeline .date { font-weight: 700; color: var(--burgundy); display: block; }
@media (max-width: 640px) {
  nav ul { gap: 12px; flex-wrap: wrap; justify-content: center; }
  .nav-wrap { flex-direction: column; gap: 10px; }
  .hero h1 { font-size: 1.8rem; }
}
