
  :root{
    --red:#88110B;
    --red-light-1:#FCD9D7;
    --red-light-2:#F9B2AF;
    --red-light-3:#F58C86;
    --black:#000000;
    --grey:#404040;
    --white:#FFFFFF;
    --offwhite:#E7E6E6;
  }
  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    margin:0;
    background:var(--black);
    color:var(--white);
    font-family:'Montserrat',sans-serif;
    font-weight:300;
    overflow-x:hidden;
  }
  a{color:inherit;}
  .eyebrow{
    font-weight:600;
    letter-spacing:0.14em;
    text-transform:uppercase;
    font-size:0.75rem;
    color:var(--offwhite);
  }
  .hero-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:1.4rem;
    font-weight:700;
    letter-spacing:0.08em;
    text-transform:uppercase;
    font-size:clamp(2.2rem,8vw,4.2rem);
    color:var(--white);
    margin-bottom:0.75rem;
    line-height:1.05;
  }
  header.hero{
    position:relative;
    min-height:92vh;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    padding:2.5rem clamp(1.25rem,5vw,4rem);
    overflow:hidden;
  }
  .hero-schleife{
    position:absolute;
    right:-6%;
    bottom:-10%;
    width:min(46vw,620px);
    max-width:38%;
    opacity:0;
    pointer-events:none;
    animation:schleifeIn 1.4s 0.3s ease forwards;
  }
  .cta-schleife{
    position:absolute;
    left:-8%;
    top:-12%;
    width:min(40vw,520px);
    max-width:34%;
    opacity:0;
    transform:scaleX(-1);
    pointer-events:none;
    animation:schleifeInCta 1.4s 0.3s ease forwards;
  }
  @keyframes schleifeIn{
    from{ opacity:0; transform:rotate(115deg) translate(12px,-12px); }
    to{ opacity:0.95; transform:rotate(115deg) translate(0,0); }
  }
  @keyframes schleifeInCta{
    from{ opacity:0; transform:scaleX(-1) translate(12px,12px); }
    to{ opacity:0.9; transform:scaleX(-1) translate(0,0); }
  }
  .logo-row{
    display:flex;
    align-items:center;
    gap:0.85rem;
    z-index:2;
  }
  .full-logo{ height:136px; width:auto; display:block; }
  .hero-body{
    z-index:2;
    max-width:760px;
    margin-top:auto;
    padding-bottom:2.5rem;
    opacity:0;
    animation:rise 0.9s 0.15s ease forwards;
  }
  @keyframes rise{
    from{ opacity:0; transform:translateY(18px); }
    to{ opacity:1; transform:translateY(0); }
  }
  .hero-body h1{
    font-size:clamp(2.6rem,7vw,5.5rem);
    font-weight:700;
    margin:0.6rem 0 1rem;
    letter-spacing:-0.01em;
  }
  .hero-body p{
    font-size:clamp(1rem,2vw,1.25rem);
    color:var(--offwhite);
    max-width:560px;
    line-height:1.55;
    margin:0;
  }
  .hero-cta{
    display:inline-flex;
    align-items:center;
    gap:0.6rem;
    margin-top:2rem;
    padding:0.85rem 1.6rem;
    border:1px solid var(--white);
    border-radius:999px;
    text-decoration:none;
    font-size:0.9rem;
    font-weight:600;
    transition:background 0.25s ease, color 0.25s ease;
  }
  .hero-cta:hover{ background:var(--white); color:var(--black); }

  main{ position:relative; z-index:2; }

  section.stage{
    position:relative;
    padding:5.5rem clamp(1.25rem,5vw,4rem);
    border-top:1px solid #1a1a1a;
    overflow:hidden;
  }
  section.stage::before{
    content:"";
    position:absolute;
    inset:0;
    background:radial-gradient(ellipse at 15% 30%, var(--stage-tint,transparent) 0%, transparent 55%);
    opacity:0.14;
    pointer-events:none;
  }
  .stage-head{
    display:flex;
    align-items:baseline;
    gap:1.25rem;
    margin-bottom:3rem;
    flex-wrap:wrap;
  }
  .stage-num{
    font-size:0.85rem;
    font-weight:600;
    color:var(--red-light-3);
    letter-spacing:0.08em;
  }
  .stage-num-lg{
    font-size:clamp(1.8rem,4vw,2.6rem);
    font-weight:700;
  }
  .stage-head h2{
    font-size:clamp(1.8rem,4vw,2.6rem);
    font-weight:700;
    margin:0;
  }
  .stage-sub{
    color:var(--white);
    font-size:0.95rem;
    max-width:520px;
    margin:0.75rem 0 0;
  }
  .card-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:1.5rem;
  }
  .card{
    display:block;
    text-decoration:none;
    color:inherit;
    border:1px solid #262626;
    border-radius:14px;
    padding:1.75rem 1.5rem;
    background:linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
    opacity:0;
    transform:translateY(16px);
    animation:cardIn 0.7s ease forwards;
    transition:border-color 0.25s ease;
  }
  .card:nth-child(1){ animation-delay:0.05s; }
  .card:nth-child(2){ animation-delay:0.18s; }
  .card:nth-child(3){ animation-delay:0.31s; }
  @keyframes cardIn{
    to{ opacity:1; transform:translateY(0); }
  }
  .card:hover{ border-color:#3d3d3d; }
  .icon-circle{
    width:44px; height:44px;
    border-radius:50%;
    background:var(--red);
    display:flex; align-items:center; justify-content:center;
    margin-bottom:1.1rem;
  }
  .icon-circle svg{ width:22px; height:22px; stroke:var(--white); fill:none; stroke-width:1.6; }
  .card h3{
    font-size:1.05rem;
    font-weight:600;
    margin:0 0 0.5rem;
  }
  .card .model{
    font-size:0.85rem;
    color:var(--offwhite);
    font-weight:300;
    line-height:1.5;
    margin:0 0 1rem;
  }
  .card::after{
    content:"Details ansehen →";
    display:block;
    width:fit-content;
    font-size:0.78rem;
    font-weight:600;
    color:var(--red-light-3);
    animation:ipdNudge 1.8s ease-in-out infinite;
  }
  .card:hover::after{
    animation:none;
    transform:translateX(5px);
    transition:transform 0.25s ease;
  }
  @keyframes ipdNudge{
    0%, 60%, 100%{ transform:translateX(0); }
    30%{ transform:translateX(5px); }
  }

  section.cta{
    position:relative;
    padding:6rem clamp(1.25rem,5vw,4rem);
    text-align:center;
    border-top:1px solid #1a1a1a;
    overflow:hidden;
  }
  section.cta h2{
    font-size:clamp(2rem,5vw,3.2rem);
    font-weight:700;
    margin:0 0 1rem;
    position:relative; z-index:2;
  }
  section.cta p{
    color:var(--white);
    max-width:520px;
    margin:0 auto 2.25rem;
    position:relative; z-index:2;
  }
  .cta-button{
    position:relative; z-index:2;
    display:inline-flex;
    align-items:center;
    gap:0.6rem;
    padding:1rem 2.2rem;
    background:var(--white);
    color:var(--black);
    border-radius:999px;
    text-decoration:none;
    font-weight:700;
    font-size:0.95rem;
    transition:transform 0.2s ease;
  }
  .cta-button:hover{ transform:scale(1.03); }

  footer{
    padding:1.75rem clamp(1.25rem,5vw,4rem);
    border-top:1px solid #1a1a1a;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:0.75rem;
    font-size:0.78rem;
    color:var(--offwhite);
  }
  footer .hashtag{ color:var(--red-light-3); font-weight:600; }

  @media (max-width:640px){
    header.hero{ min-height:82vh; }
    .hero-schleife{ width:60vw; max-width:60%; opacity:0.65; }
    .cta-schleife{ width:55vw; max-width:55%; opacity:0.55; }
    footer{ flex-direction:column; align-items:flex-start; }
  }

  @media (prefers-reduced-motion: reduce){
    .hero-schleife{ animation:none; opacity:0.95; transform:rotate(115deg); }
    .cta-schleife{ animation:none; opacity:0.9; transform:scaleX(-1); }
    .hero-body{ animation:none; opacity:1; }
    .card{ animation:none; opacity:1; transform:none; }
    .card::after, .related-card span.arr{ animation:none; }
  }

  /* ---------- Detail pages ---------- */
  .breadcrumb{
    z-index:2;
    display:flex;
    align-items:center;
    gap:0.5rem;
    font-size:0.85rem;
    color:var(--offwhite);
    text-decoration:none;
    width:fit-content;
    padding:0.5rem 0;
    transition:color 0.2s ease;
  }
  .breadcrumb:hover{ color:var(--white); }

  header.detail-hero{
    position:relative;
    min-height:58vh;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    padding:2.5rem clamp(1.25rem,5vw,4rem) 3rem;
    overflow:hidden;
    border-bottom:1px solid #1a1a1a;
  }
  .detail-hero-body{
    z-index:2;
    max-width:760px;
    margin-top:auto;
    opacity:0;
    animation:rise 0.9s 0.15s ease forwards;
  }
  .detail-hero-body .icon-circle{ margin-bottom:1.5rem; width:56px; height:56px; }
  .detail-hero-body .icon-circle svg{ width:28px; height:28px; }
  .detail-hero-body h1{
    font-size:clamp(2.2rem,6vw,4rem);
    font-weight:700;
    margin:0 0 1rem;
    letter-spacing:-0.01em;
  }
  .model-badges{
    display:flex;
    flex-wrap:wrap;
    gap:0.6rem;
    margin-bottom:1.5rem;
  }
  .model-badge{
    border:1px solid #3d3d3d;
    border-radius:999px;
    padding:0.4rem 1rem;
    font-size:0.8rem;
    font-weight:600;
    color:var(--offwhite);
  }
  .detail-hero-body p{
    font-size:clamp(1rem,2vw,1.2rem);
    color:var(--offwhite);
    max-width:620px;
    line-height:1.6;
    margin:0;
  }

  section.detail-body{
    position:relative;
    padding:5rem clamp(1.25rem,5vw,4rem);
    display:grid;
    grid-template-columns:1.3fr 1fr;
    gap:3rem;
  }
  section.detail-body h2{
    font-size:1.5rem;
    font-weight:700;
    margin:0 0 1.25rem;
  }
  .detail-benefits{
    list-style:none;
    margin:0; padding:0;
    display:flex;
    flex-direction:column;
    gap:1rem;
  }
  .detail-benefits li{
    display:flex;
    gap:0.85rem;
    align-items:flex-start;
    color:var(--offwhite);
    font-size:0.95rem;
    line-height:1.55;
  }
  .detail-benefits li svg{
    flex:none;
    width:20px; height:20px;
    margin-top:0.15rem;
    stroke:var(--red-light-3);
    fill:none;
    stroke-width:2;
  }
  .detail-aside{
    border:1px solid #262626;
    border-radius:16px;
    padding:2rem;
    height:fit-content;
    background:linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
  }
  .detail-aside .stage-num{ display:block; margin-bottom:0.5rem; }
  .detail-aside dl{ margin:1.25rem 0 0; }
  .detail-aside dt{
    font-size:0.75rem;
    text-transform:uppercase;
    letter-spacing:0.08em;
    color:var(--offwhite);
    font-weight:600;
    margin-top:1.1rem;
  }
  .detail-aside dt:first-child{ margin-top:0; }
  .detail-aside dd{
    margin:0.3rem 0 0;
    font-size:0.95rem;
  }
  .bf-note{
    margin-top:1.5rem;
    padding-top:1.5rem;
    border-top:1px dashed #3d3d3d;
    font-size:0.82rem;
    color:var(--offwhite);
  }
  .bf-note strong{ color:var(--red-light-3); }

  .related-strip{
    padding:0 clamp(1.25rem,5vw,4rem) 4rem;
  }
  .related-strip h3{
    font-size:0.85rem;
    text-transform:uppercase;
    letter-spacing:0.08em;
    color:var(--offwhite);
    font-weight:600;
    margin:0 0 1.25rem;
  }
  .related-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:1rem;
  }
  .related-card{
    border:1px solid #262626;
    border-radius:12px;
    padding:1.1rem 1.25rem;
    text-decoration:none;
    color:var(--white);
    font-size:0.9rem;
    font-weight:600;
    transition:border-color 0.2s ease, background 0.2s ease;
    display:flex; align-items:center; justify-content:space-between;
  }
  .related-card:hover{ border-color:#3d3d3d; background:rgba(255,255,255,0.03); }
  .related-card span.arr{
    color:var(--red-light-3);
    font-weight:400;
    display:inline-block;
    animation:ipdNudge 1.8s ease-in-out infinite;
  }
  .related-card:hover span.arr{
    animation:none;
    transform:translateX(5px);
    transition:transform 0.25s ease;
  }

  @media (max-width:860px){
    section.detail-body{ grid-template-columns:1fr; }
  }
  @media (max-width:640px){
    header.detail-hero{ min-height:auto; padding-top:1.5rem; }
  }

  /* ---------- Black Friday packages (S/M/L) ---------- */
  section.packages{
    padding:1rem clamp(1.25rem,5vw,4rem) 5rem;
    border-top:1px solid #1a1a1a;
  }
  .packages-head{ margin-bottom:2.5rem; }
  .packages-head .eyebrow{ display:block; margin-bottom:0.6rem; }
  .packages-head h2{
    font-size:clamp(1.6rem,3.6vw,2.3rem);
    font-weight:700;
    margin:0;
  }
  .package-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:1.5rem;
    margin-bottom:3rem;
  }
  .package-card{
    border:1.5px dashed #4a4a4a;
    border-radius:14px;
    padding:2rem 1.5rem;
    text-align:center;
  }
  .package-badge{
    width:64px; height:64px;
    margin:0 auto 1.25rem;
    border-radius:50%;
    background:var(--red);
    color:var(--white);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.6rem;
    font-weight:700;
  }
  .package-card h3{
    margin:0 0 0.85rem;
    font-size:1.1rem;
    font-weight:700;
    color:var(--red-light-3);
  }
  .package-detail{
    margin:0;
    font-size:0.95rem;
    font-weight:600;
    line-height:1.6;
    color:var(--white);
  }
  .packages-footnote, .packages-conditions{
    max-width:640px;
    margin-bottom:1.75rem;
    font-size:0.9rem;
    color:var(--offwhite);
  }
  .packages-footnote strong, .packages-conditions strong{
    display:block;
    color:var(--white);
    font-size:0.95rem;
    margin-bottom:0.6rem;
  }
  .packages-footnote ul, .packages-conditions ul{
    margin:0;
    padding-left:1.1rem;
    display:flex;
    flex-direction:column;
    gap:0.4rem;
  }
