/* =========================================================
   selfi.studio – Entwurf 2 "Creator-Core"
   Bold / modern / Gen-Z & Influencer
   Fonts: Bricolage Grotesque (Display) + Plus Jakarta Sans (Body)
   ========================================================= */

:root {
    --ink:        #15120F;
    --ink-2:      #2A241F;
    --cream:      #FBF7EF;
    --cream-2:    #F3ECDD;
    --pop:        #FFC83D;   /* Energie-Gelb aus den Fotos */
    --pop-deep:   #F2A900;
    --teal:       #2E8A8F;   /* Logo */
    --teal-deep:  #1F6B6F;
    --pink:       #FF5C8A;   /* Hot-Accent, sparsam */
    --muted:      #6F6557;
    --line:       rgba(21,18,15,0.12);

    --maxw: 1440px;
    --radius: 26px;
    --radius-sm: 16px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    --font-display: 'Bricolage Grotesque', 'Arial Black', sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--ink); background: var(--cream); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 800; line-height: 0.98; letter-spacing: -0.03em; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* Sticker-Badge (rotiert, verspielt) */
.sticker {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-display); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em;
    background: #3a33c7; color: #fff; border: none;
    padding: 9px 18px; border-radius: 999px;
    box-shadow: 0 8px 22px -8px rgba(58,51,199,0.6);
}
.sticker.teal { background: var(--teal); color: #fff; }
.sticker.pink { background: var(--pink); color: #fff; }

/* Buttons – chunky */
.btn {
    display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
    font-family: var(--font-display); font-weight: 700; font-size: 16px;
    padding: 16px 30px; border-radius: 999px; border: none;
    transition: transform 0.3s var(--ease), background 0.3s, color 0.3s, box-shadow 0.3s var(--ease);
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--ink); color: var(--cream); box-shadow: 0 10px 26px -10px rgba(21,18,15,0.5); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 34px -12px rgba(21,18,15,0.55); }
.btn-primary:active { transform: translateY(-1px) scale(0.98); }
.btn-pop { background: var(--pop); color: var(--ink); box-shadow: 0 10px 26px -10px rgba(242,169,0,0.55); }
.btn-pop:hover { transform: translateY(-3px); box-shadow: 0 16px 34px -12px rgba(242,169,0,0.6); }
.btn-pop:active { transform: translateY(-1px) scale(0.98); }
.btn-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.6); }
.btn-light:hover { background: rgba(255,255,255,0.14); border-color: #fff; transform: translateY(-3px); }
.btn-light:active { transform: translateY(-1px) scale(0.98); }

/* ---------- NAV ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 40; border-bottom: 1px solid transparent;
    transition: background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.nav.solid { background: rgba(255,255,255,0.9); backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom-color: transparent; box-shadow: 0 10px 34px -14px rgba(21,18,15,0.22); }
.nav-pill {
    display: flex; align-items: center; gap: 26px; width: 100%; max-width: var(--maxw); margin: 0 auto;
    padding: 16px 28px; transition: padding 0.4s var(--ease);
}
.nav.solid .nav-pill { padding: 9px 28px; }
.nav-brand { margin-right: auto; display: flex; align-items: center; }
/* Logo: positiv (dunkler Text) im solid-State, negativ (heller Text) über Hero */
.brand-logo { display: none; width: auto; transition: height 0.4s var(--ease); }
.nav:not(.solid) .brand-logo-neg { display: block; height: 140px; filter: drop-shadow(0 3px 12px rgba(0,0,0,0.55)); }
.nav.solid .brand-logo-pos { display: block; height: 64px; }
@media (max-width: 760px) {
    .nav:not(.solid) .brand-logo-neg { height: 96px; }
    .nav.solid .brand-logo-pos { height: 48px; }
}
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-family: var(--font-display); font-weight: 700; font-size: 17.5px; color: #fff; transition: color 0.2s; text-shadow: 0 1px 14px rgba(0,0,0,0.5); }
.nav-links a:hover { color: var(--pop); }
.nav.solid .nav-links a { color: var(--ink); text-shadow: none; }
.nav.solid .nav-links a:hover { color: var(--teal); }
.nav:not(.solid) .nav-burger span { background: #fff; }
.nav-cta { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--ink); background: var(--pop); padding: 12px 22px; border-radius: 999px; border: none; box-shadow: 0 6px 18px -6px rgba(21,18,15,0.4); transition: transform 0.25s var(--spring), box-shadow 0.25s var(--ease); }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 24px -8px rgba(21,18,15,0.45); }
.nav-burger { display: none; width: 28px; height: 18px; position: relative; background: none; border: none; cursor: pointer; }
.nav-burger span { position: absolute; left: 0; width: 100%; height: 2.5px; background: var(--ink); border-radius: 2px; }
.nav-burger span:nth-child(1){ top:0;} .nav-burger span:nth-child(2){ top:8px;} .nav-burger span:nth-child(3){ top:16px;}
/* Mobile-Menü: Wrapper auf Desktop unsichtbar (kein Layout-Einfluss) */
.nav-menu { display: contents; }

