/* CW Sports Dresden - Landingpage */
:root {
  --ink: #111311;
  --ink-2: #2a2d2a;
  --soft: #6b706b;
  --line: #e4e6e1;
  --paper: #f5f6f2;
  --white: #ffffff;
  --lime: #e8ff47;
  --lime-dark: #b8cc1c;
  --moss: #1f3a2a;
  --radius: 18px;
  --display: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --body: "Barlow", -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); color: var(--ink); background: var(--paper); line-height: 1.55; font-size: 17px; -webkit-font-smoothing: antialiased; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--display); line-height: 1.02; letter-spacing: -.01em; text-wrap: balance; }
h1 { font-size: clamp(52px, 8vw, 104px); font-weight: 800; text-transform: uppercase; }
h2 { font-size: clamp(36px, 5vw, 58px); font-weight: 800; text-transform: uppercase; margin: 8px 0 28px; max-width: 18ch; }
h3 { font-size: 24px; font-weight: 700; margin-bottom: 8px; }
p { max-width: 62ch; }
.eyebrow { font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: .14em; font-size: 14px; color: var(--soft); }
.section-dark .eyebrow { color: var(--lime); }
.muted { color: var(--soft); }
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.container.narrow { max-width: 820px; }
.section { padding: 96px 0; }
.section-soft { background: var(--white); }
.section-dark { background: var(--ink); color: #eef0ea; }
.section-dark p { color: #c9cec4; }
.section-dark h2 { color: #fff; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: var(--lime); color: var(--ink); font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; font-size: 18px; padding: 15px 28px; border-radius: 999px; text-decoration: none; border: 2px solid var(--lime); cursor: pointer; transition: transform .12s ease, background .12s ease; }
.btn:hover { background: var(--lime-dark); border-color: var(--lime-dark); transform: translateY(-1px); }
.btn:focus-visible { outline: 3px solid var(--ink); outline-offset: 2px; }
.btn-ghost { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--lime); border-color: var(--ink); }
.btn-small { padding: 10px 18px; font-size: 15px; }
.btn-block { width: 100%; }
.btn:disabled { opacity: .6; cursor: wait; }

/* Header */
.top { position: sticky; top: 0; z-index: 20; display: flex; align-items: center; justify-content: space-between; padding: 14px 28px; background: rgba(245,246,242,.9); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 10px; background: var(--ink); color: var(--lime); font-family: var(--display); font-weight: 800; font-size: 19px; letter-spacing: .02em; }
.logo-mark.small { width: 30px; height: 30px; font-size: 14px; vertical-align: middle; }
.logo-text { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: 22px; letter-spacing: .02em; }
.logo-text em { font-style: normal; color: var(--soft); font-weight: 600; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { text-decoration: none; font-weight: 600; font-size: 15px; }
.nav a:not(.btn):hover { text-decoration: underline; text-underline-offset: 5px; }
.burger { display: none; background: none; border: 0; width: 40px; height: 40px; cursor: pointer; flex-direction: column; justify-content: center; gap: 5px; }
.burger span { display: block; height: 3px; background: var(--ink); border-radius: 2px; }

/* Hero */
.hero { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; max-width: 1180px; margin: 0 auto; padding: 96px 28px 72px; }
.hero .lead { font-size: 21px; margin: 24px 0 32px; color: var(--ink-2); }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-facts { list-style: none; display: grid; grid-template-columns: repeat(4, auto); gap: 28px; margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--line); }
.hero-facts b { display: block; font-family: var(--display); font-size: 34px; font-weight: 800; line-height: 1; }
.hero-facts span { font-size: 13px; color: var(--soft); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.hero-art { position: relative; aspect-ratio: 1; }
.ring { position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--ink); opacity: .12; }
.ring.r2 { inset: 12%; opacity: .2; }
.ring.r3 { inset: 24%; opacity: .35; border-width: 3px; }
.plate { position: absolute; inset: 34%; border-radius: 50%; background: var(--ink); display: grid; place-items: center; box-shadow: 0 30px 60px rgba(17,19,17,.25); }
.plate span { font-family: var(--display); font-weight: 800; font-size: clamp(48px, 7vw, 92px); color: var(--lime); letter-spacing: .02em; }
@media (prefers-reduced-motion: no-preference) {
  .ring { animation: spin 40s linear infinite; }
  .ring.r2 { animation-duration: 28s; animation-direction: reverse; }
  .ring.r3 { animation-duration: 18s; }
  .ring::before { content: ""; position: absolute; top: -6px; left: 50%; width: 10px; height: 10px; border-radius: 50%; background: var(--ink); }
  @keyframes spin { to { transform: rotate(360deg); } }
}

/* Laufband-Strip */
.strip { background: var(--ink); color: var(--lime); overflow: hidden; }
.strip-inner { display: flex; gap: 18px; padding: 14px 28px; font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: 16px; white-space: nowrap; overflow-x: auto; scrollbar-width: none; }
.strip-inner::-webkit-scrollbar { display: none; }
.strip-inner i { font-style: normal; opacity: .5; }

/* Cards */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; }
.card .ico { font-size: 30px; margin-bottom: 14px; }
.card p { color: var(--ink-2); font-size: 16px; }

/* Split */
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: start; }
.checks { list-style: none; margin-top: 22px; display: grid; gap: 10px; }
.checks li { padding-left: 30px; position: relative; color: #dfe3db; }
.checks li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--lime); font-weight: 800; }
.hours { background: #1c1f1c; border: 1px solid #2f332f; border-radius: var(--radius); padding: 30px; }
.hours h3 { color: var(--lime); font-size: 16px; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 12px; }
.hours h3 + p { color: #eef0ea; }
.hours dl { display: grid; grid-template-columns: 1fr auto; gap: 8px 20px; margin-bottom: 26px; }
.hours dt { color: #c9cec4; }
.hours dd { font-variant-numeric: tabular-nums; font-weight: 600; color: #fff; text-align: right; }

/* Preis */
.price-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.price { background: var(--ink); color: #eef0ea; border-radius: 24px; padding: 36px; box-shadow: 0 30px 70px rgba(17,19,17,.22); }
.price-head { border-bottom: 1px solid #2f332f; padding-bottom: 22px; margin-bottom: 22px; }
.price-tag { display: inline-block; background: var(--lime); color: var(--ink); font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: 13px; padding: 5px 12px; border-radius: 999px; }
.price-num { font-family: var(--display); font-weight: 800; font-size: 110px; line-height: 1; margin-top: 14px; color: #fff; }
.price-num .cur { font-size: 44px; vertical-align: top; margin-right: 6px; color: var(--lime); }
.price-num .dec { font-size: 44px; }
.price-sub { color: #c9cec4; font-size: 17px; margin-top: 2px; }
.price-list { list-style: none; display: grid; gap: 10px; margin-bottom: 26px; }
.price-list li { padding-left: 30px; position: relative; }
.price-list li::before { content: "✓"; position: absolute; left: 0; color: var(--lime); font-weight: 800; }
.price-note { font-size: 13.5px; color: #a9afa6; margin-top: 16px; max-width: none; }
.price-side { padding: 10px 6px; }
.price-side h3 { margin-top: 18px; }
.price-side h3:first-child { margin-top: 6px; }
.price-side p { color: var(--ink-2); }

/* FAQ */
details { border-top: 1px solid var(--line); padding: 18px 0; }
details:last-of-type { border-bottom: 1px solid var(--line); }
summary { cursor: pointer; font-family: var(--display); font-weight: 700; font-size: 22px; list-style: none; display: flex; justify-content: space-between; align-items: center; }
summary::after { content: "+"; font-size: 28px; color: var(--soft); }
details[open] summary::after { content: "–"; }
details p { margin-top: 10px; color: var(--ink-2); }

/* Formular */
.form { background: #1c1f1c; border: 1px solid #2f332f; border-radius: var(--radius); padding: 30px; display: grid; gap: 14px; }
.form label { display: grid; gap: 6px; font-size: 14px; font-weight: 600; color: #dfe3db; }
.form label span { color: #8e948b; font-weight: 400; }
.form input, .form select, .form textarea { font: inherit; font-size: 16px; padding: 12px 14px; border-radius: 10px; border: 1px solid #3a3f3a; background: #111311; color: #fff; width: 100%; }
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--lime); box-shadow: 0 0 0 3px rgba(232,255,71,.18); }
.form .check { display: flex; gap: 10px; align-items: flex-start; font-weight: 400; font-size: 13.5px; color: #c9cec4; }
.form .check input { width: 18px; height: 18px; margin-top: 2px; }
.form .check a { color: var(--lime); }
.hp { position: absolute; left: -9999px; }
.form-note { font-size: 14px; min-height: 1em; max-width: none; }
.form-note.ok { color: var(--lime); }
.form-note.bad { color: #ff8a7a; }

/* Footer */
.foot { background: var(--ink); color: #c9cec4; border-top: 1px solid #2f332f; padding: 30px 0; font-size: 14px; }
.foot-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.foot b { color: #fff; }
.foot nav { display: flex; gap: 18px; }
.foot a { color: #dfe3db; text-decoration: none; }
.foot a:hover { color: var(--lime); }

/* Unterseiten */
.legal { max-width: 820px; margin: 0 auto; padding: 72px 28px 96px; }
.legal h1 { font-size: clamp(40px, 6vw, 64px); margin-bottom: 24px; }
.legal h2 { font-size: 26px; margin: 34px 0 10px; text-transform: none; max-width: none; }
.legal p, .legal li { color: var(--ink-2); margin-bottom: 10px; }
.legal ul { padding-left: 22px; }

/* Responsive */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; padding-top: 64px; }
  .hero-art { max-width: 320px; margin: 0 auto; }
  .hero-facts { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .split, .price-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .section { padding: 64px 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .nav { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--paper); flex-direction: column; align-items: stretch; padding: 16px 28px 22px; gap: 14px; border-bottom: 1px solid var(--line); }
  body.nav-open .nav { display: flex; }
  .burger { display: flex; }
  .price-num { font-size: 84px; }
  .hero-facts { gap: 18px; }
}
