@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:wght@400;600;700&family=Source+Sans+3:wght@400;500;600&display=swap');
:root {
    --bg: #f8fafc;
    --surface: #fff;
    --text: #0f172a;
    --muted: #475569;
    --accent: #1e40af;
    --wrap: 920px;
}
body.has-proto-bar { font-family: 'Source Sans 3', system-ui, sans-serif; background: var(--bg); color: var(--text); line-height: 1.65; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 1.25rem; }
.nav { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 0; border-bottom: 2px solid var(--accent); }
.logo { font-family: 'Source Serif 4', serif; font-weight: 700; font-size: 1.15rem; color: var(--accent); text-decoration: none; }
.nav a { color: var(--muted); text-decoration: none; font-size: 0.9rem; font-weight: 500; margin-left: 1.5rem; }
.hero { display: grid; grid-template-columns: 200px 1fr; gap: 2.5rem; padding: 3.5rem 0; align-items: start; }
.photo { width: 200px; height: 240px; border-radius: 4px; overflow: hidden; box-shadow: 0 8px 32px rgba(30,64,175,0.15); }
.photo .person-avatar { width: 100%; height: 100%; border-radius: 4px; font-size: 3rem; }
.hero h1 { font-family: 'Source Serif 4', serif; font-size: 2rem; font-weight: 700; margin-bottom: 0.35rem; }
.role { color: var(--accent); font-weight: 600; font-size: 0.95rem; margin-bottom: 1.25rem; }
.hero-bio { color: var(--muted); font-size: 0.95rem; max-width: 32rem; }
.credentials { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; }
.cred { background: var(--surface); border: 1px solid #e2e8f0; padding: 0.65rem 1rem; border-radius: 8px; font-size: 0.82rem; }
.cred strong { display: block; color: var(--accent); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; }
.section { padding: 3rem 0; border-top: 1px solid #e2e8f0; }
.section h2 { font-family: 'Source Serif 4', serif; font-size: 1.35rem; margin-bottom: 1.5rem; color: var(--accent); }
.services { display: grid; gap: 1rem; }
.service { background: var(--surface); border-left: 4px solid var(--accent); padding: 1.25rem 1.5rem; box-shadow: 0 2px 8px rgba(0,0,0,0.04); border-radius: 0 8px 8px 0; }
.service h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.service p { font-size: 0.88rem; color: var(--muted); }
.contacts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.contact { background: var(--surface); padding: 1.25rem; border-radius: 8px; border: 1px solid #e2e8f0; }
.contact strong { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--accent); margin-bottom: 0.35rem; }
.cta-box { background: var(--accent); color: #fff; border-radius: 8px; padding: 2rem; text-align: center; margin-top: 2rem; }
.cta-box h3 { font-family: 'Source Serif 4', serif; font-size: 1.35rem; margin-bottom: 0.5rem; }
.cta-box p { opacity: 0.9; font-size: 0.9rem; margin-bottom: 1.25rem; }
.btn { display: inline-block; padding: 0.75rem 1.75rem; background: #fff; color: var(--accent); font-weight: 600; text-decoration: none; border-radius: 6px; border: none; cursor: pointer; font-size: 0.9rem; }
.footer { padding: 2rem 0; text-align: center; font-size: 0.82rem; color: var(--muted); }
@media (max-width: 640px) { .hero, .contacts { grid-template-columns: 1fr; } .photo { width: 100%; height: 280px; } }
