:root {
    --ink:    #0D0D0D;
    --paper:  #F2EDE6;
    --cream:  #E8E1D6;
    --red:    #D94F3D;
    --muted:  #7A7267;
    --border: #D4CAB8;
    --white:  #FAFAF8;
    --F: 'Bebas Neue', sans-serif;
    --B: 'DM Sans', sans-serif;
    --S: 'DM Serif Display', serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--paper); color: var(--ink); font-family: var(--B); font-size: 16px; line-height: 1.6; overflow-x: hidden; }

/* ── NAV ── */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 900;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 56px;
    background: var(--paper);
    border-bottom: 1.5px solid var(--border);
}
.logo { font-family: var(--F); font-size: 26px; letter-spacing: 2px; color: var(--ink); text-decoration: none; }
.logo sup { font-family: var(--B); font-size: 10px; font-weight: 500; letter-spacing: 1px; color: var(--red); vertical-align: super; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--muted); text-decoration: none; transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
.nav-pill { background: var(--ink) !important; color: var(--paper) !important; padding: 9px 22px; border-radius: 2px; transition: background .2s !important; }
.nav-pill:hover { background: var(--red) !important; }

/* Mobile Nav */
.nav-mobile-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-mobile-btn span { display: block; width: 24px; height: 2px; background: var(--ink); transition: all .3s; }
.nav-mobile-menu { display: none; position: fixed; top: 63px; left: 0; right: 0; background: var(--paper); border-bottom: 1.5px solid var(--border); z-index: 800; padding: 24px 24px; }
.nav-mobile-menu.open { display: block; }
.nav-mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.nav-mobile-menu a { font-size: 17px; font-weight: 500; color: var(--ink); text-decoration: none; }

/* ── TICKER ── */
.ticker { margin-top: 63px; background: var(--red); overflow: hidden; padding: 10px 0; border-bottom: 1.5px solid var(--border); }
.ticker-inner { display: flex; animation: tick 40s linear infinite; width: max-content; }
.ticker-item { white-space: nowrap; padding: 0 40px; font-size: 12px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: #fff; display: flex; align-items: center; gap: 16px; }
.ticker-item::after { content: '●'; font-size: 6px; opacity: .6; }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── HERO ── */
.hero { display: grid; grid-template-columns: 1fr 420px; min-height: calc(100vh - 63px); border-bottom: 1.5px solid var(--border); }
.hero-left { padding: 80px 56px; display: flex; flex-direction: column; justify-content: space-between; border-right: 1.5px solid var(--border); }
.eyebrow { display: flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 40px; }
.eyebrow::before { content: ''; display: block; width: 28px; height: 1.5px; background: var(--red); }
.hero-h1 { font-family: var(--F); font-size: clamp(80px, 10vw, 148px); line-height: .88; letter-spacing: 1px; }
.hero-h1 .r { color: var(--red); }
.hero-h1 .s { font-family: var(--S); font-style: italic; font-size: .72em; letter-spacing: -1px; display: block; }
.hero-bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-top: 60px; }
.hero-lead { max-width: 480px; font-size: 18px; line-height: 1.75; color: var(--muted); font-weight: 300; }
.hero-lead strong { color: var(--ink); font-weight: 500; }
.cta-stack { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }
.btn-s { display: inline-block; background: var(--ink); color: var(--paper); font-size: 14px; font-weight: 500; padding: 14px 32px; border-radius: 2px; text-decoration: none; transition: background .2s; white-space: nowrap; text-align: center; }
.btn-s:hover { background: var(--red); color: var(--paper); }
.btn-o { display: inline-block; background: transparent; color: var(--ink); font-size: 14px; font-weight: 500; padding: 13px 32px; border-radius: 2px; border: 1.5px solid var(--border); text-decoration: none; text-align: center; transition: border-color .2s; }
.btn-o:hover { border-color: var(--ink); color: var(--ink); }

