*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: hidden; }
:root {
  --bg: #ffffff;
  --fg: #1f2937;
  --muted: #6b7280;
  --brand: #f97316;
  --card: #ffffff;
  --ring: rgba(249,115,22,.25);
}
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: var(--bg);
  color: var(--fg);
  display: flex;
  flex-direction: column;
}
.wrap { max-width: 980px; width: 100%; margin: 0 auto; padding: 48px 20px; text-align: center; position: relative; }
header { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.logo img { height: auto; max-height: 80px; max-width: 100%; }
.tagline { font-size: clamp(1.4rem, 1.8vw + 1rem, 2rem); line-height: 1.25; margin: 20px 0 6px; font-weight: 600; }
.sub { font-size: 1.35rem; font-weight: 400; color: var(--muted); max-width: 65ch; margin: 0.5em auto 0; line-height: 1.5; }
.site-logos { display: flex; justify-content: center; gap: 20px; margin: 22px 0 34px; flex-wrap: wrap; }
.site-logos a img { height: auto; max-height: 50px; width: auto; max-width: 100%; transition: transform .2s; }
.site-logos a img:hover { transform: scale(1.05); }
.card { background: var(--card); border: 1px solid rgba(0,0,0,.06); border-radius: 16px; padding: 24px; box-shadow: 0 10px 30px rgba(0,0,0,.06); text-align: left; }
.team { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 26px; }
.person { display: grid; grid-template-columns: 84px 1fr; gap: 16px; align-items: center; }
.avatar { width: 84px; height: 84px; border-radius: 999px; object-fit: cover; border: 1px solid rgba(0,0,0,.06); background: #fff; }
.person h3 { margin: 0; font-size: 1.15rem; }
.role { margin: 4px 0 0; color: var(--muted); font-size: .98rem; }
.bio { margin: 8px 0 0; font-size: 1rem; }
@media (min-width: 720px) { .team { grid-template-columns: 1fr 1fr; } }
.contact { margin-top: 30px; text-align: center; font-size: 1.05rem; }
.contact a { color: var(--fg); text-decoration: none; font-weight: 600; }
.contact a:hover { text-decoration: underline; }
footer { margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(0,0,0,.08); color: var(--muted); font-size: .95rem; display: flex; flex-direction: column; gap: 12px; align-items: center; text-align: center; }
.legal { margin-top: 16px; font-size: 0.9rem; color: var(--muted); }
.lang-switch { position: absolute; top: 20px; right: 20px; font-size: 0.95rem; }
.lang-switch a { color: var(--muted); font-size: 0.9rem; text-decoration: none; }
.lang-switch a:hover { text-decoration: underline; }
