/* ================================================================
   #TeamPOWER × FitLine — Landingpage
   Stylesheet zu index.html (gehört in denselben Ordner wie die HTML-Datei)
   ================================================================ */

  /* ============================================================
     DESIGN-SYSTEM / VARIABLEN
     Farben eng an der Anzeige: Schwarz, Anthrazit, kräftiges Rot
     ============================================================ */
  :root {
    --black: #0a0a0b;
    --anthracite: #17171a;
    --anthracite-light: #202024;
    --anthracite-lighter: #2b2b30;
    /* Akzentfarbe an die Anzeige angeglichen: kräftiges Crimson/Pink-Rot statt reinem Rot */
    --red: #e4003a;
    --red-dark: #a1002a;
    --white: #ffffff;
    --gray-100: #f4f4f5;
    --gray-300: #c9c9cd;
    --gray-500: #8f8f96;

    --font-head: 'Oswald', 'Arial Narrow', sans-serif;
    /* Anton: schwere, plakative Headline-Schrift wie in der Anzeige (MEHR LEISTUNG.) */
    --font-display: 'Anton', var(--font-head);
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --max-w: 1180px;
    --gap: clamp(1.25rem, 3vw, 2.5rem);
    --radius: 4px;

    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.35);
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; overflow-x: hidden; }

  body {
    margin: 0;
    background: var(--black);
    color: var(--gray-100);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    /* Platz für feststehende mobile Kontaktleiste */
    padding-bottom: 64px;
  }
  @media (min-width: 1080px) {
    body { padding-bottom: 0; }
  }

  img { max-width: 100%; display: block; }

  h1, h2, h3, h4 {
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.08;
    margin: 0 0 0.6em;
    color: var(--white);
  }

  p { margin: 0 0 1em; color: var(--gray-300); }
  p:last-child { margin-bottom: 0; }

  a { color: var(--red); }

  .container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  }

  section { position: relative; padding: clamp(3.5rem, 8vw, 6.5rem) 0; }

  .eyebrow {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.9rem;
  }

  .section-head { max-width: 640px; margin-bottom: clamp(2rem, 5vw, 3.25rem); }
  .section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

  h2 { font-size: clamp(1.9rem, 4.5vw, 2.9rem); }
  h3 { font-size: clamp(1.2rem, 2.4vw, 1.5rem); }

  /* Fokuszustände: durchgängig sichtbar, barrierearm */
  a:focus-visible,
  button:focus-visible,
  .card:focus-visible {
    outline: 3px solid var(--red);
    outline-offset: 3px;
  }

  /* ---------- Buttons ---------- */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    font-family: var(--font-head);
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.95em 1.7em;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  }
  .btn:hover { transform: translateY(-2px); }
  .btn-primary { background: var(--red); color: var(--white); }
  .btn-primary:hover { background: #ff1a2f; }
  .btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.35); }
  .btn-secondary:hover { border-color: var(--white); }
  .btn-ghost { background: transparent; color: var(--red); border-color: var(--red); }
  .btn-ghost:hover { background: var(--red); color: var(--white); }
  .btn-block { width: 100%; }

  /* ============================================================
     NAVIGATION
     ============================================================ */
  header.site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 10, 11, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  /* Hinweis: kein backdrop-filter hier -- das erzeugt in modernen Browsern
     einen neuen Containing Block fuer "position: fixed"-Kindelemente
     (das mobile Ausklapp-Menue haengt darin), wodurch dessen Hoehe/Position
     kaputt geht. Falls der Weichzeichner-Effekt gewuenscht ist, muesste
     das mobile Menue stattdessen als Geschwister von <header> im Body
     liegen statt als Kind davon. */
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem clamp(1.25rem, 4vw, 2.5rem);
    max-width: var(--max-w);
    margin: 0 auto;
  }
  .logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    white-space: nowrap;
  }
  .logo img {
    height: 42px;
    width: auto;
    display: block;
  }
  @media (min-width: 1080px) {
    .logo img { height: 52px; }
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2vw, 2.2rem);
  }
  .nav-links a:not(.btn) {
    color: var(--gray-300);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
  }
  .nav-links a:not(.btn):hover { color: var(--white); }
  .nav-cta { display: none; }
  @media (min-width: 1080px) { .nav-cta { display: inline-flex; } }

  .nav-toggle {
    display: inline-flex;
    background: none;
    border: none;
    padding: 0.4rem;
    cursor: pointer;
  }
  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  @media (min-width: 1080px) { .nav-toggle { display: none; } }

  .nav-links {
    position: fixed;
    inset: 0 0 0 30%;
    top: 60px;
    flex-direction: column;
    align-items: flex-start;
    background: var(--anthracite);
    padding: 2rem 1.5rem;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    border-left: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a:not(.btn) { font-size: 1.1rem; padding: 0.6rem 0; }

  @media (min-width: 1080px) {
    .nav-links {
      position: static;
      inset: auto;
      transform: none;
      flex-direction: row;
      background: none;
      padding: 0;
      border-left: none;
    }
  }

  body.nav-open { overflow: hidden; }

  /* ============================================================
     HERO
     ============================================================ */
  .hero {
    position: relative;
    padding: 0;
    background: var(--black);
    overflow: hidden;
  }

  /* Vollbreites Herobild: auf Mobil ein enger zugeschnittenes Banner
     (Fokus auf den Spieler, sonst zu viel toter Bildraum bei schmalen
     Screens), auf Desktop ein Vollflächen-Hintergrund hinter dem Text
     (siehe @media weiter unten). */
  .hero-bg {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
  }
  /* <picture> ist standardmäßig inline und würde sonst nicht auf
     100% Breite/Höhe mitziehen */
  .hero-bg picture {
    display: block;
    width: 100%;
    height: 100%;
  }
  .hero-bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Vorläufiger Fokuspunkt fürs Mobile-Bild (handballer.webp) --
       muss ggf. angepasst werden, sobald die genaue Bildkomposition
       bekannt ist (siehe Rückfrage im Chat). */
    object-position: 68% 8%;
  }
  /* dezenter Übergang unten ins Schwarz, damit das Bild nicht hart
     an den Textbereich stößt */
  .hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, var(--black) 100%);
  }

  .hero-grid {
    position: relative;
    display: grid;
    gap: clamp(2rem, 5vw, 3rem);
    align-items: center;
    grid-template-columns: 1fr;
    padding-top: clamp(2.5rem, 8vw, 4rem);
    padding-bottom: clamp(3.5rem, 9vw, 7rem);
  }

  @media (min-width: 921px) {
    .hero {
      display: flex;
      align-items: center;
      /* Obergrenze bewusst höher als frühere 780px angesetzt: bei sehr
         breiten/4K-Bildschirmen wächst sonst die Boxbreite viel schneller
         als ihre Höhe, wodurch beim Zuschneiden (object-fit: cover) zu
         viel vom Kopf verschwindet. */
      min-height: clamp(560px, 46vw, 900px);
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      aspect-ratio: auto;
      z-index: 0;
    }
    .hero-bg img {
      /* Auf Desktop entsteht durch die breite Box so gut wie kein
         horizontaler Zuschnitt, dafür ggf. vertikaler -- deshalb hier
         oben ausrichten, damit ausschließlich unten (Hallenboden)
         weggeschnitten wird und der Kopf immer vollständig sichtbar
         bleibt, auch auf sehr breiten/4K-Monitoren. */
      object-position: center top;
    }
    /* Bild bringt bereits einen Schwarz-zu-Motiv-Verlauf mit (links dunkel,
       rechts der Spieler); wir verstärken das nur leicht zusätzlich für
       verlässliche Textlesbarkeit über alle Bildschirmgrößen hinweg. */
    .hero-bg::after {
      background:
        linear-gradient(90deg, var(--black) 0%, rgba(10,10,11,0.82) 24%, rgba(10,10,11,0.25) 46%, transparent 62%),
        linear-gradient(0deg, rgba(0,0,0,0.45) 0%, transparent 35%);
    }
    .hero-grid {
      position: relative;
      z-index: 1;
      width: 100%;
      padding-top: clamp(3rem, 6vw, 5rem);
      padding-bottom: clamp(3rem, 6vw, 5rem);
    }
    .hero-copy {
      max-width: 600px;
    }
  }
  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gray-300);
    margin-bottom: 1.2rem;
  }
  .hero-tag::before {
    content: "";
    width: 26px;
    height: 2px;
    background: var(--red);
  }
  /* Headline im Postermaß der Anzeige: "MEHR" / "LEISTUNG." zweizeilig */
  .hero h1 {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: clamp(2.9rem, 10vw, 5.6rem);
    line-height: 0.96;
    letter-spacing: 0.005em;
    color: var(--white);
    margin-bottom: 0.35em;
  }
  .hero h1 .line { display: block; }
  .hero h1 .accent { color: var(--red); }

  .hero-divider {
    width: 70px;
    height: 3px;
    background: var(--red);
    margin: 0 0 1.1rem;
  }

  .hero .subhead {
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: clamp(1.05rem, 2.6vw, 1.4rem);
    color: var(--gray-300);
    margin-bottom: 1.2rem;
  }
  .hero .subhead .accent { color: var(--red); }

  .hero p.lead {
    font-size: 1.05rem;
    max-width: 46ch;
    color: var(--gray-300);
  }
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.8rem 0 0;
  }
  .trust-line {
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.6em;
    margin-bottom: 1.6rem;
  }
  .trust-line::before { content: "✓"; color: var(--red); font-weight: 700; }

  /* Icon-Badges Energie / Fokus / Erholung — zitieren die drei Icons aus der Anzeige */
  .hero-icons {
    display: flex;
    gap: clamp(1rem, 3vw, 1.8rem);
    margin-bottom: 1.8rem;
  }
  .hero-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
  }
  .hero-icon .badge {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
  }
  .hero-icon .badge svg { width: 22px; height: 22px; }
  .hero-icon span.icon-label {
    font-family: var(--font-head);
    text-transform: uppercase;
    font-size: 0.68rem;
    letter-spacing: 0.04em;
    color: var(--gray-300);
  }


  /* ============================================================
     AD-ECHO-STREIFEN
     Spiegelt bewusst die Fußzeile der Print-/Social-Anzeige
     (Ansprechpartner / Kontakt / Claim), damit Besucher sofort
     erkennen: "Ich bin auf der richtigen Seite gelandet."
     ============================================================ */
  .ad-echo {
    background: var(--black);
    border-top: 3px solid var(--red);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: clamp(1.6rem, 4vw, 2.2rem) 0;
  }
  .ad-echo-grid {
    display: grid;
    gap: 1.6rem;
    grid-template-columns: 1fr;
    text-align: center;
  }
  @media (min-width: 780px) {
    .ad-echo-grid { grid-template-columns: 1fr 1fr 1fr; text-align: left; }
  }
  .ad-echo-col .who {
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }
  .ad-echo-col .who-sub {
    display: block;
    color: var(--red);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.2rem;
  }
  .ad-echo-col .who-region { color: var(--gray-500); font-size: 0.85rem; }

  .ad-echo-contact { display: grid; gap: 0.45rem; justify-items: center; }
  @media (min-width: 780px) { .ad-echo-contact { justify-items: start; } }
  .ad-echo-contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    color: var(--gray-300);
    text-decoration: none;
    font-size: 0.88rem;
  }
  .ad-echo-contact a svg { width: 15px; height: 15px; color: var(--red); flex-shrink: 0; }
  .ad-echo-contact a:hover { color: var(--white); }

  .ad-echo-claim { text-align: center; }
  @media (min-width: 780px) { .ad-echo-claim { text-align: right; } }
  .ad-echo-claim .claim {
    font-family: var(--font-head);
    text-transform: uppercase;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 0.02em;
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
  }
  .ad-echo-claim .claim-sub { color: var(--gray-500); font-size: 0.85rem; }

  /* ============================================================
     AUSWAHLBEREICH — 4 Karten
     ============================================================ */
  .picker-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  @media (min-width: 700px) { .picker-grid { grid-template-columns: repeat(4, 1fr); } }

  .picker-card {
    background: var(--anthracite);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 1.4rem 1.1rem;
    text-align: left;
    color: var(--white);
    cursor: pointer;
    font-family: var(--font-body);
    transition: border-color 0.2s ease, transform 0.15s ease, background 0.2s ease;
  }
  .picker-card:hover { transform: translateY(-3px); border-color: rgba(226,0,26,0.5); }
  .picker-card.active { background: var(--anthracite-lighter); border-color: var(--red); }
  .picker-card .num {
    display: block;
    font-family: var(--font-head);
    color: var(--red);
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
  }
  .picker-card .label {
    font-family: var(--font-head);
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 0.02em;
  }

  .picker-answer {
    margin-top: 1.5rem;
    padding: 1.4rem 1.6rem;
    background: var(--anthracite);
    border-left: 3px solid var(--red);
    border-radius: var(--radius);
    display: none;
  }
  .picker-answer.visible { display: block; }
  .picker-answer p { color: var(--gray-100); margin: 0; }

  /* ============================================================
     NUTZENBEREICH — 3 Karten
     ============================================================ */
  .benefit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  @media (min-width: 780px) { .benefit-grid { grid-template-columns: repeat(3, 1fr); } }

  .benefit-card {
    background: linear-gradient(165deg, var(--anthracite-light), var(--anthracite) 70%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 2rem 1.6rem;
    box-shadow: var(--shadow-card);
  }
  .benefit-card .mark {
    width: 40px;
    height: 3px;
    background: var(--red);
    margin-bottom: 1.2rem;
  }
  .benefit-card h3 { color: var(--white); }
  .benefit-note {
    margin-top: 2rem;
    font-size: 0.85rem;
    color: var(--gray-500);
  }

  /* ============================================================
     PERSÖNLICHER ANSATZ
     ============================================================ */
  .approach {
    background: var(--anthracite);
    border-radius: var(--radius);
    padding: clamp(2rem, 5vw, 3.5rem);
  }
  .approach-grid {
    display: grid;
    gap: clamp(1.5rem, 4vw, 3rem);
    grid-template-columns: 1fr;
    align-items: start;
  }
  @media (min-width: 860px) { .approach-grid { grid-template-columns: 1.1fr 0.9fr; } }

  .approach-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .approach-step {
    padding: 1.1rem;
    background: var(--black);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.06);
  }
  .approach-step .step-index {
    font-family: var(--font-head);
    color: var(--red);
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.4rem;
  }
  .approach-step .step-label {
    font-family: var(--font-head);
    text-transform: uppercase;
    font-size: 0.98rem;
    color: var(--white);
  }

  /* ============================================================
     ÜBER CAROLIN UND THOMAS
     ============================================================ */
  .about-grid {
    display: grid;
    gap: clamp(2rem, 5vw, 3rem);
    grid-template-columns: 1fr;
    align-items: center;
  }
  @media (min-width: 860px) { .about-grid { grid-template-columns: 0.85fr 1.15fr; } }

  .about-media {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius);
    background: linear-gradient(155deg, var(--anthracite-lighter), var(--anthracite) 65%);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
  }
  .about-media img { width: 100%; height: 100%; object-fit: cover; }

  .about-callout {
    margin-top: 1.4rem;
    padding: 1rem 1.2rem;
    border-left: 3px solid var(--red);
    background: var(--anthracite);
    border-radius: var(--radius);
    font-size: 0.92rem;
    color: var(--gray-100);
  }

  .contact-people {
    margin-top: 1.4rem;
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--white);
    font-size: 0.95rem;
  }
  .contact-people span { display: block; color: var(--gray-500); font-family: var(--font-body); text-transform: none; letter-spacing: 0; font-size: 0.85rem; margin-top: 0.2rem; }

  /* ============================================================
     FITLINE-BEREICH (kompakt)
     ============================================================ */
  .fitline-section { background: var(--anthracite); }
  .fitline-grid {
    display: grid;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    grid-template-columns: 1fr;
  }
  @media (min-width: 860px) { .fitline-grid { grid-template-columns: 0.9fr 1.1fr; } }

  .fitline-points { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.9rem; }
  .fitline-points li {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    color: var(--gray-100);
    font-size: 0.98rem;
  }
  .fitline-points li::before {
    content: "";
    flex: 0 0 8px;
    width: 8px;
    height: 8px;
    margin-top: 0.5em;
    background: var(--red);
    border-radius: 50%;
  }

  /* ============================================================
     ABLAUF
     ============================================================ */
  .steps-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    counter-reset: step;
  }
  @media (min-width: 780px) { .steps-list { grid-template-columns: repeat(4, 1fr); } }

  .step-card {
    background: var(--anthracite);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 1.6rem 1.3rem;
    position: relative;
  }
  .step-card .step-num {
    font-family: var(--font-head);
    font-size: 2.2rem;
    color: var(--red);
    opacity: 0.85;
    line-height: 1;
    margin-bottom: 0.7rem;
    display: block;
  }
  .step-card p { color: var(--gray-100); font-size: 0.95rem; margin: 0; }

  /* ============================================================
     KONTAKT-CTA — visuell starker Abschluss
     ============================================================ */
  .cta-section {
    position: relative;
    background: linear-gradient(160deg, var(--red-dark) 0%, var(--black) 55%);
    border-radius: var(--radius);
    padding: clamp(2.5rem, 7vw, 4.5rem);
    overflow: hidden;
    text-align: center;
  }
  .cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 40%, rgba(0,0,0,0.55) 100%);
    pointer-events: none;
  }
  .cta-section h2 { position: relative; color: var(--white); }
  .cta-section p.lead { position: relative; font-size: 1.05rem; max-width: 42ch; margin: 0 auto 2rem; color: var(--gray-100); }
  .cta-actions {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  .cta-actions .btn { min-width: 220px; }
  .btn-whatsapp { background: #ffffff; color: var(--black); }
  .btn-whatsapp:hover { background: var(--gray-100); }

  /* ============================================================
     FOOTER
     ============================================================ */
  footer.site-footer {
    padding: clamp(2.5rem, 6vw, 3.5rem) 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    background: var(--black);
  }
  .footer-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
  }
  @media (min-width: 700px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; } }

  .footer-logo {
    display: inline-block;
    margin-bottom: 1rem;
  }
  .footer-logo img {
    height: 30px;
    width: auto;
    display: block;
  }
  .footer-col h4 {
    font-family: var(--font-head);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--gray-500);
    margin-bottom: 0.9rem;
  }
  .footer-col p, .footer-col a, .footer-col .link-btn {
    display: block;
    color: var(--gray-300);
    text-decoration: none;
    font-size: 0.92rem;
    margin-bottom: 0.5rem;
  }
  .footer-col a:hover, .footer-col .link-btn:hover { color: var(--white); }
  /* "Cookie-Einstellungen" ist technisch ein <button> (löst JS aus,
     kein Linkziel), soll aber optisch wie die Rechtliches-Links wirken */
  .footer-col .link-btn {
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
  }
  .footer-bottom {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.6rem;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--gray-500);
  }
  .footer-bottom a { color: var(--gray-500); text-decoration: underline; }
  .footer-disclaimer { max-width: 46ch; line-height: 1.6; }

  /* ============================================================
     STICKY MOBILE KONTAKTLEISTE
     ============================================================ */
  .mobile-bar {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--anthracite);
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .mobile-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    padding: 0.95rem 0.5rem;
    font-family: var(--font-head);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    text-decoration: none;
  }
  .mobile-bar a.call { color: var(--white); border-right: 1px solid rgba(255,255,255,0.08); }
  .mobile-bar a.wa { color: var(--white); background: var(--red); }
  @media (min-width: 1080px) { .mobile-bar { display: none; } }

  /* ============================================================
     COOKIE-CONSENT-BANNER
     Sitzt auf Mobil oberhalb der Kontaktleiste (bottom: 64px, deren
     Höhe), ab 1080px (Kontaktleiste ausgeblendet) direkt unten (bottom: 0)
     ============================================================ */
  .cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 64px;
    z-index: 95;
    background: var(--anthracite);
    border-top: 2px solid var(--red);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.35);
  }
  .cookie-banner[hidden] { display: none; }
  @media (min-width: 1080px) {
    .cookie-banner { bottom: 0; }
  }
  .cookie-banner-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 1.1rem clamp(1.25rem, 4vw, 2.5rem);
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .cookie-banner-inner p {
    font-size: 0.88rem;
    color: var(--gray-300);
    margin: 0;
  }
  .cookie-banner-inner a { color: var(--gray-100); text-decoration: underline; }
  .cookie-banner-inner strong { color: var(--white); }
  .cookie-banner-actions {
    display: flex;
    gap: 0.75rem;
  }
  .cookie-banner-actions .btn {
    padding: 0.7rem 1.1rem;
    font-size: 0.82rem;
  }
  @media (min-width: 700px) {
    .cookie-banner-inner {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
    }
    .cookie-banner-actions { flex-shrink: 0; }
    .cookie-banner-actions .btn { padding: 0.75rem 1.4rem; width: auto; }
  }

  /* ============================================================
     SCROLL-REVEAL (dezent)
     ============================================================ */
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.in-view { opacity: 1; transform: translateY(0); }
  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
  }

  .divider-red {
    width: 60px;
    height: 3px;
    background: var(--red);
    margin: 0 auto 1.2rem;
  }
  .section-head.center .divider-red { margin-left: auto; margin-right: auto; }
  .section-head:not(.center) .divider-red { margin-left: 0; }

  .bg-anthracite { background: var(--anthracite); }
  .visually-hidden {
    position: absolute; width: 1px; height: 1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0; padding: 0; margin: -1px;
  }