/* Burger -> X Animation */
.nav-burger span { transition: transform .3s var(--ease), opacity .2s ease, top .3s var(--ease); }
.nav-burger.is-open span:nth-child(1) { top: 8px; transform: rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { top: 8px; transform: rotate(-45deg); }

/* Overlay (per JS injiziert) – Klick daneben schließt */
.nav-overlay { position: fixed; inset: 0; background: rgba(21,18,15,0.5); opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s; z-index: 38; }
.nav-overlay.show { opacity: 1; visibility: visible; }

@media (max-width: 900px) {
    .nav-burger { display: block; }
    .nav-pill { position: relative; }
    /* Bei offenem Menü die Nav (mit Panel) über das Overlay heben –
       sonst fängt .nav.solid via backdrop-filter einen Stacking-Context und das Panel landet unter dem Overlay */
    .nav.menu-open { position: fixed; top: 0; left: 0; right: 0; z-index: 1001; }

    /* Wrapper wird zum vertikalen Dropdown-Panel */
    .nav-menu {
        display: flex; flex-direction: column; align-items: stretch; gap: 4px;
        position: absolute; top: calc(100% + 12px); right: 0;
        width: min(300px, 80vw);
        background: var(--ink); border-radius: var(--radius-sm); padding: 14px;
        box-shadow: 0 26px 60px -14px rgba(21,18,15,0.6);
        transform: translateY(-12px) scale(0.98); transform-origin: top right;
        opacity: 0; visibility: hidden;
        transition: opacity .26s ease, transform .3s var(--spring), visibility .3s;
        z-index: 60;
    }
    .nav.menu-open .nav-menu { opacity: 1; visibility: visible; transform: none; }

    .nav-menu .nav-links { display: flex; flex-direction: column; gap: 2px; }
    .nav-menu .nav-links a { color: var(--cream) !important; text-shadow: none !important; font-size: 20px; padding: 13px 14px; border-radius: 12px; }
    .nav-menu .nav-links a:hover { background: rgba(255,255,255,0.06); color: var(--pop) !important; }

    .nav-menu .nav-ig { align-self: flex-start; margin: 6px 0 2px 8px !important; }
    .nav-menu .nav-cta { display: inline-flex; align-items: center; justify-content: center; margin-top: 10px; }
}

/* ---------- HERO ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: flex-start; overflow: hidden; padding: clamp(170px, 31vh, 330px) 0 48px; }
.hero-media { position: absolute; inset: 0; z-index: 0; background: #15120f; }
.hero-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 35%; opacity: 0; animation: heroCross 21s infinite; will-change: opacity, transform; }
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 7s; }
.hero-slide:nth-child(3) { animation-delay: 14s; }
@keyframes heroCross { /* kräftiges Ken-Burns: Zoom + Schwenk */
    0%   { opacity: 0; transform: scale(1.06) translate(0, 0); }
    7%   { opacity: 1; }
    33%  { opacity: 1; transform: scale(1.16) translate(-2%, -1.5%); }
    42%  { opacity: 0; transform: scale(1.21) translate(-3%, -2.2%); }
    100% { opacity: 0; transform: scale(1.06) translate(0, 0); }
}
.hero-scrim { position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, rgba(21,18,15,0.45) 0%, rgba(21,18,15,0.05) 30%, rgba(21,18,15,0.35) 62%, rgba(21,18,15,0.88) 100%); }
/* driftendes Licht über dem Bild */
.hero-media::before { content: ""; position: absolute; inset: -12%; z-index: 1; pointer-events: none;
    background: radial-gradient(38% 34% at 30% 26%, rgba(255,255,255,0.20), transparent 62%);
    mix-blend-mode: screen; animation: heroGlow 13s ease-in-out infinite alternate; }
