/* =========================================================
   Connect Dance Studio – Styles
   ========================================================= */

/* Schriften lokal eingebunden (Archivo & Inter, SIL Open Font License) – kein Nachladen von Google */
@font-face { font-family: "Archivo"; font-style: normal; font-weight: 100 900; font-display: swap; src: url("assets/fonts/archivo-latin.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 100 900; font-display: swap; src: url("assets/fonts/inter-latin.woff2") format("woff2"); }
:root {
  --black: #0b0b0b;
  --ink: #161616;
  --grey-900: #1f1f1f;
  --grey-700: #3a3a3a;
  --grey-500: #6f6f6f;
  --grey-300: #d6d6d6;
  --grey-100: #f3f3f1;
  --white: #ffffff;
  --accent: #c6ff3d;      /* Neon-Lime */
  --accent-dark: #a8e016;
  --danger: #e5484d;

  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 10px 40px rgba(0, 0, 0, .08);
  --container: 1160px;
  --header-h: 72px;

  --font-head: "Archivo", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--font-head); line-height: 1.05; margin: 0; letter-spacing: -.02em; }
h2 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 900; text-transform: uppercase; }
p { margin: 0; }
[hidden] { display: none !important; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: .85em 1.4em;
  border-radius: 999px;
  border: 2px solid transparent;
  font: 600 .95rem/1 var(--font-body);
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn--lg { padding: 1.05em 1.7em; font-size: 1rem; }
.btn--block { width: 100%; }
.btn--accent { background: var(--accent); color: var(--black); }
.btn--accent:hover { background: var(--accent-dark); }
.btn--dark { background: var(--black); color: var(--white); }
.btn--dark:hover { background: var(--grey-700); }
.btn--ghost { border-color: rgba(255,255,255,.35); color: var(--white); }
.btn--ghost:hover { border-color: var(--white); }
.btn--outline { border-color: rgba(255,255,255,.3); color: var(--white); }
.btn--outline:hover { background: var(--white); color: var(--black); }
.btn:focus-visible, .chip:focus-visible, a:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

.eyebrow {
  display: inline-block;
  font: 700 .78rem/1 var(--font-body);
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.eyebrow--dark { color: var(--grey-500); }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  height: var(--header-h);
  background: rgba(11, 11, 11, .85);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.header__logo img { height: 26px; width: auto; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a:not(.btn) { color: rgba(255,255,255,.8); text-decoration: none; font-weight: 500; font-size: .95rem; transition: color .2s; }
.nav a:not(.btn):hover { color: var(--white); }
.nav__cta { padding: .7em 1.2em; }

.burger { display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; padding: 10px; position: relative; z-index: 60; }
.burger span { display: block; height: 2px; background: var(--white); margin: 6px 0; border-radius: 2px; transition: transform .25s, opacity .25s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--black);
  color: var(--white);
  padding: calc(var(--header-h) + 80px) 0 0;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: auto -20% -40% auto;
  width: 70vw; height: 70vw; max-width: 900px; max-height: 900px;
  background: radial-gradient(circle, rgba(198,255,61,.22), transparent 60%);
  pointer-events: none;
}
.hero__inner { position: relative; padding-bottom: 80px; }
.hero__title {
  font-size: clamp(2.6rem, 8.5vw, 6.5rem);
  font-weight: 900;
  text-transform: uppercase;
  max-width: 14ch;
}
.hero__title span { color: var(--accent); }
.hero__text { margin-top: 24px; max-width: 52ch; font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,.72); }
.hero__actions { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero__facts { list-style: none; padding: 0; margin: 56px 0 0; display: flex; gap: 40px; flex-wrap: wrap; color: rgba(255,255,255,.6); font-size: .9rem; }
.hero__facts strong { display: block; font-family: var(--font-head); font-size: 1.8rem; color: var(--white); line-height: 1.1; }

.hero__marquee { border-top: 1px solid rgba(255,255,255,.1); background: var(--accent); color: var(--black); overflow: hidden; }
.marquee__track { display: flex; width: max-content; animation: marquee 28s linear infinite; }
.marquee__track span { font: 900 1.1rem/1 var(--font-head); text-transform: uppercase; padding: 18px 28px; white-space: nowrap; }
.marquee__track span::after { content: "✦"; margin-left: 56px; font-size: .8em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: 110px 0; }
.section--dark { background: var(--black); color: var(--white); }
.section--soft { background: var(--grey-100); }
.section__head { max-width: 680px; margin-bottom: 48px; }
.section__lead { margin-top: 16px; color: var(--grey-500); font-size: 1.08rem; }
.section--dark .section__lead { color: rgba(255,255,255,.65); }

/* ---------- Filters ---------- */
.filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.chip {
  border: 1.5px solid var(--grey-300); background: var(--white); color: var(--ink);
  padding: .6em 1.15em; border-radius: 999px; font: 600 .9rem/1 var(--font-body); cursor: pointer;
  transition: all .2s;
}
.chip:hover { border-color: var(--ink); }
.chip.is-active { background: var(--black); border-color: var(--black); color: var(--white); }

/* ---------- Schedule ---------- */
.schedule { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.day { display: flex; flex-direction: column; gap: 10px; }
.day__name {
  font: 800 .85rem/1 var(--font-head); text-transform: uppercase; letter-spacing: .08em;
  padding: 14px 16px; border-radius: var(--radius-sm); background: var(--black); color: var(--white);
  display: flex; justify-content: space-between; align-items: center;
}
.day__name small { font: 500 .75rem/1 var(--font-body); color: rgba(255,255,255,.5); letter-spacing: 0; text-transform: none; }
.day.is-today .day__name { background: var(--accent); color: var(--black); }
.day.is-today .day__name small { color: rgba(0,0,0,.6); }

.class {
  border: 1.5px solid var(--grey-300); border-radius: var(--radius-sm);
  padding: 16px; background: var(--white);
  display: flex; flex-direction: column; gap: 6px;
  transition: border-color .2s, transform .2s, box-shadow .2s, opacity .25s;
}
.class:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow); }
.class__time { font: 600 .82rem/1 var(--font-body); color: var(--grey-500); }
.class__title { font: 800 1.08rem/1.15 var(--font-head); text-transform: uppercase; }
.class__tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 2px; }
.tag { font-size: .72rem; font-weight: 600; padding: .3em .7em; border-radius: 999px; background: var(--grey-100); color: var(--grey-700); }
.tag--kids { background: #fff1c2; color: #6b5200; }
.tag--teens { background: #dff0ff; color: #0b4a7a; }
.tag--adults { background: #f0e6ff; color: #4d2a85; }
.class__book {
  margin-top: 8px; align-self: flex-start;
  background: none; border: 0; padding: 0; cursor: pointer;
  font: 600 .85rem/1 var(--font-body); color: var(--ink);
  text-decoration: underline; text-decoration-color: var(--accent); text-decoration-thickness: 3px; text-underline-offset: 4px;
}
.class__book:hover { text-decoration-color: var(--ink); }
.class.is-hidden { display: none; }
.day.is-empty .day__empty { display: block; }
.day__empty { display: none; font-size: .85rem; color: var(--grey-500); padding: 12px 4px; }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.price-card {
  position: relative;
  background: var(--grey-900);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 32px 26px 26px;
  display: flex; flex-direction: column; gap: 18px;
}
.price-card--featured { background: var(--white); color: var(--black); border-color: var(--white); }
.price-card--featured .price-card__label { color: var(--grey-500); }
.price-card--featured .price-card__rows li { border-color: var(--grey-300); }
.price-card__label { font: 700 .8rem/1 var(--font-body); letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.price-card__rows { list-style: none; padding: 0; margin: 0; flex: 1; }
.price-card__rows li { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: .92rem; }
.price-card__rows strong { font: 900 1.6rem/1 var(--font-head); white-space: nowrap; }
.price-card__rows small, .price-card__big small { font: 500 .75rem var(--font-body); opacity: .6; margin-left: 4px; }
.price-card__big { font: 900 2.8rem/1 var(--font-head); }
.price-card__big small { display: block; margin: 8px 0 0; font-size: .85rem; }
.price-card__note { color: rgba(255,255,255,.65); font-size: .92rem; flex: 1; }
.price-card .btn { width: 100%; }
.price-card--featured .btn--accent { background: var(--black); color: var(--white); }
.badge {
  position: absolute; top: -12px; right: 20px;
  background: var(--accent); color: var(--black);
  font: 800 .72rem/1 var(--font-body); text-transform: uppercase; letter-spacing: .1em;
  padding: 7px 12px; border-radius: 999px;
}

/* ---------- Forms ---------- */
.form-layout { display: grid; grid-template-columns: 1fr 1.15fr; gap: 64px; align-items: start; }
.form-layout__intro { position: sticky; top: calc(var(--header-h) + 32px); }
.checklist { list-style: none; padding: 0; margin: 32px 0 0; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: center; font-weight: 500; }
.checklist li::before {
  content: "✓"; flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--accent); color: var(--black); font-weight: 800; font-size: .8rem;
  display: grid; place-items: center;
}

.card { background: var(--white); border: 1px solid var(--grey-300); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.form { display: flex; flex-direction: column; gap: 18px; }
.form--wide { max-width: 820px; }
fieldset { border: 0; margin: 0 0 12px; padding: 0 0 28px; border-bottom: 1px solid var(--grey-300); display: flex; flex-direction: column; gap: 18px; min-width: 0; }
legend { font: 800 1.15rem/1.2 var(--font-head); text-transform: uppercase; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; padding: 0; }
.step { width: 30px; height: 30px; border-radius: 50%; background: var(--black); color: var(--accent); display: grid; place-items: center; font-size: .9rem; flex: none; }

.field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.field label, .label { font-weight: 600; font-size: .9rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.grid-2--plz { grid-template-columns: 140px 1fr; }

input, select, textarea {
  width: 100%;
  font: 400 16px/1.4 var(--font-body); /* 16px verhindert Auto-Zoom auf iOS */
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--grey-300);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none; appearance: none;
  min-height: 50px;
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%23161616' stroke-width='2'%3E%3Cpath d='m1 1 5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px;
}
textarea { resize: vertical; min-height: 90px; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--black); box-shadow: 0 0 0 4px rgba(198,255,61,.55); }
.is-invalid, .is-invalid:focus { border-color: var(--danger); box-shadow: 0 0 0 4px rgba(229,72,77,.15); }
.error-msg { color: var(--danger); font-size: .82rem; font-weight: 500; }
.hint { color: var(--grey-500); font-size: .84rem; }

.check { display: flex; gap: 12px; align-items: flex-start; font-size: .88rem; color: var(--grey-700); cursor: pointer; line-height: 1.5; }
.check input {
  flex: none; width: 22px; height: 22px; min-height: 0; padding: 0; margin: 1px 0 0;
  border-radius: 6px; cursor: pointer; position: relative;
}
.check input:checked { background: var(--black); border-color: var(--black); }
.check input:checked::after { content: ""; position: absolute; left: 6px; top: 2px; width: 6px; height: 11px; border: solid var(--accent); border-width: 0 2.5px 2.5px 0; transform: rotate(45deg); }
.check a { color: var(--ink); font-weight: 600; }
.check.is-invalid input { border-color: var(--danger); }

.course-picks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 4px; }
.course-pick { position: relative; }
.course-pick input { position: absolute; opacity: 0; pointer-events: none; }
.course-pick label {
  display: flex; flex-direction: column; gap: 3px; height: 100%;
  border: 1.5px solid var(--grey-300); border-radius: var(--radius-sm); padding: 12px 14px 12px 44px;
  cursor: pointer; transition: all .15s; position: relative; font-weight: 600; font-size: .92rem;
}
.course-pick label small { font-weight: 400; color: var(--grey-500); font-size: .8rem; }
.course-pick label::before {
  content: ""; position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 20px; height: 20px; border: 1.5px solid var(--grey-300); border-radius: 6px; background: var(--white);
}
.course-pick input:checked + label { border-color: var(--black); background: var(--grey-100); }
.course-pick input:checked + label::before { background: var(--black); border-color: var(--black); box-shadow: inset 0 0 0 4px var(--black), inset 0 0 0 10px var(--accent); }
.course-pick input:focus-visible + label { outline: 3px solid var(--accent); outline-offset: 2px; }
.course-pick input:disabled + label { opacity: .4; cursor: not-allowed; }
.course-picks.is-invalid label { border-color: var(--danger); }
.course-picks.is-flat { opacity: .5; pointer-events: none; }

/* Rechtstexte im Vertrag – sichtbar, aber zurückhaltend */
.legal-text { background: var(--grey-100); border-radius: var(--radius-sm); padding: 14px 16px; font-size: .78rem; line-height: 1.55; color: var(--grey-500); }
.legal-text__title { font-weight: 600; font-size: .8rem; color: var(--grey-700); margin-bottom: 6px; }
.agb summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; margin: 0; }
.agb summary::-webkit-details-marker { display: none; }
.agb__toggle { font-weight: 500; text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }
.agb__toggle::after { content: " ▾"; text-decoration: none; display: inline-block; margin-left: 2px; transition: transform .2s; }
.agb[open] .agb__toggle::after { transform: rotate(180deg); }
.agb__body { max-height: 320px; overflow-y: auto; margin-top: 10px; padding-right: 6px; -webkit-overflow-scrolling: touch; }
.agb__body ol { margin: 0; padding-left: 1.3em; display: grid; gap: 8px; }
.agb__body ol[type="a"] { margin-top: 6px; gap: 4px; }
.agb__body strong { color: var(--grey-700); font-weight: 600; }
.agb__address { margin-top: 12px; padding-top: 10px; border-top: 1px solid var(--grey-300); }

.notice { background: #fff8d6; border-left: 4px solid #f2c200; border-radius: 6px; padding: 12px 14px; font-size: .88rem; color: #5c4700; }
.minor-address { display: flex; flex-direction: column; gap: 18px; }

.bank { margin: 0; border: 1.5px solid var(--grey-300); border-radius: var(--radius-sm); overflow: hidden; text-align: left; }
.bank > div { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 12px 16px; border-bottom: 1px solid var(--grey-300); }
.bank > div:last-child { border-bottom: 0; }
.bank dt { font-size: .82rem; color: var(--grey-500); flex: none; }
.bank dd { margin: 0; font-weight: 600; text-align: right; overflow-wrap: anywhere; }
.bank dd[data-copy] { cursor: copy; position: relative; }
.bank dd[data-copy]::after { content: "⧉"; margin-left: 8px; color: var(--grey-500); font-weight: 400; }
.bank dd.is-copied::after { content: "Kopiert ✓"; color: var(--ink); font-size: .78rem; }
.bank__ref { background: var(--accent); }
.bank__ref dt { color: var(--black); font-weight: 600; }
@media (max-width: 480px) {
  .bank > div { flex-direction: column; align-items: flex-start; gap: 2px; }
  .bank dd { text-align: left; }
}

.summary { background: var(--black); color: var(--white); border-radius: var(--radius-sm); padding: 18px 20px; font-size: .92rem; display: flex; justify-content: space-between; gap: 16px; align-items: center; flex-wrap: wrap; }
.summary strong { font: 900 1.4rem/1 var(--font-head); color: var(--accent); }

.form__status { font-size: .92rem; font-weight: 500; text-align: center; }
.form__status.is-error { color: var(--danger); }
.form__success { text-align: center; padding: 24px 8px; }
.form__success .success-icon { width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%; background: var(--accent); display: grid; place-items: center; font-size: 1.8rem; font-weight: 900; }
.form__success h3 { font-size: 1.6rem; text-transform: uppercase; margin-bottom: 10px; }
.form__success p { color: var(--grey-500); }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: center; }
.contact__list { list-style: none; padding: 0; margin: 32px 0 0; display: grid; gap: 22px; }
.contact__list li { display: flex; gap: 16px; align-items: center; font-size: 1.1rem; }
.contact__list a { text-decoration: none; }
.contact__list a:hover { color: var(--accent); }
.contact__icon { flex: none; width: 48px; height: 48px; border-radius: 50%; background: var(--grey-900); display: grid; place-items: center; }
.contact__icon svg { width: 22px; height: 22px; fill: none; stroke: var(--accent); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact__actions { margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap; }
.map { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; background: var(--grey-900); }
.map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) contrast(1.1); }