/* Hero Right Panel */
.hero-right { background: var(--ink); color: var(--paper); padding: 60px 44px; display: flex; flex-direction: column; justify-content: space-between; }
.hr-label { font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: rgba(242,237,230,.4); margin-bottom: 40px; }
.hdp { border-top: 1px solid rgba(255,255,255,.1); padding: 28px 0; }
.hdp:last-of-type { border-bottom: 1px solid rgba(255,255,255,.1); }
.hdp-n { font-family: var(--F); font-size: 64px; line-height: 1; color: var(--red); display: block; }
.hdp-t { font-size: 14px; color: rgba(242,237,230,.6); margin-top: 6px; line-height: 1.5; }
.hr-src { font-size: 11px; color: rgba(242,237,230,.3); line-height: 1.6; margin-top: 32px; }

/* ── SECTIONS ── */
.sec { padding: 100px 56px; }
.sb { border-bottom: 1.5px solid var(--border); }
.sd { background: var(--ink); color: var(--paper); }
.sc { background: var(--cream); }

.lbl { display: flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 28px; }
.sd .lbl { color: rgba(242,237,230,.4); }
.lbl::before { content: ''; display: block; width: 24px; height: 1.5px; background: var(--red); }
h2 { font-family: var(--S); font-style: italic; font-size: clamp(36px, 4.5vw, 60px); line-height: 1.1; letter-spacing: -1px; margin-bottom: 20px; }
h3 { font-family: var(--B); font-size: 17px; font-weight: 500; margin-bottom: 10px; }

/* ── MARKT ── */
.mkt-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-bottom: 80px; }
.mkt-intro p { font-size: 17px; color: var(--muted); line-height: 1.8; }
.mkt-intro p + p { margin-top: 16px; }
.mkt-intro p strong { color: var(--ink); font-weight: 500; }
.pull { font-family: var(--S); font-style: italic; font-size: clamp(28px, 3.5vw, 44px); line-height: 1.25; padding-left: 32px; border-left: 3px solid var(--red); letter-spacing: -.5px; }
.facts { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1.5px solid var(--border); }
.fc { padding: 44px 36px; border-right: 1.5px solid var(--border); }
.fc:last-child { border-right: none; }
.fn { font-family: var(--F); font-size: 72px; line-height: 1; color: var(--ink); display: block; }
.fu { font-family: var(--F); font-size: 32px; color: var(--red); }
.fl { font-size: 14px; color: var(--muted); margin-top: 10px; line-height: 1.5; }
.fs-src { font-size: 11px; color: var(--border); margin-top: 8px; }

/* ── SHIFT / BARS ── */
.shift-g { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }
.bars { margin-top: 40px; display: flex; flex-direction: column; gap: 20px; }
.br { display: flex; flex-direction: column; gap: 8px; }
.blr { display: flex; justify-content: space-between; font-size: 13px; font-weight: 500; }
.blr span:first-child { color: rgba(242,237,230,.7); }
.blr span:last-child { color: var(--red); font-weight: 700; font-size: 15px; }
.bt { height: 6px; background: rgba(255,255,255,.1); border-radius: 10px; overflow: hidden; }
.bf { height: 100%; background: var(--red); border-radius: 10px; transform: scaleX(0); transform-origin: left; transition: transform 1s ease .2s; }
.bf.on { transform: scaleX(1); }
.ins-g { display: flex; flex-direction: column; gap: 24px; }
.ins { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 4px; padding: 28px 32px; transition: background .2s, border-color .2s; }
.ins:hover { background: rgba(217,79,61,.1); border-color: rgba(217,79,61,.3); }
.ins h3 { color: var(--paper); font-size: 16px; font-weight: 500; margin-bottom: 8px; }
.ins p { font-size: 14px; color: rgba(242,237,230,.5); line-height: 1.65; }
.ins-n { font-family: var(--F); font-size: 40px; color: var(--red); line-height: 1; display: block; margin-bottom: 8px; }

