  /* ==============================================================
     DESIGN TOKENS
     Studio-Atmosphäre als Basis (Creme, Soft Black),
     Flyer-Identität als Akzent (Mandarine, Rosa, Pfirsich, Blau).
  ============================================================== */
  :root {
    --cream:        #FAF7F2;   /* Grundfläche — Studiowände */
    --cream-deep:   #F3EDE4;   /* Abgesetzte Sektionen */
    --blush:        #F9E9EC;   /* Rosa aus dem Flyer */
    --peach:        #FBE3CE;   /* Pfirsich aus dem Flyer */
    --mandarin:     #EF8A3C;   /* Logo-Mandarine — CTA-Farbe */
    --mandarin-dark:#DE7526;   /* Hover-Zustand */
    --mandarin-text:#A94F12;   /* dunklerer Orangeton für kleine Texte/Links */
    --leaf:         #4C9B4F;   /* Blatt der Mandarine */
    --cornflower:   #7B93D9;   /* Handschrift-Blau vom Flyer */
    --cornflower-text:#5068B0; /* dunkleres Blau für kleine Texte */
    --ink:          #211E1B;   /* Soft Black — Text, Rahmen */
    --ink-soft:     #5C554E;   /* Sekundärtext */
    --white:        #FFFFFF;

    --font-display: 'Trebuchet MS', 'Arial Rounded MT Bold', 'Segoe UI', sans-serif;
    --font-body:    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    --font-hand:    'Segoe Print', 'Bradley Hand', 'Comic Sans MS', cursive;

    --radius-card:  22px;
    --radius-pill:  999px;
    --shadow-soft:  0 8px 30px rgba(33, 30, 27, 0.08);
    --shadow-lift:  0 14px 40px rgba(33, 30, 27, 0.14);

    --container:    1120px;
    --gutter:       clamp(20px, 5vw, 40px);
    --section-pad:  clamp(64px, 10vw, 120px);

    --sticky-cta-h: 76px; /* Höhe des mobilen Sticky-Buttons inkl. Puffer */
  }

  /* ==============================================================
     RESET & BASIS
  ============================================================== */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

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

  a { color: inherit; }

  h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: 0.005em;
  }

  h1 { font-size: clamp(2.1rem, 7.5vw, 3.6rem); }
  h2 { font-size: clamp(1.7rem, 5vw, 2.5rem); }
  h3 { font-size: clamp(1.15rem, 3vw, 1.35rem); }

  .container {
    max-width: var(--container);
    margin: 0 auto;
    padding-inline: var(--gutter);
  }

  section { padding-block: var(--section-pad); position: relative; }

  /* Eyebrow — kleine handschriftliche Sektions-Kennzeichnung (Flyer-Stil) */
  .eyebrow {
    font-family: var(--font-hand);
    font-size: 1.45rem;
    color: var(--cornflower-text);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
  }
  .eyebrow svg { width: 22px; height: 22px; flex-shrink: 0; }

  .section-intro { max-width: 560px; margin-bottom: clamp(32px, 6vw, 56px); }
  .section-intro p { color: var(--ink-soft); margin-top: 12px; }

  /* Sichtbarer Tastatur-Fokus */
  a:focus-visible, button:focus-visible, summary:focus-visible {
    outline: 3px solid var(--cornflower);
    outline-offset: 3px;
    border-radius: 6px;
  }

  /* ==============================================================
     BUTTONS
  ============================================================== */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.02rem;
    text-decoration: none;
    border-radius: var(--radius-pill);
    padding: 15px 30px;
    transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
    will-change: transform;
  }
  .btn-primary {
    background: var(--mandarin);
    color: var(--ink);
    box-shadow: 0 8px 22px rgba(239, 138, 60, 0.38);
  }
  .btn-primary:hover {
    background: var(--mandarin-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(239, 138, 60, 0.45);
  }
  .btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--ink);
  }
  .btn-ghost:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }

  /* ==============================================================
     ORGANISCHE BLOBS — schwebende Deko-Elemente (dezent)
  ============================================================== */
  .blob {
    position: absolute;
    border-radius: 46% 54% 58% 42% / 48% 44% 56% 52%;
    filter: blur(2px);
    z-index: 0;
    pointer-events: none;
    animation: blobFloat 14s ease-in-out infinite;
  }
  .blob--peach { background: var(--peach); }
  .blob--blush { background: var(--blush); }
  @keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50%      { transform: translate(0, -22px) rotate(4deg); }
  }

  /* ==============================================================
     SCROLL-REVEAL (Fade-in)
  ============================================================== */
  /* Inhalte bleiben standardmäßig sichtbar. Nur JavaScript markiert
     tatsächlich animierbare, noch nicht sichtbare Elemente als pending.
     Dadurch bleibt die Seite auch bei JS-Fehlern vollständig lesbar. */
  .reveal {
    opacity: 1;
    transform: none;
    transition: opacity .7s ease, transform .7s ease;
  }
  .reveal.reveal-pending {
    opacity: 0;
    transform: translateY(26px);
  }
  .reveal.is-visible { opacity: 1; transform: translateY(0); }
  .reveal[data-delay="1"] { transition-delay: .12s; }
  .reveal[data-delay="2"] { transition-delay: .24s; }
  .reveal[data-delay="3"] { transition-delay: .36s; }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .blob { animation: none; }
    .btn, .gallery-item img, .look-card { transition: none !important; }
  }

  /* ==============================================================
     HEADER / NAVIGATION
  ============================================================== */
  .site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    background: rgba(250, 247, 242, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(33, 30, 27, 0.06);
    transition: box-shadow .3s ease;
  }
  .site-header.is-scrolled { box-shadow: 0 4px 24px rgba(33, 30, 27, 0.07); }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--ink);
  }
  .logo svg { width: 34px; height: 34px; }

  .nav-desktop { display: none; }
  .nav-desktop a {
    text-decoration: none;
    font-weight: 500;
    font-size: .95rem;
    color: var(--ink-soft);
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    transition: color .2s ease, background-color .2s ease;
  }
  .nav-desktop a:hover { color: var(--ink); background: var(--blush); }

  .header-cta { display: none; }

  /* Burger */
  .burger {
    background: none;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
  }
  .burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    position: relative;
    transition: background-color .2s ease;
  }
  .burger span::before, .burger span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .3s ease, top .3s ease;
  }
  .burger span::before { top: -7px; }
  .burger span::after  { top:  7px; }
  .burger[aria-expanded="true"] span { background: transparent; }
  .burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
  .burger[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

  /* Mobiles Menü */
  .nav-mobile {
    position: fixed;
    inset: 68px 0 0 0;
    background: var(--cream);
    z-index: 99;
    padding: 32px var(--gutter);
    display: flex;
    flex-direction: column;
    gap: 4px;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, transform .3s ease, visibility .3s;
  }
  .nav-mobile.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-mobile a {
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    padding: 14px 0;
    border-bottom: 1px solid rgba(33, 30, 27, 0.07);
  }
  .nav-mobile .nav-note {
    margin-top: auto;
    padding-bottom: 24px;
    font-size: .9rem;
    color: var(--ink-soft);
  }

  /* ==============================================================
     HERO
  ============================================================== */
  .hero {
    padding-top: calc(68px + clamp(28px, 6vw, 72px));
    padding-bottom: clamp(48px, 8vw, 96px);
    overflow: hidden;
  }
  .hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 32px;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border-radius: var(--radius-pill);
    padding: 8px 16px;
    font-size: .88rem;
    font-weight: 600;
    box-shadow: var(--shadow-soft);
    width: fit-content;
  }
  .stars { color: var(--mandarin); letter-spacing: 2px; font-size: .95rem; }

  .hero h1 { margin: 18px 0 6px; }
  .hero h1 .accent { color: var(--mandarin); }

  .hero-sub {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.05rem, 3vw, 1.3rem);
    color: var(--cornflower-text);
    margin-bottom: 14px;
  }
  .hero-copy { color: var(--ink-soft); max-width: 460px; margin-bottom: 26px; }

  .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

  .hero-usps {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin-top: 24px;
    font-size: .9rem;
    color: var(--ink-soft);
  }
  .hero-usps li { list-style: none; display: flex; align-items: center; gap: 7px; }
  .hero-usps svg { width: 16px; height: 16px; color: var(--leaf); flex-shrink: 0; }

  .hero-visual { position: relative; }
  .hero-visual .photo-frame {
    position: relative;
    z-index: 1;
    border-radius: 30px 30px 200px 200px / 30px 30px 160px 160px;
    overflow: hidden;
    box-shadow: var(--shadow-lift);
  }
  .hero-visual img { width: 100%; object-fit: cover; aspect-ratio: 4 / 4.6; }

  .hero-visual .photo-frame--brow {
    border-radius: 26px;
    background: var(--white);
  }
  .hero-visual .photo-frame--brow img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center 38%;
  }

  /* Handgezeichneter Kringel + Label am Hero-Bild */
  .hero-note {
    position: absolute;
    z-index: 2;
    bottom: 18px;
    left: -6px;
    background: var(--white);
    border-radius: var(--radius-pill);
    padding: 8px 18px;
    font-family: var(--font-hand);
    font-size: 1.3rem;
    color: var(--ink);
    box-shadow: var(--shadow-soft);
    transform: rotate(-3deg);
  }
  .hero-note strong { color: var(--mandarin); font-weight: 600; }

  .hero .blob--peach { width: 320px; height: 300px; top: -60px; right: -120px; }
  .hero .blob--blush { width: 240px; height: 230px; bottom: -40px; left: -110px; animation-delay: -6s; }

  /* ==============================================================
     TRUST-LEISTE
  ============================================================== */
  .trustbar { padding-block: 0; margin-top: -8px; }
  .trustbar-inner {
    background: var(--white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    padding: 22px clamp(20px, 4vw, 40px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 12px;
  }
  .trust-item { text-align: center; }
  .trust-item .value {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--mandarin);
  }
  .trust-item .label { font-size: .82rem; color: var(--ink-soft); line-height: 1.4; }

  /* ==============================================================
     SIGNATURE LOOKS — Mandarinen-Karten
  ============================================================== */
  .looks { background: linear-gradient(180deg, var(--cream) 0%, var(--blush) 120%); overflow: hidden; }
  .looks .blob--peach { width: 380px; height: 360px; bottom: -140px; right: -160px; opacity: .6; }

  .looks-grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 22px;
  }

  .look-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 30px 26px 26px;
    box-shadow: var(--shadow-soft);
    transition: transform .3s ease, box-shadow .3s ease;
    display: flex;
    flex-direction: column;
  }
  .look-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }

  .look-card .tag {
    position: absolute;
    top: -14px;
    left: 22px;
    font-family: var(--font-hand);
    font-size: 1.25rem;
    color: var(--cornflower-text);
    background: var(--white);
    padding: 2px 14px;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-soft);
    transform: rotate(-2deg);
  }

  /* Mandarinen-Icon der Karte */
  .look-card .fruit {
    width: 58px;
    height: 58px;
    margin-bottom: 16px;
  }

  .look-card h3 { margin-bottom: 8px; }
  .look-card p { color: var(--ink-soft); font-size: .93rem; flex-grow: 1; }

  .look-meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin: 18px 0 16px;
    padding-top: 16px;
    border-top: 1.5px dashed var(--peach);
  }
  .look-meta .price {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.7rem;
    color: var(--mandarin);
  }
  .look-meta .duration { font-size: .88rem; color: var(--ink-soft); }

  .look-card--featured { border: 2px solid var(--mandarin); }

  /* ==============================================================
     GALERIE
  ============================================================== */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .gallery-item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
  }
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3 / 4;
    transition: transform .5s ease;
  }
  .gallery-item:hover img { transform: scale(1.04); }
  .gallery-item .g-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(4px);
    border-radius: var(--radius-pill);
    padding: 5px 14px;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: .8rem;
  }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item--wide img { aspect-ratio: 16 / 10; }

  .gallery-item--brow img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center 38%;
  }

  /* ==============================================================
     WARUM CAM.LASHBAR — Studio-Sektion
  ============================================================== */
  .why { background: var(--cream-deep); overflow: hidden; }
  .why .blob--blush { width: 300px; height: 280px; top: -100px; left: -140px; opacity: .8; }

  .why-grid { position: relative; z-index: 1; display: grid; gap: 40px; }

  .why-photos {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 14px;
    align-items: start;
  }
  .why-photos img {
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    width: 100%;
    object-fit: cover;
  }
  .why-photos .p-main { grid-row: span 2; height: 100%; aspect-ratio: 3 / 4.4; }
  .why-photos .p-side { aspect-ratio: 1 / 1; }

  .usp-list { display: grid; gap: 20px; margin-top: 8px; }
  .usp {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  .usp-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    display: grid;
    place-items: center;
    color: var(--mandarin);
  }
  .usp-icon svg { width: 22px; height: 22px; }
  .usp h3 { font-size: 1.05rem; margin-bottom: 3px; }
  .usp p { font-size: .92rem; color: var(--ink-soft); }

  /* ==============================================================
     ABLAUF — 3 Schritte
  ============================================================== */
  .steps-grid { display: grid; gap: 18px; }
  .step {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 26px 24px;
    box-shadow: var(--shadow-soft);
    position: relative;
  }
  .step .step-num {
    font-family: var(--font-hand);
    font-size: 2.1rem;
    color: var(--mandarin);
    line-height: 1;
    margin-bottom: 10px;
  }
  .step h3 { margin-bottom: 6px; font-size: 1.08rem; }
  .step p { font-size: .92rem; color: var(--ink-soft); }

  /* ==============================================================
     PREISLISTE
  ============================================================== */
  .prices { background: linear-gradient(180deg, var(--blush) -30%, var(--cream) 30%); }
  .price-groups { display: grid; gap: 26px; max-width: 760px; }
  .price-group {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 26px clamp(20px, 4vw, 34px);
    box-shadow: var(--shadow-soft);
  }
  .price-group h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--ink);
  }
  .price-group h3 svg { width: 20px; height: 20px; color: var(--mandarin); flex-shrink: 0; }

  .price-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 6px 14px;
    align-items: baseline;
    padding: 9px 0;
    border-bottom: 1px dashed rgba(33, 30, 27, 0.12);
    font-size: .94rem;
  }
  .price-row:last-child { border-bottom: none; }
  .price-row .p-name { font-weight: 500; }
  .price-row .p-time { color: var(--ink-soft); font-size: .85rem; white-space: nowrap; }
  .price-row .p-price {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--mandarin-text);
    white-space: nowrap;
  }

  /* ==============================================================
     BEWERTUNGEN
  ============================================================== */
  /* Neue zentrierte Bewertungskarte (rechtssicher, ohne Zitate) */
  .reviews-card {
    background: var(--white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    padding: clamp(36px, 7vw, 60px) clamp(24px, 6vw, 64px);
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  .reviews-card .stars--big {
    font-size: clamp(1.6rem, 5vw, 2.1rem);
    color: var(--mandarin);
    letter-spacing: 6px;
    line-height: 1;
    margin: 4px 0 10px;
  }
  .reviews-card h2 { margin-bottom: 10px; }
  .reviews-card p { color: var(--ink-soft); font-size: .96rem; max-width: 480px; margin-bottom: 22px; }

  .reviews-grid { display: grid; gap: 18px; }
  .review {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 26px 24px;
    box-shadow: var(--shadow-soft);
  }
  .review .stars { margin-bottom: 10px; display: block; }
  .review p { font-size: .95rem; color: var(--ink-soft); }
  .review .reviewer {
    margin-top: 14px;
    font-weight: 600;
    font-size: .88rem;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .review .reviewer .avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--peach);
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    color: var(--mandarin);
  }

  /* ==============================================================
     FAQ
  ============================================================== */
  .faq-list { max-width: 760px; display: grid; gap: 12px; }
  details {
    background: var(--white);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
  }
  summary {
    cursor: pointer;
    list-style: none;
    padding: 18px 22px;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }
  summary::-webkit-details-marker { display: none; }
  summary .chev {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--blush);
    display: grid;
    place-items: center;
    transition: transform .3s ease;
  }
  summary .chev svg { width: 13px; height: 13px; color: var(--ink); }
  details[open] summary .chev { transform: rotate(180deg); }
  details .faq-body { padding: 0 22px 20px; font-size: .93rem; color: var(--ink-soft); }

  /* ==============================================================
     FINALER CTA + KONTAKT
  ============================================================== */
  .final-cta {
    background: var(--ink);
    color: var(--cream);
    overflow: hidden;
  }
  .final-cta .blob--peach { opacity: .14; width: 420px; height: 400px; top: -120px; right: -160px; }
  .final-cta .eyebrow { color: var(--peach); }
  .final-cta h2 { color: var(--white); }
  .final-cta .lead { color: rgba(250, 247, 242, 0.75); max-width: 480px; margin: 14px 0 28px; }

  .contact-grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 40px;
  }
  .contact-list { display: grid; gap: 16px; margin-top: 30px; }
  .contact-list a { color: var(--cream); text-decoration: none; }
  .contact-list a:hover { color: var(--peach); }
  .contact-item { display: flex; gap: 14px; align-items: flex-start; font-size: .95rem; }
  .contact-item svg { width: 20px; height: 20px; color: var(--mandarin); flex-shrink: 0; margin-top: 2px; }
  .contact-item .c-label { display: block; font-size: .78rem; color: rgba(250,247,242,0.55); }

  .map-embed {
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-lift);
    border: 0;
    width: 100%;
    height: 300px;
    filter: grayscale(0.4);
  }

  /* ==============================================================
     FOOTER
  ============================================================== */
  .site-footer {
    background: var(--ink);
    color: rgba(250, 247, 242, 0.6);
    padding: 26px 0 calc(26px + var(--sticky-cta-h));
    font-size: .85rem;
    border-top: 1px solid rgba(250, 247, 242, 0.1);
  }
  .footer-inner { display: flex; flex-wrap: wrap; gap: 12px 26px; justify-content: space-between; align-items: center; }
  .footer-inner nav { display: flex; gap: 20px; }
  .footer-inner a { color: rgba(250,247,242,0.6); text-decoration: none; }
  .footer-inner a:hover { color: var(--cream); }

  /* ==============================================================
     STICKY MOBILE CTA
  ============================================================== */
  .sticky-cta {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 90;
    padding: 12px var(--gutter) calc(12px + env(safe-area-inset-bottom));
    background: linear-gradient(180deg, rgba(250,247,242,0) 0%, rgba(250,247,242,0.9) 35%);
    pointer-events: none;
  }
  .sticky-cta .btn {
    pointer-events: auto;
    width: 100%;
    box-shadow: 0 10px 30px rgba(239, 138, 60, 0.5);
  }

  /* ==============================================================
     TABLET & DESKTOP  (Mobile-first: alles oben ist die Basis)
  ============================================================== */
  @media (min-width: 640px) {
    .trustbar-inner { grid-template-columns: repeat(4, 1fr); }
    .looks-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-item--wide { grid-column: span 1; }
    .gallery-item--wide img { aspect-ratio: 3 / 4; }

    .gallery-item--brow img { aspect-ratio: 4 / 3; }
    .steps-grid { grid-template-columns: repeat(3, 1fr); }
    .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  }

  @media (min-width: 900px) {
    .hero-grid { grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 60px; }
    .hero-visual { order: 2; }
    .hero-note { left: auto; right: -10px; }

    .why-grid { grid-template-columns: 1fr 1fr; align-items: center; gap: 64px; }

    .contact-grid { grid-template-columns: 1fr 1fr; align-items: center; gap: 64px; }
    .map-embed { height: 380px; }

  }

  /* Volle Desktop-Navigation erst, wenn genug horizontale Breite vorhanden ist.
     Bis 1149 px bleibt das Burger-Menü plus Sticky-Buchungsbutton sichtbar. */
  @media (min-width: 1150px) {
    .burger, .nav-mobile { display: none; }
    .nav-desktop { display: flex; gap: 4px; }
    .header-cta { display: inline-flex; padding: 11px 24px; font-size: .92rem; }
    .sticky-cta { display: none; }
    .site-footer { padding-bottom: 26px; }
  }