/* ---------- Footer ---------- */
.footer { background: var(--black); color: rgba(255,255,255,.5); border-top: 1px solid rgba(255,255,255,.08); padding: 40px 0; font-size: .85rem; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer__logo { height: 20px; width: auto; opacity: .9; }
.footer__links { display: flex; gap: 20px; }
.footer__links a { text-decoration: none; }
.footer__links a:hover { color: var(--white); }

/* ---------- Legal dialogs ---------- */
.legal { max-width: 560px; width: calc(100% - 32px); border: 0; border-radius: var(--radius); padding: 36px 28px 28px; }
.legal::backdrop { background: rgba(0,0,0,.6); backdrop-filter: blur(4px); }
.legal h2 { font-size: 1.6rem; margin-bottom: 18px; }
.legal p { margin-bottom: 12px; }
.legal__close { position: absolute; top: 12px; right: 12px; width: 40px; height: 40px; border: 0; border-radius: 50%; background: var(--grey-100); font-size: 1.4rem; cursor: pointer; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta { display: none; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee__track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1080px) {
  .schedule { grid-template-columns: repeat(3, 1fr); }
  .pricing { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --header-h: 64px; }
  .burger { display: block; }
  .nav {
    /* Header hat backdrop-filter → feste Höhe nötig, sonst wird das Menü auf Header-Höhe begrenzt */
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh; height: 100dvh; z-index: 55;
    background: var(--black);
    flex-direction: column; justify-content: center; gap: 8px;
    padding: 80px 24px 40px;
    opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s;
  }
  .nav.is-open { opacity: 1; visibility: visible; }
  .nav a:not(.btn) { font: 900 2rem/1.3 var(--font-head); text-transform: uppercase; color: var(--white); padding: 6px 0; }
  .nav__cta { margin-top: 24px; font-size: 1rem; padding: 1em 1.6em; }
  body.menu-open { overflow: hidden; }

  .form-layout, .contact { grid-template-columns: 1fr; gap: 40px; }
  .form-layout__intro { position: static; }
  .section { padding: 80px 0; }
}

@media (max-width: 720px) {
  .container { padding: 0 16px; }
  .hero { padding-top: calc(var(--header-h) + 48px); }
  .hero__inner { padding-bottom: 56px; }
  .hero__actions .btn { flex: 1 1 100%; }
  .hero__facts { gap: 28px; margin-top: 44px; }
  .hero__facts strong { font-size: 1.5rem; }

  .section { padding: 64px 0; }
  .section__head { margin-bottom: 32px; }

  /* Filter horizontal scrollbar */
  .filters { flex-wrap: nowrap; overflow-x: auto; margin: 0 -16px 24px; padding: 0 16px 4px; scrollbar-width: none; }
  .filters::-webkit-scrollbar { display: none; }
  .chip { flex: none; }

  .schedule { grid-template-columns: 1fr; gap: 24px; }
  .day__name { position: sticky; top: calc(var(--header-h) + 8px); z-index: 2; }
  .day.is-empty { display: none; }

  .pricing { grid-template-columns: 1fr; }
  .card { padding: 22px 18px; border-radius: 14px; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-2--plz { grid-template-columns: 110px 1fr; }
  .course-picks { grid-template-columns: 1fr; }

  .contact__list li { font-size: 1rem; }
  .contact__actions .btn { flex: 1; }
  .footer__inner { flex-direction: column; text-align: center; }

  .sticky-cta {
    display: flex; position: fixed; left: 16px; right: 16px; bottom: calc(16px + env(safe-area-inset-bottom)); z-index: 40;
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
    transform: translateY(150%); transition: transform .3s ease;
  }
  .sticky-cta.is-visible { transform: none; }
  .footer { padding-bottom: 100px; }
}

/* Hinweis zur Vertragslaufzeit */
.term-info { background: var(--grey-100); border-left: 3px solid var(--black); border-radius: 6px; padding: 14px 16px; font-size: .84rem; color: var(--grey-700); line-height: 1.55; }
.term-info__title { font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.term-info__dates { background: var(--white); border-radius: 6px; padding: 8px 10px; margin-bottom: 8px; }
.term-info ul { margin: 0; padding-left: 1.1em; display: grid; gap: 4px; }
.term-info strong { color: var(--ink); font-weight: 600; }

/* =========================================================
   Unterseite: Kündigung
   ========================================================= */
.header__back { padding: .65em 1.1em; font-size: .88rem; }
.page-hero { background: var(--black); color: var(--white); padding: calc(var(--header-h) + 56px) 0 56px; }
.page-hero h1 { font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 900; text-transform: uppercase; }
.page-hero__text { margin-top: 16px; max-width: 56ch; color: rgba(255,255,255,.7); }
.section--tight { padding: 64px 0 96px; }
.aside-note { margin-top: 18px; font-size: .9rem; color: var(--grey-500); }
.aside-note a { color: var(--ink); font-weight: 600; }

.radio-cards { display: grid; gap: 10px; }
.radio-card { position: relative; display: block; cursor: pointer; }
.radio-card input { position: absolute; opacity: 0; pointer-events: none; }
.radio-card span {
  display: flex; flex-direction: column; gap: 2px;
  border: 1.5px solid var(--grey-300); border-radius: var(--radius-sm);
  padding: 13px 14px 13px 46px; position: relative; transition: all .15s; font-size: .92rem;
}
.radio-card small { color: var(--grey-500); font-size: .8rem; }
.radio-card span::before {
  content: ""; position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 20px; height: 20px; border-radius: 50%; border: 1.5px solid var(--grey-300); background: var(--white);
}
.radio-card input:checked + span { border-color: var(--black); background: var(--grey-100); }
.radio-card input:checked + span::before { border: 6px solid var(--black); }
.radio-card input:focus-visible + span { outline: 3px solid var(--accent); outline-offset: 2px; }
.k-ausserordentlich { display: flex; flex-direction: column; gap: 18px; }
.notice a { color: inherit; font-weight: 600; }
.btn--outline-dark { border-color: var(--black); color: var(--black); background: transparent; }
.btn--outline-dark:hover { background: var(--black); color: var(--white); }

@media (max-width: 720px) {
  .page-hero { padding: calc(var(--header-h) + 36px) 0 40px; }
  .section--tight { padding: 40px 0 64px; }
  .header__back { font-size: .8rem; padding: .6em .9em; }
}

@media print {
  .header, .footer, .page-hero, .form-layout__intro, .form__success .btn { display: none !important; }
  .section { padding: 0; background: none; }
  .card { box-shadow: none; border: 0; }
}
.section--soft .term-info { background: var(--white); }

/* Links zur Kündigung */
.member-link { margin-top: 14px; font-size: .92rem; color: var(--grey-500); }
.member-link a, .contact__cancel a { font-weight: 600; color: var(--ink); text-decoration: underline; text-decoration-color: var(--accent); text-decoration-thickness: 3px; text-underline-offset: 4px; }
.contact__cancel { margin-top: 24px; font-size: .9rem; color: rgba(255,255,255,.55); }
.contact__cancel a { color: var(--white); }
@media (max-width: 1080px) and (min-width: 901px) { .nav { gap: 18px; } .nav a:not(.btn) { font-size: .88rem; } }

/* =========================================================
   Unterseite: Mitgliederbereich
   ========================================================= */
.link-btn { background: none; border: 0; padding: 0; font: inherit; color: var(--ink); text-decoration: underline; cursor: pointer; }
.login { max-width: 460px; margin: 0 auto; }
.login form { display: flex; flex-direction: column; gap: 16px; }
.login__title { font-size: 1.5rem; }
.login.is-loading { opacity: .5; pointer-events: none; }
.code-input { font: 700 1.6rem/1 var(--font-body) !important; letter-spacing: .5em; text-align: center; }
.login__links { text-align: center; font-size: .88rem; color: var(--grey-500); }
.login__foot { margin-top: 18px; font-size: .82rem; color: var(--grey-500); text-align: center; }
.login__foot a { color: var(--ink); font-weight: 600; }

.dash-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; color: var(--grey-700); }
.dash-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.dash-note { margin-top: 14px; }

.member { margin-bottom: 20px; }
.member__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; flex-wrap: wrap; padding-bottom: 18px; border-bottom: 1px solid var(--grey-300); margin-bottom: 20px; }
.member__head h2 { font-size: clamp(1.5rem, 4vw, 2rem); }
.member__pills { display: flex; gap: 8px; flex-wrap: wrap; }
.member__grid { display: grid; grid-template-columns: 1.2fr 1fr .9fr; gap: 28px; }
.member h3 { font: 800 .8rem/1 var(--font-body); letter-spacing: .12em; text-transform: uppercase; color: var(--grey-500); margin-bottom: 12px; }

.kv { margin: 0 0 12px; }
.kv__row { display: flex; justify-content: space-between; gap: 14px; padding: 9px 0; border-bottom: 1px solid var(--grey-100); font-size: .92rem; }
.kv dt { color: var(--grey-500); flex: none; }
.kv dd { margin: 0; text-align: right; font-weight: 600; overflow-wrap: anywhere; }
.kv [data-copy] { cursor: copy; }
.kv [data-copy]::after { content: " ⧉"; color: var(--grey-500); font-weight: 400; }
.kv [data-copy].is-copied::after { content: " Kopiert ✓"; font-size: .78rem; color: var(--ink); }

.pill { font-size: .75rem; font-weight: 700; padding: 6px 11px; border-radius: 999px; white-space: nowrap; }
.pill--ok { background: #d9f7a6; color: #245c00; }
.pill--warn { background: #ffe2b8; color: #7a4100; }
.pill--bad { background: #ffd0d0; color: #8a1116; }

.notice-soft { background: var(--grey-100); border-radius: var(--radius-sm); padding: 12px 14px; font-size: .88rem; color: var(--grey-700); }
.notice-soft small { display: block; color: var(--grey-500); margin-top: 2px; }
.notice-soft--warn { background: #fff4e0; color: #7a4100; }

.visits { list-style: none; padding: 0; margin: 0; }
.visits li { display: flex; flex-direction: column; padding: 8px 0; border-bottom: 1px solid var(--grey-100); font-size: .88rem; font-weight: 500; }
.visits span { font-size: .78rem; color: var(--grey-500); font-weight: 400; }

@media (max-width: 900px) {
  .member__grid { grid-template-columns: 1fr; gap: 22px; }
}
@media (max-width: 720px) {
  .dash-actions .btn, .dash-head .btn { flex: 1; }
}

/* Spam-Falle: für Menschen unsichtbar */
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }

/* =========================================================
   Unterseite: Kurse
   ========================================================= */
.more-link { display: inline-block; margin-top: 14px; font-weight: 600; color: var(--ink); text-decoration: underline; text-decoration-color: var(--accent); text-decoration-thickness: 3px; text-underline-offset: 4px; }
.class__title a { color: inherit; text-decoration: none; }
.class__title a:hover { text-decoration: underline; text-decoration-color: var(--accent); text-decoration-thickness: 3px; }

.course-jump { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.course-jump .chip { text-decoration: none; background: transparent; color: var(--white); border-color: rgba(255,255,255,.3); }
.course-jump .chip:hover { background: var(--accent); border-color: var(--accent); color: var(--black); }

.course-group { padding-top: 16px; margin-bottom: 64px; scroll-margin-top: calc(var(--header-h) + 16px); }
.course-group:last-child { margin-bottom: 0; }
.course-group__head { display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap; margin-bottom: 24px; padding-bottom: 14px; border-bottom: 2px solid var(--black); }
.course-group__head p { color: var(--grey-500); }
.course-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.course-card {
  display: flex; flex-direction: column; gap: 14px;
  border: 1.5px solid var(--grey-300); border-radius: var(--radius); padding: 24px;
  scroll-margin-top: calc(var(--header-h) + 16px); transition: border-color .2s, box-shadow .2s;
}
.course-card:target { border-color: var(--black); box-shadow: 0 0 0 4px var(--accent); }
.course-card__head { display: flex; flex-direction: column; gap: 8px; }
.course-card h3 { font: 900 1.35rem/1.1 var(--font-head); text-transform: uppercase; }
.course-card__desc { color: var(--grey-700); flex: 1; }
.course-card__times { list-style: none; padding: 12px 14px; margin: 0; background: var(--grey-100); border-radius: var(--radius-sm); font-size: .92rem; display: grid; gap: 4px; }
.course-card__times strong { display: inline-block; min-width: 96px; }
.course-card .btn { align-self: flex-start; }

.cta-band { padding: 72px 0; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-band__actions { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 720px) {
  .course-list { grid-template-columns: 1fr; }
  .course-card { padding: 20px 18px; }
  .course-card .btn, .cta-band__actions .btn { width: 100%; }
  .cta-band__actions { width: 100%; }
}

/* =========================================================
   Karte (erst nach Klick) & Rechtstexte
   ========================================================= */
.map__placeholder { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; text-align: center; padding: 24px; color: var(--white);
  background: radial-gradient(circle at 70% 20%, rgba(198,255,61,.14), transparent 55%), var(--grey-900); }
.map__placeholder svg { width: 40px; height: 40px; fill: none; stroke: var(--accent); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.map__note { font-size: .78rem; color: rgba(255,255,255,.55); max-width: 36ch; }
.map__note a, .map__link { color: rgba(255,255,255,.8); }
.map__link { font-size: .85rem; }

.page-hero--small { padding-bottom: 40px; }
.legal-page { max-width: 780px; }
.legal-page h2 { font-size: 1.15rem; text-transform: none; font-weight: 800; margin: 32px 0 10px; letter-spacing: 0; }
.legal-page h2:first-child { margin-top: 0; }
.legal-page p { margin-bottom: 12px; color: var(--grey-700); }
.legal-page a { color: var(--ink); font-weight: 600; }
