/* ============================================================
   the Craft Collective – Globales Stylesheet
   ============================================================
   Wird von allen HTML-Seiten geladen:
   - index.html (Landing Page)
   - raysin-tabletts-dosen.html
   - raysin-kerzenstaender.html
   - makramee.html
   - uv-resin-bag-charms.html
   - uv-resin-ohrringe-armreife.html
   - fliesen-dekor.html
   - legal/impressum.html, legal/datenschutz.html, legal/agb.html
   ============================================================ */

    /* ============================================================
       1. CSS RESET - sorgt für ein einheitliches Verhalten
          in allen Browsern (Chrome, Safari, Firefox usw.)
       ============================================================ */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    body,
    h1, h2, h3, h4,
    p, ul, ol {
      margin: 0;
      padding: 0;
    }

    ul, ol {
      list-style: none;
    }

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

    a {
      color: inherit;
      text-decoration: none;
    }

    button {
      font: inherit;
      cursor: pointer;
      border: none;
      background: none;
      color: inherit;
    }

    /* ============================================================
       2. CSS-VARIABLEN - alle Markenfarben und Schriften an
          EINER Stelle. So lässt sich später alles zentral ändern.
       ============================================================ */
    :root {
      /* === PRIMÄRFARBEN (immer präsent) === */
      --color-tiefblau:    #003376;   /* Anker, Text, Logo, Headlines */
      --color-lavendel:    #B2A8D8;   /* Signature aus dem Logo, Akzente */
      --color-altrosa:     #D8A8B6;   /* Wärme, Persönlichkeit */
      --color-cremeweiss:  #F4F0E0;   /* Hintergrund, Ruhe */

      /* === SEKUNDÄRFARBEN (rotierend, stimmungsabhängig) === */
      --color-salbei:      #B5BE9A;
      --color-apricot:     #F5BEAA;
      --color-mint:        #B8C8C7;

      /* === AKZENTFARBEN (sparsam, für Highlights) === */
      --color-sonnengelb:  #F1ED80;
      --color-hellblau:    #B6C9F7;

      /* === SCHRIFTEN === */
      /* Fraunces ist der Platzhalter für die spätere Magickind-Schrift.
         Georgia und Times New Roman sind die Notfall-Schriften,
         falls Fraunces einmal nicht geladen wird. */
      --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
      --font-body:    Arial, Helvetica, sans-serif;

      /* === LAYOUT === */
      --container-max:  1200px;   /* Maximale Breite des Inhalts auf großen Bildschirmen */
      --padding-page:   20px;     /* Innenabstand zum Bildschirmrand auf mobilen Geräten */
    }

    /* ============================================================
       3. GRUNDLAGEN - Schrift und Hintergrund für die ganze Seite
       ============================================================ */
    body {
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.6;
      color: var(--color-tiefblau);
      background-color: var(--color-cremeweiss);
      -webkit-font-smoothing: antialiased;
    }

    /* Skip-Link - unsichtbar bis Tab-Taste gedrückt wird.
       Hilft Menschen, die mit der Tastatur navigieren. */
    .skip-link {
      position: absolute;
      left: -9999px;
      top: 8px;
      background: var(--color-tiefblau);
      color: var(--color-cremeweiss);
      padding: 12px 20px;
      border-radius: 8px;
      font-weight: bold;
      z-index: 1000;
    }
    .skip-link:focus {
      left: 16px;
    }

    /* Container - hält den Inhalt auf großen Bildschirmen mittig
       und sorgt für gleichmäßige Innenabstände links/rechts */
    .container {
      width: 100%;
      max-width: var(--container-max);
      margin: 0 auto;
      padding-left: var(--padding-page);
      padding-right: var(--padding-page);
    }

    /* ============================================================
       4. KOPFBEREICH - Logo links, Burger-Menü rechts
       ============================================================ */
    .kopfbereich {
      padding: 16px 0;
      position: relative;
      z-index: 10;
    }

    .kopfbereich .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    /* === LOGO (horizontal) ===
       PLATZHALTER im Marken-Stil. Sobald deine echte Logo-Datei vorliegt,
       ersetze den gesamten Inhalt des <a class="logo"> in der HTML durch:
       <img src="images/logo-horizontal.svg" alt="the Craft Collective"> */
    .logo {
      position: relative;
      font-family: var(--font-display);
      color: var(--color-lavendel);
      line-height: 1;
      display: inline-block;
      padding-top: 14px;
      /* Sonnengelb-Umriss um die Lavendel-Schrift, wie im echten Logo */
      text-shadow:
        -1px -1px 0 var(--color-sonnengelb),
         1px -1px 0 var(--color-sonnengelb),
        -1px  1px 0 var(--color-sonnengelb),
         1px  1px 0 var(--color-sonnengelb);
    }
    /* "the" sitzt klein über dem Wort, leicht nach rechts versetzt */
    .logo-the {
      position: absolute;
      top: 0;
      left: 6px;
      font-size: 13px;
      font-weight: 500;
      font-style: italic;
    }
    /* "Craft" und "collective" stehen nebeneinander in einer Zeile */
    .logo-craft {
      font-weight: 700;
      font-size: 28px;
      letter-spacing: -0.02em;
    }
    .logo-collective {
      font-weight: 600;
      font-size: 22px;
      margin-left: 6px;
      letter-spacing: -0.01em;
    }

    /* === HAUPTNAVIGATION === */
    .hauptnavigation {
      position: relative;
    }

    /* Burger-Button - die drei Striche auf Mobile */
    .burger-menue {
      width: 44px;
      height: 44px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      border-radius: 8px;
    }
    .burger-menue:focus-visible {
      outline: 3px solid rgba(178, 168, 216, 0.7);
      outline-offset: 2px;
    }
    .burger-menue span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--color-tiefblau);
      border-radius: 2px;
      transition: transform 0.25s ease, opacity 0.2s ease;
    }
    /* Wenn das Menü offen ist, werden die Striche zu einem X */
    .burger-menue[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    .burger-menue[aria-expanded="true"] span:nth-child(2) {
      opacity: 0;
    }
    .burger-menue[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    /* Die Liste der Menü-Punkte - auf Mobile als Klapp-Fenster */
    .menu-liste {
      position: absolute;
      top: calc(100% + 12px);
      right: 0;
      background: var(--color-cremeweiss);
      border: 1.5px solid rgba(178, 168, 216, 0.5);
      border-radius: 16px;
      padding: 12px;
      min-width: 240px;
      box-shadow: 0 8px 24px rgba(0, 51, 118, 0.08);
      opacity: 0;
      transform: translateY(-8px);
      pointer-events: none;
      transition: opacity 0.2s ease, transform 0.2s ease;
    }
    .menu-liste.aktiv {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }
    .menu-liste li + li {
      margin-top: 2px;
    }
    .menu-liste a {
      display: block;
      padding: 12px 16px;
      border-radius: 10px;
      color: var(--color-tiefblau);
      font-size: 16px;
      font-weight: 500;
      transition: background-color 0.15s ease;
    }
    .menu-liste a:hover,
    .menu-liste a:focus-visible {
      background: rgba(178, 168, 216, 0.25);
      outline: none;
    }

    /* ============================================================
       5. HERO-SEKTION - der erste Eindruck der Seite
       ============================================================ */
    .hero {
      position: relative;
      /* Die Hero-Sektion füllt fast die ganze Bildschirmhöhe.
         Auf Mobile passt sie so ohne Scrollen aufs Display. */
      min-height: calc(100vh - 80px);
      /* Innenabstand: oben | seitlich | unten
         Unten wurde halbiert für engeren Übergang zur nächsten Sektion */
      padding: 32px 0 30px;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .hero .container {
      position: relative;
      z-index: 2;
      text-align: center;
    }

    .hero-headline {
      font-family: var(--font-display);
      font-weight: 500;
      font-size: 32px;
      line-height: 1.12;
      color: var(--color-tiefblau);
      max-width: 16ch;
      margin: 0 auto 18px;
      letter-spacing: -0.015em;
    }

    .hero-subline {
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.5;
      color: var(--color-tiefblau);
      margin: 0 auto 32px;
      max-width: 30ch;
    }

    .hero-buttons {
      display: flex;
      flex-direction: column;
      gap: 12px;
      align-items: center;
    }

    /* ============================================================
       6. BUTTONS - zwei Varianten: gefüllt und Outline
       ============================================================ */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 12px 28px;
      border-radius: 9999px;            /* Pillenform */
      font-family: var(--font-body);
      font-size: 16px;
      font-weight: bold;
      letter-spacing: 0.02em;
      cursor: pointer;
      text-align: center;
      min-width: 220px;
      transition: transform 0.15s ease, background-color 0.2s ease, color 0.2s ease;
    }
    .btn:active {
      transform: scale(0.97);
    }
    .btn:focus-visible {
      outline: 3px solid rgba(178, 168, 216, 0.7);
      outline-offset: 3px;
    }

    /* Primärer Button - gefüllt mit Tiefblau */
    .btn-primary {
      background: var(--color-tiefblau);
      color: var(--color-cremeweiss);
      border: 2px solid var(--color-tiefblau);
    }
    .btn-primary:hover {
      background: #002a63;
      border-color: #002a63;
    }

    /* Sekundärer Button - nur Umriss, transparent */
    .btn-secondary {
      background: transparent;
      color: var(--color-tiefblau);
      border: 2px solid var(--color-tiefblau);
    }
    .btn-secondary:hover {
      background: rgba(0, 51, 118, 0.06);
    }

    /* ============================================================
       7. DEKORATIVE STICKER - die Konfetti-Akzente
          Sind aktuell selbstgezeichnete Platzhalter und werden
          später durch die echten SVG-Sticker ersetzt.
       ============================================================ */
    .deko {
      position: absolute;
      z-index: 1;
      pointer-events: none;   /* Damit sie keine Klicks abfangen */
      opacity: 0.85;
    }

    .deko-stern {
      top: 70px;
      right: 6%;
      width: 50px;
      height: 50px;
      color: var(--color-apricot);
      transform: rotate(-8deg);
    }
    .deko-blume {
      bottom: 90px;
      left: 6%;
      width: 56px;
      height: 56px;
      color: var(--color-altrosa);
      transform: rotate(12deg);
    }
    .deko-bohne {
      top: 38%;
      left: 4%;
      width: 42px;
      height: 42px;
      color: var(--color-sonnengelb);
      transform: rotate(20deg);
    }

    /* ============================================================
       8. TABLET-LAYOUT (ab 768px Bildschirmbreite)
       ============================================================ */
    @media (min-width: 768px) {
      :root {
        --padding-page: 32px;
      }

      .logo-the         { font-size: 14px; }
      .logo-craft       { font-size: 32px; }
      .logo-collective  { font-size: 26px; }

      .hero-headline {
        font-size: 46px;
        max-width: 20ch;
      }
      .hero-subline {
        font-size: 18px;
      }
      .hero-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 16px;
      }

      .deko-stern { width: 80px; height: 80px; top: 90px; right: 8%; }
      .deko-blume { width: 90px; height: 90px; bottom: 100px; left: 8%; }
      .deko-bohne { width: 60px; height: 60px; }
    }

    /* ============================================================
       9. DESKTOP-LAYOUT (ab 1024px Bildschirmbreite)
       ============================================================ */
    @media (min-width: 1024px) {
      .kopfbereich {
        padding: 24px 0;
      }

      /* Auf Desktop verschwindet der Burger und das Menü
         erscheint als Zeile neben dem Logo */
      .burger-menue {
        display: none;
      }
      .menu-liste {
        position: static;
        display: flex;
        gap: 4px;
        background: none;
        border: none;
        padding: 0;
        box-shadow: none;
        min-width: 0;
        opacity: 1;
        transform: none;
        pointer-events: auto;
      }
      .menu-liste li + li {
        margin-top: 0;
      }
      .menu-liste a {
        padding: 8px 14px;
        font-size: 15px;
      }

      .logo-the         { font-size: 16px; }
      .logo-craft       { font-size: 38px; }
      .logo-collective  { font-size: 30px; }

      .hero {
        min-height: calc(100vh - 100px);
        /* Unten halbiert für engeren Übergang zur nächsten Sektion */
        padding: 60px 0 40px;
      }
      .hero-headline {
        font-size: 64px;
        max-width: 22ch;
      }
      .hero-subline {
        font-size: 20px;
        margin-bottom: 40px;
      }

      .deko-stern { width: 100px; height: 100px; top: 110px; right: 10%; }
      .deko-blume { width: 120px; height: 120px; bottom: 140px; left: 10%; }
      .deko-bohne { width: 80px; height: 80px; left: 7%; }
    }

    /* ============================================================
       10. SEKTION 2: USP ("Was könnt ihr bei uns erwarten?")
           Vier Karten in einem Grid:
           - Mobile: 1 Spalte (untereinander)
           - Tablet: 2 Spalten (2x2)
           - Desktop: 4 Spalten (alle in einer Reihe)
       ============================================================ */
    .usp-sektion {
      /* Oben halbiert für engeren Übergang vom Hero */
      padding: 30px 0 60px;
      background: var(--color-cremeweiss);
    }

    /* Kopfbereich der Sektion mit Titel und Untertitel */
    .usp-header {
      text-align: center;
      margin: 0 auto 36px;
      max-width: 600px;
    }

    .sektion-titel {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 30px;
      line-height: 1.1;
      color: var(--color-tiefblau);
      margin-bottom: 12px;
      letter-spacing: -0.015em;
    }

    .sektion-untertitel {
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.5;
      color: var(--color-tiefblau);
      opacity: 0.75;
      margin: 0;
    }

    /* Das Raster für die vier Karten */
    .usp-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }

    /* Eine einzelne USP-Karte */
    .usp-karte {
      background: #FFFFFF;
      border: 1.5px solid rgba(178, 168, 216, 0.4);
      border-radius: 16px;
      padding: 28px 24px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .usp-karte:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0, 51, 118, 0.08);
    }

    /* Der farbige Kreis um das Icon */
    .usp-icon {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      color: var(--color-tiefblau);
    }
    .usp-icon svg {
      width: 30px;
      height: 30px;
    }

    /* Eine eigene Pastell-Hintergrundfarbe pro Karte */
    .usp-icon-salbei   { background: rgba(181, 190, 154, 0.45); }
    .usp-icon-lavendel { background: rgba(178, 168, 216, 0.45); }
    .usp-icon-apricot  { background: rgba(245, 190, 170, 0.55); }
    .usp-icon-altrosa  { background: rgba(216, 168, 182, 0.45); }

    /* Titel innerhalb der Karte */
    .usp-karte-titel {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 22px;
      line-height: 1.2;
      color: var(--color-tiefblau);
      margin-bottom: 10px;
      letter-spacing: -0.01em;
    }

    /* Beschreibungstext innerhalb der Karte */
    .usp-karte-text {
      font-family: var(--font-body);
      font-size: 15px;
      line-height: 1.55;
      color: var(--color-tiefblau);
      opacity: 0.85;
      margin: 0;
    }

    /* === USP auf Tablet (ab 768px): 2 Spalten === */
    @media (min-width: 768px) {
      .usp-sektion {
        padding: 40px 0 80px;
      }
      .sektion-titel {
        font-size: 40px;
      }
      .sektion-untertitel {
        font-size: 17px;
      }
      .usp-header {
        margin-bottom: 48px;
      }
      .usp-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
      }
    }

    /* === USP auf Desktop (ab 1024px): 4 Spalten === */
    @media (min-width: 1024px) {
      .usp-sektion {
        padding: 50px 0 100px;
      }
      .sektion-titel {
        font-size: 48px;
      }
      .sektion-untertitel {
        font-size: 18px;
      }
      .usp-header {
        margin-bottom: 56px;
      }
      .usp-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
      }
      .usp-karte {
        padding: 32px 24px;
      }
    }

    /* ============================================================
       11. SEKTION 3: Atmosphäre / Bildergalerie
           - Mobile: alle 6 Bilder untereinander, volle Breite
           - Tablet+: 1 großes Bild links, 2x2 Grid rechts, 1 breites Bild unten
       ============================================================ */
    .galerie-sektion {
      padding: 30px 0 60px;
      background: var(--color-cremeweiss);
    }

    .galerie-header {
      text-align: center;
      margin: 0 auto 36px;
      max-width: 700px;
    }

    /* MOBILE: alles untereinander (1 Spalte) */
    .galerie-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
      margin-top: 40px;
    }

    /* Eine einzelne Platzhalter-Box.
       Wird später durch <img src="..." alt="..."> ersetzt. */
    .bild-platzhalter {
      position: relative;
      background: linear-gradient(135deg,
        rgba(178, 168, 216, 0.12),
        rgba(216, 168, 182, 0.12));
      border: 1.5px dashed rgba(178, 168, 216, 0.55);
      border-radius: 16px;
      padding: 24px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 6px;
      text-align: center;
      aspect-ratio: 4 / 3;
    }

    /* Kleines Bild-Symbol im Platzhalter */
    .platzhalter-icon {
      width: 36px;
      height: 36px;
      color: var(--color-lavendel);
      opacity: 0.7;
      margin-bottom: 6px;
    }

    /* Kleines Label "BILD FOLGT" oberhalb der Beschreibung */
    .platzhalter-label {
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--color-lavendel);
    }

    /* Beschreibung des Bildes, das später hier hin kommt */
    .platzhalter-text {
      font-family: var(--font-display);
      font-size: 17px;
      font-weight: 500;
      color: var(--color-tiefblau);
      opacity: 0.75;
      max-width: 22ch;
    }

    /* === GALERIE auf Tablet (ab 768px): 3 Spalten === */
    @media (min-width: 768px) {
      .galerie-sektion {
        padding: 40px 0 80px;
      }

      .galerie-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-top: 56px;
      }
    }

    /* === GALERIE auf Desktop (ab 1024px): größere Abstände === */
    @media (min-width: 1024px) {
      .galerie-sektion {
        padding: 50px 0 100px;
      }

      .galerie-grid {
        gap: 24px;
        margin-top: 72px;
      }

      .platzhalter-icon {
        width: 44px;
        height: 44px;
      }

      .platzhalter-text {
        font-size: 19px;
      }
    }

    /* ============================================================
       12. SEKTION 4: Workshop-Formate
           Vier Workshop-Karten:
           - Mobile: untereinander (1 Spalte)
           - Tablet+: 2x2 (zwei Spalten, zwei Reihen)
       ============================================================ */
    .workshops-sektion {
      padding: 30px 0 60px;
      background: var(--color-cremeweiss);
    }

    .workshops-header {
      text-align: center;
      margin: 0 auto 36px;
      max-width: 700px;
    }

    .workshops-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }

    /* === Eine Workshop-Karte === */
    .workshop-karte {
      background: #FFFFFF;
      border: 1.5px solid rgba(178, 168, 216, 0.4);
      border-radius: 16px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .workshop-karte:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0, 51, 118, 0.08);
    }

    /* Bild-Platzhalter oben in der Karte.
       Wird später ersetzt durch <img src="..." alt="..." loading="lazy"> */
    .workshop-bild {
      position: relative;
      background: linear-gradient(135deg,
        rgba(178, 168, 216, 0.18),
        rgba(216, 168, 182, 0.18));
      border-bottom: 1.5px dashed rgba(178, 168, 216, 0.5);
      aspect-ratio: 4 / 3;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 4px;
      text-align: center;
      padding: 16px;
    }
    .workshop-bild .platzhalter-icon {
      width: 34px;
      height: 34px;
      margin-bottom: 4px;
    }
    .workshop-bild .platzhalter-text {
      font-size: 14px;
      max-width: 22ch;
    }

    /* Inhaltsbereich unter dem Bild */
    .workshop-inhalt {
      padding: 22px 22px 24px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      flex-grow: 1;  /* sorgt dafür, dass der Button immer unten klebt */
    }

    /* Level-Badge (Anfänger, All Levels, Fortgeschrittene) */
    .workshop-badge {
      display: inline-block;
      align-self: flex-start;
      padding: 5px 12px;
      border-radius: 9999px;
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--color-tiefblau);
    }
    .workshop-badge-anfaenger        { background: rgba(181, 190, 154, 0.45); }
    .workshop-badge-alle             { background: rgba(178, 168, 216, 0.45); }
    .workshop-badge-fortgeschritten  { background: rgba(245, 190, 170, 0.55); }

    /* Workshop-Titel */
    .workshop-titel {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 24px;
      line-height: 1.15;
      color: var(--color-tiefblau);
      letter-spacing: -0.01em;
      margin: 0;
    }

    /* Zeile mit Dauer und Preis */
    .workshop-meta {
      font-family: var(--font-body);
      font-size: 14px;
      color: var(--color-tiefblau);
      opacity: 0.7;
      margin: 0;
    }
    .workshop-meta-trenner {
      margin: 0 8px;
      opacity: 0.5;
    }

    /* Beschreibungstext */
    .workshop-beschreibung {
      font-family: var(--font-body);
      font-size: 15px;
      line-height: 1.55;
      color: var(--color-tiefblau);
      opacity: 0.85;
      margin: 0;
    }

    /* Button-Bereich klebt unten in der Karte */
    .workshop-button-bereich {
      margin-top: auto;
      padding-top: 12px;
    }

    /* Workshop-Button: Outline-Style in voller Kartenbreite */
    .workshop-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      width: 100%;
      min-height: 48px;
      padding: 12px 24px;
      border-radius: 9999px;
      background: transparent;
      color: var(--color-tiefblau);
      border: 2px solid var(--color-tiefblau);
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: bold;
      letter-spacing: 0.02em;
      cursor: pointer;
      text-align: center;
      transition: transform 0.15s ease, background-color 0.2s ease;
    }
    .workshop-button:hover {
      background: rgba(0, 51, 118, 0.06);
    }
    .workshop-button:active {
      transform: scale(0.97);
    }
    .workshop-button:focus-visible {
      outline: 3px solid rgba(178, 168, 216, 0.7);
      outline-offset: 3px;
    }

    /* === WORKSHOPS auf Tablet (ab 768px): 2 Spalten === */
    @media (min-width: 768px) {
      .workshops-sektion {
        padding: 40px 0 80px;
      }
      .workshops-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
      }
      .workshop-inhalt {
        padding: 26px 26px 28px;
      }
      .workshop-titel {
        font-size: 26px;
      }
      .workshop-bild .platzhalter-text {
        font-size: 15px;
      }
    }

    /* === WORKSHOPS auf Desktop (ab 1024px): größere Abstände === */
    @media (min-width: 1024px) {
      .workshops-sektion {
        padding: 50px 0 100px;
      }
      .workshops-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
      }
      .workshop-inhalt {
        padding: 28px 28px 30px;
        gap: 12px;
      }
      .workshop-titel {
        font-size: 28px;
      }
    }

    /* ============================================================
       13. SEKTION 5: Termine & Buchung (Kalender)
           Hier wird später das bookingkit-Widget eingebunden.
           Bis dahin: gut sichtbarer Platzhalter.
       ============================================================ */
    .kalender-sektion {
      padding: 30px 0 60px;
      background: var(--color-cremeweiss);
    }

    .kalender-header {
      text-align: center;
      margin: 0 auto 36px;
      max-width: 700px;
    }

    /* Wrapper für das Widget - schmaler als die volle Seitenbreite */
    .kalender-widget-wrapper {
      max-width: 900px;
      margin: 0 auto;
    }

    /* Platzhalter-Box für das bookingkit-Widget.
       Sobald der bookingkit-Embed-Code da ist, wird der Inhalt
       der Box durch den Embed-Code ersetzt. */
    .bookingkit-platzhalter {
      background: #FFFFFF;
      border: 2px dashed rgba(178, 168, 216, 0.6);
      border-radius: 16px;
      padding: 40px 24px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }

    /* Kalender-Symbol */
    .kalender-icon {
      width: 48px;
      height: 48px;
      color: var(--color-lavendel);
      margin-bottom: 4px;
    }

    /* Kleines Label oberhalb der Beschreibung */
    .kalender-label {
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--color-lavendel);
    }

    /* Hauptzeile im Platzhalter */
    .kalender-platzhalter-titel {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 22px;
      line-height: 1.2;
      color: var(--color-tiefblau);
      max-width: 32ch;
      margin: 0;
      letter-spacing: -0.01em;
    }

    /* Erklärungstext im Platzhalter */
    .kalender-platzhalter-text {
      font-family: var(--font-body);
      font-size: 14px;
      line-height: 1.55;
      color: var(--color-tiefblau);
      opacity: 0.7;
      max-width: 40ch;
      margin: 0;
    }

    /* === KALENDER auf Tablet (ab 768px) === */
    @media (min-width: 768px) {
      .kalender-sektion {
        padding: 40px 0 80px;
      }
      .bookingkit-platzhalter {
        padding: 60px 32px;
      }
      .kalender-icon {
        width: 56px;
        height: 56px;
      }
      .kalender-platzhalter-titel {
        font-size: 26px;
      }
      .kalender-platzhalter-text {
        font-size: 15px;
      }
    }

    /* === KALENDER auf Desktop (ab 1024px) === */
    @media (min-width: 1024px) {
      .kalender-sektion {
        padding: 50px 0 100px;
      }
      .bookingkit-platzhalter {
        padding: 80px 40px;
      }
    }

    /* ============================================================
       14. SEKTION 6: Gruppen & B2B
           - Oben: 2 Karten (Private Sessions + Team Sessions)
           - Unten: Kontaktformular
       ============================================================ */
    .gruppen-sektion {
      padding: 30px 0 60px;
      background: var(--color-cremeweiss);
    }

    .gruppen-header {
      text-align: center;
      margin: 0 auto 36px;
      max-width: 700px;
    }

    /* Zwei Karten oben - auf Mobile untereinander, ab Tablet nebeneinander */
    .gruppen-karten {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      margin-bottom: 48px;
    }

    /* Karten und Formular nebeneinander auf Desktop.
       Auf Mobile und Tablet bleibt alles untereinander. */
    .gruppen-layout {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    /* Karten für Private + Team Sessions */
    .gruppen-karte {
      background: #FFFFFF;
      border: 1.5px solid rgba(178, 168, 216, 0.4);
      border-radius: 16px;
      padding: 28px 24px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .gruppen-karte:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0, 51, 118, 0.08);
    }

    /* Icon-Kreis in der Karte */
    .gruppen-icon {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-tiefblau);
      margin-bottom: 4px;
    }
    .gruppen-icon svg {
      width: 28px;
      height: 28px;
    }
    .gruppen-icon-altrosa { background: rgba(216, 168, 182, 0.5); }
    .gruppen-icon-mint    { background: rgba(184, 200, 199, 0.55); }

    .gruppen-karte-titel {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 24px;
      line-height: 1.2;
      color: var(--color-tiefblau);
      letter-spacing: -0.01em;
      margin: 0;
    }

    .gruppen-karte-text {
      font-family: var(--font-body);
      font-size: 15px;
      line-height: 1.6;
      color: var(--color-tiefblau);
      opacity: 0.85;
      margin: 0;
      flex-grow: 1;
    }

    /* Anfragen-Button am Kartenende */
    .gruppen-karte-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 12px 24px;
      border-radius: 9999px;
      background: var(--color-tiefblau);
      color: var(--color-cremeweiss);
      border: 2px solid var(--color-tiefblau);
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: bold;
      letter-spacing: 0.02em;
      text-align: center;
      width: 100%;
      transition: transform 0.15s ease, background-color 0.2s ease;
    }
    .gruppen-karte-button:hover {
      background: #002a63;
      border-color: #002a63;
    }
    .gruppen-karte-button:active {
      transform: scale(0.97);
    }
    .gruppen-karte-button:focus-visible {
      outline: 3px solid rgba(178, 168, 216, 0.7);
      outline-offset: 3px;
    }

    /* === Kontaktformular === */
    .anfrage-formular-wrapper {
      max-width: 720px;
      margin: 0 auto;
      background: #FFFFFF;
      border: 1.5px solid rgba(178, 168, 216, 0.4);
      border-radius: 16px;
      padding: 28px 22px;
    }

    .anfrage-formular-header {
      text-align: center;
      margin-bottom: 24px;
    }

    .anfrage-formular-titel {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 24px;
      line-height: 1.2;
      color: var(--color-tiefblau);
      letter-spacing: -0.01em;
      margin: 0 0 8px;
    }

    .anfrage-formular-text {
      font-family: var(--font-body);
      font-size: 15px;
      line-height: 1.55;
      color: var(--color-tiefblau);
      opacity: 0.8;
      margin: 0;
    }

    /* Formular-Felder */
    .anfrage-formular {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .formular-feld {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .formular-feld label {
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 600;
      color: var(--color-tiefblau);
    }

    .formular-feld input,
    .formular-feld select,
    .formular-feld textarea {
      font-family: var(--font-body);
      font-size: 16px;
      color: var(--color-tiefblau);
      background: var(--color-cremeweiss);
      border: 1.5px solid rgba(178, 168, 216, 0.5);
      border-radius: 12px;
      padding: 12px 14px;
      width: 100%;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }
    .formular-feld textarea {
      min-height: 110px;
      resize: vertical;
      font-family: var(--font-body);
    }
    .formular-feld input:focus,
    .formular-feld select:focus,
    .formular-feld textarea:focus {
      outline: none;
      border-color: var(--color-tiefblau);
      box-shadow: 0 0 0 3px rgba(178, 168, 216, 0.5);
    }
    .formular-feld input::placeholder,
    .formular-feld textarea::placeholder {
      color: var(--color-tiefblau);
      opacity: 0.45;
    }

    /* Zwei-Spalten-Reihe innerhalb des Formulars (z. B. Personen + Termin) */
    .formular-reihe {
      display: grid;
      grid-template-columns: 1fr;
      gap: 18px;
    }

    .formular-absenden {
      margin-top: 8px;
    }

    /* Submit-Button */
    .formular-submit {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding: 14px 32px;
      border-radius: 9999px;
      background: var(--color-tiefblau);
      color: var(--color-cremeweiss);
      border: 2px solid var(--color-tiefblau);
      font-family: var(--font-body);
      font-size: 16px;
      font-weight: bold;
      letter-spacing: 0.02em;
      width: 100%;
      cursor: pointer;
      transition: transform 0.15s ease, background-color 0.2s ease;
    }
    .formular-submit:hover {
      background: #002a63;
      border-color: #002a63;
    }
    .formular-submit:active {
      transform: scale(0.97);
    }
    .formular-submit:focus-visible {
      outline: 3px solid rgba(178, 168, 216, 0.7);
      outline-offset: 3px;
    }

    /* === GRUPPEN auf Tablet (ab 768px) === */
    @media (min-width: 768px) {
      .gruppen-sektion {
        padding: 40px 0 80px;
      }
      .gruppen-karten {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        margin-bottom: 60px;
      }
      .anfrage-formular-wrapper {
        padding: 36px 32px;
      }
      .anfrage-formular-titel {
        font-size: 28px;
      }
      .formular-reihe {
        grid-template-columns: 1fr 1fr;
      }
      .formular-submit {
        width: auto;
        min-width: 240px;
      }
      .formular-absenden {
        display: flex;
        justify-content: center;
        margin-top: 12px;
      }
    }

    /* === GRUPPEN auf Desktop (ab 1024px) === */
    @media (min-width: 1024px) {
      .gruppen-sektion {
        padding: 50px 0 100px;
      }
      .gruppen-karten {
        gap: 28px;
        margin-bottom: 72px;
      }

      /* Auf Desktop: Karten links, Formular rechts.
         Karten werden in einer einzigen Spalte untereinander gestapelt. */
      .gruppen-layout {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 36px;
        align-items: start;
      }
      .gruppen-layout .gruppen-karten {
        margin-bottom: 0;
        grid-template-columns: 1fr;
      }
      .gruppen-layout .anfrage-formular-wrapper {
        max-width: none;
      }

      .gruppen-karte {
        padding: 32px 28px;
      }
      .gruppen-karte-titel {
        font-size: 26px;
      }
      .anfrage-formular-wrapper {
        padding: 44px 40px;
      }
    }

    /* ============================================================
       15. SEKTION 7: Gutscheine
           - Einleitung mit Bildplatzhalter
           - Anfrage-Formular für Gutscheine
       ============================================================ */
    .gutschein-sektion {
      padding: 30px 0 60px;
      background: var(--color-cremeweiss);
    }

    .gutschein-header {
      text-align: center;
      margin: 0 auto 36px;
      max-width: 700px;
    }

    /* Wrapper für den ganzen Gutschein-Block */
    .gutschein-wrapper {
      max-width: 720px;
      margin: 0 auto;
      background: #FFFFFF;
      border: 1.5px solid rgba(178, 168, 216, 0.4);
      border-radius: 16px;
      padding: 28px 22px;
    }

    /* Visueller Gutschein-Vorschau-Block oben im Wrapper */
    .gutschein-preview {
      background: linear-gradient(135deg,
        rgba(178, 168, 216, 0.18),
        rgba(216, 168, 182, 0.18));
      border: 1.5px dashed rgba(178, 168, 216, 0.55);
      border-radius: 12px;
      padding: 22px 18px;
      text-align: center;
      margin-bottom: 24px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
    }

    .gutschein-preview-label {
      font-family: var(--font-body);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--color-lavendel);
      margin: 0;
    }

    .gutschein-preview-titel {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 26px;
      line-height: 1.1;
      color: var(--color-tiefblau);
      letter-spacing: -0.01em;
      margin: 4px 0;
    }

    .gutschein-preview-text {
      font-family: var(--font-body);
      font-size: 14px;
      color: var(--color-tiefblau);
      opacity: 0.7;
      margin: 0;
    }

    /* Wert-Schnellauswahl: 50 €, 100 €, Eigener Betrag */
    .wert-auswahl {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-bottom: 6px;
    }

    /* Eine einzelne Wert-Schaltfläche */
    .wert-option {
      position: relative;
      cursor: pointer;
    }

    .wert-option input[type="radio"] {
      /* Radio-Button visuell verstecken, aber zugänglich lassen */
      position: absolute;
      opacity: 0;
      width: 100%;
      height: 100%;
      cursor: pointer;
    }

    .wert-option-label {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 56px;
      padding: 10px 8px;
      border-radius: 12px;
      background: var(--color-cremeweiss);
      border: 1.5px solid rgba(178, 168, 216, 0.5);
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 18px;
      color: var(--color-tiefblau);
      text-align: center;
      letter-spacing: -0.01em;
      transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    }

    /* Wenn ausgewählt: Border in Tiefblau und Hintergrund leicht eingefärbt */
    .wert-option input[type="radio"]:checked + .wert-option-label {
      border-color: var(--color-tiefblau);
      background: rgba(178, 168, 216, 0.25);
      box-shadow: 0 0 0 2px rgba(178, 168, 216, 0.4);
    }

    /* Fokus-Sichtbarkeit beim Tab-Navigieren */
    .wert-option input[type="radio"]:focus-visible + .wert-option-label {
      outline: 3px solid rgba(178, 168, 216, 0.7);
      outline-offset: 2px;
    }

    /* Versandart-Auswahl: per E-Mail oder per Post */
    .versand-auswahl {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

    /* Versand-Option sieht ähnlich aus wie Wert-Option, aber mit Icon */
    .versand-option {
      position: relative;
      cursor: pointer;
    }
    .versand-option input[type="radio"] {
      position: absolute;
      opacity: 0;
      width: 100%;
      height: 100%;
      cursor: pointer;
    }
    .versand-option-label {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 6px;
      min-height: 84px;
      padding: 12px 14px;
      border-radius: 12px;
      background: var(--color-cremeweiss);
      border: 1.5px solid rgba(178, 168, 216, 0.5);
      text-align: center;
      transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    }
    .versand-option input[type="radio"]:checked + .versand-option-label {
      border-color: var(--color-tiefblau);
      background: rgba(178, 168, 216, 0.25);
      box-shadow: 0 0 0 2px rgba(178, 168, 216, 0.4);
    }
    .versand-option input[type="radio"]:focus-visible + .versand-option-label {
      outline: 3px solid rgba(178, 168, 216, 0.7);
      outline-offset: 2px;
    }
    .versand-option-icon {
      width: 24px;
      height: 24px;
      color: var(--color-tiefblau);
    }
    .versand-option-titel {
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 700;
      color: var(--color-tiefblau);
    }
    .versand-option-hinweis {
      font-family: var(--font-body);
      font-size: 11px;
      color: var(--color-tiefblau);
      opacity: 0.65;
    }

    /* Eigener Betrag - Feld erscheint nur, wenn die Option "Eigener Betrag" gewählt ist */
    .eigener-betrag-feld {
      display: none;
    }
    .eigener-betrag-feld.aktiv {
      display: flex;
    }

    /* === GUTSCHEINE auf Tablet (ab 768px) === */
    @media (min-width: 768px) {
      .gutschein-sektion {
        padding: 40px 0 80px;
      }
      .gutschein-wrapper {
        padding: 36px 32px;
      }
      .gutschein-preview {
        padding: 32px 24px;
        margin-bottom: 32px;
      }
      .gutschein-preview-titel {
        font-size: 30px;
      }
      .gutschein-preview-text {
        font-size: 15px;
      }
      .wert-option-label {
        font-size: 20px;
        min-height: 60px;
      }
      .versand-option-label {
        min-height: 96px;
      }
      .versand-option-titel {
        font-size: 15px;
      }
    }

    /* === GUTSCHEINE auf Desktop (ab 1024px) === */
    @media (min-width: 1024px) {
      .gutschein-sektion {
        padding: 50px 0 100px;
      }
      .gutschein-wrapper {
        padding: 44px 40px;
      }
    }

    /* ============================================================
       16. SEKTION 8: Über uns / Team
           - Mobile: 3 Personen-Karten untereinander
           - Tablet+: 3 Personen-Karten nebeneinander
       ============================================================ */
    .ueberuns-sektion {
      padding: 30px 0 60px;
      background: var(--color-cremeweiss);
    }

    .ueberuns-header {
      text-align: center;
      margin: 0 auto 36px;
      max-width: 700px;
    }

    /* Das Raster mit den drei Personen-Karten */
    .ueberuns-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 36px;
      align-items: start;
    }

    /* Eine Personen-Karte */
    .ueberuns-person {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 14px;
    }

    /* Portrait-Bild-Platzhalter pro Person.
       Wird später ersetzt durch <img src="images/portrait-NAME.jpg" alt="..." loading="lazy"> */
    .ueberuns-portrait {
      position: relative;
      width: 100%;
      max-width: 320px;
      background: linear-gradient(135deg,
        rgba(178, 168, 216, 0.18),
        rgba(216, 168, 182, 0.18));
      border: 1.5px dashed rgba(178, 168, 216, 0.55);
      border-radius: 16px;
      padding: 24px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 6px;
      text-align: center;
      aspect-ratio: 3 / 4;
    }

    /* Name unter dem Bild */
    .ueberuns-person-name {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 24px;
      line-height: 1.2;
      color: var(--color-tiefblau);
      letter-spacing: -0.01em;
      margin: 4px 0 0;
    }

    /* Beschreibung unter dem Namen */
    .ueberuns-person-text {
      font-family: var(--font-body);
      font-size: 15px;
      line-height: 1.6;
      color: var(--color-tiefblau);
      opacity: 0.85;
      max-width: 36ch;
      margin: 0;
    }

    /* === ÜBER UNS auf Tablet (ab 768px): 3 Personen nebeneinander === */
    @media (min-width: 768px) {
      .ueberuns-sektion {
        padding: 40px 0 80px;
      }
      .ueberuns-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
      }
    }

    /* === ÜBER UNS auf Desktop (ab 1024px) === */
    @media (min-width: 1024px) {
      .ueberuns-sektion {
        padding: 50px 0 100px;
      }
      .ueberuns-grid {
        gap: 32px;
      }
      .ueberuns-person-name {
        font-size: 26px;
      }
      .ueberuns-person-text {
        font-size: 16px;
      }
    }

    /* ============================================================
       17. SUB-SEKTION: So findet ihr uns
           Innerhalb von "Über uns" - Adresse, ÖPNV, Hinterhof-Hinweis
           und Google Maps Karte.
           - Mobile: alles untereinander (Infos oben, Karte unten)
           - Tablet+: links Infos, rechts Karte
       ============================================================ */
    .findet-ihr-uns {
      margin-top: 48px;
    }

    .findet-ihr-uns-titel {
      font-family: var(--font-body);
      font-size: 16px;
      font-weight: 400;
      line-height: 1.5;
      color: var(--color-tiefblau);
      opacity: 0.75;
      text-align: center;
      margin: 0 0 24px;
    }

    .findet-ihr-uns-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      align-items: stretch;
    }

    /* Info-Block mit Adresse, ÖPNV und Hinterhof-Hinweis */
    .findet-info {
      background: #FFFFFF;
      border: 1.5px solid rgba(178, 168, 216, 0.4);
      border-radius: 16px;
      padding: 24px;
      display: flex;
      flex-direction: column;
      gap: 22px;
    }

    /* Eine einzelne Info-Zeile (Icon links, Text rechts) */
    .findet-info-zeile {
      display: flex;
      gap: 14px;
      align-items: flex-start;
    }

    /* Icon-Kreis links neben dem Text */
    .findet-info-icon {
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(178, 168, 216, 0.35);
      color: var(--color-tiefblau);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .findet-info-icon svg {
      width: 20px;
      height: 20px;
    }

    /* Kleiner Titel über dem Text (z.B. "ADRESSE") */
    .findet-info-titel {
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 12px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--color-tiefblau);
      opacity: 0.7;
      margin: 4px 0 4px;
    }

    /* Der eigentliche Info-Text */
    .findet-info-text {
      font-family: var(--font-body);
      font-size: 15px;
      line-height: 1.55;
      color: var(--color-tiefblau);
      margin: 0;
    }

    /* Karten-Platzhalter (Google Maps wird erst nach Cookie-Zustimmung geladen) */
    .findet-karte {
      background: linear-gradient(135deg,
        rgba(178, 168, 216, 0.15),
        rgba(216, 168, 182, 0.15));
      border: 1.5px dashed rgba(178, 168, 216, 0.55);
      border-radius: 16px;
      padding: 24px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      gap: 10px;
      min-height: 280px;
      overflow: hidden;
    }

    .findet-karte-icon {
      width: 48px;
      height: 48px;
      color: var(--color-lavendel);
    }

    .findet-karte-titel {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 20px;
      line-height: 1.2;
      color: var(--color-tiefblau);
      margin: 0;
    }

    .findet-karte-text {
      font-family: var(--font-body);
      font-size: 13px;
      line-height: 1.5;
      color: var(--color-tiefblau);
      opacity: 0.7;
      max-width: 32ch;
      margin: 0;
    }

    /* === SO FINDET IHR UNS auf Tablet (ab 768px): Infos links, Karte rechts === */
    @media (min-width: 768px) {
      .findet-ihr-uns {
        margin-top: 56px;
      }
      .findet-ihr-uns-titel {
        font-size: 17px;
        margin-bottom: 32px;
      }
      .findet-ihr-uns-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
      }
      .findet-info {
        padding: 28px;
      }
      .findet-karte {
        min-height: 100%;
      }
    }

    /* === SO FINDET IHR UNS auf Desktop (ab 1024px) === */
    @media (min-width: 1024px) {
      .findet-ihr-uns {
        margin-top: 72px;
      }
      .findet-ihr-uns-titel {
        font-size: 18px;
        margin-bottom: 40px;
      }
      .findet-ihr-uns-grid {
        gap: 32px;
      }
      .findet-info {
        padding: 36px;
        gap: 26px;
      }
      .findet-karte-titel {
        font-size: 22px;
      }
    }

    /* ============================================================
       18. SEKTION 9: Bewertungen / Social Proof
           Drei Testimonial-Karten:
           - Mobile: untereinander
           - Tablet+: drei Spalten nebeneinander
       ============================================================ */
    .bewertungen-sektion {
      padding: 30px 0 60px;
      background: var(--color-cremeweiss);
    }

    .bewertungen-header {
      text-align: center;
      margin: 0 auto 36px;
      max-width: 700px;
    }

    .bewertungen-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }

    /* Eine Bewertungskarte */
    .bewertung-karte {
      position: relative;
      background: #FFFFFF;
      border: 1.5px solid rgba(178, 168, 216, 0.4);
      border-radius: 16px;
      padding: 28px 24px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .bewertung-karte:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0, 51, 118, 0.08);
    }

    /* Großes Anführungszeichen oben rechts als dekorativer Akzent */
    .bewertung-quote-icon {
      position: absolute;
      top: 18px;
      right: 22px;
      width: 36px;
      height: 36px;
      color: var(--color-lavendel);
      opacity: 0.35;
      pointer-events: none;
    }

    /* Sterne-Bewertung */
    .bewertung-sterne {
      display: inline-flex;
      gap: 3px;
      color: var(--color-sonnengelb);
    }
    .bewertung-sterne svg {
      width: 18px;
      height: 18px;
    }

    /* Das eigentliche Zitat */
    .bewertung-text {
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.6;
      color: var(--color-tiefblau);
      font-style: italic;
      margin: 0;
      flex-grow: 1;
    }

    /* Footer mit Name + Workshop-Kontext */
    .bewertung-footer {
      display: flex;
      flex-direction: column;
      gap: 2px;
      padding-top: 12px;
      border-top: 1.5px solid rgba(178, 168, 216, 0.2);
    }

    .bewertung-name {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 18px;
      color: var(--color-tiefblau);
      letter-spacing: -0.01em;
    }

    .bewertung-kontext {
      font-family: var(--font-body);
      font-size: 13px;
      color: var(--color-tiefblau);
      opacity: 0.65;
    }

    /* === BEWERTUNGEN auf Tablet (ab 768px): drei Spalten === */
    @media (min-width: 768px) {
      .bewertungen-sektion {
        padding: 40px 0 80px;
      }
      .bewertungen-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
      }
    }

    /* === BEWERTUNGEN auf Desktop (ab 1024px) === */
    @media (min-width: 1024px) {
      .bewertungen-sektion {
        padding: 50px 0 100px;
      }
      .bewertungen-grid {
        gap: 32px;
      }
      .bewertung-karte {
        padding: 32px 28px;
      }
      .bewertung-text {
        font-size: 17px;
      }
    }

    /* ============================================================
       19. SEKTION 10: FAQ - häufige Fragen
           Akkordeon mit dem nativen <details>/<summary>-Element.
           Eine Frage pro Zeile, ausklappbar.
       ============================================================ */
    .faq-sektion {
      padding: 30px 0 60px;
      background: var(--color-cremeweiss);
    }

    .faq-header {
      text-align: center;
      margin: 0 auto 36px;
      max-width: 700px;
    }

    /* Liste der Frage-Antwort-Einträge */
    .faq-liste {
      max-width: 800px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    /* Eine einzelne Frage-Antwort-Karte (HTML5 <details>-Element) */
    .faq-eintrag {
      background: #FFFFFF;
      border: 1.5px solid rgba(178, 168, 216, 0.4);
      border-radius: 16px;
      overflow: hidden;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }
    .faq-eintrag[open] {
      border-color: var(--color-lavendel);
      box-shadow: 0 4px 12px rgba(0, 51, 118, 0.06);
    }

    /* Die Frage selbst (auf <summary>) */
    .faq-frage {
      list-style: none;
      cursor: pointer;
      padding: 20px 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 17px;
      line-height: 1.3;
      color: var(--color-tiefblau);
      letter-spacing: -0.01em;
    }
    /* Standard-Marker (Dreieck) der summary unsichtbar machen */
    .faq-frage::-webkit-details-marker {
      display: none;
    }
    .faq-frage::marker {
      display: none;
    }
    .faq-frage:focus-visible {
      outline: 3px solid rgba(178, 168, 216, 0.7);
      outline-offset: -3px;
    }

    /* Das Plus-/Minus-Symbol rechts an der Frage */
    .faq-icon {
      flex-shrink: 0;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(178, 168, 216, 0.3);
      color: var(--color-tiefblau);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background-color 0.2s ease;
    }
    .faq-icon svg {
      width: 16px;
      height: 16px;
      transition: transform 0.25s ease;
    }
    /* Wenn die Frage offen ist, dreht sich das Plus zu einem X */
    .faq-eintrag[open] .faq-icon {
      background: rgba(178, 168, 216, 0.55);
    }
    .faq-eintrag[open] .faq-icon svg {
      transform: rotate(45deg);
    }

    /* Antwort-Bereich */
    .faq-antwort {
      padding: 0 22px 20px;
      font-family: var(--font-body);
      font-size: 15px;
      line-height: 1.6;
      color: var(--color-tiefblau);
      opacity: 0.88;
    }
    .faq-antwort p {
      margin: 0;
    }
    /* Links innerhalb von FAQ-Antworten in Lavendel hervorheben */
    .faq-antwort a {
      color: var(--color-lavendel);
      text-decoration: underline;
      text-decoration-thickness: 1.5px;
      text-underline-offset: 2px;
      font-weight: 600;
      transition: color 0.2s ease;
    }
    .faq-antwort a:hover,
    .faq-antwort a:focus-visible {
      color: var(--color-tiefblau);
      outline: none;
    }

    /* === FAQ auf Tablet (ab 768px) === */
    @media (min-width: 768px) {
      .faq-sektion {
        padding: 40px 0 80px;
      }
      .faq-frage {
        font-size: 19px;
        padding: 22px 28px;
      }
      .faq-antwort {
        padding: 0 28px 24px;
        font-size: 16px;
      }
    }

    /* === FAQ auf Desktop (ab 1024px) === */
    @media (min-width: 1024px) {
      .faq-sektion {
        padding: 50px 0 100px;
      }
      .faq-frage {
        font-size: 20px;
        padding: 24px 32px;
      }
      .faq-antwort {
        padding: 0 32px 26px;
      }
    }

    /* ============================================================
       20. SEKTION 11: FOOTER
           Hintergrund Tiefblau, Schrift Cremeweiß.
           - Mobile: alles untereinander
           - Tablet+: drei Spalten nebeneinander
       ============================================================ */
    .footer {
      background: var(--color-tiefblau);
      color: var(--color-cremeweiss);
      padding: 60px 0 30px;
    }

    /* Oberer Bereich mit den drei Spalten */
    .footer-oben {
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
      padding-bottom: 40px;
      border-bottom: 1.5px solid rgba(244, 240, 224, 0.18);
    }

    /* Eine Footer-Spalte */
    .footer-spalte {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    /* Logo im Footer - heller Hintergrund braucht angepasste Schatten */
    .footer-logo {
      position: relative;
      font-family: var(--font-display);
      color: var(--color-lavendel);
      line-height: 1;
      display: inline-block;
      padding-top: 14px;
      margin-bottom: 8px;
      /* Sonnengelb-Umriss (gleich wie im Kopfbereich) */
      text-shadow:
        -1px -1px 0 var(--color-sonnengelb),
         1px -1px 0 var(--color-sonnengelb),
        -1px  1px 0 var(--color-sonnengelb),
         1px  1px 0 var(--color-sonnengelb);
    }
    .footer-logo .logo-the {
      position: absolute;
      top: 0;
      left: 6px;
      font-size: 13px;
      font-weight: 500;
      font-style: italic;
    }
    .footer-logo .logo-craft {
      font-weight: 700;
      font-size: 28px;
      letter-spacing: -0.02em;
    }
    .footer-logo .logo-collective {
      font-weight: 600;
      font-size: 22px;
      margin-left: 6px;
      letter-spacing: -0.01em;
    }

    /* Überschrift einer Footer-Spalte */
    .footer-titel {
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 12px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--color-cremeweiss);
      opacity: 0.7;
      margin: 0;
    }

    /* Standardtext im Footer */
    .footer-text {
      font-family: var(--font-body);
      font-size: 15px;
      line-height: 1.6;
      color: var(--color-cremeweiss);
      margin: 0;
    }

    .footer-text-hinweis {
      font-style: italic;
      opacity: 0.8;
      font-size: 14px;
    }

    /* Klickbare Links im Footer */
    .footer-link {
      font-family: var(--font-body);
      font-size: 15px;
      color: var(--color-cremeweiss);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 2px 0;
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s ease, opacity 0.2s ease;
    }
    .footer-link:hover {
      border-bottom-color: var(--color-lavendel);
    }
    .footer-link:focus-visible {
      outline: 3px solid rgba(178, 168, 216, 0.7);
      outline-offset: 4px;
      border-radius: 2px;
    }

    .footer-link svg {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
    }

    /* Liste mit Legal-Links */
    .footer-legal-liste {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    /* Unterer Bereich mit Copyright */
    .footer-unten {
      padding-top: 24px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      align-items: flex-start;
    }

    .footer-copyright {
      font-family: var(--font-body);
      font-size: 13px;
      color: var(--color-cremeweiss);
      opacity: 0.7;
      margin: 0;
    }

    /* === FOOTER auf Tablet (ab 768px): drei Spalten === */
    @media (min-width: 768px) {
      .footer {
        padding: 80px 0 36px;
      }
      .footer-oben {
        grid-template-columns: 1.4fr 1fr 1fr;
        gap: 40px;
        padding-bottom: 48px;
      }
      .footer-logo .logo-the         { font-size: 14px; }
      .footer-logo .logo-craft       { font-size: 32px; }
      .footer-logo .logo-collective  { font-size: 26px; }
    }

    /* === FOOTER auf Desktop (ab 1024px) === */
    @media (min-width: 1024px) {
      .footer {
        padding: 100px 0 40px;
      }
      .footer-oben {
        gap: 64px;
        padding-bottom: 56px;
      }
      .footer-logo .logo-the         { font-size: 16px; }
      .footer-logo .logo-craft       { font-size: 38px; }
      .footer-logo .logo-collective  { font-size: 30px; }
      .footer-unten {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding-top: 28px;
      }
    }
