:root {
  --bg: #0c1410;
  --panel: #142019;
  --panel-hi: #1d2c23;
  --border: #1f3326;
  --green: #2aa05a;
  --green-hi: #4ec97c;
  --blue-hi: #6cb6f5;
  --text: #e8efe9;
  --muted: #93a89b;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

a { color: var(--blue-hi); }
a:hover { color: var(--green-hi); }

.site-header {
  padding: 56px 24px 32px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #102018 0%, var(--bg) 100%);
}
.brand h1 {
  margin: 0;
  font-size: 2.6rem;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.brand .tagline {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

.section-title {
  font-size: 1.6rem;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.section-sub {
  color: var(--muted);
  margin: 0 0 24px;
  font-size: 0.95rem;
}

.schools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.school-tile {
  display: flex;
  flex-direction: column;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.15s ease, transform 0.15s ease, background 0.15s ease;
}
.school-tile:hover {
  background: var(--panel-hi);
  border-color: var(--green-hi);
  transform: translateY(-2px);
}
.school-emblem {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1f4d33 0%, #2aa05a 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.school-body { flex: 1; }
.school-name {
  margin: 0 0 4px;
  font-size: 1.25rem;
  font-weight: 600;
}
.school-location {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.95rem;
}
.school-mascot {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.school-cta {
  margin-top: 18px;
  color: var(--green-hi);
  font-weight: 500;
  font-size: 0.95rem;
}

.about-section {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  max-width: 720px;
}
.about-section p {
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 12px;
}
.about-section p.muted { color: var(--muted); font-size: 0.95rem; }

.site-footer {
  padding: 24px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.muted { color: var(--muted); }

@media (max-width: 720px) {
  .site-header { padding: 36px 16px 24px; }
  .brand h1 { font-size: 2rem; }
  main { padding: 32px 16px 48px; }
}
