*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --red:        #e3032d;
    --red-dark:   #9d0d1c;
    --red-light:  #F5E8E9;
    --bg:         #FFFFFF;
    --bg-warm:    #F9F6F3;
    --text:       #1A1A1A;
    --text-mid:   #4A4A4A;
    --text-light: #888;
    --text-meta: rgba(255,255,255,0.5);
    --text-label: rgba(255,255,255,0.7);
    --text-light-meta: rgba(255,255,255,0.35);
    --border:     #E5E0DC;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Nunito Sans', sans-serif;
    --hero-img: url(/assets/images/IMG_4761_web.webp);
    --card-dark-bg: rgba(0, 0, 0, 0.45);
    --card-bg: rgba(255,255,255,0.07);
    --card-border: rgba(255,255,255,0.12);
    --card-hover-bg: var(--card-border);
    --card-hover-border: rgba(255,255,255,0.25);
    --card-color: rgba(255,255,255,0.9);
    --card-meta-color: var(--text-meta);
    --success-bg: #edf7ed;
    --success-border: #2e7d32;
    --success-color: #1b5e20;
  }

  html { scroll-behavior: smooth; }
  body { font-family: var(--sans); color: var(--text); background: var(--bg); font-size: 16px; line-height: 1.7; display: flex; flex-direction: column; min-height: 100vh;}
  .margin-top { margin-top: 1rem; }

  /* NAV */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,0.97);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%;
    height: 70px;
  }
  .nav-logo {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.02em;
    text-decoration: none;
  }
  .nav-logo span { color: var(--red); }
  .nav-links { display: flex; align-items: center; gap: 2.2rem; list-style: none; }
  .nav-links a {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text-mid);
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--red); }
  .nav-cta {
    background: var(--red);
    color: #fff !important;
    padding: 0.55rem 1.3rem;
    border-radius: 3px;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--red-dark) !important; color: #fff !important; }

  /* HERO */
  .hero {
    min-height: 92vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }
  .hero-left {
    background: var(--bg-warm);
    display: flex; flex-direction: column; justify-content: center;
    padding: 6rem 5% 6rem 7%;
    position: relative;
    z-index: 1;
  }
  .hero-eyebrow, .hero-cooperation {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.4rem;
    display: flex; align-items: center; gap: 0.8rem;
  }
  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px; height: 2px;
    background: var(--red);
  }
  .hero-cooperation {
    margin-bottom: 1.4rem;
  }
  .hero-title {
    font-family: var(--serif);
    font-size: clamp(2.8rem, 4.5vw, 4.2rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 1.8rem;
  }
  .hero-title em {
    font-style: italic;
    color: var(--red);
    font-weight: 300;
  }
  .hero-sub {
    font-size: 1.05rem;
    color: var(--text-mid);
    font-weight: 300;
    line-height: 1.8;
    max-width: 420px;
    margin-bottom: 2.8rem;
  }
  .hero-btns { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
  .btn-primary {
    background: var(--red);
    color: #fff;
    padding: 0.9rem 2rem;
    border-radius: 3px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.15s;
    border: 2px solid var(--red);
  }
  .btn-primary.small {
    padding: 0.55rem 1.3rem;
    line-height: 1;
  }
  .btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); }
  .btn-ghost {
    background: transparent;
    color: var(--text);
    padding: 0.9rem 2rem;
    border-radius: 3px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 2px solid var(--border);
    transition: border-color 0.2s;
  }
  .btn-ghost:hover { border-color: var(--text); }

  .hero-right {
    background: var(--red-dark);
    position: relative;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  .hero-photo-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
    padding-bottom: 3rem;
    gap: 0.7rem;
  }
  /* Decorative geometric shapes */
  .hero-deco {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    background: #fff;
  }
  .hero-deco-1 { width: 450px; height: 450px; top: -120px; right: -100px; }
  .hero-deco-2 { width: 280px; height: 280px; bottom: 60px; left: -80px; }
  .hero-deco-3 { width: 150px; height: 150px; top: 50%; right: 60px; transform: translateY(-50%); }
  .hero-person-block {
    position: relative; z-index: 2;
    text-align: center;
    width: 100%; height: 100%;
    display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
    padding-bottom: 3rem;
    background-image: var(--hero-img);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
  }
  .hero-person-icon {
    opacity: 0.3;
  }
  .hero-name-tag {
    background: var(--card-dark-bg);
    border: 1px solid var(--card-hover-border);
    border-radius: 3px;
    padding: 0.8rem 1.6rem;
    backdrop-filter: blur(8px);
  }
  .hero-name-tag p:first-child {
    font-family: var(--serif);
    font-size: 1.5rem;
    color: #FFFFFF;
    font-weight: 300;
    letter-spacing: 0.04em;
  }
  .hero-name-tag p:last-child {
    font-size: 0.75rem;
    color: var(--text-label);
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  /* ── PAGE HEADER ─────────────────────────────────────── */
  .page-header {
    background: var(--bg-warm);
    border-bottom: 1px solid var(--border);
    padding: 4rem 7% 3.5rem;
    position: relative;
    overflow: hidden;
  }
  .page-header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 7%;
    width: 60px; height: 3px;
    background: var(--red);
  }
  .page-header-eyebrow {
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.7rem;
    display: flex; align-items: center; gap: 0.6rem;
  }
  .page-header-eyebrow::before {
    content: '';
    display: block;
    width: 24px; height: 2px;
    background: var(--red);
  }
  .page-header h1 {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 300;
    color: var(--text);
    line-height: 1.15;
  }
  .page-header h1 em {
    font-style: italic;
    color: var(--red);
  }
  .breadcrumb {
    margin-top: 1.2rem;
    font-size: 0.8rem;
    color: var(--text-light);
    display: flex; align-items: center; gap: 0.5rem;
  }
  .breadcrumb a { color: var(--text-light); text-decoration: none; transition: color 0.2s; }
  .breadcrumb a:hover { color: var(--red); }
  .breadcrumb svg { flex-shrink: 0; }

  /* STATS BAR */
  .stats-bar {
    background: var(--red-dark);
    padding: 2.2rem 7%;
    display: grid;
    grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
    gap: 1rem;
    align-items: center;
    min-height: 200px;
  }
  .stat-item { text-align: center; }
  .stat-num {
    font-family: var(--serif);
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
    display: block;
    line-height: 1;
  }
  .stat-label {
    font-size: 0.78rem;
    color: var(--text-label);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.3rem;
  }
  .stat-divider {
    width: 1px;
    background: var(--card-hover-border);
    align-self: center;
    height: 48px;
  }

  /* SECTION SHARED */
  section { padding: 6rem 7%; }
  .section-tag {
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.8rem;
    display: flex; align-items: center; gap: 0.6rem;
  }
  .section-tag::before {
    content: '';
    display: block;
    width: 24px; height: 2px;
    background: var(--red);
    flex-shrink: 0;
  }
  .section-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 1rem;
  }
  .section-title em { color: var(--red); font-style: italic; font-weight: 300; }
  .section-intro {
    font-size: 1rem;
    color: var(--text-mid);
    font-weight: 300;
    max-width: 560px;
    line-height: 1.85;
    margin-bottom: 3.5rem;
  }

  /* LEISTUNGEN */
  #leistungen { background: var(--bg-warm); }
  .leistungen-header { max-width: 640px; }
  .leistungen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: var(--border);
    border: 1px solid var(--border);
  }
  .leistung-card {
    background: var(--bg);
    padding: 2.2rem 2rem;
    transition: background 0.2s;
    cursor: default;
  }
  .leistung-card:hover { background: var(--red-light); }
  .leistung-icon {
    width: 46px; height: 46px;
    border: 1.5px solid var(--red);
    border-radius: 3px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.4rem;
    color: var(--red);
    font-size: 1.3rem;
  }
  .leistung-title {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.6rem;
  }
  .leistung-desc {
    font-size: 0.9rem;
    color: var(--text-mid);
    font-weight: 300;
    line-height: 1.75;
  }

  /* ÜBER MICH */
  #uebermich {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }
  .uebermich-img {
    border: 1px solid var(--border);
    height: 780px;
    border-radius: 3px;
    max-width: 780px;
  }
  .uebermich-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top right;   /* je nach Bild left, center, right */
  }
  .uebermich-accent {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 6px;
    background: var(--red);
  }
  .uebermich-label {
    position: absolute;
    bottom: 1.5rem; right: 1.5rem;
    background: var(--red);
    color: #fff;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
  }
  .uebermich-quote {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.5;
    border-left: 3px solid var(--red);
    padding-left: 1.5rem;
    margin-bottom: 2rem;
  }
  .uebermich-text {
    font-size: 0.95rem;
    color: var(--text-mid);
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 1rem;
  }
  .uebermich-quals {
    margin-top: 2rem;
    display: flex; flex-direction: column; gap: 0.7rem;
  }
  .qual-item {
    display: flex; align-items: flex-start; gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-mid);
  }
  .qual-dot {
    width: 6px; height: 6px;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.55rem;
  }

  /* WARUM */
  #warum { background: var(--bg-warm); }
  .warum-header { text-align: center; margin-bottom: 3.5rem; }
  .warum-header .section-tag { justify-content: center; }
  .warum-header .section-tag::before { display: none; }
  .warum-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .warum-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: border-color 0.2s, transform 0.2s;
  }
  .warum-card:hover { border-color: var(--red); transform: translateY(-3px); }
  .warum-num {
    font-family: var(--serif);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--red-light);
    line-height: 1;
    margin-bottom: 1rem;
    -webkit-text-stroke: 1px var(--red);
  }
  .warum-title {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.7rem;
  }
  .warum-desc {
    font-size: 0.9rem;
    color: var(--text-mid);
    font-weight: 300;
    line-height: 1.75;
  }

  /* ── TESTIMONIALS ────────────────────────────────────── */
