/* Self-hosted Inter (GDPR: NO Google Fonts CDN -- the CDN embed leaks the
   visitor IP to Google without consent; LG Munchen I 2022-01-20 ruled that a
   GDPR breach. A governance/data-discipline advisory must not leak visitor IPs.
   Same woff2 the new design ships at /fonts/. Absolute path works from /xx/ too. */
@font-face{font-family:'Inter';src:url('/fonts/InterVariable.woff2') format('woff2');font-weight:100 900;font-style:normal;font-display:swap}
/*
 * Zenom minimal Swiss-inspired stylesheet
 * Uses a strict grid, generous whitespace and neutral colours.
 */

html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
}

.container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
}
.logo img {
  height: 40px;
  width: auto;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
}
.main-nav a {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 500;
}
.main-nav a:hover {
  text-decoration: underline;
}

.lang-switch a {
  margin-left: 0.5rem;
  text-decoration: none;
  font-size: 0.9rem;
  color: #666;
}
.lang-switch a:hover {
  color: #000;
}

/* Hero */
.hero {
  padding: 4rem 0;
  text-align: center;
  background-color: #f9f9f9;
}
.hero h1 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.hero p {
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto 2rem auto;
}
.btn-primary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #003399;
  color: #fff;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 500;
}
.btn-primary:hover {
  background-color: #002366;
}

/* Services */
.services {
  padding: 3rem 0;
}
.services h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.service h3 {
  margin-top: 0;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.service p {
  margin-top: 0;
  font-size: 1rem;
}

/* About */
.about {
  padding: 3rem 0;
  background-color: #f9f9f9;
}
.about h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  text-align: center;
}
.about p {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

/* Contact */
.contact {
  padding: 3rem 0;
}
.contact h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  text-align: center;
}
.contact p {
  text-align: center;
  margin-bottom: 2rem;
}
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}
.form-field {
  margin-bottom: 1rem;
}
.form-field label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-family: inherit;
}
.checkbox-field {
  display: flex;
  align-items: flex-start;
}
.checkbox-field input[type="checkbox"] {
  margin-right: 0.5rem;
  margin-top: 0.2rem;
}
.site-footer {
  padding: 2rem 0;
  background-color: #f1f1f1;
  font-size: 0.875rem;
}
.site-footer .footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 0.5rem;
}
.site-footer a {
  text-decoration: none;
  color: #003399;
}
.site-footer a:hover {
  text-decoration: underline;
}

/* Founder bio strip (homepage) */
.founder {
  padding: 3rem 0;
}
.founder h2 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  text-align: center;
}
.founder-grid {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}
.founder-photo {
  flex: 0 0 auto;
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 3px;
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 8%;
  display: block;
}
.founder-text {
  flex: 1 1 auto;
}
.founder-name {
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 0 0.5rem 0;
}
.founder-text p {
  margin-top: 0;
}
.founder-link {
  color: #003399;
  font-weight: 500;
  text-decoration: none;
}
.founder-link:hover {
  text-decoration: underline;
}
@media (max-width: 600px) {
  .founder-grid {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  .founder-photo {
    width: 160px;
    height: 160px;
  }
}

/* Founder full profile page */
.back-link {
  display: inline-block;
  margin: 1.5rem 0 0 0;
  color: #003399;
  text-decoration: none;
  font-size: 0.9rem;
}
.back-link:hover {
  text-decoration: underline;
}
.profile-intro {
  padding: 2rem 0 1rem 0;
  text-align: center;
}
.profile-intro .profile-photo {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.profile-photo img {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
  border-radius: 3px;
}
.profile-intro h1 {
  font-size: 2rem;
  margin: 0 0 0.25rem 0;
}
.profile-role {
  margin: 0;
  color: #666;
  font-size: 1rem;
}
.profile-body {
  padding: 1rem 0 3rem 0;
}
.profile-content {
  max-width: 720px;
  margin: 0 auto;
}
.profile-content h2 {
  font-size: 1.4rem;
  margin: 2.25rem 0 0.75rem 0;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid #e5e5e5;
}
.profile-content > h2:first-child {
  margin-top: 0;
}
.profile-content ul {
  padding-left: 1.2rem;
}
.profile-content li {
  margin-bottom: 0.4rem;
}
.profile-experience {
  list-style: none;
  padding-left: 0;
}
.profile-experience li {
  margin-bottom: 1rem;
}
.profile-languages {
  font-size: 1.05rem;
}