:root {
  --violet: #660096;
  --lavender: #e6e6fa;
  --gold: #daa520;
  --text: #231f20;
  --muted: #5f5a60;
  --bg: #fffdfc;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}
.narrow { width: min(760px, 100%); }
.site-header {
  background: white;
  border-bottom: 2px solid var(--lavender);
  position: sticky;
  top: 0;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}
.brand {
  font-weight: 700;
  color: var(--violet);
  font-size: 1.2rem;
}
nav a {
  margin-left: 20px;
  text-decoration: none;
  color: var(--violet);
  font-weight: 600;
}
.hero {
  background: linear-gradient(180deg, var(--lavender), white);
  padding: 72px 0;
}
.section { padding: 48px 0; }
.eyebrow {
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
h1, h2 { color: var(--violet); }
.lead { font-size: 1.08rem; color: var(--muted); max-width: 760px; }
.grid-3, .project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.card {
  background: white;
  border: 1px solid #eee;
  border-left: 6px solid var(--violet);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}
.btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: none;
}
.btn-primary { background: var(--violet); color: white; }
.btn-secondary { background: white; color: var(--violet); border: 2px solid var(--violet); }
.btn-disabled { background: #ddd; color: #666; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.filters { display: flex; gap: 10px; flex-wrap: wrap; margin: 22px 0; }
.chip {
  border: 1px solid var(--gold);
  background: white;
  color: var(--violet);
  padding: 8px 12px;
  border-radius: 999px;
}
.chip.active { background: var(--gold); color: white; }
.tag {
  display: inline-block;
  background: var(--lavender);
  color: var(--violet);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 700;
}
.project-card.closed { opacity: 0.78; }
.site-footer {
  margin-top: 40px;
  padding: 24px 0;
  border-top: 2px solid var(--lavender);
  color: var(--muted);
}

.alt-section {
  background: rgba(230, 230, 250, 0.35);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.step-card {
  background: #fff;
  border: 1px solid rgba(102, 0, 150, 0.15);
  border-radius: 14px;
  padding: 1.2rem;
}

.step-number {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgb(102, 0, 150);
  color: white;
  text-align: center;
  line-height: 2rem;
  font-weight: bold;
  margin-bottom: 0.8rem;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.logo-card {
  background: #fff;
  border: 1px solid rgba(102, 0, 150, 0.2);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
}

.logo-card img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
}

.awards-list,
.schools-list {
  margin-top: 1rem;
  padding-left: 1.2rem;
}

.center-button,
.center-text {
  text-align: center;
  margin-top: 1.2rem;
}

.lang-switch {
  display: flex;
  gap: 8px;
  margin-left: 16px;
}

.lang-switch button {
  background: white;
  border: 1px solid var(--violet);
  color: var(--violet);
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
}

.lang-switch button:hover {
  background: var(--lavender);
}

.content-block {
  margin-bottom: 2rem;
}

.cta-section {
  padding-bottom: 72px;
}

.contact-card {
  background: #fff;
  border: 1px solid rgba(102, 0, 150, 0.2);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  margin-top: 1rem;
}

.contact-card a {
  color: rgb(102, 0, 150);
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.lang-switch {
  display: flex;
  gap: 8px;
  margin-left: 16px;
}

.lang-switch button {
  background: white;
  border: 1px solid var(--violet);
  color: var(--violet);
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
}

.lang-switch button:hover {
  background: var(--lavender);
}

.content-block {
  margin-bottom: 2rem;
}

.cta-section {
  padding-bottom: 72px;
}

.contact-card {
  background: #fff;
  border: 1px solid rgba(102, 0, 150, 0.2);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  margin-top: 1rem;
}

.contact-card a {
  color: rgb(102, 0, 150);
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.timeline-section {
  padding: 48px 0;
  border-radius: 16px;
}

.timeline {
  margin-top: 24px;
  border-left: 4px solid var(--violet);
  padding-left: 22px;
}

.timeline-item {
  position: relative;
  background: white;
  border: 1px solid rgba(102, 0, 150, 0.15);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.035);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -33px;
  top: 24px;
  width: 16px;
  height: 16px;
  background: var(--gold);
  border: 3px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--violet);
}

.timeline-date {
  display: inline-block;
  background: var(--lavender);
  color: var(--violet);
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.note {
  font-weight: 700;
  color: var(--violet);
}

@media (max-width: 760px) {
  .timeline {
    padding-left: 18px;
  }

  .timeline-item::before {
    left: -29px;
  }
}