/* ==============================================================
   LEISTUNGSSEITEN — zusätzliche Komponenten
   (Diese Datei enthält oben das komplette Design-System der
   Startseite und darunter die Bausteine der Detailseiten.)
============================================================== */

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  font-size: .85rem;
  color: var(--ink-soft);
  margin-bottom: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.breadcrumb a { text-decoration: none; color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--mandarin); }
.breadcrumb .sep { color: rgba(33,30,27,0.3); }

/* ---------- Service-Hero ---------- */
.service-hero {
  padding-top: calc(68px + clamp(28px, 6vw, 64px));
  padding-bottom: clamp(40px, 7vw, 80px);
  overflow: hidden;
}
.service-hero .hero-copy { max-width: 520px; }

.meta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 26px;
}
.meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-soft);
  padding: 9px 16px;
  font-size: .88rem;
  font-weight: 600;
}
.meta-chip svg { width: 16px; height: 16px; color: var(--mandarin); flex-shrink: 0; }
.meta-chip .chip-strong { color: var(--mandarin-text); font-family: var(--font-display); }

/* ---------- Inhaltssektionen ---------- */
.service-section { padding-block: clamp(48px, 8vw, 88px); }
.service-section .container > p,
.service-prose p { color: var(--ink-soft); max-width: 640px; }
.service-prose p + p { margin-top: 14px; }
.service-prose strong { color: var(--ink); }