/* ── LEISTUNGEN ── */
.svc-intro { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 64px; gap: 60px; }
.svc-desc { max-width: 380px; font-size: 16px; color: var(--muted); line-height: 1.75; }
.svc-list { display: flex; flex-direction: column; }
.sr { display: grid; grid-template-columns: 80px 1fr 1fr auto; gap: 40px; align-items: start; padding: 48px 0; border-top: 1.5px solid var(--border); transition: background .15s, padding .15s; }
.sr:last-child { border-bottom: 1.5px solid var(--border); }
.sr:hover { background: var(--cream); padding-left: 16px; padding-right: 16px; margin: 0 -16px; }
.sr-n { font-family: var(--F); font-size: 40px; color: var(--red); line-height: 1; padding-top: 4px; }
.sr-t { font-family: var(--S); font-style: italic; font-size: 28px; letter-spacing: -.5px; line-height: 1.15; }
.sr-d { font-size: 15px; color: var(--muted); line-height: 1.7; }
.sr-tgs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.sr-tg { font-size: 11px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; border: 1.5px solid var(--border); padding: 5px 12px; border-radius: 2px; color: var(--muted); white-space: nowrap; }

/* ── KANÄLE ── */
.ch-hd { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 64px; }
.ch-g { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); border: 1.5px solid var(--border); }
.cc { background: var(--cream); padding: 44px 36px; transition: background .2s; }
.cc:hover { background: var(--paper); }
.cc-i { font-size: 32px; margin-bottom: 20px; display: block; }
.cc h3 { font-size: 19px; font-weight: 500; margin-bottom: 10px; }
.cc p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.cc-s { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); font-size: 12px; color: var(--red); font-weight: 500; letter-spacing: .5px; }

/* ── EXPERTE ── */
.exp-g { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.exp-l p { font-size: 17px; color: rgba(242,237,230,.65); line-height: 1.8; margin-bottom: 20px; font-weight: 300; }
.exp-l p strong { color: var(--paper); font-weight: 500; }
.exp-photo { width: 100%; max-width: 340px; border-radius: 4px; margin-bottom: 32px; display: block; }
.exp-nm { font-family: var(--F); font-size: 80px; line-height: .9; color: var(--paper); margin-bottom: 8px; }
.exp-ti { font-size: 13px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 40px; }
.ei { display: grid; grid-template-columns: 32px 1fr; gap: 20px; padding: 28px 0; border-top: 1px solid rgba(255,255,255,.1); }
.ei:last-child { border-bottom: 1px solid rgba(255,255,255,.1); }
.ei:hover .ei-n { color: var(--red); }
.ei-n { font-family: var(--F); font-size: 22px; color: rgba(242,237,230,.2); padding-top: 3px; transition: color .2s; }
.ei-tl { font-size: 16px; color: var(--paper); font-weight: 500; margin-bottom: 6px; }
.ei-d { font-size: 14px; color: rgba(242,237,230,.5); line-height: 1.6; }

/* ── WORKSHOPS ── */
.ws-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-bottom: 64px; }
.ws-intro-grid p { font-size: 17px; color: var(--muted); line-height: 1.8; }
.ws-intro-grid p + p { margin-top: 16px; }
.ws-photo { width: 100%; border-radius: 4px; border: 1.5px solid var(--border); }
.ws-photo-caption { font-size: 12px; color: var(--muted); margin-top: 10px; letter-spacing: .5px; }

.ws-featured { background: var(--ink); border-radius: 4px; padding: 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 32px; }
.ws-badge { display: inline-block; background: var(--red); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 6px 14px; border-radius: 2px; margin-bottom: 24px; }
.ws-featured h2 { color: var(--paper); font-size: clamp(30px, 4vw, 50px); }
.ws-featured .ws-desc { font-size: 16px; color: rgba(242,237,230,.6); line-height: 1.8; margin-top: 16px; font-weight: 300; }
.ws-modules { display: flex; flex-direction: column; gap: 16px; }
.ws-module { border: 1px solid rgba(255,255,255,.1); border-radius: 4px; padding: 24px 28px; transition: border-color .2s; }
.ws-module:hover { border-color: rgba(217,79,61,.4); }
.ws-mod-n { font-family: var(--F); font-size: 36px; color: var(--red); line-height: 1; }
.ws-mod-t { font-size: 15px; color: var(--paper); font-weight: 500; margin: 8px 0 6px; }
.ws-mod-d { font-size: 13px; color: rgba(242,237,230,.5); line-height: 1.6; }