/* Vignette */
.hero-media::after { content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none;
    background: radial-gradient(125% 95% at 50% 32%, transparent 52%, rgba(15,12,10,0.55) 100%); }
@keyframes heroGlow { from { transform: translate(-5%, -4%); } to { transform: translate(11%, 9%); } }
/* Kamera-Blitz beim Szenenwechsel */
.hero-flash { position: absolute; inset: 0; z-index: 3; background: #fff; opacity: 0; pointer-events: none;
    animation: heroFlash 21s linear infinite; }
@keyframes heroFlash {
    0%   { opacity: 0; }
    31.5%{ opacity: 0; } 33.2%{ opacity: 0.85; } 35.5%{ opacity: 0; }
    64.8%{ opacity: 0; } 66.5%{ opacity: 0.85; } 68.8%{ opacity: 0; }
    98.0%{ opacity: 0; } 99.7%{ opacity: 0.85; } 100% { opacity: 0; }
}
.hero .wrap { position: relative; z-index: 2; width: 100%; }
.hero-content { max-width: 980px; }
.hero-content > * { opacity: 0; transform: translateY(28px); animation: hIn 0.9s var(--ease) forwards; }
.hero-content > *:nth-child(1){ animation-delay: .15s; }
.hero-content > *:nth-child(2){ animation-delay: .28s; }
.hero-content > *:nth-child(3){ animation-delay: .42s; }
.hero-content > *:nth-child(4){ animation-delay: .54s; }
@keyframes hIn { to { opacity: 1; transform: none; } }
/* Hero-Text-Rotator: Buchstaben-Choreografie je Szene + Lead-Zeile */
.hero-rotator { position: relative; }
.hero-rot { opacity: 1; }
.hero-rot:nth-child(1) { position: relative; --base: 0s; }
.hero-rot:nth-child(2) { position: absolute; top: 0; left: 0; right: 0; --base: 7s; }
.hero-rot:nth-child(3) { position: absolute; top: 0; left: 0; right: 0; --base: 14s; }
.hero-rot h1 .l1, .hero-rot h1 .l2 { display: block; }
.hero-rot .l1, .hero-rot .l2 { opacity: 1; }
/* Ganze Wörter als Einheit (werden nicht zerrissen) */
.hero-rot .word {
    display: inline-block; opacity: 0; transform-origin: 50% 60%; will-change: opacity, transform, filter;
    animation-duration: 21s; animation-iteration-count: infinite; animation-timing-function: var(--ease);
}
.hero-rot .l1 .word { animation-delay: calc(var(--base) + var(--i) * 0.13s); }
.hero-rot .l2 .word { animation-delay: calc(var(--base) + 0.4s + var(--i) * 0.13s); }
.hero-rot:nth-child(1) .word { animation-name: chDrop; }
.hero-rot:nth-child(2) .word { animation-name: chFly; }
.hero-rot:nth-child(3) .word { animation-name: chSpin; }
/* Lead-Zeile (zeilenweise) */
.hero-rot .hero-lead { opacity: 0; transform-origin: left center; will-change: opacity, transform, filter;
    animation-duration: 21s; animation-iteration-count: infinite; animation-timing-function: var(--ease); }
