/* ============================================================
 * Souvera – Gemeinsames Stylesheet (öffentliche Seiten)
 * ------------------------------------------------------------
 * Eine zentrale CSS-Datei für index/impressum/datenschutz/
 * cookies/kontakt. Ersetzt das zuvor in jeder HTML-Datei
 * duplizierte Inline-CSS.
 *
 * Schriften: Es werden KEINE externen Schriften (z.B. Google
 * Fonts) geladen. Die Variablen unten nennen die Wunsch-Schrift
 * zuerst und fallen auf hochwertige System-Schriften zurück.
 * Sobald lokale Schriftdateien unter assets/fonts/ liegen und
 * dort per @font-face registriert werden, greifen sie automatisch.
 * ============================================================ */

:root{
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-serif: 'Playfair Display', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --font-serif-accent: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
}

  :root{
    --creme:#FAF6F0;
    --creme-deep:#F0E9DF;
    --ink:#1C1B1A;
    --teal:#1F6F6B;
    --teal-deep:#16504C;
    --brass:#C99A5B;
    --grey:#8B8680;
    --white:#FFFFFF;
    --line: rgba(28,27,26,0.12);
  }

  *{margin:0;padding:0;box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  html{background:var(--creme);}
  body{
    font-family:var(--font-sans);
    background:transparent;          /* Atmosphäre-Canvas (z-index:-1) scheint durch */
    color:var(--ink);
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }
  img{max-width:100%;display:block;}
  a{text-decoration:none;color:inherit;}
  /* Sichtbare Fokuszustände für Tastaturbedienung */
  a:focus-visible, button:focus-visible, input:focus-visible,
  select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible, summary:focus-visible{
    outline:2px solid var(--teal-deep);
    outline-offset:2px;
    border-radius:2px;
  }

  h1,h2,h3{
    font-family:var(--font-serif);
    font-weight:500;
    letter-spacing:-0.01em;
    color:var(--ink);
  }

  .eyebrow{
    font-family:var(--font-sans);
    font-size:0.72rem;
    font-weight:600;
    letter-spacing:0.22em;
    text-transform:uppercase;
    color:var(--teal-deep);
    display:flex;
    align-items:center;
    gap:0.7rem;
  }
  .eyebrow::before{
    content:'';
    width:18px;
    height:1px;
    background:var(--teal);
    display:inline-block;
  }

  .wrap{
    max-width:1180px;
    margin:0 auto;
    padding:0 6vw;
  }

  /* ============ NAV ============ */
  header.nav{
    position:fixed;
    top:0;left:0;right:0;
    z-index:100;
    background:rgba(250,246,240,0.86);
    backdrop-filter:blur(14px);
    border-bottom:1px solid var(--line);
    transition:background 0.3s ease;
  }
  .nav-inner{
    max-width:1180px;
    margin:0 auto;
    padding:0.85rem 6vw;
    display:flex;
    align-items:center;
    justify-content:space-between;
  }
  .nav-logo img{height:44px;width:auto;}
  .nav-links{
    display:flex;
    gap:2.4rem;
    font-size:0.86rem;
    font-weight:500;
    letter-spacing:0.01em;
  }
  .nav-links a{position:relative;color:var(--ink);opacity:0.78;transition:opacity 0.2s;}
  .nav-links a:hover{opacity:1;}
  .nav-cta{
    font-size:0.82rem;
    font-weight:600;
    padding:0.62rem 1.4rem;
    background:var(--ink);
    color:var(--creme);
    border-radius:2px;
    letter-spacing:0.02em;
    transition:background 0.25s ease;
  }
  .nav-cta:hover{background:var(--teal-deep);}
  .nav-toggle{display:none;width:42px;height:42px;border:none;background:none;cursor:pointer;padding:9px 8px;flex-direction:column;justify-content:center;gap:5px;}
  .nav-toggle span{display:block;height:2px;width:100%;background:var(--ink);border-radius:2px;transition:transform 0.25s ease, opacity 0.2s ease;}
  .nav-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg);}
  .nav-toggle[aria-expanded="true"] span:nth-child(2){opacity:0;}
  .nav-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

  @media(max-width:860px){
    .nav-toggle{display:flex;}
    .nav-logo img{height:36px;}
    .nav-cta{padding:0.5rem 1rem;font-size:0.78rem;}
    .nav-links{
      display:flex;position:absolute;top:100%;left:0;right:0;
      flex-direction:column;gap:0;
      background:rgba(250,246,240,0.98);backdrop-filter:blur(14px);
      border-bottom:1px solid var(--line);
      padding:0.2rem 6vw 0.8rem;
      transform:translateY(-8px);opacity:0;visibility:hidden;
      transition:opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
      font-size:1rem;
    }
    .nav-links.open{opacity:1;visibility:visible;transform:translateY(0);}
    .nav-links a{padding:0.85rem 0;border-bottom:1px solid var(--line);opacity:0.9;}
    .nav-links a:last-child{border-bottom:none;}
  }

  /* ============ HERO ============ */
  section.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    padding-top:7.5rem;
    padding-bottom:4rem;
    position:relative;
  }
  .hero-grid{
    display:grid;
    grid-template-columns:1.05fr 0.95fr;
    gap:4vw;
    align-items:center;
  }
  .hero-copy .eyebrow{margin-bottom:1.6rem;}
  .hero-copy h1{
    font-size:clamp(2.6rem,5vw,4.1rem);
    line-height:1.04;
    margin-bottom:1.6rem;
  }
  .hero-copy h1 em{
    font-style:italic;
    color:var(--teal-deep);
  }
  .hero-copy p.lede{
    font-size:1.12rem;
    color:#403E3B;
    max-width:520px;
    margin-bottom:2.4rem;
    font-weight:400;
  }
  .hero-actions{display:flex;align-items:center;gap:1.6rem;flex-wrap:wrap;}
  .btn-primary{
    display:inline-block;
    background:var(--ink);
    color:var(--creme);
    padding:1rem 2.1rem;
    font-size:0.92rem;
    font-weight:600;
    letter-spacing:0.02em;
    border-radius:2px;
    transition:background 0.25s ease, transform 0.25s ease;
  }
  .btn-primary:hover{background:var(--teal-deep);transform:translateY(-1px);}
  .btn-secondary{
    font-size:0.88rem;
    font-weight:500;
    color:var(--ink);
    border-bottom:1px solid var(--ink);
    padding-bottom:2px;
    opacity:0.75;
  }
  .hero-visual{
    position:relative;
  }
  .hero-visual .frame{
    position:relative;
    border-radius:2px;
    overflow:hidden;
    aspect-ratio:4/5;
  }
  .hero-visual img{
    width:100%;height:100%;object-fit:cover;
  }
  .hero-visual::before{
    content:'';
    position:absolute;
    top:-18px;right:-18px;
    width:100%;height:100%;
    border:1px solid var(--teal);
    z-index:-1;
    opacity:0.5;
  }
  .hero-tag{
    position:absolute;
    bottom:-1.4rem;
    left:-1.4rem;
    background:var(--white);
    padding:1.1rem 1.4rem;
    box-shadow:0 18px 40px -12px rgba(28,27,26,0.18);
    max-width:230px;
    border-left:3px solid var(--teal);
  }
  .hero-tag p{font-size:0.82rem;color:#403E3B;}
  .hero-tag strong{display:block;font-family:var(--font-serif);font-size:1.05rem;margin-bottom:0.2rem;}

  @media(max-width:860px){
    .hero-grid{grid-template-columns:1fr;}
    .hero-visual{order:-1;max-width:320px;margin:0 auto 2rem;}
    .hero-tag{display:none;}
  }

  /* ============ STAT STRIP ============ */
  section.stats{
    background:var(--ink);
    color:var(--creme);
    padding:3.4rem 0;
  }
  .stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:2rem;
  }
  .stat-item{border-left:1px solid rgba(250,246,240,0.18);padding-left:1.6rem;}
  .stat-item:first-child{border-left:none;padding-left:0;}
  .stat-num{
    font-family:var(--font-serif);
    font-size:2.3rem;
    color:var(--brass);
    line-height:1;
    margin-bottom:0.5rem;
  }
  .stat-label{font-size:0.82rem;color:rgba(250,246,240,0.72);line-height:1.4;}

  @media(max-width:860px){
    .stats-grid{grid-template-columns:repeat(2,1fr);gap:2.2rem;}
    .stat-item{border-left:none;padding-left:0;}
  }

  /* ============ PROBLEM ============ */
  section.problem{
    padding:7rem 0 6rem;
  }
  .problem-head{
    max-width:680px;
    margin-bottom:3.4rem;
  }
  .problem-head .eyebrow{margin-bottom:1.4rem;}
  .problem-head h2{
    font-size:clamp(2rem,3.4vw,2.7rem);
    line-height:1.18;
  }
  .problem-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:2.6rem;
  }
  .problem-card{
    padding-top:1.6rem;
    border-top:1px solid var(--line);
  }
  .problem-card h3{
    font-size:1.18rem;
    font-weight:500;
    margin-bottom:0.8rem;
    font-style:italic;
  }
  .problem-card p{font-size:0.95rem;color:#454340;}

  @media(max-width:860px){
    .problem-grid{grid-template-columns:1fr;gap:2rem;}
  }

  /* ============ OFFER TIERS ============ */
  section.offers{
    background:var(--creme-deep);
    padding:7rem 0;
  }
  .offers-head{
    text-align:center;
    max-width:620px;
    margin:0 auto 3.6rem;
  }
  .offers-head .eyebrow{justify-content:center;margin-bottom:1.4rem;}
  .offers-head .eyebrow::before{display:none;}
  .offers-head h2{font-size:clamp(2rem,3.2vw,2.6rem);}

  .tier-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1.8rem;
    align-items:stretch;
  }
  .tier{
    background:var(--white);
    padding:2.6rem 2.1rem;
    border-radius:3px;
    display:flex;
    flex-direction:column;
    position:relative;
    border:1px solid var(--line);
  }
  .tier.featured{
    border:1px solid var(--teal);
    box-shadow:0 30px 60px -20px rgba(28,27,26,0.16);
    transform:translateY(-10px);
  }
  .tier-flag{
    position:absolute;
    top:-13px;left:2.1rem;
    background:var(--teal-deep);
    color:var(--creme);
    font-size:0.7rem;
    font-weight:600;
    letter-spacing:0.12em;
    text-transform:uppercase;
    padding:0.4rem 0.9rem;
  }
  .tier-name{font-size:0.78rem;letter-spacing:0.14em;text-transform:uppercase;color:var(--grey);margin-bottom:0.9rem;font-weight:600;}
  .tier h3{font-size:1.55rem;margin-bottom:0.6rem;}
  .tier-price{
    font-family:var(--font-serif-accent);
    font-weight:600;
    font-size:1.9rem;
    margin-bottom:0.3rem;
  }
  .tier-price small{font-family:var(--font-sans);font-size:0.78rem;color:var(--grey);font-weight:500;}
  .tier-price-row{
    display:flex;
    align-items:baseline;
    gap:0.7rem;
    flex-wrap:wrap;
    margin-bottom:0.4rem;
  }
  .price-strike{
    font-family:var(--font-serif-accent);
    font-size:1.2rem;
    color:var(--grey);
    text-decoration:line-through;
    font-weight:500;
  }
  .price-now{
    font-family:var(--font-serif-accent);
    font-weight:600;
    font-size:1.9rem;
    color:var(--ink);
  }
  .tier-price-note{
    font-family:var(--font-sans);
    font-size:0.78rem;
    color:var(--grey);
    font-weight:500;
    margin-bottom:0.3rem;
  }
  .tier-desc{font-size:0.92rem;color:#454340;margin-bottom:1.6rem;flex-grow:0;}
  .tier-features{list-style:none;margin-bottom:2rem;flex-grow:1;}
  .tier-features li{
    font-size:0.88rem;
    padding-left:1.3rem;
    position:relative;
    margin-bottom:0.75rem;
    color:#2E2D2B;
  }
  .tier-features li::before{
    content:'—';
    position:absolute;left:0;color:var(--teal);
  }
  .tier-btn{
    display:block;
    text-align:center;
    padding:0.85rem;
    font-size:0.86rem;
    font-weight:600;
    border-radius:2px;
    border:1px solid var(--ink);
    color:var(--ink);
    transition:all 0.25s ease;
  }
  .tier.featured .tier-btn{background:var(--ink);color:var(--creme);}
  .tier-btn:hover{background:var(--ink);color:var(--creme);}

  .pay-options{margin-bottom:1.1rem;}
  .pay-label{
    font-size:0.7rem;
    letter-spacing:0.1em;
    text-transform:uppercase;
    color:var(--grey);
    font-weight:600;
    margin-bottom:0.65rem;
  }
  .pay-buttons{display:flex;gap:0.7rem;margin-bottom:0.6rem;}
  .pay-btn{
    flex:1;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:0.45rem;
    height:46px;
    border-radius:7px;
    font-size:0.92rem;
    font-weight:600;
    cursor:not-allowed;
    user-select:none;
    letter-spacing:0;
    position:relative;
    transition:transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow:0 1px 2px rgba(28,27,26,0.06);
  }
  .pay-btn:hover{transform:translateY(-1px);box-shadow:0 6px 16px -6px rgba(28,27,26,0.22);}
  .pay-btn svg{flex-shrink:0;display:block;}
  .pay-btn.apple{background:#000;color:#fff;}
  .pay-btn.apple svg{width:17px;height:17px;}
  .pay-btn.apple span{font-family:-apple-system,'SF Pro Text',Inter,sans-serif;font-size:1rem;font-weight:500;}
  .pay-btn.paypal{background:#0070BA;color:#fff;border-radius:23px;}
  .pay-btn.paypal .pp-word{font-style:italic;font-weight:800;font-size:1.1rem;letter-spacing:-0.02em;}
  .pay-btn.paypal .pp-pay,
  .pay-btn.paypal .pp-pal{color:#fff;}
  .pay-soon{
    position:absolute;
    top:-7px;right:-7px;
    background:var(--ink);
    color:var(--creme);
    font-size:0.56rem;
    font-weight:700;
    letter-spacing:0.04em;
    text-transform:uppercase;
    padding:0.2rem 0.4rem;
    border-radius:3px;
    line-height:1;
    box-shadow:0 2px 6px rgba(0,0,0,0.25);
  }
  .pay-note{
    font-size:0.72rem;
    color:var(--grey);
    text-align:center;
  }

  @media(max-width:980px){
    .tier-grid{grid-template-columns:1fr;}
    .tier.featured{transform:none;}
  }

  /* ============ ABOUT ============ */
  section.about{
    padding:7rem 0;
  }
  .about-grid{
    display:grid;
    grid-template-columns:0.85fr 1.15fr;
    gap:5vw;
    align-items:center;
  }
  .about-visual{
    aspect-ratio:4/5;
    overflow:hidden;
    border-radius:2px;
    position:relative;
  }
  .about-visual img{width:100%;height:100%;object-fit:cover;}
  .about-copy .eyebrow{margin-bottom:1.5rem;}
  .about-copy h2{font-size:clamp(1.9rem,3vw,2.4rem);margin-bottom:1.6rem;line-height:1.22;}
  .about-copy p{font-size:1rem;color:#403E3B;margin-bottom:1.3rem;max-width:560px;}
  .about-copy p strong{color:var(--ink);font-weight:600;}
  .credentials{
    display:flex;
    gap:2.4rem;
    margin-top:2rem;
    flex-wrap:wrap;
  }
  .credential{border-left:2px solid var(--teal);padding-left:0.9rem;}
  .credential-label{font-size:0.7rem;letter-spacing:0.1em;text-transform:uppercase;color:var(--grey);font-weight:600;margin-bottom:0.2rem;}
  .credential-value{font-size:0.95rem;font-weight:500;}

  @media(max-width:860px){
    .about-grid{grid-template-columns:1fr;}
    .about-visual{max-width:340px;margin:0 auto;}
  }

  /* ============ TESTIMONIAL ============ */
  section.testimonial{
    background:var(--teal-deep);
    color:var(--creme);
    padding:6.5rem 0;
    position:relative;
    overflow:hidden;
  }
  .testimonial-grid{
    display:grid;
    grid-template-columns:0.4fr 0.6fr;
    gap:4vw;
    align-items:center;
  }
  .testimonial-visual{
    aspect-ratio:3/4;
    overflow:hidden;
    border-radius:2px;
  }
  .testimonial-visual img{width:100%;height:100%;object-fit:cover;}
  .quote-mark{
    font-family:var(--font-serif);
    font-size:5.5rem;
    color:var(--brass);
    line-height:0.5;
    font-style:italic;
    position:relative;
    top:0.8rem;
  }
  blockquote{
    font-family:var(--font-serif);
    font-size:clamp(1.4rem,2.4vw,1.9rem);
    font-style:italic;
    line-height:1.4;
    margin-top:-0.5rem;
    margin-bottom:1.6rem;
  }
  .quote-author{font-size:0.88rem;color:rgba(250,246,240,0.7);letter-spacing:0.02em;}
  .quote-author strong{color:var(--creme);}

  @media(max-width:860px){
    .testimonial-grid{grid-template-columns:1fr;}
    .testimonial-visual{max-width:260px;margin:0 auto 2rem;}
  }

  /* ============ FINAL CTA ============ */
  section.final-cta{
    padding:7rem 0 8rem;
    background:var(--creme);
  }
  .cta-box{
    background:var(--ink);
    color:var(--creme);
    border-radius:4px;
    padding:4.2rem 5vw;
    position:relative;
    overflow:hidden;
  }
  .cta-box::before{
    content:'';
    position:absolute;
    top:0;right:0;
    width:280px;height:280px;
    background:radial-gradient(circle, rgba(31,111,107,0.35), transparent 70%);
  }
  .cta-top{
    display:grid;
    grid-template-columns:1.3fr 0.9fr;
    gap:4vw;
    margin-bottom:3rem;
    position:relative;
    z-index:1;
  }
  .cta-top h2{
    color:var(--creme);
    font-size:clamp(1.9rem,3.2vw,2.5rem);
    margin-bottom:1.2rem;
    line-height:1.2;
  }
  .cta-top p{color:rgba(250,246,240,0.78);font-size:1rem;max-width:480px;}
  .cta-price-block{
    background:rgba(250,246,240,0.06);
    border:1px solid rgba(250,246,240,0.18);
    padding:1.8rem;
    border-radius:3px;
    align-self:start;
  }
  .cta-price-label{font-size:0.72rem;letter-spacing:0.14em;text-transform:uppercase;color:var(--brass);font-weight:600;margin-bottom:0.6rem;}
  .cta-price{font-family:var(--font-serif-accent);font-weight:600;font-size:2.4rem;margin-bottom:0.3rem;}
  .cta-price-row{
    display:flex;
    align-items:baseline;
    gap:0.8rem;
    flex-wrap:wrap;
    margin-bottom:0.3rem;
  }
  .cta-price-strike{
    font-family:var(--font-serif-accent);
    font-size:1.35rem;
    color:rgba(250,246,240,0.45);
    text-decoration:line-through;
    font-weight:500;
  }
  .cta-price-now{
    font-family:var(--font-serif-accent);
    font-weight:600;
    font-size:2.4rem;
    color:var(--creme);
  }
  .cta-price-note{font-size:0.82rem;color:rgba(250,246,240,0.6);margin-bottom:1.4rem;}
  .cta-slots{
    font-size:0.84rem;
    font-weight:600;
    color:var(--creme);
    margin-bottom:1.4rem;
    display:flex;
    align-items:center;
    gap:0.5rem;
  }
  .cta-slots .dot{width:7px;height:7px;border-radius:50%;background:var(--brass);display:inline-block;}
  .cta-box .btn-primary{
    width:100%;
    text-align:center;
    background:var(--creme);
    color:var(--ink);
  }
  .cta-box .btn-primary:hover{background:var(--brass);color:var(--ink);}

  .fit-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:2.4rem;
    position:relative;
    z-index:1;
    border-top:1px solid rgba(250,246,240,0.14);
    padding-top:2.6rem;
  }
  .fit-col h4{
    font-family:var(--font-sans);
    font-size:0.82rem;
    letter-spacing:0.1em;
    text-transform:uppercase;
    font-weight:600;
    margin-bottom:1.1rem;
  }
  .fit-col.yes h4{color:var(--brass);}
  .fit-col.no h4{color:rgba(250,246,240,0.55);}
  .fit-col ul{list-style:none;}
  .fit-col li{
    font-size:0.92rem;
    padding-left:1.5rem;
    position:relative;
    margin-bottom:0.85rem;
    color:rgba(250,246,240,0.85);
    line-height:1.5;
  }
  .fit-col.yes li::before{content:'✓';position:absolute;left:0;color:var(--brass);font-weight:600;}
  .fit-col.no li::before{content:'×';position:absolute;left:0;color:rgba(250,246,240,0.45);font-weight:600;}

  @media(max-width:860px){
    .cta-top{grid-template-columns:1fr;}
    .fit-grid{grid-template-columns:1fr;gap:2rem;}
    .cta-box{padding:2.6rem 6vw;}
  }

  /* ============ FOOTER ============ */
  footer{
    padding:3rem 0;
    border-top:1px solid var(--line);
  }
  .footer-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:1.4rem;
  }
  .footer-inner img{height:46px;width:auto;}
  .footer-links{display:flex;gap:1.8rem;font-size:0.82rem;color:var(--grey);flex-wrap:wrap;}
  .footer-social{display:flex;gap:1rem;align-items:center;}
  .footer-social a{color:var(--grey);display:inline-flex;transition:color 0.2s ease;}
  .footer-social a:hover{color:var(--teal-deep);}

  /* ============ CONSENT-BANNER (DSGVO/TDDDG) ============ */
  .footer-consent{margin-top:1.2rem;text-align:center;}
  .consent-link{
    background:none;border:none;color:var(--grey);
    font:inherit;font-size:0.82rem;cursor:pointer;
    text-decoration:underline;text-underline-offset:2px;padding:0;
  }
  .consent-link:hover{color:var(--teal-deep);}

  .consent-wrap{position:fixed;inset:auto 0 0 0;z-index:1000;display:flex;justify-content:center;padding:1rem;pointer-events:none;}
  .consent-card{
    pointer-events:auto;
    background:var(--white);
    border:1px solid var(--line);
    border-radius:12px;
    box-shadow:0 24px 60px -20px rgba(28,27,26,0.35);
    max-width:560px;width:100%;
    padding:1.6rem 1.7rem;outline:none;
  }
  .consent-title{font-family:var(--font-serif);font-size:1.25rem;font-weight:500;margin-bottom:0.5rem;}
  .consent-text{font-size:0.9rem;color:#454340;line-height:1.55;margin-bottom:1rem;}
  .consent-cats{display:flex;flex-direction:column;gap:0.6rem;margin-bottom:1.2rem;}
  .consent-cat{display:flex;align-items:flex-start;gap:0.6rem;font-size:0.86rem;color:var(--ink);line-height:1.45;cursor:pointer;}
  .consent-cat input{margin-top:0.2rem;flex-shrink:0;width:auto;}
  .consent-actions{display:flex;gap:0.6rem;flex-wrap:wrap;}
  .consent-btn{
    flex:1;min-width:130px;
    padding:0.7rem 1rem;border-radius:6px;
    font-size:0.85rem;font-weight:600;cursor:pointer;
    border:1px solid var(--ink);
    transition:background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  }
  .consent-reject{background:var(--white);color:var(--ink);}
  .consent-reject:hover{background:var(--creme-deep);}
  .consent-accept{background:var(--ink);color:var(--creme);}
  .consent-accept:hover{background:var(--teal-deep);border-color:var(--teal-deep);}
  .consent-save{background:var(--white);color:var(--grey);border-color:var(--line);}
  .consent-save:hover{color:var(--ink);border-color:var(--ink);}
  .consent-foot{margin-top:0.9rem;font-size:0.78rem;color:var(--grey);text-align:center;}
  .consent-foot a{color:var(--teal-deep);text-decoration:underline;}
  @media(max-width:560px){
    .consent-wrap{padding:0.6rem;}
    .consent-card{padding:1.3rem 1.2rem;}
    .consent-actions{flex-direction:column;}
    .consent-btn{flex:none;width:100%;}
  }

  /* ============ DESIGN-PASS (Schritt 8) ============ */
  /* Atmosphäre auch hinter dem Final-CTA sichtbar machen */
  section.final-cta{background:transparent;}
  /* Sektionen ruhiger absetzen – mehr Tiefe, kein Card-in-Card */
  section.problem{padding-top:8rem;}
  section.offers{border-top:1px solid var(--line);border-bottom:1px solid var(--line);}
  /* Hero klarer und großzügiger */
  .hero-copy h1{font-size:clamp(2.8rem,5.2vw,4.4rem);}
  .hero-copy p.lede{font-size:1.15rem;}
  .hero-visual .frame{box-shadow:0 40px 80px -40px rgba(28,27,26,0.42);}
  /* Souvera Intensiv (Hauptangebot) visuell stärken */
  .tier.featured{box-shadow:0 44px 90px -34px rgba(22,80,76,0.32);}
  .tier.featured .tier-btn{background:var(--teal-deep);color:var(--creme);border-color:var(--teal-deep);}
  .tier.featured .tier-btn:hover{background:var(--ink);border-color:var(--ink);}
  /* Produktkarten + Cover ruhiger inszenieren, klare Hierarchie */
  .product-card{border-radius:6px;}
  .product-cover-wrap{overflow:hidden;}
  .product-cover{transition:transform 0.6s ease;}
  .product-card:hover .product-cover{transform:scale(1.035);}
  .product-flag{background:rgba(28,27,26,0.82);backdrop-filter:blur(4px);}
  .product-cta.is-soon{background:var(--creme-deep);color:var(--grey);border-color:var(--line);letter-spacing:0.02em;}
  .product-tab{font-size:0.8rem;}
  /* Footer-Consent-Zeile ruhig einbetten */
  .footer-consent{border-top:1px solid var(--line);padding-top:1rem;margin-top:1.6rem;}
  .footer-consent .consent-link{font-size:0.82rem;}

  @media(max-width:860px){
    .footer-inner{flex-direction:column;text-align:center;}
  }

  /* ============ SCROLL REVEAL (premium, ruhig) ============ */
  /* Weiches, langsames Einblenden. Nur Opacity + Transform -> kein Layout-Shift.
     Inhalte sind bei deaktiviertem JS per <noscript>-Fallback sofort sichtbar;
     bei reduzierter Bewegung werden alle Effekte neutralisiert (siehe unten). */
  :root{
    --reveal-dur: 1100ms;
    --reveal-ease: cubic-bezier(0.16, 1, 0.3, 1); /* soft ease-out, nicht verspielt */
    --reveal-dist: 26px;
    --reveal-stagger: 110ms;
  }

  .reveal,
  .reveal-up,
  .reveal-fade,
  .reveal-left,
  .reveal-right,
  .reveal-scale{
    opacity:0;
    transition: opacity var(--reveal-dur) var(--reveal-ease),
                transform var(--reveal-dur) var(--reveal-ease);
    will-change: opacity, transform;
  }
  .reveal,
  .reveal-up   { transform: translate3d(0, var(--reveal-dist), 0); }
  .reveal-fade { transform: none; }
  .reveal-left { transform: translate3d(calc(-1 * var(--reveal-dist)), 0, 0); }
  .reveal-right{ transform: translate3d(var(--reveal-dist), 0, 0); }
  .reveal-scale{ transform: scale(0.965); }

  .reveal.in,
  .reveal-up.in,
  .reveal-fade.in,
  .reveal-left.in,
  .reveal-right.in,
  .reveal-scale.in{
    opacity:1;
    transform:none;
  }

  /* Gruppen: Kind-Elemente gestaffelt einblenden (Verzögerung setzt JS je Kind) */
  .reveal-group > *{
    opacity:0;
    transform: translate3d(0, calc(var(--reveal-dist) * 0.8), 0);
    transition: opacity var(--reveal-dur) var(--reveal-ease),
                transform var(--reveal-dur) var(--reveal-ease);
    will-change: opacity, transform;
  }
  .reveal-group.in > *{
    opacity:1;
    transform:none;
  }
  /* Hervorgehobene Tier-Karte behält ihre Anhebung auch nach dem Reveal */
  .reveal-group.in > .tier.featured{transform:translateY(-10px);}
  @media(max-width:980px){
    .reveal-group.in > .tier.featured{transform:none;}
  }

  /* Mobil: kürzer und dezenter */
  @media (max-width:600px){
    :root{
      --reveal-dur: 720ms;
      --reveal-dist: 16px;
      --reveal-stagger: 80ms;
    }
  }

/* ============ SUBPAGE: PAGE HERO ============ */
  section.page-hero{
    padding-top:9rem;
    padding-bottom:3rem;
    background:var(--creme-deep);
    border-bottom:1px solid var(--line);
  }
  section.page-hero .wrap{max-width:760px;}
  section.page-hero .eyebrow{margin-bottom:1.2rem;}
  section.page-hero h1{
    font-size:clamp(2rem,4vw,2.7rem);
    line-height:1.16;
    margin-bottom:0.9rem;
  }
  section.page-hero p.lede{
    font-size:1.02rem;
    color:#403E3B;
    max-width:600px;
  }

  /* ============ SUBPAGE: LEGAL CONTENT ============ */
  section.legal{padding:4.5rem 0 6rem;}
  section.legal .wrap{max-width:760px;}
  .legal h2{
    font-size:1.4rem;
    margin:2.6rem 0 1rem;
    font-weight:500;
  }
  .legal h2:first-of-type{margin-top:0;}
  .legal h3{
    font-size:1.1rem;
    margin:1.6rem 0 0.6rem;
    font-style:italic;
    font-weight:500;
  }
  .legal p{font-size:0.98rem;color:#403E3B;margin-bottom:1.1rem;}
  .legal ul,.legal ol{margin:0 0 1.1rem 1.3rem;}
  .legal li{font-size:0.98rem;color:#403E3B;margin-bottom:0.5rem;}
  .legal strong{color:var(--ink);font-weight:600;}
  .legal a.inline-link{color:var(--teal-deep);text-decoration:underline;text-decoration-color:rgba(31,111,107,0.35);text-underline-offset:2px;}
  .legal a.inline-link:hover{text-decoration-color:var(--teal-deep);}
  .legal .info-block{
    background:var(--white);
    border:1px solid var(--line);
    border-radius:3px;
    padding:1.6rem 1.8rem;
    margin-bottom:1.8rem;
  }
  .legal .info-block p{margin-bottom:0.35rem;}
  .legal .info-block p:last-child{margin-bottom:0;}

  /* ============ SUBPAGE: CONTACT ============ */
  section.contact{padding:4.5rem 0 6rem;}
  .contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:2rem;
    align-items:start;
    max-width:900px;
  }
  .contact-card{
    background:var(--white);
    border:1px solid var(--line);
    border-radius:3px;
    padding:2.2rem 2rem;
  }
  .contact-card h3{font-size:1.05rem;margin-bottom:1.4rem;}
  .contact-row{margin-bottom:1.3rem;}
  .contact-row:last-child{margin-bottom:0;}
  .contact-label{font-size:0.7rem;letter-spacing:0.1em;text-transform:uppercase;color:var(--grey);font-weight:600;margin-bottom:0.35rem;}
  .contact-value{font-size:1.05rem;font-weight:500;}
  .contact-value a{color:var(--teal-deep);}
  .contact-card.cta-note{
    background:var(--ink);
    color:var(--creme);
    display:flex;
    flex-direction:column;
    justify-content:center;
  }
  .contact-card.cta-note p{color:rgba(250,246,240,0.82);font-size:0.95rem;margin-bottom:1.4rem;}
  .contact-card.cta-note .btn-primary{background:var(--creme);color:var(--ink);text-align:center;}
  .contact-card.cta-note .btn-primary:hover{background:var(--brass);}

  @media(max-width:860px){
    .contact-grid{grid-template-columns:1fr;}
  }

  /* ============ SUBPAGE: DIGITALE PRODUKTE ============ */
  section.products{padding:3rem 0 6rem;}
  section.products .wrap{max-width:1180px;}
  .product-tabs{display:flex;flex-wrap:wrap;gap:0.6rem;margin-bottom:2.6rem;}
  .product-tab{
    font-family:var(--font-sans);
    font-size:0.82rem;font-weight:600;
    padding:0.5rem 1.1rem;border-radius:999px;
    border:1px solid var(--line);background:transparent;color:var(--ink);
    cursor:pointer;transition:background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  }
  .product-tab:hover{border-color:var(--teal);}
  .product-tab.active{background:var(--ink);color:var(--creme);border-color:var(--ink);}
  .product-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:2rem;}
  .product-card{
    background:var(--white);border:1px solid var(--line);border-radius:4px;
    overflow:hidden;display:flex;flex-direction:column;
    transition:box-shadow 0.25s ease, transform 0.25s ease;
  }
  .product-card:hover{box-shadow:0 24px 50px -28px rgba(28,27,26,0.28);transform:translateY(-2px);}
  .product-cover-wrap{position:relative;}
  .product-cover{aspect-ratio:3/2;background-size:cover;background-position:center;background-color:var(--creme-deep);display:block;}
  .product-flag{
    position:absolute;top:12px;left:12px;
    background:var(--ink);color:var(--creme);
    font-size:0.66rem;font-weight:600;letter-spacing:0.1em;text-transform:uppercase;
    padding:0.3rem 0.7rem;border-radius:2px;
  }
  .product-info{padding:1.5rem 1.6rem 1.7rem;display:flex;flex-direction:column;flex:1;gap:0.5rem;}
  .product-type{font-size:0.68rem;letter-spacing:0.14em;text-transform:uppercase;color:var(--teal-deep);font-weight:600;}
  .product-name{font-size:1.3rem;font-family:var(--font-serif);font-weight:500;color:var(--ink);line-height:1.2;}
  .product-name a{color:inherit;}
  .product-short{font-size:0.92rem;color:#454340;flex:1;}
  .product-foot{display:flex;align-items:center;justify-content:space-between;gap:1rem;margin-top:1.1rem;flex-wrap:wrap;}
  .product-price{font-family:var(--font-serif-accent);font-weight:600;font-size:1.5rem;color:var(--ink);}
  .product-price small{font-family:var(--font-sans);font-size:0.72rem;color:var(--grey);font-weight:500;}
  .product-cta{font-size:0.84rem;font-weight:600;padding:0.62rem 1.2rem;border-radius:2px;background:var(--ink);color:var(--creme);transition:background 0.2s ease;}
  .product-cta:hover{background:var(--teal-deep);}
  .product-cta.is-soon{background:transparent;color:var(--grey);border:1px solid var(--line);cursor:not-allowed;}
  .product-empty{text-align:center;color:var(--grey);padding:3rem 0;}
  @media(max-width:560px){.product-grid{grid-template-columns:1fr;}}

/* ============ REDUCED MOTION ============ */
/* Respektiert Systemeinstellung "Bewegung reduzieren":
   schaltet Scroll-Animation und Reveal-Effekte ab und macht
   alle .reveal-Inhalte sofort sichtbar. */
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *,*::before,*::after{
    animation-duration:0.001ms !important;
    animation-iteration-count:1 !important;
    transition-duration:0.001ms !important;
    scroll-behavior:auto !important;
  }
  .reveal,
  .reveal-up,
  .reveal-fade,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .reveal-group > *{opacity:1 !important;transform:none !important;}
}
