/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-rows: 1fr auto;
    position: relative;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a08 50%, #0a0a0a 100%);
}

.hero__bg::after {
    content: '';
    position: absolute;
    top: -20%; right: -10%;
    width: 60vw; height: 120vh;
    background: radial-gradient(ellipse, rgba(192,57,43,0.06) 0%, transparent 70%);
}

.hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 160px 40px 60px;
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.hero__overline {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #c0392b;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeIn 0.6s 0.3s ease forwards;
}

.hero__title, .hero__title-line2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(80px, 14vw, 180px);
    line-height: 0.9;
    letter-spacing: 2px;
}

.hero__title {
    color: #f2f0eb;
    opacity: 0;
    animation: slideUp 0.8s 0.4s cubic-bezier(0.16,1,0.3,1) forwards;
}

.hero__title-line2 {
    color: transparent;
    -webkit-text-stroke: 1px rgba(242,240,235,0.22);
    margin-bottom: 48px;
    opacity: 0;
    animation: slideUp 0.8s 0.55s cubic-bezier(0.16,1,0.3,1) forwards;
}

.hero__sub {
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: clamp(20px, 2.8vw, 28px);
    font-weight: 300;
    font-style: italic;
    color: rgba(242,240,235,0.95);
    max-width: 560px;
    line-height: 1.6;
    margin-bottom: 56px;
    opacity: 0;
    animation: fadeIn 0.8s 0.7s ease forwards;
}

.hero__form {
    max-width: 500px;
    opacity: 0;
    animation: fadeIn 0.8s 0.85s ease forwards;
}

.form-note {
    margin-top: 12px;
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 1px;
    color: rgba(242,240,235,0.92);
    text-transform: uppercase;
}

/* ── TICKER ── */
.ticker {
    position: relative;
    z-index: 2;
    border-top: 1px solid #3a3a3a;
    padding: 16px 0;
    overflow: hidden;
    background: #0a0a0a;
}

.ticker__track {
    display: flex;
    gap: 80px;
    animation: ticker 20s linear infinite;
    white-space: nowrap;
}

.ticker__item {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(242,240,235,0.92);
    flex-shrink: 0;
}

.ticker__item span {
    color: #c0392b;
    margin-left: 16px;
    margin-right: 64px;
}

/* ── AUSREDEN ── */
.ausreden {
    padding: 120px 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.ausreden__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: #3a3a3a;
    border: 1px solid #3a3a3a;
}

