*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont,
               "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.65;
  color: #111;
  background: #f6f6f6;
  font-weight: 300;
}

/* =========================
   LAYOUT
   ========================= */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 96px 0;
}

/* =========================
   HERO (stabil: Text wird nie abgeschnitten)
   ========================= */
.hero {
  position: relative;
  background: #000;
  overflow: hidden;

  /* genug Höhe für Name + Liste auch bei schmalen Fenstern */
  min-height: clamp(520px, 72vh, 820px);
}

/* Bild füllt die Hero-Fläche */
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;

  object-fit: cover;
  object-position: right center;

  z-index: 1;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2;
}

/* LANGUAGE SWITCH */
.lang-switch {
  position: absolute;
  top: 18px;
  right: 22px;
  z-index: 4;

  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);

  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.lang-switch a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}

.lang-switch a:hover {
  text-decoration: underline;
}

.lang-switch .active {
  color: #fff;
  font-weight: 600;
}

.lang-switch .sep {
  opacity: 0.75;
}

/* Text */
.hero-inner {
  position: relative;
  z-index: 3;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  padding-top: clamp(28px, 6vw, 110px);
  padding-left: clamp(28px, 10vw, 180px);
  padding-right: 2rem;
  padding-bottom: 24px;

  color: #fff;
}

/* Name = light */
.hero h1 {
  margin: 0 0 1.2rem;
  font-size: clamp(2.0rem, 5vw, 3.2rem);
  font-weight: 300;
}

/* =========================
   LEISTUNGEN
   ========================= */
.hero-list {
  margin: 0;
  padding-left: clamp(18px, 4vw, 56px);
  list-style: none;
  font-size: clamp(0.95rem, 2.6vw, 1rem);
}

.hero-list li {
  margin: 0.65rem 0;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.hero-list li::before {
  content: "•";
  display: inline-block;
  width: 1.1em;
  color: rgba(255,255,255,0.75);
}

/* =========================
   SPLIT SECTIONS (ABOUT / FREELANCE)
   ========================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* H2 gleiche Größe wie Name oben */
h2 {
  margin: 0 0 1.2rem;
  font-size: clamp(2.0rem, 5vw, 3.2rem);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* =========================
   TRUST BARS
   ========================= */
.trust {
  padding: 72px 0;
  background: #2c2c2c;
}

.trust-text {
  margin: 0 auto;
  max-width: 520px;
  text-align: center;
  color: #fff;

  font-size: clamp(2.2rem, 4vw, 2.6rem);
  line-height: 1.2;
  letter-spacing: 0.01em;
}

/* =========================
   CONTACT
   ========================= */
.contact-inner {
  text-align: center;
  line-height: 2;
}

.contact-claim {
  margin: 0.2rem 0 1.6rem;
}

.contact-block {
  margin: 0 0 3.2rem;
}

.contact-block:last-child {
  margin-bottom: 0;
}

.contact a {
  color: #111;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-inner {
    padding-left: clamp(22px, 6vw, 48px);
    padding-right: 22px;
  }

  .lang-switch {
    top: 14px;
    right: 16px;
  }
}

/* Extra klein: kompakter, damit’s immer passt */
@media (max-width: 560px) {
  .hero {
    min-height: 560px;
  }

  .hero-list li {
    margin: 0.55rem 0;
  }
}