* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: #1a1a2e;
  background: #fff;
  font-size: 16px;
}

/* NAV */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2.5rem;
  border-bottom: 1px solid #e8e8e8;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 52px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #666;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-bottom: 2px;
}

.nav-links a:hover,
.nav-links a.active {
  color: #7700ee;
  border-bottom: 1px solid #7700ee;
}

/* HERO (other pages) */
.hero {
  height: 420px;
  background: #c8d4de url('img/hero.jpeg') center / cover no-repeat;
}

/* HOME FULL-BLEED HERO */
.hero-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.hero-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2.5rem;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.3);
}

.hero-full {
  height: 100vh;
  background: #c8d4de url('img/hero.jpeg') center / cover no-repeat;
}

.body.home footer {
  margin-top: 0;
}

/* MAIN CONTENT */
.section {
  max-width: 860px;
  margin: 0 auto;
  padding: 3.5rem 2rem;
}

h1 {
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

h2 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

p {
  line-height: 1.75;
  color: #444;
  margin-bottom: 1rem;
}

/* CONSULTING */
.tagline {
  font-size: 1rem;
  color: #666;
  margin-bottom: 2rem;
  letter-spacing: 0.04em;
}

.services-list {
  list-style: none;
}

.services-list li {
  padding: 0.6rem 0;
  color: #444;
  line-height: 1.6;
  border-bottom: 1px solid #f0f0f0;
}

.services-list li::before {
  content: "– ";
  color: #999;
}

/* INVESTMENTS */
.activities-list {
  list-style: none;
  margin-bottom: 3rem;
}

.activities-list li {
  padding: 0.6rem 0;
  color: #444;
  border-bottom: 1px solid #f0f0f0;
}

.activities-list li::before {
  content: "– ";
  color: #999;
}

.investments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.investment-card {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e0e0e0;
  padding: 1.5rem 1rem;
  text-decoration: none;
  color: #1a1a2e;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  min-height: 80px;
  transition: border-color 0.2s;
}

.investment-card:hover {
  border-color: #7700ee;
  color: #7700ee;
}

/* TEAM */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.team-member .photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #d0d8e2;
  margin-bottom: 1.2rem;
  object-fit: cover;
  display: block;
}

.team-member h2 {
  margin-bottom: 0.75rem;
}

.team-member p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0.4rem;
}

.team-member a {
  font-size: 0.85rem;
  color: #1a1a2e;
}

/* CONTACT */
.contact-block {
  margin-bottom: 2.5rem;
}

.contact-block p {
  margin-bottom: 0.3rem;
}

.impressum {
  border-top: 1px solid #e8e8e8;
  padding-top: 2.5rem;
  margin-top: 1rem;
}

.impressum h2 {
  margin-bottom: 1.5rem;
}

.impressum h3 {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #888;
}

.impressum p {
  font-size: 0.9rem;
}

/* FOOTER */
footer {
  background: #f7f7f7;
  border-top: 1px solid #e8e8e8;
  padding: 2rem;
  text-align: center;
  font-size: 0.78rem;
  color: #999;
  margin-top: 4rem;
}

footer a {
  color: #999;
  text-decoration: none;
}

footer a:hover {
  color: #1a1a2e;
}

@media (max-width: 640px) {
  nav { flex-direction: column; gap: 1rem; padding: 1rem; }
  .nav-links { gap: 1.2rem; flex-wrap: wrap; justify-content: center; }
  .team-grid { grid-template-columns: 1fr; }
  .investments-grid { grid-template-columns: repeat(2, 1fr); }
  h1 { font-size: 1.5rem; }
}
