#leistungen,
  #kontakt {
    scroll-margin-top: 100px;
  }
  /* css/styles.css setzt einen hellen Body-Default (für die helleren Unterseiten) –
     die Startseite überschreibt das auf ihr dunkles Theme. */
  body {
    background: #0b0f0d;
    color: #eee;
  }

 
  .hero-bg-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    min-height: 600px; /* muss exakt zu #blankton-hero passen, sonst croppen die
                           Ebenen bei kurzen Viewports unterschiedlich stark und
                           laufen sichtbar auseinander */
    z-index: 0;
    overflow: hidden;
  }
  .hero-bg-fixed img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    will-change: transform;
  }

  #blankton-hero {
    position: relative;
    z-index: 1;
    height: 100vh;
    min-height: 600px;
  }

  
  #blankton-hero .parallax-fg,
  #blankton-hero .person-layer {
    object-fit: cover;
    object-position: center;
  }

  #blankton-hero .person-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    will-change: transform;
  }

  @media (prefers-reduced-motion: reduce) {
    #blankton-hero .person-layer {
      will-change: auto;
    }
  }

 
  @media (max-width: 768px), (max-height: 500px) {
    .hero-bg-fixed {
      position: absolute;
      top: 0;
      left: 0;
    }
    .hero-bg-fixed img,
    #blankton-hero .parallax-fg,
    #blankton-hero .person-layer {
      transform: none !important;
    }
  }

 
  section {
    position: relative;
    z-index: 1;
    background: #0b0f0d;
    padding: 5rem 1.5rem;
  }
  section .section-inner {
    max-width: 760px;
    margin: 0 auto;
  }
  section h2 { font-size: 1.4rem; }
  section p { line-height: 1.6; color: #bbb; }

  /* "AUDIO AUF MASS" – Beispiel für Effekt 5 (Text-Reveal), nachgebaut aus der Vorlage */
  .audio-section {
    background: #0d2836;
    text-align: center;
    padding: 7rem 1.5rem;
  }
  .audio-section .text-reveal-chars {
    /* Geschwindigkeit: --reveal-duration = Dauer je Buchstabe (CSS), data-reveal-stagger
       weiter unten im Markup = Zeit ZWISCHEN den Buchstaben (Attribut). */
    --reveal-duration: 0.9s;
    font-size: clamp(2.2rem, 6vw, 5.75rem);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.03em;
    color: #cdd7dc;
    margin: 0;
  }
  /* Original: jedes Wort auf eigener Zeile statt normalem Umbruch */
  .audio-section .text-reveal-word {
    display: block;
  }


  .leistungen-intro {
    background: #fff;
    color: #111;
    text-align: center;
  }
  .leistungen-intro h2 {
    font-size: 2rem;
    margin: 0 0 1rem;
  }
  .leistungen-intro p {
    color: #444;
    max-width: 620px;
    margin: 0 auto;
  }

  .leistungen-grid {
    background: #161616;
  }
  section .leistungen-grid-inner {
      max-width: var(--site-content-width);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem 4rem;
  }
  @media (max-width: 640px) {
    section .leistungen-grid-inner {
      grid-template-columns: 1fr;
      gap: 3rem;
    }
  }
  .leistung-card {
    text-align: center;
  }
  .leistung-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 1.1rem;
    color: #fff;
  }
  .leistung-card h3 {
    color: #fff;
    font-size: 1.15rem;
    margin: 0 0 0.75rem;
  }
  .leistung-card p {
    color: #999;
    font-size: 1rem;
    max-width: 340px;
    margin: 0 auto;
  }
  .leistung-cta {
    display: inline-block;
    margin-top: 1.4rem;
    padding: 0.6rem 1.6rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
    font-size: 0.82rem;
    letter-spacing: 0.03em;
    transition: background-color 0.2s ease, border-color 0.2s ease;
  }
  .leistung-cta:hover,
  .leistung-cta:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.7);
  }


  .kontakt-section {
    position: relative;
    overflow: hidden;
    padding: 0;
  }
  .kontakt-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .kontakt-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .kontakt-bg::after {
      content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      90deg,
      rgba(8, 8, 8, 0.6) 0%,
      rgba(8, 8, 8, 0.6) 50%,
      rgba(8, 8, 8, 0.25) 50%,
      rgba(8, 8, 8, 0.25) 100%
    );
  }
  .kontakt-inner {
    position: relative;
    z-index: 1;
    max-width: var(--site-content-width);
    margin: 0 auto;
    padding: 6rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  @media (max-width: 768px) {
    .kontakt-inner {
      grid-template-columns: 1fr;
      padding: 4rem 1.5rem;
    }
  }
  .kontakt-section h2 {
    color: #fff;
    font-size: 1.7rem;
    margin: 0 0 0.5rem;
  }
  .kontakt-section p {
    color: rgba(255, 255, 255, 0.8);
  }
  .kontakt-form {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-top: 1.5rem;
    max-width: 420px;
  }
  .kontakt-form input,
  .kontakt-form textarea {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 4px;
    padding: 0.75rem 1rem;
    color: #fff;
    font: inherit;
    font-size: 1rem;
  }
  .kontakt-form input::placeholder,
  .kontakt-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.55);
  }
  .kontakt-form input:focus,
  .kontakt-form textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.12);
  }
  .kontakt-form textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
  }
  .kontakt-submit {
    align-self: flex-start;
    margin-top: 0.4rem;
    padding: 0.7rem 2.2rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    background: transparent;
    color: #fff;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
  }
  .kontakt-submit:hover,
  .kontakt-submit:focus-visible {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
  }
  .kontakt-address address {
    font-style: normal;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 1.4rem 0 1rem;
  }
  .kontakt-address p {
    margin: 0.3rem 0;
  }
  .kontakt-address a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .kontakt-address a:hover,
  .kontakt-address a:focus-visible {
    color: rgba(255, 255, 255, 0.7);
  }