.section-alt { background: var(--cream-deep); }
.section-blush { background: linear-gradient(180deg, var(--cream) 0%, var(--blush) 130%); }

/* ---------- „Für wen geeignet?" Checkliste ---------- */
.check-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 22px;
  max-width: 640px;
}
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  padding: 14px 18px;
  font-size: .95rem;
}
.check-list svg { width: 20px; height: 20px; color: var(--leaf); flex-shrink: 0; margin-top: 2px; }

/* ---------- Vergleich / Abgrenzung ---------- */
.compare-grid { display: grid; gap: 18px; margin-top: 26px; }
.compare-card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  padding: 24px 22px;
}
.compare-card.is-highlight { border: 2px solid var(--mandarin); }
.compare-card--link {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  transition: transform .35s ease, box-shadow .35s ease;
}
.compare-card--link:hover,
.compare-card--link:focus-visible { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.compare-card--link:focus-visible { outline: 3px solid var(--mandarin); outline-offset: 3px; }
.card-link-hint {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: .88rem;
  font-weight: 600;
  color: var(--mandarin-text);
}
.card-link-hint svg { width: 15px; height: 15px; transition: transform .3s ease; }
.compare-card--link:hover .card-link-hint svg { transform: translateX(4px); }
.card-link-hint--static { color: var(--ink-soft); }
.compare-card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.compare-card p { font-size: .92rem; color: var(--ink-soft); }
.compare-card .mini-price {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--mandarin-text);
}
.lash-set-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.set-visual {
  margin: -24px -22px 20px;
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(33,30,27,.06);
}
.set-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.lash-set-card h3 { margin-top: 0; }
@media (max-width: 639px) {
  .set-visual { margin: -20px -18px 18px; }
}