.ws-formats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); border: 1.5px solid var(--border); }
.ws-format { background: var(--cream); padding: 36px; transition: background .2s; }
.ws-format:hover { background: var(--paper); }
.ws-format-n { font-family: var(--F); font-size: 52px; color: var(--red); line-height: 1; margin-bottom: 12px; }
.ws-format h3 { font-size: 16px; font-weight: 500; margin-bottom: 8px; }
.ws-format p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── ZIELGRUPPEN ── */
.tgt-g { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1.5px solid var(--border); border-left: 1.5px solid var(--border); }
.tc { border-right: 1.5px solid var(--border); border-bottom: 1.5px solid var(--border); padding: 44px 32px; transition: background .2s; }
.tc:hover { background: var(--cream); }
.tc-i { font-size: 28px; margin-bottom: 20px; display: block; }
.tc-t { font-family: var(--S); font-style: italic; font-size: 22px; line-height: 1.2; margin-bottom: 14px; }
.tc-d { font-size: 14px; color: var(--muted); line-height: 1.65; }
.tc-tag { display: inline-block; margin-top: 20px; font-size: 11px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: var(--red); }

/* ── CTA ── */
.cta-s { background: var(--red); padding: 100px 56px; display: flex; align-items: center; justify-content: space-between; gap: 80px; }
.cta-hl { font-family: var(--F); font-size: clamp(60px, 8vw, 110px); line-height: .9; color: var(--white); flex: 1; }
.cta-r { display: flex; flex-direction: column; gap: 24px; max-width: 360px; }
.cta-r p { font-size: 17px; color: rgba(255,255,255,.75); line-height: 1.7; font-weight: 300; }
.btn-w { display: inline-block; background: var(--white); color: var(--ink); font-size: 15px; font-weight: 500; padding: 15px 36px; border-radius: 2px; text-decoration: none; transition: opacity .2s; }
.btn-w:hover { opacity: .9; }
.cta-ct { font-size: 13px; color: rgba(255,255,255,.5); }

/* ── FOOTER ── */
footer { background: var(--ink); color: var(--paper); padding: 60px 56px 40px; }
.ft { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 36px; }
.fb-t { font-family: var(--F); font-size: 48px; letter-spacing: 2px; color: var(--paper); line-height: 1; margin-bottom: 16px; }
.fb-d { font-size: 14px; color: rgba(242,237,230,.4); line-height: 1.7; }
.fc2 h4 { font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: rgba(242,237,230,.35); margin-bottom: 20px; }
.fc2 ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.fc2 a { font-size: 14px; color: rgba(242,237,230,.55); text-decoration: none; transition: color .2s; }
.fc2 a:hover { color: var(--paper); }
.fb { display: flex; justify-content: space-between; font-size: 12px; color: rgba(242,237,230,.25); }

/* ── FADE ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    nav { padding: 16px 24px; }
    .nav-links { display: none; }
    .nav-mobile-btn { display: flex; }
    .hero { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .hero-left, .sec { padding: 60px 24px; }
    .hero-bottom { flex-direction: column; gap: 40px; }
    .mkt-intro { grid-template-columns: 1fr; gap: 40px; }
    .facts { grid-template-columns: 1fr 1fr; }
    .fc { border-bottom: 1.5px solid var(--border); }
    .shift-g { grid-template-columns: 1fr; }
    .sr { grid-template-columns: 60px 1fr; }
    .sr-d, .sr-tgs { display: none; }
    .exp-g { grid-template-columns: 1fr; gap: 40px; }
    .ch-g { grid-template-columns: 1fr; }
    .tgt-g { grid-template-columns: 1fr 1fr; }
    .cta-s { flex-direction: column; }
    .ft { grid-template-columns: 1fr 1fr; }
    .svc-intro { flex-direction: column; gap: 20px; }
    .ws-intro-grid { grid-template-columns: 1fr; }
    .ws-featured { grid-template-columns: 1fr; }
    .ws-formats { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .facts { grid-template-columns: 1fr; }
    .tgt-g { grid-template-columns: 1fr; }
    .ft { grid-template-columns: 1fr; }
    .cta-s { padding: 60px 24px; }
    .fb { flex-direction: column; gap: 8px; }
}
