:root {
  --maroon: #7a1f2e;
  --maroon-dark: #5c1622;
  --gold: #c9a227;
  --gold-light: #e8d48b;
  --text: #333;
  --muted: #666;
  --bg: #f7f5f2;
  --white: #fff;
  --border: #e0dcd4;
  --max: 1100px;
}

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

body {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--maroon);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  background: var(--maroon);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.top-bar {
  background: var(--maroon-dark);
  font-size: 0.85rem;
  padding: 0.4rem 1rem;
  text-align: right;
}

.top-bar a {
  color: var(--gold-light);
  margin-left: 1rem;
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
  opacity: 0.95;
}

.logo-mark {
  width: 52px;
  height: 52px;
  background: var(--gold);
  color: var(--maroon-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.75rem;
  font-family: system-ui, sans-serif;
}

.logo-text strong {
  display: block;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.logo-text span {
  font-size: 0.8rem;
  color: var(--gold-light);
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
  font-family: system-ui, sans-serif;
  font-size: 0.95rem;
}

nav a {
  color: var(--white);
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}

nav a:hover,
nav a.active {
  text-decoration: none;
  border-bottom-color: var(--gold);
}

.hero {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  color: var(--white);
  padding: 3rem 1rem;
  text-align: center;
}

.hero h1 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin-bottom: 0.75rem;
}

.hero p {
  max-width: 640px;
  margin: 0 auto 1.5rem;
  color: var(--gold-light);
  font-size: 1.05rem;
}

.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--maroon-dark);
  padding: 0.6rem 1.4rem;
  border-radius: 4px;
  font-family: system-ui, sans-serif;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--gold-light);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1rem 3rem;
}

.section-title {
  color: var(--maroon);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--gold);
  display: inline-block;
}

.section {
  margin-bottom: 2.5rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.25rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.card h3 {
  color: var(--maroon);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.card .meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.progress {
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  margin: 0.75rem 0;
  overflow: hidden;
}

.progress span {
  display: block;
  height: 100%;
  background: var(--gold);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 700px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

.page-header {
  margin-bottom: 2rem;
}

.page-header h1 {
  color: var(--maroon);
  font-size: 2rem;
}

.content-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.content-block h2 {
  color: var(--maroon);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.content-block ul {
  margin-left: 1.25rem;
}

.content-block li {
  margin-bottom: 0.35rem;
}

.event-list li {
  list-style: none;
  margin-left: 0;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.event-list li:last-child {
  border-bottom: none;
}

.site-footer {
  background: var(--maroon-dark);
  color: var(--gold-light);
  padding: 2rem 1rem;
  margin-top: 2rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
}

.site-footer h4 {
  color: var(--gold);
  font-family: system-ui, sans-serif;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.site-footer ul {
  list-style: none;
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--gold-light);
}

.footer-bottom {
  max-width: var(--max);
  margin: 1.5rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.8rem;
  text-align: center;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-family: system-ui, sans-serif;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.quick-links a {
  color: var(--gold-light);
}