#referenzen {
  background: var(--red-dark);
  padding: 6rem 7%;
  overflow: hidden;
  position: relative;
}
#referenzen::before {
  content: '\201C';
  font-family: var(--serif);
  font-size: 28rem;
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: -4rem; left: 4%;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
#referenzen .section-tag { color: var(--card-meta-color); }
#referenzen .section-tag::before { background: var(--card-meta-color); }
#referenzen .section-title { color: #fff; margin-bottom: 3.5rem; }
#referenzen .section-title em { color: var(--card-meta-color); }

.testi-track-wrap { position: relative; }

/* Desktop: normales Grid */
.testi-track {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* normal 3, bei einer Rez mal ganzspaltig */
  gap: 1.5rem;
}

.testi-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 4px;
  padding: 2.2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: background 0.25s, border-color 0.25s;
  /* max-width: 900px; */ /* bei einer Referenz notwendig, sonst siehts komisch aus */
}
.testi-card:hover {
  background: var(--card-hover-bg);
  border-color: var(--card-hover-border);
}

.testi-stars { display: flex; gap: 3px; }
.testi-stars svg { color: #F4C542; }

.testi-quote {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 300;
  color: var(--card-color);
  line-height: 1.7;
  flex: 1;
}

.testi-divider {
  width: 32px; height: 1px;
  background: var(--card-hover-border);
}

.testi-author { display: flex; align-items: center; gap: 1rem; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 1rem;
  color: #fff;
  font-weight: 600;
  flex-shrink: 0;
}
.testi-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
}
.testi-meta {
  font-size: 0.78rem;
  color: var(--card-meta-color);
  letter-spacing: 0.05em;
  margin-top: 0.15rem;
}