.hero-rot:nth-child(1) .hero-lead { animation-name: leadA; animation-delay: calc(var(--base) + 1s); }
.hero-rot:nth-child(2) .hero-lead { animation-name: leadB; animation-delay: calc(var(--base) + 1s); }
.hero-rot:nth-child(3) .hero-lead { animation-name: leadC; animation-delay: calc(var(--base) + 1s); }

/* Wort-Keyframes — dezent, ohne Drehung, mit minimalem Overshoot. Ausblenden vom Blitz kaschiert */
@keyframes chDrop { /* Szene 1: sanftes Aufsteigen */
    0%   { opacity: 0; transform: translateY(0.55em); }
    5%   { opacity: 1; transform: translateY(-0.04em); }
    8%   { transform: translateY(0); }
    24%  { opacity: 1; transform: translateY(0); }
    28%  { opacity: 0; transform: translateY(-0.3em); }
    100% { opacity: 0; transform: translateY(-0.3em); }
}
@keyframes chFly { /* Szene 2: sanfter Slide + leichter Blur */
    0%   { opacity: 0; filter: blur(5px); transform: translateX(0.45em) scale(1.04); }
    5%   { opacity: 1; filter: blur(0);   transform: translateX(0) scale(1); }
    24%  { opacity: 1; filter: blur(0);   transform: translateX(0) scale(1); }
    28%  { opacity: 0; filter: blur(4px); transform: translateX(-0.3em) scale(0.97); }
    100% { opacity: 0; filter: blur(4px); transform: translateX(-0.3em) scale(0.97); }
}
@keyframes chSpin { /* Szene 3: sanfter Zoom */
    0%   { opacity: 0; transform: scale(0.84); }
    5%   { opacity: 1; transform: scale(1.02); }
    8%   { transform: scale(1); }
    24%  { opacity: 1; transform: scale(1); }
    28%  { opacity: 0; transform: scale(1.12); }
    100% { opacity: 0; transform: scale(1.12); }
}
/* Lead-Keyframes */
@keyframes leadA {
    0%{opacity:0;transform:translateY(34px);} 5%{opacity:1;transform:translateY(0);}
    24%{opacity:1;transform:translateY(0);} 28%{opacity:0;transform:translateY(-16px);} 100%{opacity:0;transform:translateY(-16px);}
}
@keyframes leadB {
    0%{opacity:0;filter:blur(14px);} 5%{opacity:1;filter:blur(0);}
    24%{opacity:1;filter:blur(0);} 28%{opacity:0;filter:blur(10px);} 100%{opacity:0;filter:blur(10px);}
}
@keyframes leadC {
    0%{opacity:0;transform:translateX(-40px);} 5%{opacity:1;transform:translateX(0);}
    24%{opacity:1;transform:translateX(0);} 28%{opacity:0;transform:translateX(34px);} 100%{opacity:0;transform:translateX(34px);}
}
.hero h1 { color: #fff; font-size: clamp(52px, 10.5vw, 160px); text-transform: uppercase; letter-spacing: 0.005em; line-height: 0.98; margin-top: 16px; text-shadow: 0 4px 40px rgba(0,0,0,0.35); perspective: 720px; }
.hero h1 .pop { color: var(--pop); text-shadow: 0 0 32px rgba(46,138,143,0.65), 0 4px 40px rgba(0,0,0,0.35); }
.hero-lead { color: rgba(255,255,255,0.92); font-size: clamp(16px, 1.6vw, 19px); font-weight: 500; max-width: 60ch; margin-top: 22px; min-height: calc(3 * 1.5em); text-shadow: 0 2px 18px rgba(0,0,0,0.4); line-height: 1.5; }
.hero-actions { margin-top: 32px; display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero-actions .hero-price { background: none; border: none; padding: 0; color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 17px; display: inline-flex; align-items: center; gap: 8px; }
@media (prefers-reduced-motion: reduce) {
    .hero-content > * { opacity: 1; transform: none; animation: none; }
    .hero-slide { animation: none; opacity: 0; }
    .hero-slide:nth-child(1) { opacity: 1; }
    .hero-rot .word, .hero-rot .hero-lead { animation: none; opacity: 0; transform: none; filter: none; }
    .hero-rot:nth-child(1) .word, .hero-rot:nth-child(1) .hero-lead { opacity: 1; }
    .hero-flash, .hero-media::before { animation: none; opacity: 0; }
    .hero-rotator { min-height: 0; }
}

/* ---------- MARQUEE ---------- */
.marquee { background: var(--pop); border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); overflow: hidden; }
.marquee-track { display: flex; width: max-content; animation: marquee 26s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-track span { font-family: var(--font-display); font-weight: 800; font-size: clamp(24px, 3.4vw, 46px); text-transform: uppercase; color: var(--ink); padding: 16px 0; white-space: nowrap; }
.marquee-track .sep { color: var(--teal-deep); padding: 0 26px; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- SECTION BASE ---------- */
.section { padding: 110px 0; }
.section.alt { background: var(--cream-2); }
.section.dark { background: var(--ink); color: var(--cream); }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--teal-deep); }
.eyebrow::before { content: ""; width: 30px; height: 3px; background: var(--pop); border-radius: 3px; }
.section.dark .eyebrow { color: var(--pop); }
.sec-head { max-width: 760px; margin-bottom: 56px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head h2 { font-size: clamp(38px, 6vw, 84px); text-transform: uppercase; margin-top: 18px; }
.sec-head p { font-size: 18px; color: var(--muted); margin-top: 18px; font-weight: 500; }
.section.dark .sec-head p { color: rgba(251,247,239,0.7); }

/* ---------- CLAIM ---------- */
.claim { text-align: center; padding: 120px 0; }
.claim h2 { font-size: clamp(44px, 8.5vw, 132px); text-transform: uppercase; }
.claim h2 em { font-style: normal; color: var(--teal); }
.claim .sub { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; font-size: clamp(16px, 2.4vw, 28px); color: var(--pop-deep); margin-top: 26px; }

/* ---------- STEPS ---------- */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.step { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 24px; background: var(--cream); transition: transform 0.3s var(--spring), box-shadow 0.3s; }
.step:hover { transform: translateY(-6px); box-shadow: 0 20px 44px -24px rgba(21,18,15,0.28); }
.step-n { font-family: var(--font-display); font-weight: 800; font-size: 44px; line-height: 1; color: var(--teal); -webkit-text-stroke: 0; }
.step h3 { font-size: 20px; text-transform: uppercase; margin: 16px 0 8px; }
.step p { font-size: 14px; color: var(--muted); }
@media (max-width: 980px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ---------- STUDIO SHOWCASE (bento) ---------- */
.showcase { display: grid; grid-template-columns: 1.3fr 1fr; grid-auto-rows: 300px; gap: 18px; }
.sc { position: relative; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.sc img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.sc:hover img { transform: scale(1.06); }
.sc-tall { grid-row: span 2; }
.sc-label { position: absolute; left: 16px; top: 16px; font-family: var(--font-display); font-weight: 700; font-size: 14px; text-transform: uppercase; background: rgba(251,247,239,0.92); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); border: none; padding: 8px 15px; border-radius: 999px; box-shadow: 0 6px 18px -8px rgba(21,18,15,0.4); }
@media (max-width: 860px) { .showcase { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; } .sc-tall { grid-column: span 2; grid-row: span 1; } }
@media (max-width: 520px) { .showcase { grid-template-columns: 1fr; } .sc-tall { grid-column: auto; } }

/* ---------- FÜR WEN ---------- */
.aud { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.aud-card { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 26px; background: var(--cream); transition: transform 0.3s var(--spring), box-shadow 0.3s; }
.aud-card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px -24px rgba(21,18,15,0.28); }
.aud-card .tag { display: inline-block; font-family: var(--font-display); font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; padding: 6px 13px; border-radius: 999px; }
.aud-card:nth-child(1) .tag { background: var(--pop); }
.aud-card:nth-child(2) .tag { background: var(--pink); color: #fff; }
.aud-card:nth-child(3) .tag { background: var(--teal); color: #fff; }
.aud-card:nth-child(4) .tag { background: var(--cream-2); }
.aud-card h3 { font-size: 23px; text-transform: uppercase; margin: 16px 0 8px; }
.aud-card p { font-size: 14px; color: var(--muted); }
@media (max-width: 900px) { .aud { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .aud { grid-template-columns: 1fr; } }

/* ---------- PREISE ---------- */
.prices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.price { border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; background: var(--cream); display: flex; flex-direction: column; transition: transform 0.3s var(--spring), box-shadow 0.3s; }
.price:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -26px rgba(21,18,15,0.3); }
.price.featured { background: var(--pop); }
.price.featured .pname, .price.featured .pamount, .price.featured .pdesc, .price.featured .pdur { color: var(--ink); }
.price .badge { align-self: flex-start; font-family: var(--font-display); font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; background: var(--ink); color: var(--pop); padding: 5px 12px; border-radius: 999px; margin-bottom: 14px; }
.pname { font-family: var(--font-display); font-weight: 800; font-size: 26px; text-transform: uppercase; }
.pdur { font-size: 13px; color: var(--muted); font-weight: 600; }
.pamount { font-family: var(--font-display); font-weight: 800; font-size: 52px; line-height: 1; margin: 16px 0 6px; }
.pamount .cur { font-size: 24px; }
.pdesc { font-size: 14px; color: var(--muted); flex-grow: 1; }
.price .btn { margin-top: 22px; justify-content: center; width: 100%; }
@media (max-width: 900px) { .prices { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .prices { grid-template-columns: 1fr; } }

/* ---------- GALERIE ---------- */
.gallery { columns: 4 280px; column-gap: 16px; }
.gallery figure { break-inside: avoid; margin: 0 0 16px; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; opacity: 0; transition: opacity 0.7s var(--ease); position: relative; }
.gallery figure.in { opacity: 1; }
.gallery img { width: 100%; display: block; transition: transform 0.8s var(--ease); }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figure { cursor: zoom-in; }
@media (prefers-reduced-motion: reduce) { .gallery figure { opacity: 1; } }
@media (max-width: 640px) { .gallery { columns: 2 140px; } }

/* Lightbox (nur Galerie) */
.lightbox { position: fixed; inset: 0; z-index: 1100; display: flex; align-items: center; justify-content: center;
    background: rgba(21,18,15,0.92); opacity: 0; visibility: hidden; transition: opacity 0.3s var(--ease), visibility 0.3s; padding: 4vh 4vw; }
.lightbox.open { opacity: 1; visibility: visible; }
.lb-stage { margin: 0; max-width: 100%; max-height: 100%; display: flex; }
.lb-img { max-width: 100%; max-height: 92vh; width: auto; height: auto; display: block; object-fit: contain;
    border-radius: var(--radius-sm); box-shadow: 0 24px 60px -12px rgba(0,0,0,0.6);
    opacity: 0; transform: scale(0.97); transition: opacity 0.3s var(--ease), transform 0.3s var(--ease); }
.lightbox.open .lb-img { opacity: 1; transform: scale(1); }
.lb-close, .lb-nav { position: absolute; background: rgba(255,255,255,0.12); border: none; color: #fff; cursor: pointer;
    border-radius: 999px; display: flex; align-items: center; justify-content: center; line-height: 1;
    transition: background 0.25s var(--ease), transform 0.25s var(--ease); -webkit-tap-highlight-color: transparent; }
.lb-close:hover, .lb-nav:hover { background: rgba(255,255,255,0.28); }
.lb-close { top: 18px; right: 18px; width: 46px; height: 46px; font-size: 30px; }
.lb-nav { top: 50%; transform: translateY(-50%); width: 54px; height: 54px; font-size: 38px; }
.lb-nav:hover { transform: translateY(-50%) scale(1.08); }
.lb-prev { left: 18px; }
.lb-next { right: 18px; }
@media (max-width: 640px) {
    .lb-close { top: 10px; right: 10px; width: 40px; height: 40px; font-size: 26px; }
    .lb-nav { width: 44px; height: 44px; font-size: 30px; }
    .lb-prev { left: 6px; } .lb-next { right: 6px; }
}
@media (prefers-reduced-motion: reduce) { .lb-img { transition: opacity 0.2s linear; transform: none; } .lightbox.open .lb-img { transform: none; } }

/* ---------- SPECIAL: COACHING-WORKSHOP ---------- */
.special { position: relative; display: grid; grid-template-columns: 0.9fr 1.1fr; margin-top: 22px; border-radius: var(--radius); overflow: hidden; background: var(--ink); color: var(--cream); box-shadow: 0 30px 60px -34px rgba(21,18,15,0.5); }
.special-img { position: relative; min-height: 360px; }
.special-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.special-body { padding: 44px 48px; display: flex; flex-direction: column; justify-content: center; }
.special-badge { align-self: flex-start; font-family: var(--font-display); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; background: var(--pop); color: var(--ink); padding: 6px 14px; border-radius: 999px; }
.special-body h3 { font-family: var(--font-display); font-weight: 800; font-size: clamp(26px,3.2vw,40px); text-transform: uppercase; line-height: 1.02; margin: 16px 0 6px; }
.special-body .tagline { font-family: var(--font-display); font-weight: 600; color: var(--pop); font-size: 18px; }
.special-body p { color: rgba(251,247,239,0.78); font-size: 15px; line-height: 1.6; margin-top: 14px; max-width: 54ch; }
.special-foot { display: flex; align-items: center; gap: 26px; margin-top: 26px; flex-wrap: wrap; }
.special-info { font-size: 14px; color: rgba(251,247,239,0.72); line-height: 1.5; }
.special-info b { color: #fff; }
/* Sterne-Blitzer (Starburst) */
.starburst { position: relative; width: 150px; height: 150px; flex: none; transform: rotate(-7deg); }
.starburst svg { position: absolute; inset: 0; width: 100%; height: 100%; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.45)); }
.starburst .sb-in { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.starburst .sb-price { font-family: var(--font-display); font-weight: 800; font-size: 36px; color: var(--ink); line-height: 0.9; }
.starburst .sb-price .cur { font-size: 19px; }
.starburst .sb-sub { font-family: var(--font-display); font-weight: 700; font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.03em; color: var(--ink); margin-top: 4px; }
@media (max-width: 820px) { .special { grid-template-columns: 1fr; } .special-img { min-height: 230px; } .special-body { padding: 32px 26px; } }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 14px; background: var(--cream); overflow: hidden; }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 22px 24px; font-family: var(--font-display); font-weight: 700; font-size: 19px; text-transform: uppercase; color: var(--ink); }
.faq-toggle { flex: none; width: 26px; height: 26px; position: relative; }
.faq-toggle::before, .faq-toggle::after { content: ""; position: absolute; background: var(--teal); transition: transform 0.4s var(--ease); }
.faq-toggle::before { top: 12px; left: 3px; width: 20px; height: 3px; }
.faq-toggle::after { left: 12px; top: 3px; width: 3px; height: 20px; }
.faq-item.open .faq-toggle::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq-a p { font-size: 16px; color: var(--muted); padding: 0 24px 22px; }

/* ---------- GREENSCREEN (dunkle Highlight-Sektion) ---------- */
.green-split { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.green-split h2 { font-size: clamp(34px,5vw,64px); text-transform: uppercase; margin-top: 16px; }
.green-split p { color: rgba(251,247,239,0.78); font-size: 18px; font-weight: 500; margin-top: 16px; max-width: 44ch; }
.green-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px; }
.green-tags span { font-family: var(--font-display); font-weight: 700; font-size: 12px; text-transform: uppercase; padding: 7px 14px; border-radius: 999px; background: rgba(255,255,255,0.12); color: #fff; }
.green-figure img { width: 100%; height: 440px; object-fit: cover; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.14); }
@media (max-width: 880px) { .green-split { grid-template-columns: 1fr; gap: 34px; } .green-figure { order: -1; } .green-figure img { height: 300px; } }

/* ---------- eCOMMERCE / PRODUKTFOTOGRAFIE ---------- */
.ecom-split { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.ecom-imgs { display: grid; gap: 16px; }
.ecom-imgs figure { border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.ecom-imgs img { width: 100%; height: 250px; object-fit: cover; transition: transform 0.8s var(--ease); }
.ecom-imgs figure:hover img { transform: scale(1.05); }
.ecom-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.ecom-tags span { font-family: var(--font-display); font-weight: 700; font-size: 12px; text-transform: uppercase; padding: 7px 14px; border-radius: 999px; border: none; background: rgba(21,18,15,0.06); color: var(--ink-2); }
.ecom-feats { list-style: none; display: grid; gap: 12px; margin-top: 24px; }
.ecom-feats li { font-weight: 600; font-size: 15px; color: var(--ink); display: flex; gap: 11px; align-items: flex-start; }
.ecom-feats li::before { content: "✶"; color: var(--teal); font-family: var(--font-display); font-weight: 800; }
@media (max-width: 880px) { .ecom-split { grid-template-columns: 1fr; gap: 36px; } .ecom-figure { order: -1; } }

/* ---------- CTA ---------- */
.cta-band { padding: 120px 0; }
.cta-box { background: var(--pop); border: none; border-radius: 36px; padding: 80px 48px; text-align: center; box-shadow: 0 36px 80px -38px rgba(21,18,15,0.45); }
.cta-box h2 { font-size: clamp(40px, 8vw, 110px); text-transform: uppercase; color: var(--ink); }
.cta-box p { font-size: 18px; font-weight: 600; color: var(--ink-2); margin: 18px auto 0; max-width: 46ch; }
.cta-box .btn { margin-top: 30px; }

/* ---------- FOOTER ---------- */
footer { background: var(--ink); color: var(--cream); padding: 64px 0; }
.foot-grid { display: flex; justify-content: space-between; align-items: center; gap: 28px; flex-wrap: wrap; }
.foot-brand img { height: 90px; width: auto; display: block; }
.foot-meta { font-family: var(--font-display); font-weight: 600; font-size: 15px; text-align: right; line-height: 1.7; }
.foot-legal { margin-top: 36px; font-size: 12.5px; color: rgba(251,247,239,0.55); }
.foot-legal a { color: var(--pop); }
.foot-sk { display: flex; align-items: center; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.foot-sk span { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(251,247,239,0.5); }
.foot-sk img { height: 26px; width: auto; display: block; }

/* ---------- BACK-TO-TOP ---------- */
.to-top { position: fixed; right: 24px; bottom: 24px; z-index: 45; width: 54px; height: 54px; border-radius: 999px; border: none; cursor: pointer;
    background: var(--pop); color: var(--ink); display: grid; place-items: center;
    box-shadow: 0 14px 30px -8px rgba(21,18,15,0.45);
    opacity: 0; transform: translateY(16px) scale(0.9); pointer-events: none;
    transition: opacity 0.4s var(--ease), transform 0.4s var(--spring); }
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { transform: translateY(-3px); }
.to-top:active { transform: translateY(-1px) scale(0.96); }
.to-top svg { width: 24px; height: 24px; }
@media (prefers-reduced-motion: reduce) { .to-top { transition: opacity 0.3s; } }

/* ---------- REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"]{ transition-delay: .08s; }
.reveal[data-delay="2"]{ transition-delay: .16s; }
.reveal[data-delay="3"]{ transition-delay: .24s; }
.reveal[data-delay="4"]{ transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }
