:root {
  --bg: #09090c;
  --bg-soft: #111116;
  --surface: #15151c;
  --text: #f7f5f2;
  --muted: #aaa7b3;
  --line: rgba(255,255,255,.12);
  --dance: #ef38b6;
  --dance-soft: #975cff;
  --fitness: #64b6ff;
  --fitness-soft: #5669ff;
  --warm: #f0eee9;
  --max: 1180px;
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, a { -webkit-tap-highlight-color: transparent; }
.shell { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 999; padding: 12px 16px; background:#fff; color:#000; border-radius:10px; }
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled {
  background: rgba(9,9,12,.80);
  backdrop-filter: blur(18px);
  border-color: var(--line);
}
.nav-wrap { height: 84px; display: flex; align-items: center; gap: 34px; }
.brand { display: inline-flex; flex-direction: column; line-height: .83; letter-spacing: -.05em; flex-shrink: 0; }
.brand-word { font-weight: 950; font-size: 26px; }
.brand-sub { font-size: 8px; letter-spacing: .22em; margin-top: 7px; font-weight: 800; color: #d5d3da; }
.desktop-nav { display:flex; gap:28px; margin-left:auto; }
.desktop-nav a { font-size: 14px; color:#c5c2cb; transition:color .2s ease; }
.desktop-nav a:hover { color:#fff; }

.button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 22px;
  border-radius:999px;
  font-weight:850;
  font-size:14px;
  border:1px solid transparent;
  transition:transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height:44px; padding:0 18px; }
.button-light { background:#fff; color:#09090c; }
.button-dance { background:linear-gradient(135deg,var(--dance),var(--dance-soft)); color:#fff; box-shadow:0 12px 38px rgba(239,56,182,.15); }
.button-fitness { background:linear-gradient(135deg,var(--fitness),var(--fitness-soft)); color:#fff; box-shadow:0 12px 38px rgba(100,182,255,.15); }
.button-outline { border-color:rgba(255,255,255,.3); background:rgba(255,255,255,.03); }
.text-link { display:inline-flex; gap:9px; align-items:center; font-size:14px; font-weight:800; color:#e3e1e7; }
.text-link span { font-size:18px; transition:transform .2s ease; }
.text-link:hover span { transform:translate(2px,2px); }
.eyebrow { margin:0 0 20px; font-size:12px; letter-spacing:.2em; font-weight:900; color:#b6b2bf; }

/* HERO — Dance und Fitness bewusst 50/50 */
.hero { position:relative; padding:154px 0 48px; min-height:100vh; overflow:hidden; }
.hero::before { content:""; position:absolute; inset:0; background:radial-gradient(circle at 50% 20%, rgba(255,255,255,.05), transparent 42%); pointer-events:none; }
.hero-orb { position:absolute; width:500px; height:500px; border-radius:50%; filter:blur(105px); opacity:.12; pointer-events:none; }
.hero-orb-dance { background:var(--dance); left:-240px; top:120px; }
.hero-orb-fitness { background:var(--fitness); right:-240px; top:120px; }
.hero-grid { display:grid; grid-template-columns:.86fr 1.14fr; gap:62px; align-items:center; }
.hero-logo-pair { display:flex; align-items:center; gap:13px; margin:0 0 30px; }
.logo-tile { display:flex; align-items:center; justify-content:center; height:84px; padding:11px 15px; border:1px solid var(--line); border-radius:18px; background:rgba(255,255,255,.035); backdrop-filter:blur(12px); }
.logo-tile img { width:auto; height:100%; object-fit:contain; filter:invert(1); opacity:.96; }
.logo-tile-dance { width:102px; }
.logo-tile-fitness { width:116px; }
.logo-plus { color:#686570; font-size:20px; font-weight:700; }
.hero h1, .section-head h2, .values-intro h2, .contact-copy h2 { margin:0; font-size:clamp(56px,7.3vw,108px); line-height:.88; letter-spacing:-.072em; font-weight:950; }
.hero h1 span { color:#c8c4cf; }
.hero-lead { max-width:570px; margin:30px 0 0; color:#bcb8c3; font-size:18px; line-height:1.65; }
.hero-actions { display:flex; align-items:center; gap:12px; margin-top:34px; flex-wrap:wrap; }
.hero-actions-balanced .button { min-width:158px; }
.hero-secondary-link { display:inline-flex; gap:9px; margin-top:18px; color:#8f8b97; font-size:13px; font-weight:700; }
.hero-secondary-link:hover { color:#d8d5dc; }

.hero-stage { min-height:610px; display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.stage-card { position:relative; border-radius:var(--radius); overflow:hidden; border:1px solid rgba(255,255,255,.13); min-height:100%; background:#141419; }
.stage-image { position:absolute; inset:0; background-size:cover; background-position:center; transition:transform .7s cubic-bezier(.2,.7,.2,1); }
.stage-card:hover .stage-image { transform:scale(1.035); }
.stage-dance .stage-image { background-image:url('assets/dance-hero.webp'); background-position:52% center; }
.stage-fitness .stage-image { background-image:url('https://static.wixstatic.com/media/4d7089_ec8962c2ad95434da9b7d12846075a0d~mv2.jpg/v1/fill/w_980%2Ch_454%2Cal_c%2Cq_85%2Cusm_0.66_1.00_0.01%2Cenc_avif%2Cquality_auto/4d7089_ec8962c2ad95434da9b7d12846075a0d~mv2.jpg'); background-position:center; }
.stage-shade { position:absolute; inset:0; background:linear-gradient(to top, rgba(0,0,0,.93) 0%,rgba(0,0,0,.32) 52%,rgba(0,0,0,.07) 100%); }
.stage-accent { position:absolute; inset:auto 0 0; height:3px; }
.stage-dance .stage-accent { background:linear-gradient(90deg,var(--dance),var(--dance-soft)); }
.stage-fitness .stage-accent { background:linear-gradient(90deg,var(--fitness),var(--fitness-soft)); }
.stage-content { position:absolute; inset:auto 24px 25px; }
.stage-logo { width:auto; object-fit:contain; object-position:left bottom; filter:invert(1); opacity:.94; margin-bottom:15px; }
.stage-logo-dance { height:62px; }
.stage-logo-fitness { height:54px; }
.stage-kicker { margin:0 0 10px !important; font-size:10px !important; font-weight:900; letter-spacing:.17em; color:#d5d2dc !important; }
.stage-content h2 { margin:0 0 10px; font-size:clamp(34px,3.6vw,54px); line-height:.93; letter-spacing:-.055em; }
.stage-copy { margin:0; max-width:260px; color:#d5d2dc; font-size:13px; line-height:1.45; }

.proof-strip { margin-top:82px; padding:24px 0 0; border-top:1px solid var(--line); display:grid; grid-template-columns:repeat(3,1fr); }
.proof-strip div { display:flex; align-items:baseline; gap:12px; min-height:40px; }
.proof-strip strong { font-size:28px; letter-spacing:-.04em; }
.proof-strip span { color:#aaa7b3; font-size:13px; }
.proof-dance strong { color:#f185cf; }
.proof-fitness strong { color:#8ac8ff; }
.proof-shared { justify-content:center; }
.proof-fitness { justify-content:flex-end; }

/* WAHLBEREICH */
.choice-section { padding:150px 0 130px; }
.section-head { display:grid; grid-template-columns:180px 1fr 1fr; align-items:end; gap:32px; margin-bottom:58px; }
.section-head .eyebrow { margin:0 0 8px; }
.section-head h2, .values-intro h2, .contact-copy h2 { font-size:clamp(50px,6vw,84px); }
.section-head > p:last-child { margin:0 0 6px; max-width:430px; color:var(--muted); font-size:16px; }
.choice-grid { display:grid; gap:18px; }
.choice-card { position:relative; overflow:hidden; min-height:560px; display:grid; grid-template-columns:110px 1fr minmax(350px,.9fr); grid-template-areas:"num copy visual"; border:1px solid var(--line); background:linear-gradient(140deg,rgba(255,255,255,.04),rgba(255,255,255,.015)); border-radius:32px; }
.choice-fitness { grid-template-columns:minmax(350px,.9fr) 1fr 110px; grid-template-areas:"visual copy num"; }
.choice-number { grid-area:num; padding:32px; color:#75717d; font-weight:900; font-size:13px; }
.choice-copy { grid-area:copy; padding:68px 30px 62px; position:relative; z-index:2; align-self:center; }
.choice-dance .choice-copy { padding-left:0; }
.choice-fitness .choice-copy { padding-right:0; }
.choice-brand { height:82px; display:flex; align-items:center; margin:0 0 16px; }
.choice-logo { width:auto; max-width:205px; max-height:82px; object-fit:contain; object-position:left center; filter:invert(1); opacity:.96; }
.choice-logo-dance { max-height:80px; }
.choice-logo-fitness { max-height:74px; }
.choice-kicker { margin:0 0 12px; font-size:10px; font-weight:900; letter-spacing:.18em; }
.dance-copy { color:#f18bd0; }
.fitness-copy { color:#92cfff; }
.choice-copy h3 { margin:0 0 24px; font-size:clamp(58px,7vw,96px); line-height:.9; letter-spacing:-.07em; }
.choice-copy > p:not(.choice-kicker) { max-width:520px; color:#b6b2bf; font-size:17px; line-height:1.7; }
.choice-points { display:flex; flex-wrap:wrap; gap:10px; margin:28px 0 34px; }
.choice-points span { padding:9px 12px; border-radius:999px; background:rgba(255,255,255,.06); border:1px solid var(--line); color:#d4d1d9; font-size:12px; font-weight:700; }
.choice-actions { display:flex; align-items:center; gap:20px; flex-wrap:wrap; }
.choice-visual { grid-area:visual; min-height:100%; background-size:cover; background-position:center; position:relative; }
.choice-dance .choice-visual { border-left:1px solid var(--line); }
.choice-fitness .choice-visual { border-right:1px solid var(--line); }
.choice-visual::after { content:""; position:absolute; inset:0; pointer-events:none; }
.choice-dance .choice-visual::after { background:linear-gradient(90deg,rgba(9,9,12,.38),transparent 34%); }
.choice-fitness .choice-visual::after { background:linear-gradient(270deg,rgba(9,9,12,.38),transparent 34%); }
/* Gewünschtes neues Motiv: 2026_05_02_Starmoves_Championship_0434 */
.dance-visual { background-image:url('assets/dance-choice.webp'); background-position:50% center; }
.fitness-visual { background-image:url('https://static.wixstatic.com/media/4d7089_02c65d5ac19848f5a18c1d06aeed3ab3~mv2.jpg/v1/fill/w_980%2Ch_454%2Cal_c%2Cq_85%2Cusm_0.66_1.00_0.01%2Cenc_avif%2Cquality_auto/4d7089_02c65d5ac19848f5a18c1d06aeed3ab3~mv2.jpg'); }

/* ANGEBOT — neutraler gemeinsamer Bereich */
.movement-section { padding:120px 0 150px; background:var(--warm); color:#111117; }
.section-head-wide { grid-template-columns:180px 1fr; }
.movement-section .eyebrow { color:#6c6872; }
.service-grid { display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid rgba(0,0,0,.18); border-bottom:1px solid rgba(0,0,0,.18); }
.service-card { min-height:350px; padding:30px 26px; border-right:1px solid rgba(0,0,0,.18); position:relative; }
.service-card:last-child { border-right:0; }
.service-label { display:block; margin-bottom:46px; font-size:10px; font-weight:900; letter-spacing:.18em; color:#77717c; }
.service-dance .service-label { color:#b22a83; }
.service-fitness .service-label { color:#346c9f; }
.service-icon { font-size:28px; display:block; margin-bottom:52px; }
.service-card h3 { margin:0 0 14px; font-size:24px; letter-spacing:-.04em; }
.service-card p { margin:0; color:#5f5b63; font-size:14px; line-height:1.65; }

/* WARUM MOVIN — bewusst ohne weiteres Dance-Foto, damit die Marke ausgeglichen bleibt */
.values-section { position:relative; padding:150px 0; overflow:hidden; }
.values-section::before { content:""; position:absolute; inset:0; background:linear-gradient(90deg,rgba(239,56,182,.035),transparent 36%,transparent 64%,rgba(100,182,255,.04)); pointer-events:none; }
.values-intro { max-width:930px; position:relative; }
.values-intro h2 span { color:#aaa7b3; }
.values-intro > p:last-child { max-width:700px; margin:32px 0 0; color:#b8b4c0; font-size:18px; line-height:1.75; }
.values-grid { display:grid; grid-template-columns:1fr 1fr 1fr; gap:14px; margin-top:64px; position:relative; }
.value-card { min-height:290px; padding:30px; border:1px solid var(--line); border-radius:26px; background:rgba(255,255,255,.025); display:flex; flex-direction:column; }
.value-index { display:block; margin-bottom:auto; font-size:12px; font-weight:900; color:#77737e; }
.value-card strong { margin-top:70px; font-size:34px; letter-spacing:-.05em; }
.value-card p { margin:14px 0 0; color:#aaa7b3; font-size:14px; line-height:1.65; }
.value-dance { box-shadow:inset 0 -2px 0 rgba(239,56,182,.75); }
.value-fitness { box-shadow:inset 0 -2px 0 rgba(100,182,255,.75); }
.value-shared { background:rgba(255,255,255,.045); }
.value-dance strong { color:#f3a0d9; }
.value-fitness strong { color:#9bd3ff; }

.voice-section { padding:0 0 150px; }
.voice-card { border-top:1px solid var(--line); border-bottom:1px solid var(--line); padding:64px 0; }
.voice-meta { display:flex; justify-content:space-between; align-items:center; gap:20px; margin-bottom:34px; }
.voice-label, .voice-area { font-size:10px; font-weight:900; letter-spacing:.18em; }
.voice-label { color:#8d8994; }
.voice-area { color:#8ac8ff; }
blockquote { margin:0; max-width:1000px; font-size:clamp(29px,4vw,56px); line-height:1.1; letter-spacing:-.045em; font-weight:650; }
.voice-card > p { margin:28px 0 0; color:#938f9a; font-size:14px; }

.contact-section { padding:130px 0; background:linear-gradient(135deg,#13131a,#09090c 58%); border-top:1px solid var(--line); }
.contact-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:70px; }
.contact-copy > p:last-child { max-width:520px; margin-top:28px; color:#aaa7b3; font-size:16px; line-height:1.7; }
.contact-card { border:1px solid var(--line); border-radius:28px; padding:36px; display:grid; gap:26px; background:rgba(255,255,255,.025); }
.contact-card > div:not(.contact-buttons) { display:grid; grid-template-columns:140px 1fr; gap:18px; padding-bottom:22px; border-bottom:1px solid var(--line); }
.contact-label { color:#7f7b86; text-transform:uppercase; font-size:10px; font-weight:900; letter-spacing:.18em; }
.contact-card strong, .contact-card a { font-size:18px; }
.contact-buttons { display:flex; gap:12px; flex-wrap:wrap; padding-top:8px; }
.contact-buttons-balanced .button { flex:1 1 190px; }

.site-footer { padding:38px 0 44px; border-top:1px solid var(--line); }
.footer-grid { display:grid; grid-template-columns:1fr 1fr 1fr; align-items:end; }
.footer-brand { display:flex; align-items:center; gap:14px; min-height:64px; }
.footer-logo { width:auto; object-fit:contain; filter:invert(1); opacity:.83; }
.footer-logo-dance { height:58px; }
.footer-logo-fitness { height:51px; }
.footer-logo-divider { width:1px; height:40px; background:var(--line); }
.footer-grid > p { color:#77737f; margin:0; text-align:center; font-size:13px; }
.footer-links { display:flex; justify-content:flex-end; gap:22px; font-size:13px; color:#a7a3ad; }

.reveal { opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease; }
.reveal.revealed { opacity:1; transform:none; }
.reveal-delay { transition-delay:.12s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { transition-duration:.01ms !important; animation-duration:.01ms !important; }
  .reveal { opacity:1; transform:none; }
}

@media (max-width: 980px) {
  .desktop-nav { display:none; }
  .hero-grid { grid-template-columns:1fr; }
  .hero-stage { min-height:580px; }
  .hero h1 { font-size:clamp(64px,13vw,108px); }
  .section-head { grid-template-columns:1fr; gap:16px; }
  .section-head .eyebrow { margin-bottom:6px; }
  .proof-shared, .proof-fitness { justify-content:flex-start; }

  .choice-card,
  .choice-fitness { grid-template-columns:80px 1fr; grid-template-areas:"num copy" "visual visual"; }
  .choice-visual { min-height:390px; border-left:0 !important; border-right:0 !important; border-top:1px solid var(--line); }
  .choice-copy, .choice-dance .choice-copy, .choice-fitness .choice-copy { padding:60px 30px 54px 0; }
  .choice-fitness .choice-copy { padding-left:0; }
  .choice-fitness .choice-visual::after { background:linear-gradient(90deg,rgba(9,9,12,.38),transparent 34%); }

  .service-grid { grid-template-columns:repeat(2,1fr); }
  .service-card:nth-child(2) { border-right:0; }
  .service-card:nth-child(-n+2) { border-bottom:1px solid rgba(0,0,0,.18); }
  .values-grid { grid-template-columns:1fr; }
  .value-card { min-height:230px; }
  .value-card strong { margin-top:48px; }
  .contact-grid { grid-template-columns:1fr; }
}

@media (max-width: 640px) {
  .shell { width:min(calc(100% - 28px),var(--max)); }
  .nav-wrap { height:72px; }
  .site-header .button-small { display:none; }
  .hero { padding-top:118px; }
  .hero-logo-pair { gap:9px; margin-bottom:24px; }
  .logo-tile { height:68px; padding:9px 11px; border-radius:15px; }
  .logo-tile-dance { width:82px; }
  .logo-tile-fitness { width:94px; }
  .hero-lead { font-size:16px; }
  .hero-actions-balanced { display:grid; grid-template-columns:1fr 1fr; width:100%; gap:9px; }
  .hero-actions-balanced .button { min-width:0; padding-inline:12px; font-size:13px; }
  .hero-stage { min-height:500px; grid-template-columns:1fr 1fr; gap:9px; }
  .stage-content { inset:auto 14px 16px; }
  .stage-logo-dance { height:46px; }
  .stage-logo-fitness { height:40px; }
  .stage-kicker { font-size:8px !important; }
  .stage-content h2 { font-size:28px; }
  .stage-copy { font-size:10px; }
  .proof-strip { grid-template-columns:1fr; gap:14px; margin-top:58px; }
  .proof-strip div { padding-bottom:14px; border-bottom:1px solid var(--line); }

  .choice-section, .values-section { padding:100px 0; }
  .movement-section { padding:90px 0 100px; }
  .choice-card, .choice-fitness { display:block; min-height:0; }
  .choice-number { padding:24px 24px 0; }
  .choice-copy, .choice-dance .choice-copy, .choice-fitness .choice-copy { padding:28px 24px 44px; }
  .choice-brand { height:72px; margin-bottom:14px; }
  .choice-logo { max-width:175px; max-height:72px; }
  .choice-copy h3 { font-size:66px; }
  .choice-visual { min-height:300px; }
  .dance-visual { background-position:54% center; }

  .service-grid { grid-template-columns:1fr; }
  .service-card { min-height:280px; border-right:0; border-bottom:1px solid rgba(0,0,0,.18); }
  .service-card:last-child { border-bottom:0; }
  .service-label { margin-bottom:36px; }
  .service-icon { margin-bottom:38px; }
  .values-intro > p:last-child { font-size:16px; }
  .values-grid { margin-top:42px; }
  .value-card { padding:24px; }
  .voice-section { padding-bottom:100px; }
  .voice-card { padding:50px 0; }
  .voice-meta { align-items:flex-start; flex-direction:column; gap:8px; }

  .contact-section { padding:95px 0; }
  .contact-card { padding:26px 22px; }
  .contact-card > div:not(.contact-buttons) { grid-template-columns:1fr; gap:8px; }
  .contact-buttons .button { width:100%; }
  .footer-grid { grid-template-columns:1fr; gap:22px; align-items:start; }
  .footer-brand { min-height:58px; }
  .footer-logo-dance { height:52px; }
  .footer-logo-fitness { height:46px; }
  .footer-grid > p { text-align:left; }
  .footer-links { justify-content:flex-start; }
}