/* Dots – versteckt auf Desktop */
.testi-dots {
  display: none;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--card-hover-border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.testi-dot.active {
  background: #fff;
  transform: scale(1.2);
}

  /* KONTAKT */
  #kontakt {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }
  .kontakt-details { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.2rem; }
  .kontakt-item { display: flex; align-items: flex-start; gap: 1rem; }
  .kontakt-icon {
    width: 48px;
    height: 48px;
    background: var(--red-light);
    color: var(--red);
    border-radius: 3px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
  }
  .kontakt-item-label {
    font-size: 0.73rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 700;
    margin-bottom: 0.15rem;
  }
  .kontakt-item-val {
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 400;
  }
  .kontakt-item-val a {
    color: var(--text);
    transition: color 0.2s;
  }
  .kontakt-item-val a:hover {
    color: var(--red);
  }

  .kontakt-form { display: flex; flex-direction: column; gap: 1.2rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
  .form-group label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-mid);
  }
  .form-group input,
  .form-group textarea,
  .form-group select {
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 0.75rem 1rem;
    font-family: var(--sans);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--bg);
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
  }
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus { border-color: var(--red); }
  .form-group textarea { resize: vertical; min-height: 120px; }
  .form-submit {
    background: var(--red);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-family: var(--sans);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.2s;
    align-self: flex-start;
  }
  .form-submit:hover { background: var(--red-dark); }
  .form-disclaimer {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.6;
  }

  .kontakt-feedback {
    padding: 0.9rem 1.2rem;
    border-radius: 3px;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .kontakt-feedback.success {
    background: var(--success-bg);
    border-left: 3px solid var(--success-border);
    color: var(--success-color);
  }
  .kontakt-feedback.error {
    background: var(--red-light);
    border-left: 3px solid var(--red);
    color: var(--red-dark);
  }
  .required-mark {
    color: var(--red);
  }
  .hp {
    position: absolute !important;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -1;
    overflow: hidden;
    width: 0;
    height: 0;
  }

   /* ── MAIN CONTENT ────────────────────────────────────── */
  .main-content-wrap {
    max-width: 1024px;
    padding: 5rem 7%;
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
  }

  /* Block */
  .main-content-block { display: flex; flex-direction: column; gap: 0; }

  .main-content-block-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
  }
  .main-content-block-icon {
    width: 40px; height: 40px;
    background: var(--red-light);
    border-radius: 3px;
    display: flex; align-items: center; justify-content: center;
    color: var(--red);
    flex-shrink: 0;
  }
  .main-content-block-icon .warum-num {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 0;
    min-width: 0;
  }
  .main-content-block-title {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.2;
  }

  /* Content rows inside a block */
  .main-content-rows { display: flex; flex-direction: column; gap: 1.2rem; }
  .main-content-row { display: grid; grid-template-columns: 35% 1fr; gap: 1rem; align-items: baseline; }
  .main-content-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    padding-top: 0.1rem;
  }
  .main-content-value {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.65;
  }
  .main-content-value a, .main-content-prose p a { color: var(--red); text-decoration: none; }
  .main-content-value a:hover, .main-content-prose p a:hover { text-decoration: underline; }
  .main-content-value strong { font-weight: 700; color: var(--text); }

  /* Fließtext-Absätze (für §-Abschnitte) */
  .main-content-prose {
    color: var(--text-mid);
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
  }
  .main-content-prose h3 {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
    margin-top: 0.5rem;
  }
  .main-content-block ul {
    margin-left: 1.5rem;
  }
  .main-content-block ul li::marker {
    color: var(--red);
  }

  /* Divider */
  .main-content-divider {
    height: 1px;
    background: var(--border);
  }

  /* Hinweis-Box */
  .main-content-note {
    background: var(--red-light);
    border-left: 3px solid var(--red);
    border-radius: 0 3px 3px 0;
    padding: 1rem 1.4rem;
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.7;
  }
  .main-content-note strong { color: var(--red); font-weight: 700; }

  /* FOOTER */
  footer {
    background: var(--bg-warm);
    color: var(--text);
    padding: 3rem 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: auto;
  }
  .footer-logo {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 500;
  }
  .footer-logo-img {
    max-width: 185px;
  }
  .footer-logo span { 
    color: var(--red); 
  }
  .footer-logo div:first-child {
    margin-bottom: 0.35rem;
  }
  .footer-links { 
    display: flex;
    gap: 2rem;
  }
  .footer-links a {
    font-size: 0.8rem;
    color: var(--text-mid);
    text-decoration: none;
    letter-spacing: 0.06em;
    transition: color 0.2s;
  }
  .footer-links a:hover { 
    color:var(--red); 
  }
  .footer-copy {
    font-size: 0.78rem;
    color: var(--text-light);
  }

  /* SVG ICONS */
  svg { display: inline-block; vertical-align: middle; }

  /* ANIMATE ON SCROLL */
  .fade-in {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .fade-in-delay-1 { transition-delay: 0.1s; }
  .fade-in-delay-2 { transition-delay: 0.2s; }
  .fade-in-delay-3 { transition-delay: 0.3s; }
  .fade-in-delay-4 { transition-delay: 0.4s; }
  .fade-in-delay-5 { transition-delay: 0.5s; }

  /* ── HAMBURGER (hidden on desktop) ─────────────────── */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px; height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 200;
  }
  .nav-hamburger span {
    display: block;
    width: 100%; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
    transform-origin: center;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ── BREAKPOINT 1: 1024px – Tablets landscape ───────── */
  @media (max-width: 1024px) {
    .hero-left { padding: 5rem 4% 5rem 5%; }
    /* .nav-links { gap: 1.4rem; } */
    section { padding: 5rem 5%; }
    #uebermich, #kontakt { padding: 5rem 5%; gap: 3.5rem; }
    .uebermich-img { height: 520px; }
    .stats-bar { padding: 2rem 5%; }
    footer { padding: 2.5rem 5%; }

    /* Nav → mobile drawer */
    .nav-hamburger { display: flex; }
    .nav-links {
      position: fixed;
      top: 70px; left: 0; right: 0;
      background: #fff;
      border-bottom: 1px solid var(--border);
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
      padding: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease;
      z-index: 150;
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }
    .nav-links.open { max-height: 400px; }
    .nav-links li { width: 100%; border-bottom: 1px solid var(--border); }
    .nav-links a {
      display: block;
      padding: 1rem 5%;
      font-size: 0.9rem;
    }
    .nav-links .nav-cta {
      margin: 1rem 5%;
      display: inline-block;
      width: auto;
      border-radius: 3px;
    }
    .nav-links li:last-child { border-bottom: none; }

    /* Mobile Slider */
    .testi-track-wrap {
      overflow: hidden;
    }
    .testi-track {
      display: flex;           /* flex statt grid */
      transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      will-change: transform;
    }
    .testi-card {
      max-width: 100%;         /* jede Karte nimmt volle Breite */
      flex-shrink: 0;
      border-radius: 4px;
      margin: 0;
    }
    .testi-dots { 
      display: flex;
      height: 10px;
    }
  }

  /* ── BREAKPOINT 2: 768px – Tablets portrait ─────────── */
  @media (max-width: 768px) {
      /* Hero → stacked */
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-left { padding: 4rem 5%; }
    .hero-right { height: 640px; }

    /* Stats → 2×2 */
    .stats-bar {
      grid-template-columns: 1fr 1px 1fr;
      gap: 0;
      padding: 0;
    }
    .stats-bar div:nth-child(4n) { display: none; }
    .stat-item { padding: 1.6rem 1rem; }
    /* .stat-item:nth-child(odd) { border-right: 1px solid var(--card-hover-border); } */
    .stat-num { font-size: 2rem; }

    /* Sections */
    section { padding: 4rem 5%; }
    #uebermich, #kontakt { padding: 4rem 5%; }

    /* Leistungen → 2 Spalten */
    .leistungen-grid { grid-template-columns: 1fr 1fr; }

    /* Über mich → gestapelt, Bild zuerst */
    #uebermich { grid-template-columns: 1fr; gap: 2.5rem; }
    .uebermich-img { height: 640px; }

    /* Warum → 1 Spalte */
    .warum-grid { grid-template-columns: 1fr; gap: 1rem; }
    .warum-card { padding: 1.8rem 1.5rem; text-align: left; display: flex; align-items: flex-start; gap: 1.2rem; }
    .warum-num { font-size: 2.5rem; min-width: 48px; margin-bottom: 0; }

    /* Kontakt → gestapelt */
    #kontakt { grid-template-columns: 1fr; gap: 2.5rem; }

    /* Form */
    .form-row { grid-template-columns: 1fr; }

    /* Footer */
    footer { flex-direction: column; align-items: flex-start; gap: 1.2rem; padding: 2.5rem 5%; }
    .footer-links { gap: 1.2rem; flex-wrap: wrap; }

    /* Page Header */
    .page-header { padding: 3rem 5% 2.5rem; }
    .page-header::after { left: 5%; }

    /* Main Content */
    .main-content-wrap { padding: 3.5rem 5%; gap: 2.5rem; }
    .main-content-row { grid-template-columns: 1fr; gap: 0.2rem; }
  }

  /* ── BREAKPOINT 3: 480px – Smartphones ──────────────── */
  @media (max-width: 480px) {
    nav { height: 60px; }
    .nav-links { top: 60px; }

    .hero-left { padding: 3rem 5%; }
    .hero-title { font-size: clamp(2rem, 8vw, 2.8rem); }
    .hero-sub { font-size: 0.95rem; }
    .hero-btns { flex-direction: column; align-items: stretch; }
    .btn-primary, .btn-ghost { text-align: center; padding: 0.9rem 1.2rem; }
    .hero-right { height: 520px; }

    /* Stats → 1 Spalte */
    .stat-num { font-size: 1.7rem; }
    .stat-label { font-size: 0.7rem; }

    /* Leistungen → 1 Spalte */
    .leistungen-grid { grid-template-columns: 1fr; }
    .leistung-card { padding: 1.8rem 1.5rem; }
    .leistung-card.empty { display: none; }

    /* Über mich */
    .uebermich-img { height: 480px; }
    .uebermich-quote { font-size: 1.2rem; }

    /* Warum */
    .warum-card { flex-direction: column; gap: 0.5rem; }
    .warum-num { font-size: 2rem; }

    /* Section shared */
    section { padding: 3rem 5%; }
    #uebermich, #kontakt { padding: 3rem 5%; }
    .section-title { font-size: clamp(1.7rem, 6vw, 2.2rem); }
    .section-intro { font-size: 0.93rem; }

    /* Footer */
    footer { padding: 2rem 5%; }
    .footer-links { gap: 1rem; }
    .footer-links a { font-size: 0.75rem; }

    /* Page Header */
    .page-header h1 { font-size: 1.9rem; }

    /* Main Content */
    .main-content-wrap { padding: 2.5rem 5%; }
    .main-content-block-title { font-size: 1.2rem; }
  }

  /* ── BREAKPOINT 4: 360px – Kleine Smartphones ───────── */
  @media (max-width: 360px) {
    .hero-title { font-size: 1.9rem; }
    .stats-bar { grid-template-columns: 1fr; }
    .stat-divider { display: none; }
    .stat-item { border-bottom: 1px solid rgba(255,255,255,0.2) !important; }
    .stat-item:last-child { border-bottom: none !important; }
    .nav-logo { font-size: 1.1rem; }
  }