/* ---------- Vorher/Nachher-Slider ---------- */
.ba-slider {
  position: relative;
  max-width: 640px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--white);
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
}
.ba-slider img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}
.ba-after {
  position: absolute;
  inset: 0;
  clip-path: inset(0 0 0 50%);
  will-change: clip-path;
}
.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  margin-left: -1.5px;
  background: var(--white);
  box-shadow: 0 0 8px rgba(33,30,27,.35);
  pointer-events: none;
  will-change: left;
}
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--white) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23ef8a3c" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round"><path d="M8 7l-5 5 5 5M16 7l5 5-5 5"/></svg>') center/24px no-repeat;
  box-shadow: 0 2px 12px rgba(33,30,27,.32);
  pointer-events: none;
  will-change: left;
}
.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: ew-resize;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
}
.ba-range:focus-visible { outline: none; }
.ba-range:focus-visible + .ba-handle,
.ba-slider:focus-within .ba-handle {
  box-shadow: 0 0 0 3px var(--mandarin), 0 2px 12px rgba(33,30,27,.32);
}
/* make the whole track grabbable, hide default thumb visuals */
.ba-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 44px;
  height: 44px;
  cursor: ew-resize;
}
.ba-range::-moz-range-thumb {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: ew-resize;
}
.ba-range::-moz-range-track { background: transparent; }
.ba-label {
  position: absolute;
  bottom: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 600;
  pointer-events: none;
}
.ba-label--before { left: 12px; }
.ba-label--after { right: 12px; }
.ba-caption {
  margin: 12px 4px 0;
  font-size: .85rem;
  color: var(--ink-soft);
}
@media (max-width: 480px) {
  .ba-slider { max-width: 100%; }
  .ba-handle { width: 40px; height: 40px; }
  .ba-label { font-size: .74rem; padding: 4px 10px; }
}
@media (min-width: 640px) {
  .compare-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .compare-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Preis & Dauer Box ---------- */
.price-box {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  padding: 26px clamp(20px, 4vw, 34px);
  max-width: 640px;
  margin-top: 24px;
}
.price-box .price-row:last-child { border-bottom: none; }

/* ---------- CTA-Box ---------- */
.cta-box {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lift);
  padding: clamp(30px, 6vw, 48px) clamp(22px, 5vw, 48px);
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.cta-box h2 { margin-bottom: 10px; }
.cta-box p { color: var(--ink-soft); max-width: 480px; margin: 0 auto 24px; }
.cta-box .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.cta-box .cta-hint {
  margin-top: 16px;
  font-family: var(--font-hand);
  font-size: 1.25rem;
  color: var(--cornflower-text);
}

/* ---------- Querlink-Karte ---------- */
.crosslink {
  background: var(--blush);
  border-radius: var(--radius-card);
  padding: 26px clamp(20px, 4vw, 34px);
  max-width: 720px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.crosslink svg { width: 26px; height: 26px; color: var(--mandarin); flex-shrink: 0; margin-top: 3px; }
.crosslink p { font-size: .95rem; color: var(--ink); }
.crosslink a { color: var(--mandarin-text); font-weight: 600; }

/* ---------- Placeholder (Browlifting, bis echte Fotos da sind) ---------- */
.placeholder-visual {
  position: relative;
  z-index: 1;
  border-radius: 30px 30px 200px 200px / 30px 30px 160px 160px;
  background: linear-gradient(160deg, var(--peach) 0%, var(--blush) 100%);
  box-shadow: var(--shadow-lift);
  aspect-ratio: 4 / 4.6;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 32px;
}
.placeholder-visual .ph-inner { display: grid; gap: 14px; justify-items: center; }
.placeholder-visual svg { width: 84px; height: 84px; color: var(--mandarin); }
.placeholder-visual p {
  font-family: var(--font-hand);
  font-size: 1.5rem;
  color: var(--ink);
  max-width: 260px;
}

/* ---------- Weitere Leistungen ---------- */
.more-services { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.more-services a {
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .9rem;
  background: var(--white);
  border: 1.5px solid rgba(33,30,27,0.12);
  border-radius: var(--radius-pill);
  padding: 9px 18px;
  transition: border-color .2s ease, background-color .2s ease;
}
.more-services a:hover { border-color: var(--mandarin); background: var(--peach); }

/* ---------- Desktop-Anpassungen ---------- */
@media (min-width: 900px) {
  .service-hero .hero-grid { grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 60px; }
  .service-hero .hero-visual { order: 2; }
}


/* ==============================================================
   V4 — GEO/SEO Antwortblöcke
============================================================== */
.answer-grid {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}
.answer-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 22px 20px;
  box-shadow: var(--shadow-soft);
}
.answer-card h3 {
  font-size: 1.02rem;
  margin-bottom: 6px;
}
.answer-card p {
  color: var(--ink-soft);
  font-size: .93rem;
}
.local-note {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: .94rem;
  max-width: 760px;
}
@media (min-width: 760px) {
  .answer-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ==============================================================
   V5 — Echte Ergebnisbilder auf Leistungsseiten
============================================================== */
.result-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 920px;
}
.result-gallery.is-single { max-width: 640px; }
.result-card {
  margin: 0;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.result-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.result-card--brow img {
  aspect-ratio: 4 / 3;
  object-position: center 38%;
}
.result-card figcaption {
  padding: 14px 16px 16px;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
}
.result-card .result-note {
  display: block;
  margin-top: 3px;
  font-family: var(--font-body);
  font-size: .86rem;
  font-weight: 400;
  color: var(--ink-soft);
}
@media (min-width: 680px) {
  .result-gallery:not(.is-single) { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}


/* ==============================================================
   MOBILE FINAL PASS — optimiert für 320–639 px
============================================================== */
@media (max-width: 639px) {
  :root {
    --gutter: 16px;
    --section-pad: 52px;
    --sticky-cta-h: 68px;
  }
  html { scroll-padding-top: 72px; }
  body { font-size: 15.5px; line-height: 1.6; }
  h1 { font-size: clamp(1.95rem, 9vw, 2.45rem); }
  h2 { font-size: clamp(1.55rem, 7vw, 2rem); }
  h3 { font-size: 1.08rem; }
  .eyebrow { font-size: 1.12rem; line-height: 1.3; gap: 6px; }
  .section-intro { margin-bottom: 28px; }
  section, .service-section { padding-block: var(--section-pad); }

  .header-inner { height: 62px; }
  .logo { font-size: 1.1rem; gap: 8px; }
  .logo svg { width: 30px; height: 30px; }
  .burger { width: 44px; height: 44px; }
  .nav-mobile {
    inset: 62px 0 0 0;
    padding: 18px var(--gutter) calc(22px + env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .nav-mobile a { font-size: 1.16rem; padding: 11px 0; }
  .nav-mobile .nav-note { margin-top: 18px; padding-bottom: 0; }

  .service-hero { padding-top: calc(62px + 24px); padding-bottom: 46px; }
  .service-hero .hero-grid { gap: 24px; }
  .service-hero .hero-content { order: 1; }
  .service-hero .hero-visual { order: 2; }
  .breadcrumb { font-size: .8rem; gap: 5px; flex-wrap: wrap; }
  .hero-sub { font-size: 1.1rem; }
  .hero-copy { margin-bottom: 20px; }
  .hero-visual .photo-frame { border-radius: 22px; }
  .hero-visual img { aspect-ratio: 4 / 4.2; }
  .hero-visual .photo-frame--brow img { aspect-ratio: 4 / 3; }

  .meta-chips { gap: 7px; margin: 16px 0 20px; }
  .meta-chip { padding: 8px 11px; font-size: .8rem; }

  .hero-actions, .cta-actions, .price-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
  }
  .hero-actions .btn, .cta-actions .btn, .price-actions .btn {
    width: 100%;
    min-height: 48px;
    padding: 13px 16px;
    text-align: center;
  }

  .answer-grid, .compare-grid, .steps-grid, .result-gallery { gap: 14px; }
  .answer-card, .compare-card, .step { padding: 20px 18px; }
  .check-list { gap: 10px; }
  .check-list li { padding: 13px 14px; }

  .price-box { padding: 20px 16px; }
  .price-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 4px 12px;
    align-items: end;
    padding: 13px 0;
  }
  .price-row .p-name { grid-column: 1 / -1; min-width: 0; }
  .price-row .p-time { grid-column: 1; font-size: .82rem; }
  .price-row .p-price { grid-column: 2; white-space: nowrap; }

  .cta-box { padding: 26px 18px; }
  .crosslink { padding: 20px 18px; }
  .result-card img { aspect-ratio: 4 / 4.5; }
  .result-card--brow img { aspect-ratio: 4 / 3; }

  .faq-item summary { padding: 16px 14px; gap: 10px; }
  .faq-body { padding: 0 14px 16px; }
  .footer-inner { display: grid; gap: 12px; }
  .footer-inner nav { flex-wrap: wrap; gap: 10px 16px; }
  .sticky-cta { padding: 8px 12px calc(8px + env(safe-area-inset-bottom)); }
  .sticky-cta .btn { min-height: 48px; padding: 12px 16px; }
}


/* ==============================================================
   V16 — Desktop-Dramaturgie & Preis-/CTA-Layout
   Auf großen Screens stehen Preis und nächster Schritt zusammen;
   mobil bleibt die bewährte, gestapelte Darstellung erhalten.
============================================================== */
.price-cta-layout {
  display: grid;
  gap: 24px;
  margin-top: 28px;
  align-items: stretch;
}
.price-cta-layout .price-box,
.price-cta-layout .cta-box {
  max-width: none;
  width: 100%;
  margin: 0;
}
.price-cta-layout .cta-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 900px) {
  .price-cta-layout {
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: 30px;
  }
}