.ausrede {
    background: #0a0a0a;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

.ausrede:hover { background: #1e1e1e; }

.ausrede__num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px;
    line-height: 1;
    color: rgba(242,240,235,0.92);
    position: absolute;
    top: 16px; right: 24px;
}

.ausrede__text {
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: 22px;
    font-style: italic;
    font-weight: 300;
    color: rgba(242,240,235,0.95);
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.ausrede__strike {
    position: absolute;
    top: 50%; left: 40px; right: 40px;
    height: 1px;
    background: #c0392b;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.ausrede:hover .ausrede__strike { transform: scaleX(1); }

/* ── STATEMENT ── */
.statement {
    padding: 100px 40px;
    border-top: 1px solid #3a3a3a;
    border-bottom: 1px solid #3a3a3a;
    background: #1e1e1e;
}

.statement__inner { max-width: 900px; margin: 0 auto; }

.statement__quote {
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: clamp(26px, 3.5vw, 44px);
    font-weight: 300;
    line-height: 1.5;
    color: #f2f0eb;
}

.statement__quote em { font-style: italic; color: rgba(242,240,235,0.95); }
.statement__quote strong { font-weight: 600; }

.statement__source {
    margin-top: 40px;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c0392b;
}

/* ── GUIDE ── */
.guide {
    padding: 120px 40px;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.guide__book {
    position: relative;
    aspect-ratio: 3/4;
    background: #1e1e1e;
    border: 1px solid #3a3a3a;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.guide__book::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 8px;
    background: #c0392b;
}

.guide__book-inner { text-align: center; padding: 40px; }

.guide__book-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px;
    line-height: 0.95;
    letter-spacing: 1px;
    color: #f2f0eb;
    margin-bottom: 16px;
}

.guide__book-sub {
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: 13px;
    font-style: italic;
    color: rgba(242,240,235,0.92);
    line-height: 1.6;
}

.guide__book-author {
    margin-top: 48px;
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c0392b;
}

.guide__book-badge {
    position: absolute;
    top: 20px; right: 20px;
    background: #c0392b;
    color: #f2f0eb;
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 10px;
}

.guide__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 0.95;
    letter-spacing: 1px;
    color: #f2f0eb;
    margin-bottom: 32px;
}

.guide__list { list-style: none; margin-bottom: 48px; }

.guide__item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(242,240,235,0.12);
}

.guide__item:last-child { border-bottom: none; }

.guide__arrow {
    color: #c0392b;
    font-family: 'DM Mono', monospace;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.guide__item-text {
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: 19px;
    color: rgba(242,240,235,0.9);
    line-height: 1.6;
}

.guide__item-text strong { color: #f2f0eb; font-weight: 600; }

/* ── STEFAN ── */
.stefan {
    padding: 120px 40px;
    background: #1e1e1e;
    border-top: 1px solid #3a3a3a;
}

.stefan__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 80px;
    align-items: start;
}

.stefan__img-box {
    width: 100%;
    aspect-ratio: 3/4;
    background: #3a3a3a;
    border: 1px solid rgba(242,240,235,0.12);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.stefan__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.stefan__img-box::after {
    content: 'STEFAN\ASCHMIDT-\AEGERMANN';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(10,10,10,0.95));
    padding: 40px 20px 20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    line-height: 1.1;
    letter-spacing: 1px;
    color: #f2f0eb;
    white-space: pre;
}

.stefan__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 2px;
    color: rgba(242,240,235,0.92);
    text-transform: uppercase;
}

.stefan__intro {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c0392b;
    margin-bottom: 32px;
}

.stefan__text {
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: 22px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(242,240,235,0.9);
    margin-bottom: 24px;
}

.stefan__text em { font-style: italic; color: #f2f0eb; }

/* ── WEISST DU ES ── */
.weisst {
    padding: 120px 40px;
    background: #0a0a0a;
    border-top: 1px solid #3a3a3a;
}

.weisst__inner { max-width: 900px; margin: 0 auto; }

.weisst__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 0.95;
    letter-spacing: 1px;
    color: #f2f0eb;
    margin-bottom: 48px;
}

.weisst__title em { color: #c0392b; font-style: normal; }

.weisst__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}

.weisst__col p {
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: 21px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(242,240,235,0.95);
    margin-bottom: 20px;
}

.weisst__col p strong { color: #f2f0eb; font-weight: 600; }
.weisst__col p em { font-style: italic; color: rgba(242,240,235,0.95); }

.weisst__punch {
    border-left: 2px solid #c0392b;
    padding-left: 32px;
    margin-top: 48px;
}

.weisst__punch p {
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: clamp(20px, 2.5vw, 26px);
    font-style: italic;
    font-weight: 300;
    color: #f2f0eb;
    line-height: 1.6;
}

.weisst__punch strong { font-style: normal; font-weight: 600; }

/* ── FRAGEN ── */
.fragen {
    padding: 120px 40px;
    background: #1e1e1e;
    border-top: 1px solid #3a3a3a;
}

.fragen__inner { max-width: 900px; margin: 0 auto; }

.fragen__intro {
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: 21px;
    font-weight: 300;
    color: rgba(242,240,235,0.95);
    line-height: 1.7;
    margin-bottom: 64px;
    max-width: 600px;
}

.fragen__list { display: flex; flex-direction: column; margin-bottom: 64px; }

.frage {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 32px;
    padding: 40px 0;
    border-bottom: 1px solid rgba(242,240,235,0.12);
    align-items: start;
    transition: padding-left 0.3s ease;
}

.frage:first-child { border-top: 1px solid rgba(242,240,235,0.12); }
.frage:hover { padding-left: 8px; }

.frage__num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: #c0392b;
    line-height: 1;
    opacity: 0.6;
}

.frage__q {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(22px, 3vw, 32px);
    letter-spacing: 0.5px;
    color: #f2f0eb;
    margin-bottom: 12px;
    line-height: 1.1;
}

.frage__desc {
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: 18px;
    font-weight: 300;
    color: rgba(242,240,235,0.95);
    line-height: 1.6;
}

.fragen__cta {
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: 22px;
    font-style: italic;
    font-weight: 300;
    color: rgba(242,240,235,0.95);
    line-height: 1.7;
    padding-top: 32px;
    border-top: 1px solid rgba(242,240,235,0.12);
}

.fragen__cta strong { color: #f2f0eb; font-style: normal; font-weight: 600; }

/* ── PROGRAMM ── */
.programm {
    padding: 120px 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.programm__header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
    align-items: end;
}

.programm__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 7vw, 88px);
    line-height: 0.9;
    letter-spacing: 1px;
    color: #f2f0eb;
}

.programm__desc {
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(242,240,235,0.95);
}
}

.programm__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #3a3a3a;
    border: 1px solid #3a3a3a;
    margin-bottom: 48px;
}

.step {
    background: #0a0a0a;
    padding: 40px 32px;
    transition: background 0.3s ease;
}

.step:hover { background: #1e1e1e; }

.step__num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: rgba(242,240,235,0.92);
    line-height: 1;
    margin-bottom: 16px;
}

.step__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 1px;
    color: #f2f0eb;
    margin-bottom: 12px;
}

.step__text {
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: 17px;
    font-weight: 300;
    color: rgba(242,240,235,0.95);
    line-height: 1.6;
}

.programm__price {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px;
    border: 1px solid #3a3a3a;
    background: #1e1e1e;
}

.programm__price-amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px;
    color: #f2f0eb;
    line-height: 1;
}

.programm__price-amount span { font-size: 28px; color: rgba(242,240,235,0.92); }

.programm__price-desc {
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: 18px;
    font-weight: 300;
    color: rgba(242,240,235,0.95);
    line-height: 1.6;
    flex: 1;
}

.programm__price-cta {
    display: inline-block;
    padding: 16px 32px;
    background: #c0392b;
    color: #f2f0eb;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.programm__price-cta:hover { background: #96281b; }

/* ── HOME POSTS ── */
.home-posts { border-top: 1px solid #3a3a3a; padding: 120px 40px; }
.home-posts__inner { max-width: 1100px; margin: 0 auto; }
.home-posts__more { margin-top: 64px; text-align: center; }

.btn-outline {
    display: inline-block;
    padding: 14px 32px;
    border: 1px solid #3a3a3a;
    color: rgba(242,240,235,0.92);
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover { border-color: #c0392b; color: #f2f0eb; }

/* ── FINAL CTA ── */
.final {
    padding: 120px 40px;
    background: #c0392b;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final::before {
    content: 'BAD ALIBI';
    position: absolute;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20vw;
    color: rgba(0,0,0,0.08);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
}

.final__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 7vw, 80px);
    letter-spacing: 2px;
    color: #f2f0eb;
    line-height: 1;
    margin-bottom: 20px;
    position: relative;
}

.final__sub {
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: 20px;
    font-weight: 300;
    font-style: italic;
    color: rgba(242,240,235,0.95);
    margin-bottom: 48px;
    position: relative;
}

.final__form { max-width: 480px; margin: 0 auto; position: relative; }

.final__form .form-group {
    border-color: rgba(242,240,235,0.92);
    background: rgba(0,0,0,0.2);
}

.final__form .form-group:focus-within { border-color: #f2f0eb; }

.final__form .form-group button {
    background: #0a0a0a;
    color: #f2f0eb;
}

.final__form .form-group button:hover { background: #1e1e1e; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .hero__content { padding: 140px 24px 60px; }
    .ausreden { padding: 80px 24px; }
    .ausreden__grid { grid-template-columns: 1fr; }
    .guide { grid-template-columns: 1fr; padding: 80px 24px; }
    .guide__book { max-width: 300px; }
    .stefan { padding: 80px 0; }
    .stefan__inner { grid-template-columns: 1fr; padding: 80px 24px; gap: 48px; }
    .stefan__portrait { max-width: 260px; }
    .weisst__body { grid-template-columns: 1fr; gap: 0; }
    .weisst { padding: 80px 24px; }
    .fragen { padding: 80px 24px; }
    .frage { grid-template-columns: 40px 1fr; gap: 20px; }
    .frage__num { font-size: 32px; }
    .programm { padding: 80px 24px; }
    .programm__header { grid-template-columns: 1fr; gap: 32px; }
    .programm__steps { grid-template-columns: 1fr; }
    .programm__price { flex-direction: column; text-align: center; }
    .home-posts { padding: 80px 24px; }
    .final { padding: 80px 24px; }
    .statement { padding: 80px 24px; }
}
