/* ─── Scroll-Offset (fixierter Header) ─── */

html {
  scroll-padding-top: 80px;
}

/* ─── Allgemeine Section-Wrapper ─── */

.section-wrap {
  padding: var(--spacing-section) var(--spacing-md);
  max-width: 1100px;
  margin: 0 auto;
}

.section-bg-alt {
  background: var(--color-bg-alt);
}

/* ─── Hero ─── */

.hero-stage {
  position: relative;
  background: var(--color-bg);
}

.hero-stage-inner {
  position: relative;
  z-index: 1;
}

/* ─── About ─── */

.about-section {
  background: var(--color-bg-alt);
  border-radius: 24px 24px 0 0;
  position: relative;
  z-index: 10;
  margin-top: -24px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--spacing-lg);
  align-items: start;
}

.about-photo-wrap {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  clip-path: inset(0 0 100% 0);
  will-change: clip-path;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-headline {
  margin: var(--spacing-xs) 0 var(--spacing-sm);
  line-height: 1.1;
}

.about-bio {
  font-weight: var(--weight-light);
  line-height: 1.7;
  max-width: 58ch;
}

.about-meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: var(--spacing-md) 0 var(--spacing-sm);
}

.about-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  font-weight: var(--weight-light);
  color: var(--color-text-muted);
}

.about-toolbox-label {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--spacing-xs);
}

.toolbox-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

@media (max-width: 767px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-photo-wrap {
    aspect-ratio: 4 / 3;
    max-height: 320px;
  }
}

/* ─── Hero Ticker ─── */

.hero-ticker {
  background: var(--color-text);
  overflow: hidden;
  padding: 1.75rem 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.hero-ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker-scroll 22s linear infinite;
}

.hero-ticker-item {
  font-family: var(--font-heading);
  font-weight: var(--weight-black);
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  color: var(--color-bg);
  letter-spacing: -0.01em;
  line-height: 1;
  padding-right: 0;
  flex-shrink: 0;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Leistungen ─── */

.leistungen-heading {
  margin-bottom: var(--spacing-md);
}

/* ─── Lebenslauf ─── */

.lebenslauf-section {
  background: var(--color-bg-alt);
}

/* ─── Kontakt ─── */

.kontakt-section {
  background: var(--color-bg-alt);
}

.contact-headline {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: var(--spacing-sm);
}
