
:root {
  --bg: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --brand: #004b8d;
  --brand-50: #004b8d1a;
  --card: #f8fafc;
  --border: #e2e8f0;
}

* { box-sizing: border-box; }
html, body { margin:0; padding:0; }
body {
  background: var(--bg);
  color: var(--text);
  font: 16px/1.6 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1200px; margin: 0 auto; padding: 24px; }

.header {
  border-bottom: 1px solid var(--border);
  background: #fff;
  position: sticky; top:0; z-index: 100;
}
.header-inner { display:flex; gap:16px; align-items:center; justify-content:space-between; padding: 12px 24px; }
.brand { display:flex; align-items:center; gap:12px; }
.brand .logo { width:40px; height:40px; border-radius: 8px; background: var(--brand); display:flex; align-items:center; justify-content:center; color:white; font-weight:700; }
.brand .titles { display:flex; flex-direction:column; }
.brand .title { font-size:18px; font-weight:700; }
.brand .subtitle { font-size:12px; color: var(--muted); }

.nav { display:flex; gap:14px; flex-wrap:wrap; }
.nav a { padding:8px 12px; border-radius: 10px; }
.nav a[aria-current="page"], .nav a:hover { background: var(--brand-50); }

.lang-switch { font-size: 14px; color: var(--muted); }

.hero {
  background: linear-gradient(180deg, var(--brand-50), transparent);
  border-bottom: 1px solid var(--border);
}
.hero-inner { padding: 48px 24px; }
.hero h1 { font-size: 44px; line-height:1.1; margin:0 0 12px; }
.hero p { font-size: 18px; color: var(--muted); max-width: 90ch;}

.main { padding: 24px; }
.section { margin: 32px 0; background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 24px; }
.section h2 { margin-top:0; font-size: 24px; }

.grid { display:grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 16px; }

.people-grid { display:grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.person { background:#fff; border:1px solid var(--border); border-radius:16px; overflow:hidden; }
.person img { width:100%; aspect-ratio: 1 / 1; object-fit: cover; display:block; }
.person .meta { padding:12px; }
.person .name { font-weight:600; }
.person .role { color: var(--muted); font-size: 14px; }

.footer {
  border-top:1px solid var(--border);
  background:#fff;
}
.footer-inner { padding: 24px; display:flex; gap:16px; flex-wrap:wrap; align-items:center; justify-content:space-between; }
.footer small { color: var(--muted); }
.footer .links a { margin-right: 12px; }

.timeline { list-style:none; margin:0; padding:0; }
.timeline li { display:flex; gap:12px; padding: 10px 0; border-bottom:1px dashed var(--border); }
.timeline .year { width: 80px; font-weight: 600; color: var(--brand); }
.timeline .event { flex:1; }

.events { list-style: none; padding:0; margin:0; }
.events li { padding:10px 0; border-bottom:1px dashed var(--border); display:flex; gap:12px; align-items:center; }
.events .date { font-weight:600; min-width: 110px; width: auto; white-space: nowrap; }
.events .title { flex:1; }
