/* Across the Limits – LIGHT rebuild. Lean by design (Jeanine: "viiel zu kompliziert").
 * White canvas, calm rhythm (z-training clarity), sage→olive accent, one card-stepper funnel. */

*,*::before,*::after { box-sizing: border-box; }
/* Root bg = footer/hero ink so iOS elastic overscroll below the footer (and above
 * a dark hero) shows the dark color, not a white band. body keeps the light canvas. */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: var(--bg-ink); overscroll-behavior-y: none; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior:auto; } }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--font-body); font-size: var(--fs-body); line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3 { font-family: var(--font-display); font-weight: var(--fw-display); line-height: var(--lh-snug); letter-spacing: var(--tracking-display); margin: 0; }
::selection { background: var(--sage-soft); color: var(--ink); }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--space-section) 0; }
.section--tight { padding: var(--space-xl) 0; }
.section--paper { background: var(--bg-paper); }

.eyebrow {
  font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: var(--tracking-label);
  text-transform: uppercase; color: var(--sage-deep); display: flex; align-items: center; gap: .6rem; margin: 0 0 var(--space-sm);
}
.eyebrow .num { color: var(--ink-3); }
.lede { font-size: var(--fs-body-lg); color: var(--ink-2); max-width: 56ch; }
.shead { max-width: 60ch; margin-bottom: var(--space-lg); }
.shead.center { margin-inline: auto; text-align: center; }
.shead h2, .section h2 { font-size: var(--fs-h2); }

/* ---- Reveal ---- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity var(--dur-reveal) var(--ease-out), transform var(--dur-reveal) var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(20px); transition: opacity var(--dur-reveal) var(--ease-out), transform var(--dur-reveal) var(--ease-out); }
.reveal-stagger.is-visible > * { opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(2){ transition-delay: 80ms; }
.reveal-stagger.is-visible > *:nth-child(3){ transition-delay: 160ms; }
.reveal-stagger.is-visible > *:nth-child(4){ transition-delay: 240ms; }

/* ---- Buttons ---- */
.btn {
  --btn-bg: var(--sage); --btn-fg: var(--on-accent);
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-body); font-weight: var(--fw-semibold); font-size: .98rem;
  padding: .85rem 1.5rem; border: 1px solid transparent; border-radius: var(--radius-pill);
  cursor: pointer; background: var(--btn-bg); color: var(--btn-fg);
  transition: transform var(--dur-hover) var(--ease-out), background var(--dur-hover) var(--ease-out), box-shadow var(--dur-hover) var(--ease-out);
}
.btn--primary { box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--sage-deep); transform: translateY(-2px); box-shadow: var(--shadow-card); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--lg { padding: 1.05rem 1.9rem; font-size: 1.05rem; }
.btn:active { transform: translateY(0) scale(.99); }

/* ===================== NAV ===================== */
.nav { position: sticky; top: 0; z-index: 900; background: rgba(255,255,255,.86); backdrop-filter: saturate(160%) blur(10px); border-bottom: 1px solid transparent; transition: border-color var(--dur-nav), box-shadow var(--dur-nav); }
.nav.is-scrolled { border-color: var(--line); box-shadow: 0 1px 0 rgba(20,22,15,.02); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav.is-scrolled .nav__inner { height: 62px; transition: height var(--dur-nav); }
.nav__logo img { height: 30px; }
.nav__links { display: flex; gap: 1.6rem; }
.nav__links a { font-size: .92rem; font-weight: var(--fw-medium); color: var(--ink-2); letter-spacing: .01em; transition: color var(--dur-hover); }
.nav__links a:hover { color: var(--ink); }
.nav__right { display: flex; align-items: center; gap: 1rem; }
.burger { display: none; width: 40px; height: 40px; background: none; border: 0; cursor: pointer; flex-direction: column; justify-content: center; gap: 5px; }
.burger span { display: block; height: 2px; width: 22px; background: var(--ink); margin: 0 auto; transition: transform var(--dur-nav), opacity var(--dur-nav); }
.burger[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { position: fixed; inset: 72px 0 auto 0; background: var(--bg); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; gap: .25rem; padding: 1rem var(--gutter) 1.5rem; transform: translateY(-12px); opacity: 0; pointer-events: none; transition: transform var(--dur-nav), opacity var(--dur-nav); z-index: 899; }
.mobile-menu.is-open { transform: none; opacity: 1; pointer-events: auto; }
.mobile-menu a { padding: .8rem .25rem; font-weight: var(--fw-medium); color: var(--ink); border-bottom: 1px solid var(--line); }
.mobile-menu a.btn { margin-top: .75rem; border-bottom: 0; }

/* ===================== HERO ===================== */
.hero { position: relative; min-height: clamp(560px, 86vh, 880px); display: flex; align-items: flex-end; overflow: hidden; background: var(--bg-ink); }
.hero__media, .hero__media video, .hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__media img { animation: kenburns 18s ease-out infinite alternate; }
@media (prefers-reduced-motion: reduce){ .hero__media img{ animation: none; } }
@keyframes kenburns { from { transform: scale(1.02); } to { transform: scale(1.12); } }
.hero__scrim { position: absolute; inset: 0; background: var(--scrim-hero); }
.hero__inner { position: relative; padding-bottom: clamp(3rem, 7vh, 6rem); padding-top: 6rem; color: var(--on-ink); max-width: 940px; }
.hero .eyebrow { color: var(--sage-soft); }
.hero .eyebrow .num { color: rgba(244,245,240,.6); }
.hero h1 { font-size: var(--fs-hero); line-height: var(--lh-tight); color: #fff; max-width: 16ch; }
.hero h1 .accent { color: var(--sage-soft); }
.hero__sub { font-size: var(--fs-body-lg); color: rgba(244,245,240,.9); max-width: 48ch; margin: var(--space-md) 0 var(--space-lg); }
.hero__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
/* Feedback #27: Telefon als klar klickbarer Button (Outline auf dunklem Hero). */
.hero__tel { font-family: var(--font-mono); font-size: .95rem; color: #f4f5f0; background: rgba(244,245,240,.06); border: 1.5px solid rgba(244,245,240,.55); backdrop-filter: blur(2px); }
.hero__tel:hover { border-color: #fff; background: rgba(244,245,240,.14); transform: translateY(-2px); }
.hero__trust { display: flex; align-items: center; gap: .6rem; margin-top: var(--space-lg); font-size: .95rem; color: rgba(244,245,240,.92); }
.hero__trust b { color: #fff; }
.hero__stars { color: #ffd34d; letter-spacing: .1em; }
/* A19: on narrow screens the left-aligned eyebrow + sub sit over the bright part
   of the photo – add a left-anchored horizontal scrim so they keep a dark bed,
   and lift the trust line clear of the fixed WhatsApp FAB. */
@media (max-width: 620px) {
  .hero__scrim { background: var(--scrim-hero), linear-gradient(90deg, rgba(20,22,15,0.58) 0%, rgba(20,22,15,0.30) 44%, rgba(20,22,15,0) 82%); }
  .hero__trust { padding-bottom: 4rem; }
}

/* ===================== FUNNEL ===================== */
.funnel { background: var(--bg-paper); scroll-margin-top: 84px; }
.funnel__wrap { max-width: 860px; margin: 0 auto; }
.fn { display: flex; flex-direction: column; gap: clamp(1.6rem, 4vw, 2.6rem); }

/* progress stepper */
.fn__steps { list-style: none; display: flex; align-items: center; justify-content: center; gap: clamp(.4rem, 1.5vw, 1rem); margin: 0; padding: 0; flex-wrap: nowrap; }
.fn__step { display: flex; align-items: center; gap: .55rem; font-size: .84rem; color: var(--ink-3); }
.fn__step:not(:last-child)::after { content: ""; width: clamp(12px, 3vw, 34px); height: 2px; background: var(--line-strong); margin-left: clamp(.4rem, 1.5vw, 1rem); }
.fn__dot { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--line-strong); font-family: var(--font-mono); font-size: .85rem; color: var(--ink-3); background: var(--bg); transition: border-color var(--dur-hover), background-color var(--dur-hover), color var(--dur-hover); }
.fn__step.is-active .fn__dot { border-color: var(--sage); background: var(--sage); color: #fff; }
.fn__step.is-done .fn__dot { border-color: var(--sage); background: var(--sage-wash); color: var(--sage-deep); }
.fn__step.is-active .fn__step-lab { color: var(--ink); font-weight: var(--fw-semibold); }
.fn__step-lab { white-space: nowrap; }
@media (max-width: 600px) { .fn__step-lab { display: none; } }

/* card + enter motion */
.fn__card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.8rem, 4.5vw, 3.25rem); box-shadow: var(--shadow-card); }
.fn__card--intro, .fn__card--done { text-align: center; }
.fn__in { animation: fn-in .45s var(--ease-out) both; }
@keyframes fn-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .fn__in { animation: none; } }

.fn__eyebrow { display: inline-block; font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--sage-deep); margin: 0 0 1rem; }
.fn__title { font-size: clamp(1.6rem, 3.4vw, 2.4rem); line-height: 1.1; margin-bottom: .7rem; }
.fn__sub { color: var(--ink-2); font-size: 1.08rem; margin: 0 0 1.8rem; max-width: 48ch; }
.fn__card--intro .fn__sub, .fn__card--done .fn__sub { margin-inline: auto; }
.fn__cta { display: inline-flex; }
.fn__meta { font-family: var(--font-body); font-size: .82rem; color: var(--ink-3); margin: 1.1rem 0 0; display: flex; align-items: center; justify-content: center; gap: .4rem; }
.fn .btn i, .fn__meta i { font-size: 1.15em; }

.fn__q { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: .5rem; }
.fn__help { color: var(--ink-3); font-size: .98rem; margin: 0 0 1.8rem; }

/* option cards with icons */
.fn__opts { display: grid; grid-template-columns: repeat(auto-fit, minmax(166px, 1fr)); gap: 1rem; }
.fn__opts--4 { grid-template-columns: repeat(2, 1fr); }
.fn__opts--3 { grid-template-columns: repeat(3, 1fr); }
.fn__opt { position: relative; overflow: hidden; text-align: left; display: flex; flex-direction: column; gap: .9rem; padding: clamp(1.2rem, 2.5vw, 1.6rem) clamp(1.2rem, 2.5vw, 1.6rem) clamp(1.2rem, 2.5vw, 1.6rem) calc(clamp(1.2rem, 2.5vw, 1.6rem) + 4px); border: 1.5px solid var(--line-strong); border-radius: var(--radius-md); background: var(--bg); cursor: pointer; transition: border-color var(--dur-hover), transform var(--dur-hover), box-shadow var(--dur-hover); }
.fn__opt::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: transparent; transition: background var(--dur-hover); }
.fn__opt:hover { border-color: var(--sage); transform: translateY(-3px); box-shadow: var(--shadow-card); }
.fn__opt:hover::before { background: var(--sage-soft); }
.fn__opt.is-sel { border-color: var(--sage); background: var(--sage-wash); box-shadow: 0 0 0 1.5px var(--sage) inset; }
.fn__opt.is-sel::before { background: var(--sage); }
.fn__opt-ic { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 14px; background: #E3EACF; color: var(--sage-deep); font-size: 1.7rem; transition: background var(--dur-hover), color var(--dur-hover), transform var(--dur-hover); }
.fn__opt:hover .fn__opt-ic, .fn__opt.is-sel .fn__opt-ic { background: var(--sage); color: #fff; }
.fn__opt.is-sel .fn__opt-ic { transform: scale(1.06); }
.fn__opt-txt { display: flex; flex-direction: column; gap: .3rem; }
.fn__opt-label { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 1.12rem; line-height: 1.15; }
.fn__opt-note { font-size: .9rem; color: var(--ink-2); line-height: 1.4; }
.fn__opt-check { position: absolute; top: 1rem; right: 1rem; display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--sage); color: #fff; font-size: .85rem; opacity: 0; transform: scale(.5); transition: opacity var(--dur-hover), transform var(--dur-hover); }
.fn__opt.is-sel .fn__opt-check { opacity: 1; transform: scale(1); }

/* recommendation reassurance line */
.fn__reassure { display: flex; align-items: flex-start; gap: .7rem; margin: 0 0 1.6rem; padding: 1rem 1.2rem; background: var(--sage-wash); border-radius: var(--radius-md); color: var(--ink); font-size: 1.04rem; line-height: 1.5; }
.fn__reassure i { color: var(--sage-deep); font-size: 1.3rem; flex: none; margin-top: .05rem; }
/* trainer / coach reassurance on recommendation */
.fn__coach { display: flex; align-items: center; gap: .9rem; margin: 0 0 1.6rem; padding: .8rem 1rem; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--bg); }
.fn__coach-img { width: 72px; height: 72px; border-radius: 50%; flex: none; border: 2px solid var(--sage); box-shadow: var(--shadow-sm); background-repeat: no-repeat; background-size: 215%; background-position: 50% 11%; }
.fn__coach-img--stack { margin-left: -26px; background-size: cover; background-position: 50% 20%; }
.fn__coach-line { margin: 0; font-size: .95rem; color: var(--ink-2); line-height: 1.4; }
.fn__coach-line strong { color: var(--ink); }

/* back / rows */
.fn__back { margin-top: 1.6rem; background: none; border: 0; color: var(--ink-3); font-family: var(--font-body); font-size: .92rem; cursor: pointer; padding: .4rem 0; display: inline-flex; align-items: center; gap: .4rem; }
.fn__back:hover { color: var(--ink); }
.fn__row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.9rem; flex-wrap: wrap; }
.fn__row .fn__back { margin-top: 0; }

/* recommendation */
.fn__rec { display: grid; grid-template-columns: 200px 1fr; gap: clamp(1.2rem, 3vw, 2rem); align-items: center; margin: .4rem 0 1.8rem; }
.fn__rec-media { position: relative; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 1/1; }
.fn__rec-media img { width: 100%; height: 100%; object-fit: cover; }
.fn__rec-badge { position: absolute; left: .7rem; bottom: .7rem; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.92); color: var(--sage-deep); font-size: 1.45rem; box-shadow: var(--shadow-sm); }
.fn__rec-name { font-size: clamp(1.6rem, 3.4vw, 2.2rem); margin-bottom: .6rem; }
.fn__rec-line { color: var(--ink-2); margin: 0 0 1.1rem; font-size: 1.05rem; }
.fn__why { display: flex; flex-wrap: wrap; gap: .6rem; }
.fn__why-chip { display: inline-flex; align-items: center; gap: .4rem; font-size: .86rem; font-weight: var(--fw-semibold); color: var(--sage-deep); background: var(--sage-wash); border-radius: var(--radius-pill); padding: .4rem .9rem; }
.fn__free-label { font-size: .92rem; color: var(--ink-3); margin: 1.6rem 0 .8rem; }
.fn__chips { display: flex; flex-wrap: wrap; gap: .6rem; }
.fn__chip { display: inline-flex; align-items: center; gap: .45rem; padding: .6rem 1.1rem; border-radius: var(--radius-pill); border: 1.5px solid var(--line-strong); background: var(--bg); cursor: pointer; font-weight: var(--fw-medium); font-size: .92rem; transition: border-color var(--dur-hover), background var(--dur-hover); }
.fn__chip:hover { border-color: var(--sage); }
.fn__chip.is-rec { border-color: var(--sage); background: var(--sage-wash); color: var(--sage-deep); font-weight: var(--fw-semibold); }

/* schedule - FULL WEEK at a glance */
.fn__week { display: grid; grid-template-columns: repeat(6, 1fr); gap: .6rem; align-items: stretch; }
.fn__wcol { display: flex; flex-direction: column; gap: .5rem; height: 100%; background: var(--bg-paper); border: 1px solid var(--line); border-radius: var(--radius-md); padding: .7rem .6rem; }
.fn__wcol.is-off { opacity: .5; }
.fn__wday { text-align: center; font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 1rem; color: var(--ink); line-height: 1.05; padding-bottom: .55rem; border-bottom: 1px solid var(--line); }
.fn__wday-long { display: none; }
.fn__wday-date { display: block; font-family: var(--font-body); font-weight: var(--fw-bold); font-size: .76rem; color: var(--ink-2); margin-top: .28rem; }
.fn__wslots { display: flex; flex-direction: column; gap: .45rem; flex: 1; }
.fn__wslot { padding: .6rem .3rem; border: 1.5px solid var(--line-strong); border-radius: 8px; background: var(--bg); cursor: pointer; font-family: var(--font-body); font-weight: var(--fw-semibold); font-variant-numeric: tabular-nums; font-size: .92rem; color: var(--ink); transition: border-color var(--dur-hover), background-color var(--dur-hover), color var(--dur-hover), transform var(--dur-hover), box-shadow var(--dur-hover); }
.fn__wslot:hover { border-color: var(--sage); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.fn__wslot.is-sel { border-color: var(--sage-deep); background: var(--sage); color: #fff; box-shadow: 0 0 0 2px var(--sage-deep), var(--shadow-sm); transform: translateY(-1px); }
.fn__wslot--ghost { border-style: dashed; border-color: var(--line); background: transparent; pointer-events: none; min-height: 38px; }
.fn__wzu { text-align: center; font-family: var(--font-body); font-size: .76rem; color: var(--ink-3); padding: .5rem 0; }
.fn__sched-note { display: flex; align-items: center; gap: .55rem; margin: 1rem 0 0; font-size: .88rem; color: var(--ink-2); }
.fn__sched-note i { color: var(--sage-deep); font-size: 1.15rem; flex: none; }
.fn__pick { display: flex; align-items: center; gap: .5rem; margin: 1rem 0 0; padding: .9rem 1.1rem; border-radius: var(--radius-md); background: var(--bg-paper); color: var(--ink-3); font-size: .95rem; border: 1px dashed var(--line-strong); }
.fn__pick.is-empty { display: none; }
.fn__sched-phone { display: inline-flex; align-items: center; gap: .45rem; margin: 1rem 0 0; font-size: .9rem; font-weight: var(--fw-semibold); color: var(--sage-deep); }
.fn__sched-phone:hover { color: var(--ink); }
.fn__sched-phone i { font-size: 1.05em; }
.fn__pick.is-set { color: var(--sage-deep); background: var(--sage-wash); border-style: solid; border-color: var(--sage); font-weight: var(--fw-semibold); }

/* recap + form */
.fn__recap { display: flex; flex-wrap: wrap; gap: .6rem; margin: 0 0 1.6rem; }
.fn__recap-item { display: inline-flex; align-items: center; gap: .45rem; font-size: .9rem; font-weight: var(--fw-semibold); color: var(--ink); background: var(--bg-paper); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: .5rem 1rem; }
.fn__recap-item i, .fn__chip i, .fn__why-chip i { color: var(--sage-deep); font-size: 1.05em; }
.fn__form { display: flex; flex-direction: column; gap: 1.2rem; }
.fn__field { display: flex; flex-direction: column; gap: .45rem; }
.fn__field label { font-size: .86rem; font-weight: var(--fw-semibold); color: var(--ink); }
.fn__field input, .fn__field textarea { width: 100%; padding: .9rem 1rem; border: 1.5px solid var(--line-strong); border-radius: var(--radius-md); background: var(--bg); font: inherit; font-size: 1rem; color: var(--ink); transition: border-color var(--dur-hover), box-shadow var(--dur-hover); }
.fn__field textarea { resize: vertical; line-height: 1.5; font-size: .95rem; }
.fn__field input::placeholder { color: var(--ink-3); }
.fn__field input:focus, .fn__field textarea:focus { outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px var(--sage-wash); }
.fn__field input.is-invalid { border-color: #c0392b; box-shadow: 0 0 0 3px rgba(192,57,43,.12); }
.fn__err { color: #b3382c; font-size: .82rem; margin: 0; }

/* done */
.fn__done-ic { font-size: 4rem; color: var(--sage); line-height: 1; margin-bottom: .6rem; animation: fn-pop .5s var(--ease-out) both; }
@keyframes fn-pop { 0% { transform: scale(.4); opacity: 0; } 60% { transform: scale(1.08); } 100% { transform: scale(1); opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .fn__done-ic { animation: none; } }
.fn__done-card { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; margin: 1.4rem 0 1.8rem; }
.fn__done-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem; }
.fn__result-foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.9rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.fn__card--done .fn__result-foot { justify-content: center; }
.fn__contact { display: inline-flex; align-items: center; gap: .45rem; font-weight: var(--fw-semibold); color: var(--sage-deep); }
.fn__contact:hover { color: var(--ink); }

@media (max-width: 620px) {
  .fn__opts, .fn__opts--3, .fn__opts--4 { grid-template-columns: 1fr; }
  .fn__opt { flex-direction: row; align-items: center; }
  .fn__opt-ic { flex: none; }
  .fn__rec { grid-template-columns: 1fr; text-align: left; }
  .fn__rec-media { max-width: 180px; }
  /* weekly schedule becomes readable day-rows */
  .fn__week { grid-template-columns: 1fr; gap: .5rem; }
  .fn__wcol { flex-direction: row; align-items: center; gap: .8rem; }
  .fn__wday { border-bottom: 0; border-right: 1px solid var(--line); padding: 0 .8rem 0 0; min-width: 58px; text-align: left; display: flex; flex-direction: column; gap: .15rem; }
  .fn__wday-long { display: block; font-size: .68rem; font-weight: var(--fw-medium); color: var(--ink-3); font-family: var(--font-body); }
  .fn__wslots { flex-direction: row; flex-wrap: wrap; flex: 1; }
  .fn__wslot { min-width: 66px; }
  .fn__wslot--ghost { display: none; }
  .fn__wcol.is-off .fn__wslots { justify-content: flex-start; }
}

/* ===================== ANGEBOT (4 Wege) ===================== */
.offers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.offer { position: relative; border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; background: var(--bg-card); display: flex; flex-direction: column; transition: transform var(--dur-hover), box-shadow var(--dur-hover); }
.offer:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.offer__media { aspect-ratio: 4/3; overflow: hidden; }
.offer__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-out); }
.offer:hover .offer__media img { transform: scale(1.05); }
.offer__body { padding: 1.2rem 1.2rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.offer__body h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.offer__body p { font-size: .92rem; color: var(--ink-2); margin: 0 0 1rem; }
.offer__link { margin-top: auto; font-weight: var(--fw-semibold); font-size: .9rem; color: var(--sage-deep); }
.offer__link:hover { color: var(--ink); }

/* ===================== TEAM ===================== */
.team { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.trainer { display: grid; grid-template-columns: 130px 1fr; gap: 1.3rem; align-items: center; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 1.1rem; background: var(--bg-card); }
.trainer__media { border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 3/4; }
.trainer__media img { width: 100%; height: 100%; object-fit: cover; }
.trainer__name { font-family: var(--font-display); font-weight: var(--fw-display); font-size: 1.3rem; }
.trainer__role { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--sage-deep); margin: .2rem 0 .6rem; }
.trainer__spec { font-size: .9rem; color: var(--ink-2); margin: 0; }

/* ===================== WORKSHOPS STRIP ===================== */
.wstrip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.wlevel { border: 1px solid var(--line); border-radius: var(--radius-md); padding: 1.3rem; background: var(--bg-card); display: flex; flex-direction: column; }
.wlevel__media { margin: -1.3rem -1.3rem 1rem; border-radius: var(--radius-md) var(--radius-md) 0 0; overflow: hidden; aspect-ratio: 16 / 9; }
.wlevel__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wlevel__foot { display: flex; align-items: center; justify-content: space-between; gap: .8rem; margin-top: auto; }
.wlevel__more { font: inherit; font-size: .85rem; font-weight: var(--fw-semibold); color: var(--sage-deep); background: none; border: 1.5px solid var(--line-strong); border-radius: 999px; padding: .4rem .95rem; cursor: pointer; transition: border-color var(--dur-hover), background var(--dur-hover); }
.wlevel__more:hover { border-color: var(--sage-deep); background: var(--sage-wash); }
/* Runde 2: «i» in der Ecke des Fotos öffnet das Info-Popup. */
.wlevel__media { position: relative; }
.wlevel__info { position: absolute; top: .6rem; right: .6rem; width: 32px; height: 32px; border-radius: 50%; border: 0; background: rgba(255,255,255,.92); color: var(--sage-deep); font-family: var(--font-mono); font-weight: 700; font-size: .95rem; cursor: pointer; box-shadow: var(--shadow-sm); transition: transform var(--dur-hover), background var(--dur-hover); }
.wlevel__info:hover { transform: scale(1.12); background: #fff; }
.wlevel__tag { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--sage-deep); }
.wlevel h3 { font-size: 1.1rem; margin: .5rem 0 .4rem; }
.wlevel__meta { font-size: .82rem; color: var(--ink-3); margin: 0 0 .6rem; }
.wlevel__price { font-family: var(--font-mono); font-weight: 700; color: var(--ink); }

/* ===================== STATS / TRUST ===================== */
.trust { text-align: center; }
.trust__rating { font-family: var(--font-display); font-weight: var(--fw-display); font-size: var(--fs-stat); line-height: 1; color: var(--ink); }
.trust__stars { color: #f5b301; letter-spacing: .12em; font-size: 1.6rem; margin: .4rem 0; }
.trust__line { font-size: var(--fs-body-lg); font-weight: var(--fw-semibold); margin: .3rem 0 .4rem; }
.trust__sub { color: var(--ink-2); max-width: 52ch; margin: 0 auto var(--space-lg); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; max-width: 820px; margin: 0 auto; }
.stat { text-align: center; padding: 1rem .5rem; }
.stat__num { font-family: var(--font-display); font-weight: var(--fw-display); font-size: clamp(2rem, 4vw, 3rem); color: var(--ink); }
.stat__label { font-size: .82rem; color: var(--ink-3); letter-spacing: .02em; }
.badges { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-top: var(--space-lg); }
.badge { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-2); border: 1px solid var(--line-strong); border-radius: var(--radius-pill); padding: .5rem 1rem; }

/* ===================== PREISE (compact) ===================== */
.price-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.pcard { border: 1px solid var(--line); border-radius: var(--radius-md); padding: 1.5rem 1.3rem; background: var(--bg-card); display: flex; flex-direction: column; transition: transform var(--dur-hover), box-shadow var(--dur-hover); }
.pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.pcard--feature { border-color: var(--sage); box-shadow: 0 0 0 1px var(--sage) inset; }
.pcard__name { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 1.05rem; }
.pcard__price { font-family: var(--font-display); font-weight: var(--fw-display); font-size: 1.9rem; margin: .5rem 0 .2rem; }
.pcard__price .cur { font-family: var(--font-mono); font-size: .8rem; color: var(--ink-3); margin-right: .25rem; vertical-align: middle; }
.pcard__meta { font-size: .85rem; color: var(--ink-2); margin: 0 0 1rem; }
.pcard__link { margin-top: auto; font-weight: var(--fw-semibold); font-size: .9rem; color: var(--sage-deep); }
.price-note { font-size: .85rem; color: var(--ink-3); margin-top: var(--space-md); }

/* ===================== FAQ ===================== */
.faq { max-width: 760px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 1.05rem; color: var(--ink); padding: 1.15rem 2rem 1.15rem 0; position: relative; display: flex; justify-content: space-between; gap: 1rem; }
.faq__icon { position: relative; width: 16px; height: 16px; flex: none; margin-top: .25rem; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--sage-deep); transition: transform var(--dur-hover); }
.faq__icon::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq__icon::after { left: 7px; top: 0; width: 2px; height: 16px; }
.faq__q[aria-expanded="true"] .faq__icon::after { transform: scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease-out); }
.faq__a-inner { padding: 0 0 1.2rem; color: var(--ink-2); max-width: 64ch; }

/* ===================== KONTAKT / LOCATION ===================== */
.loc { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.loc dl { display: grid; grid-template-columns: auto; gap: .2rem 1rem; margin: var(--space-md) 0 0; }
.loc dt { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin-top: 1rem; }
.loc dd { margin: 0; color: var(--ink-2); }
.loc dd a { color: var(--sage-deep); }
.loc__hours { display: grid; grid-template-columns: auto 1fr; gap: .25rem 1rem; font-size: .95rem; }
.loc__hours span:nth-child(odd){ color: var(--ink); font-weight: var(--fw-semibold); }
.loc__map { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4/3; }
.loc__map iframe { width: 100%; height: 100%; border: 0; }

/* ===================== CTA BAND ===================== */
.cta-band { position: relative; overflow: hidden; background: var(--bg-ink); color: var(--on-ink); text-align: center; }
.cta-band__media { position: absolute; inset: 0; }
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; opacity: .35; }
.cta-band__inner { position: relative; max-width: 700px; margin: 0 auto; }
.cta-band h2 { color: #fff; font-size: var(--fs-h2); margin-bottom: var(--space-sm); }
.cta-band p { color: rgba(244,245,240,.88); margin: 0 auto var(--space-lg); max-width: 52ch; }
.cta-band__row { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.cta-band .eyebrow { justify-content: center; color: var(--sage-soft); }

/* ===================== FOOTER ===================== */
.footer { background: var(--bg-ink); color: rgba(244,245,240,.78); padding: var(--space-2xl) 0 var(--space-lg); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; }
.footer__brand img { height: 30px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer__brand p { font-size: .92rem; max-width: 38ch; }
.footer__col h4 { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(244,245,240,.6); margin: 0 0 .9rem; }
.footer__col a, .footer__col p { display: block; color: rgba(244,245,240,.82); font-size: .92rem; margin-bottom: .45rem; }
.footer__col a:hover { color: #fff; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; margin-top: var(--space-xl); padding-top: var(--space-lg); border-top: 1px solid rgba(244,245,240,.12); font-size: .85rem; color: rgba(244,245,240,.6); }
.footer__bottom a { color: rgba(244,245,240,.75); text-decoration: underline; text-underline-offset: 2px; }
.footer__bottom a:hover { color: #fff; }
.footer__tagline { font-family: var(--font-display); font-weight: var(--fw-display); color: var(--sage-soft); letter-spacing: .02em; }
/* Colophon: dezenter Gazzini-Studio-Credit + dofollow-Backlink (SEO). */
/* Studio signature – copper-knot credit badge, powered by /assets/gazzini-credit.js.
 * That script injects the badge's own base styles; these rules only bind it to
 * this site's footer palette and kill the underline .footer__bottom a applies. */
.footer__made { flex-basis: 100%; margin: .35rem 0 0; display: flex; }
.footer__bottom .gz-credit { color: rgba(244,245,240,.7); font-family: var(--font-mono); text-decoration: none; }
.footer__bottom .gz-credit:hover { color: #fff; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 920px) {
  .nav__links { display: none; }
  .burger { display: flex; }
  .offers { grid-template-columns: repeat(2, 1fr); }
  .price-cards { grid-template-columns: repeat(2, 1fr); }
  .team { grid-template-columns: 1fr; }
  .wstrip { grid-template-columns: 1fr; }
  .loc { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .fn__opts { grid-template-columns: 1fr; }
  .offers { grid-template-columns: 1fr; }
  .price-cards { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .fn__rec { grid-template-columns: 1fr; text-align: left; }
  .fn__rec-media { max-width: 140px; }
  .hero__cta { gap: .75rem; }
  .footer__grid { grid-template-columns: 1fr; }
}

/* ===== SportsNow live classes (v10) ===== */
.fn__loading { display: flex; align-items: center; justify-content: center; gap: .5rem; padding: 2.5rem 0; color: var(--ink-3); font-size: .95rem; }
.fn__loading i { font-size: 1.3rem; animation: fn-spin 1s linear infinite; }
@keyframes fn-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce){ .fn__loading i { animation: none; } }
.fn__wslot--class { display: flex; flex-direction: column; align-items: flex-start; gap: .1rem; padding: .55rem .55rem .6rem; text-align: left; line-height: 1.2; min-width: 0; overflow: hidden; }
.fn__cl-time { font-family: var(--font-body); font-weight: var(--fw-bold); font-variant-numeric: tabular-nums; font-size: .92rem; color: var(--ink); }
.fn__wslot--class.is-sel .fn__cl-time, .fn__wslot--class.is-sel .fn__cl-name, .fn__wslot--class.is-sel .fn__cl-coach { color: #fff; }
/* UI-note #2: long single-word class names (Strongwo:man, Kraftkörper, Superwoman - KRAFTKELLER) must wrap inside the card, never overflow into the next column. */
.fn__cl-name { font-size: .82rem; color: var(--ink-2); white-space: normal; overflow-wrap: anywhere; word-break: break-word; max-width: 100%; }
.fn__cl-coach { font-size: .72rem; color: var(--sage-deep); font-weight: var(--fw-semibold); overflow-wrap: anywhere; max-width: 100%; }
.btn.is-disabled { opacity: .45; pointer-events: none; filter: grayscale(.3); }

/* ===== In-page SportsNow booking modal (v10) ===== */
.fn__modal { position: fixed; inset: 0; z-index: 100001; display: flex; align-items: center; justify-content: center; padding: clamp(.5rem, 3vw, 2rem); background: rgba(20,22,15,.55); backdrop-filter: blur(3px); opacity: 0; transition: opacity .25s var(--ease-out); }
.fn__modal.is-open { opacity: 1; }
.fn__modal-box { width: 100%; max-width: 760px; height: min(88vh, 900px); background: var(--bg); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-pop); transform: translateY(12px) scale(.99); transition: transform .25s var(--ease-out); }
.fn__modal.is-open .fn__modal-box { transform: none; }
.fn__modal-head { display: flex; align-items: center; gap: .6rem; padding: .85rem 1rem .85rem 1.2rem; border-bottom: 1px solid var(--line); background: var(--bg-paper); }
.fn__modal-title { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 1.02rem; color: var(--ink); display: inline-flex; align-items: center; gap: .5rem; flex: 1; min-width: 0; }
.fn__modal-title i { color: var(--sage-deep); }
.fn__modal-ext, .fn__modal-close { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; border: 0; background: transparent; color: var(--ink-2); cursor: pointer; font-size: 1.15rem; text-decoration: none; transition: background var(--dur-hover), color var(--dur-hover); }
.fn__modal-ext:hover, .fn__modal-close:hover { background: var(--line); color: var(--ink); }
.fn__modal-body { position: relative; flex: 1; background: #fff; }
.fn__modal-frame { width: 100%; height: 100%; border: 0; display: block; }
.fn__modal-load { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; gap: .5rem; color: var(--ink-3); font-size: .95rem; background: var(--bg); }
.fn__modal-load i { font-size: 1.3rem; animation: fn-spin 1s linear infinite; }
@media (prefers-reduced-motion: reduce){ .fn__modal, .fn__modal-box { transition: none; } .fn__modal-load i { animation: none; } }

/* Workshop "Mehr Infos" popup (Feedback #17/#18/#19) – Inhalt statt iframe. */
.fn__modal-box--info { height: auto; max-height: 88vh; max-width: 640px; }
.fn__modal-body--info { overflow-y: auto; background: var(--bg); }
.winfo__img { width: 100%; aspect-ratio: 16 / 7; object-fit: cover; display: block; }
.winfo__pad { padding: 1.4rem 1.5rem 1.6rem; }
.winfo__title { font-family: var(--font-display); font-size: 1.35rem; margin: 0 0 .5rem; }
.winfo__meta { display: flex; align-items: center; gap: .45rem; font-size: .85rem; color: var(--ink-3); margin: 0 0 .9rem; }
.winfo__meta i { color: var(--sage-deep); }
.winfo__desc { font-size: .97rem; line-height: 1.6; color: var(--ink-2); margin: 0 0 1.1rem; }
.winfo__label { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--sage-deep); margin: 0 0 .5rem; }
.winfo__list { list-style: none; margin: 0 0 1.1rem; padding: 0; display: grid; gap: .4rem; }
.winfo__list li { display: flex; gap: .5rem; align-items: flex-start; font-size: .92rem; color: var(--ink-2); line-height: 1.45; }
.winfo__list li i { color: var(--sage-deep); flex: none; margin-top: .15rem; }
.winfo__price { font-family: var(--font-mono); font-weight: 700; font-size: .95rem; color: var(--ink); margin: 0 0 1.2rem; padding-top: .8rem; border-top: 1px dashed var(--line); }
.winfo__cta { width: 100%; justify-content: center; }

/* Blog-Galerie (Runde 2) – Karten wie "4 Wege", horizontal blätterbar. */
.blograil { display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: .6rem; scrollbar-width: thin; }
.bpost { flex: 0 0 288px; scroll-snap-align: start; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--bg-card); overflow: hidden; text-decoration: none; color: inherit; transition: transform var(--dur-hover), box-shadow var(--dur-hover), border-color var(--dur-hover); }
.bpost:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); border-color: var(--sage); }
.bpost__media { aspect-ratio: 16 / 10; overflow: hidden; }
.bpost__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s var(--ease-out); }
.bpost:hover .bpost__media img { transform: scale(1.04); }
.bpost__kicker { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--sage-deep); padding: .9rem 1.1rem 0; }
.bpost__title { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 1.05rem; line-height: 1.3; padding: .3rem 1.1rem .4rem; }
.bpost__link { font-size: .85rem; font-weight: var(--fw-semibold); color: var(--sage-deep); padding: 0 1.1rem 1rem; margin-top: auto; }

/* Gruppenkursleiter:innen (Feedback #15) – dash-gepflegte Kachel-Reihe. */
.kleiter { margin-top: 2.4rem; }
.kleiter__title { font-family: var(--font-display); font-size: 1.15rem; margin: 0 0 .3rem; }
.kleiter__sub { font-size: .9rem; color: var(--ink-3); margin: 0 0 1.2rem; }
.kleiter__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 1rem; }
.kleiter__card { border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--bg-card); padding: 1.1rem 1rem; text-align: center; }
.kleiter__photo { display: block; width: 84px; height: 84px; margin: 0 auto .7rem; border-radius: 50%; border: 2px solid var(--sage); background-size: cover; background-position: 50% 25%; background-repeat: no-repeat; box-shadow: var(--shadow-sm); }
.kleiter__photo--mono { display: grid; place-items: center; background: var(--sage-wash); color: var(--sage-deep); font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 1.6rem; }
.kleiter__name { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 1rem; }
.kleiter__spec { font-size: .82rem; color: var(--ink-3); line-height: 1.45; margin: .3rem 0 0; }

/* Absage-Regel auf der Bestätigungsseite (Runde 2). */
.fn__policy { display: flex; align-items: flex-start; justify-content: center; gap: .45rem; font-size: .85rem; color: var(--ink-3); margin: .9rem 0 0; }
.fn__policy i { color: var(--sage-deep); margin-top: .1rem; }

/* ===== Account-free request path + saved contact (v10) ===== */
.fn__book-actions { display: flex; flex-direction: column; align-items: flex-end; gap: .55rem; }
.fn__book-direct { display: inline-flex; align-items: center; gap: .4rem; background: none; border: 0; color: var(--ink-3); font-family: var(--font-body); font-size: .88rem; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; padding: .2rem 0; }
.fn__book-direct:hover { color: var(--sage-deep); }
.fn__book-direct.is-disabled { opacity: .4; pointer-events: none; text-decoration: none; }
.fn__book-direct i { font-size: 1.05em; }
.fn__saved-hint { display: flex; align-items: center; gap: .45rem; margin: 0 0 1.1rem; font-size: .88rem; color: var(--sage-deep); background: var(--sage-wash); border-radius: var(--radius-md); padding: .6rem .9rem; }
.fn__saved-hint i { font-size: 1.1em; }
@media (max-width: 620px) { .fn__book-actions { align-items: stretch; } .fn__book-direct { justify-content: center; } }

/* ===== Reviews carousel (real Google reviews) ===== */
.reviews__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: var(--space-lg); }
.reviews__nav { display: flex; gap: .5rem; flex: none; }
.reviews__arrow { width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--line-strong); background: var(--bg); color: var(--ink); font-size: 1.1rem; cursor: pointer; transition: border-color var(--dur-hover), transform var(--dur-hover), background var(--dur-hover); }
.reviews__arrow:hover { border-color: var(--sage); color: var(--sage-deep); transform: translateY(-2px); }
.reviews { display: flex; gap: 1.1rem; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding: .5rem .25rem 1.5rem; margin: 0 -.25rem; scrollbar-width: none; }
.reviews::-webkit-scrollbar { display: none; }
.review { scroll-snap-align: start; flex: 0 0 clamp(280px, 80vw, 360px); display: flex; flex-direction: column; gap: 1rem; background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 1.5rem 1.5rem 1.4rem; box-shadow: var(--shadow-sm); }
.review__top { display: flex; align-items: center; justify-content: space-between; }
.review__stars { color: #f5b301; letter-spacing: .1em; font-size: 1.05rem; }
.review__src { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.review__text { margin: 0; font-size: 1rem; line-height: 1.55; color: var(--ink); font-style: normal; }
.review__by { display: flex; align-items: center; gap: .7rem; margin-top: auto; padding-top: .4rem; }
.review__avatar { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--sage-wash); color: var(--sage-deep); font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 1.05rem; flex: none; }
.review__id { display: flex; flex-direction: column; line-height: 1.25; }
.review__name { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: .98rem; color: var(--ink); }
.review__meta { font-size: .78rem; color: var(--ink-3); }
@media (max-width: 720px) { .reviews__head { flex-direction: column; align-items: flex-start; gap: 1rem; } .reviews__nav { display: none; } }

/* ---- Funnel: Coach step (photo cards + no-preference) ---- */
.fn__coachcards { display: grid; grid-template-columns: repeat(2, minmax(0, 220px)); gap: 1rem; justify-content: center; margin: 1.4rem 0 1rem; }
.fn__ccard { position: relative; display: flex; flex-direction: column; align-items: center; gap: .7rem; padding: 1.1rem 1rem 1rem; border-radius: var(--radius-md); border: 1.5px solid var(--line-strong); background: var(--bg); cursor: pointer; transition: border-color var(--dur-hover), box-shadow var(--dur-hover), transform var(--dur-hover); }
.fn__ccard:hover { border-color: var(--sage); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.fn__ccard.is-sel { border-color: var(--sage); background: var(--sage-wash); box-shadow: var(--shadow-sm); }
.fn__ccard-media { width: 108px; height: 108px; border-radius: 50%; overflow: hidden; border: 2.5px solid var(--line-strong); transition: border-color var(--dur-hover); }
.fn__ccard.is-sel .fn__ccard-media, .fn__ccard:hover .fn__ccard-media { border-color: var(--sage); }
.fn__ccard-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 15%; }
.fn__ccard-media--fallback { display: grid; place-items: center; background: var(--sage-wash); color: var(--sage-deep); font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 2.2rem; }
.fn__ccard-name { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 1.05rem; color: var(--ink); }
.fn__ccard-check { position: absolute; top: .6rem; right: .6rem; font-size: 1.25rem; color: var(--sage-deep); opacity: 0; transition: opacity var(--dur-hover); }
.fn__ccard.is-sel .fn__ccard-check { opacity: 1; }
.fn__nopref { display: flex; width: max-content; margin: 0 auto; }
.fn__nopref.is-sel { border-color: var(--sage); background: var(--sage-wash); color: var(--sage-deep); font-weight: var(--fw-semibold); }
@media (max-width: 480px) { .fn__coachcards { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .7rem; } .fn__ccard-media { width: 84px; height: 84px; } }

/* ================= v11 additions ================= */

/* F3: native :disabled must LOOK disabled (was pixel-identical to enabled). */
.btn:disabled { opacity: .45; filter: grayscale(.3); cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* F1: Heute/Morgen badges in the chronological Termin grid. */
.fn__wbadge { display: inline-block; margin-left: .45rem; padding: .1rem .55rem; border-radius: var(--radius-pill); background: var(--sage); color: #fff; font-size: .68rem; font-weight: var(--fw-bold); letter-spacing: .04em; text-transform: uppercase; vertical-align: middle; }

/* F4: compact chrono grid – chips hug content, no ghost padding. */
/* Runde 2: alle Tage in EINER Zeile (vorher flex-wrap → 2. Zeile). */
.fn__week--chrono { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(0, 1fr); gap: .6rem; }
.fn__week--chrono .fn__wslots { min-height: 0; }
@media (max-width: 620px) { .fn__week--chrono { display: flex; flex-direction: column; gap: .5rem; } }

/* Note #4: SportsNow calendar – week navigation + full Mo–So columns.
   Every day gets a column; days without a class shrink (fn__wcol--empty). */
.fn__weeknav { display: flex; align-items: center; justify-content: space-between; gap: .6rem; margin: .2rem 0 .9rem; }
.fn__weeknav-btn { width: 42px; height: 42px; flex: none; display: grid; place-items: center; border: 1.5px solid var(--line-strong); border-radius: 10px; background: var(--bg); color: var(--ink); cursor: pointer; transition: border-color var(--dur-hover), background-color var(--dur-hover), transform var(--dur-hover); }
.fn__weeknav-btn:hover:not(:disabled) { border-color: var(--sage); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.fn__weeknav-btn:disabled { opacity: .3; cursor: default; }
.fn__weeknav-btn svg { width: 18px; height: 18px; }
.fn__weeknav-label { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 1rem; color: var(--ink); font-variant-numeric: tabular-nums; }
.fn__week--cal { display: flex; gap: .5rem; align-items: stretch; }
.fn__week--cal .fn__wcol { flex: 1 1 0; min-width: 0; }
/* UI-note #1: days without a class (often the weekend) collapse to a thin strip
   instead of eating a full column – the days that DO have classes get the width,
   which also gives long class names more room. */
.fn__week--cal .fn__wcol--empty { flex: 0 0 56px; width: 56px; min-width: 0; padding: .7rem .3rem; opacity: .5; }
.fn__week--cal .fn__wcol--empty .fn__wday-date { font-size: .68rem; }
.fn__week--cal .fn__wcol--empty .fn__wzu { padding: .4rem 0; text-align: center; }
@media (max-width: 640px) {
  .fn__week--cal { flex-direction: column; }
  .fn__week--cal .fn__wcol, .fn__week--cal .fn__wcol--empty { flex: none; opacity: 1; }
  .fn__week--cal .fn__wcol--empty { opacity: .6; }
}

/* Note (worklist): coloured class-type filter chips + "Nur buchbare" toggle. */
.fn__typebar { display: flex; flex-wrap: wrap; gap: .4rem .5rem; margin: 0 0 1rem; }
/* A2: keep the group filter chips + week nav clear of the sticky site header. */
.fn__typebar, .fn__weeknav { scroll-margin-top: 96px; }
.fn__typechip { display: inline-flex; align-items: center; gap: .4rem; padding: .34rem .72rem; border: 1.5px solid var(--line-strong); border-radius: 999px; background: var(--bg); color: var(--ink); font-family: var(--font-body); font-weight: var(--fw-semibold); font-size: .82rem; cursor: pointer; transition: opacity var(--dur-hover), border-color var(--dur-hover), background-color var(--dur-hover), transform var(--dur-hover); }
.fn__typechip:hover { transform: translateY(-1px); }
.fn__typechip .fn__typedot { width: 10px; height: 10px; border-radius: 50%; background: var(--tc, var(--sage)); flex: none; }
.fn__typechip.is-off { opacity: .4; }
.fn__typechip.is-off .fn__typedot { filter: grayscale(1); }
.fn__typechip--book { border-color: var(--sage-deep); color: var(--sage-deep); }
.fn__typechip--book i { font-size: 1em; }
.fn__typechip--book.is-on { background: var(--sage); color: #fff; border-color: var(--sage-deep); }
.fn__typechip--book.is-on i { color: #fff; }

/* Bookable class cards (Alex/Jeanine): coloured accent + clickable. */
.fn__wslot--book { border-left: 4px solid var(--tc, var(--line-strong)); }
.fn__wslot--book .fn__cl-name { color: var(--tc, var(--ink)); }
.fn__wslot--book.is-sel .fn__cl-name { color: #fff; }

/* Other coaches' classes: shown for context, not clickable (greyed). */
.fn__wslot--info { border-left: 4px solid var(--tc, var(--line)); background: var(--bg-paper); opacity: .6; cursor: default; box-shadow: none; }
.fn__wslot--info:hover { transform: none; border-color: var(--line-strong); box-shadow: none; }
.fn__wslot--info .fn__cl-name { color: var(--ink-2); }
.fn__wslot--info .fn__cl-coach { color: var(--ink-3); }

.fn__filter-empty { display: flex; align-items: center; justify-content: center; gap: .5rem; margin: .9rem 0 0; padding: .8rem; color: var(--ink-3); font-size: .9rem; }

/* Course context at the decision moment (description + matched voice). */
.fn__course-info { margin-top: .6rem; }
.fn__course-desc { font-size: .9rem; color: var(--ink-2); margin: .3rem 0 0; }
.fn__course-voice { font-size: .88rem; color: var(--ink-2); background: var(--sage-wash); border-left: 3px solid var(--sage); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: .55rem .8rem; margin: .55rem 0 0; }
.fn__course-voice span { color: var(--ink-3); font-size: .8rem; white-space: nowrap; }

/* Goal-matched client story on the Empfehlung card. */
/* Feedback #11: Abstand Bewertung → "Termin wählen" gleich wie die Blöcke darüber (1.6rem). */
.fn__story { margin: 0 0 1.6rem; padding: 1rem 1.2rem; background: var(--sage-wash); border-left: 3px solid var(--sage); border-radius: 0 var(--radius-md) var(--radius-md) 0; }
.fn__story p { font-size: .95rem; line-height: 1.55; color: var(--ink); margin: 0 0 .5rem; font-style: italic; }
.fn__story footer { font-size: .82rem; color: var(--sage-deep); font-weight: var(--fw-semibold); }

/* A16: no-spam reassurance directly under the phone field. */
.fn__field-hint { display: flex; align-items: flex-start; gap: .35rem; margin: .35rem 0 0; font-size: .8rem; line-height: 1.4; color: var(--ink-3); }
.fn__field-hint i { color: var(--sage-deep); margin-top: .05rem; flex: none; }

/* A18: time-of-day group labels inside the PT availability grid. */
.fn__avail-period { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin: .6rem 0 .35rem; }
.fn__avail-period:first-of-type { margin-top: .1rem; }

/* A15: "So läuft dein erstes Mal ab" block on the confirmation screen. */
.fn__firsttime { margin: 1rem 0 1.75rem; padding: 1rem 1.2rem; background: var(--sage-wash); border-radius: var(--radius-md); text-align: left; }
.fn__firsttime-title { display: flex; align-items: center; gap: .45rem; font-family: var(--font-display); font-weight: var(--fw-bold); font-size: .98rem; color: var(--ink); margin: 0 0 .55rem; }
.fn__firsttime-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .4rem; }
.fn__firsttime-list li { display: flex; align-items: flex-start; gap: .5rem; font-size: .9rem; line-height: 1.45; color: var(--ink-2); }
.fn__firsttime-list li i { color: var(--sage-deep); margin-top: .1rem; flex: none; }

/* Kontakt: SLA + trust anchor under the submit. */
.fn__sla { margin: .9rem 0 0; font-size: .88rem; color: var(--ink-2); text-align: center; }
.fn__trust-quote { margin: .35rem 0 0; font-size: .84rem; color: var(--ink-3); text-align: center; font-style: italic; }

/* Kontakt: honest submit-failure card. */
.fn__submit-err { margin-top: 1rem; padding: 1rem 1.2rem; border: 1.5px solid #e5b8b8; background: #fdf3f3; border-radius: var(--radius-md); text-align: center; }
.fn__submit-err strong { display: block; color: #8f2f2f; margin-bottom: .25rem; }
.fn__submit-err p { font-size: .9rem; color: var(--ink-2); margin: 0 0 .5rem; }

/* Kontakt: "Wie hast du von uns gehört?" chips. */
.fn__src-chips { margin-top: .35rem; }

/* Stepper: worded position on mobile (dots lose their labels <600px). */
.fn__step-current { display: none; margin: .5rem 0 0; text-align: center; font-family: var(--font-mono); font-size: .78rem; color: var(--ink-3); letter-spacing: .03em; }
@media (max-width: 600px) { .fn__step-current { display: block; } }

/* Coach step: recap chip + three equal cards. */
.fn__pick--recap { margin-top: .2rem; }
.fn__coachcards--three { grid-template-columns: repeat(3, minmax(0, 185px)); }
.fn__ccard--nopref .fn__ccard-media--fallback { font-size: 1.7rem; }
@media (max-width: 560px) { .fn__coachcards--three { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .55rem; } .fn__coachcards--three .fn__ccard-media { width: 64px; height: 64px; } .fn__coachcards--three .fn__ccard-name { font-size: .85rem; } }

/* Live events in the Workshops section. */
.levents { margin-top: 2.2rem; }
.levents__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin: 0 0 1rem; }
.levents__title { font-family: var(--font-display); font-size: 1.15rem; margin: 0; }
/* Runde 2: Termine als Galerie – horizontal scrollen/blättern statt Grid. */
/* A20: collapsed event cards size to their own content (only the open card grows). */
.levents__list { display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: .6rem; scrollbar-width: thin; align-items: flex-start; }
.levent { flex: 0 0 272px; scroll-snap-align: start; border: 1.5px solid var(--line); border-radius: var(--radius-md); background: var(--bg); padding: 1rem 1.1rem; display: flex; flex-direction: column; gap: .45rem; cursor: pointer; }
.levent__head { display: flex; justify-content: space-between; align-items: center; }
.levent__date { font-family: var(--font-mono); font-size: .78rem; color: var(--sage-deep); font-weight: var(--fw-bold); letter-spacing: .03em; }
.levent__cost { font-size: .8rem; font-weight: var(--fw-semibold); color: var(--ink-2); }
.levent__cost--free { color: var(--sage-deep); }
.levent__title { font-family: var(--font-display); font-size: 1rem; line-height: 1.35; margin: 0; }
.levent__venue { font-size: .82rem; color: var(--ink-3); margin: 0; }
/* Feedback #28: Preis als eigene Zeile zwischen Adresse und Anmeldung. */
.levent__price { margin: 0; padding-top: .3rem; border-top: 1px dashed var(--line); }
.levent__price .levent__cost { font-family: var(--font-mono); font-weight: var(--fw-bold); font-size: .95rem; color: var(--ink); }
.levent__price .levent__cost--free { color: var(--sage-deep); }
.levent__cta { margin-top: auto; align-self: flex-start; padding: .5rem 1rem; font-size: .88rem; }
.levent__form { display: flex; flex-direction: column; gap: .5rem; margin-top: .5rem; }
/* Feedback #28 Grundursache: display:flex schlug das hidden-Attribut – das
   Formular (inkl. zweitem Anmelde-Button) war IMMER sichtbar. */
.levent__form[hidden] { display: none; }
.levent__form input { font: inherit; font-size: .9rem; padding: .55rem .7rem; border: 1.5px solid var(--line-strong); border-radius: 8px; background: var(--bg); color: var(--ink); }
.levent__form input:focus { outline: none; border-color: var(--sage); }
.levent__form .btn { padding: .55rem 1rem; font-size: .88rem; }
.levent__policy { font-size: .78rem; line-height: 1.45; color: var(--ink-3); margin: 0; }
.levent__msg { font-size: .85rem; margin: 0; line-height: 1.5; }
.levent__msg.is-ok { color: var(--sage-deep); font-weight: var(--fw-semibold); }
.levent__msg.is-err { color: #8f2f2f; }

/* ================= v-final feedback round (33 Notes) ================= */

/* #33: iOS/Safari rendert Button-Text standardmässig blau – Titel explizit schwarz. */
.fn__opt { color: var(--ink); }
.fn__opt-label { color: var(--ink); }
.fn__opt-note { color: var(--ink-2); }

/* #32: Mobile-Nav – "Gratis Probetraining"-Button war zu gross.
   Zwischen 520–720px verkleinern, darunter ausblenden (steckt im Burger-Menü). */
@media (max-width: 720px) {
  .nav__right .btn--primary { padding: .6rem 1rem; font-size: .85rem; }
}
@media (max-width: 520px) {
  .nav__right .btn--primary { display: none; }
}

/* #35 / #46: alle Preis-Karten mit grünem Rahmen (vorher nur die Feature-Karte). */
.price-cards .pcard { border: 2px solid var(--sage); } /* Note: alle Preis-Karten gleicher, dicker Rahmen (2px) */
.price-cards .pcard--feature { box-shadow: none; }     /* kein Extra-Inset-Ring mehr -> exakt gleiche Dicke wie die anderen */
.price-cards .pcard:hover { box-shadow: var(--shadow-card); } /* Hover-Lift fuer alle Karten erhalten (#61) */

/* #46 / #35: funnel-Chips dauerhaft grüner Rahmen (vorher nur bei hover/is-rec). */
.fn__chip { border-color: var(--sage); }
.fn__chip.is-rec { box-shadow: 0 0 0 1.5px var(--sage) inset; }

/* #66: Kontakt (Telefon · E-Mail) grösser. */
.loc__contact-dd { font-size: 1.15rem; font-weight: var(--fw-semibold); line-height: 1.5; }
.loc__contact-dd a { color: var(--sage-deep); }

/* #68: Partner-Logos, horizontaler Scroll (im /dash pflegbar). */
.partners { margin-top: var(--space-xl); }
.partners__label { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); text-align: center; margin: 0 0 1rem; }
/* padding-top gives the hover lift (translateY -3px + shadow) room so the
   card's top edge isn't clipped by overflow-x:auto (worklist note 14). */
.partners__rail { display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-top: .6rem; padding-bottom: .5rem; scrollbar-width: thin; }
@media (min-width: 760px) { .partners__rail { justify-content: center; flex-wrap: wrap; } }
.partner { flex: 0 0 auto; scroll-snap-align: start; display: grid; place-items: center; min-width: 160px; height: 84px; padding: 0 1.4rem; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--bg-card); transition: border-color var(--dur-hover), transform var(--dur-hover), box-shadow var(--dur-hover); }
.partner:hover { border-color: var(--sage); transform: translateY(-3px); box-shadow: var(--shadow-card); }
.partner__logo { font-family: var(--font-display); font-weight: var(--fw-bold); color: var(--ink-2); font-size: 1.05rem; letter-spacing: .02em; }
.partner img { max-height: 48px; width: auto; object-fit: contain; filter: grayscale(1); opacity: .75; transition: filter var(--dur-hover), opacity var(--dur-hover); }
.partner:hover img { filter: none; opacity: 1; }

/* B5 / #34: Raummiete – zwei Standort-Karten, ganz klickbar → externe Seite. */
.rooms { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
@media (max-width: 860px) { .rooms { grid-template-columns: 1fr; } }
.room { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; background: var(--bg-card); color: inherit; transition: transform var(--dur-hover), box-shadow var(--dur-hover), border-color var(--dur-hover); }
.room:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--sage); }
.room__media { aspect-ratio: 16 / 10; overflow: hidden; }
.room__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-out); }
.room:hover .room__media img { transform: scale(1.05); }
.room__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.room__meta { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--sage-deep); margin-bottom: .4rem; }
.room__body h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.room__body p { font-size: .94rem; color: var(--ink-2); margin: 0 0 1rem; }
.room__list { list-style: none; margin: 0 0 1.2rem; padding: 0; display: grid; gap: .4rem; }
.room__list li { position: relative; padding-left: 1.3rem; font-size: .9rem; color: var(--ink-2); }
.room__list li::before { content: "\2713"; position: absolute; left: 0; color: var(--sage-deep); font-weight: 700; }
.room__link { margin-top: auto; font-weight: var(--fw-semibold); font-size: .92rem; color: var(--sage-deep); }
.room:hover .room__link { color: var(--ink); }

/* #67: Angebot-Karten ganz klickbar. */
.offer--clickable { cursor: pointer; }

/* #36 / #37: schwebende Aktionen – WhatsApp + zurück nach oben. */
.fabs { position: fixed; right: clamp(14px, 3vw, 26px); bottom: clamp(14px, 3vw, 26px); z-index: 940; display: flex; flex-direction: column; gap: .7rem; }
.fab { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; border: 0; cursor: pointer; box-shadow: 0 10px 26px -8px rgba(20, 22, 15, .5); font-size: 1.5rem; transition: transform var(--dur-hover), box-shadow var(--dur-hover), background var(--dur-hover); }
.fab:hover { transform: translateY(-3px); }
.fab--wa { background: #25D366; color: #fff; }
.fab--wa:hover { background: #1ebe5b; }
.fab--top { background: var(--bg-card); color: var(--ink); border: 1px solid var(--line-strong); opacity: 0; pointer-events: none; transform: translateY(8px); }
.fab--top.is-vis { opacity: 1; pointer-events: auto; transform: none; }
.fab--top:hover { border-color: var(--sage); color: var(--sage-deep); }
@media (max-width: 520px) { .fab { width: 48px; height: 48px; font-size: 1.3rem; } }

/* #65 / #53: DEV-Umschalter + drei Funnel-Varianten (vor Livegang entfernen). */
.fn-devswitch { position: fixed; top: 84px; left: 14px; z-index: 940; display: flex; flex-direction: column; gap: .3rem; padding: .6rem .7rem; background: #17171a; border: 1px solid #2a2a2e; border-radius: 12px; box-shadow: 0 18px 40px -20px rgba(0, 0, 0, .7); }
.fn-devswitch__lab { font-family: var(--font-mono); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: #8a857c; margin-bottom: .15rem; }
.fn-devswitch button { text-align: left; font-family: var(--font-body); font-size: .8rem; font-weight: 600; color: #e8e4dc; background: #26262a; border: 1px solid #34343a; border-radius: 7px; padding: .4rem .6rem; cursor: pointer; transition: background .15s, border-color .15s; }
.fn-devswitch button:hover { border-color: #8BA84E; }
.fn-devswitch button.is-active { background: #8BA84E; color: #101014; border-color: #8BA84E; }
@media (max-width: 700px) { .fn-devswitch { top: auto; bottom: 78px; left: 14px; flex-direction: row; flex-wrap: wrap; max-width: 62vw; } .fn-devswitch__lab { width: 100%; } }

/* Variante A – grüner Rahmen (Test aus #53). */
.fnvar-a #funnel .fn__card { border: 2px solid var(--sage); box-shadow: 0 0 0 4px var(--sage-wash), var(--shadow-card); }
/* Variante B – Spotlight: grüner Glow + Farbleiste oben. */
.fnvar-b #funnel .fn__card { position: relative; border: 1px solid var(--sage); box-shadow: 0 24px 60px -24px rgba(139, 168, 78, .55), var(--shadow-card); }
.fnvar-b #funnel .fn__card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; background: linear-gradient(90deg, var(--sage-deep), var(--sage), #cfe08a); }
/* Variante C – Badge "Hier starten" über der Karte. */
.fnvar-c #funnel .fn__card { position: relative; overflow: visible; border: 1.5px solid var(--sage); box-shadow: var(--shadow-card); }
.fnvar-c #funnel > .fn > .fn__card::after { content: "\2605 Hier starten"; position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--sage); color: #fff; font-family: var(--font-mono); font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: .35rem .9rem; border-radius: 999px; box-shadow: var(--shadow-sm); white-space: nowrap; }

/* #59: Gruppenkursleiter:innen-Titel gleich gross wie "Personal Trainer:innen". */
.kleiter__title { font-size: var(--fs-h2); }
/* #58: Gruppenkursleiter:innen gleiche Darstellung wie Jeanine & Alex
   (Foto links, Name + Spezialisierung rechts, zwei Spalten). */
/* Gruppenkursleiter:innen use the SAME card layout as the Personal-Trainer
   cards (.team/.trainer, ~line 269) – one team, one visual language. Values
   below deliberately mirror .trainer/.trainer__media/.trainer__name rather
   than approximating them, so the two blocks stay comparable side by side.
   The old 96px circle + centred text read as a different, lesser component. */
.kleiter__grid { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }   /* = .team */
@media (max-width: 920px) { .kleiter__grid { grid-template-columns: 1fr; } }
.kleiter__card { display: grid; grid-template-columns: 130px 1fr; gap: 1.3rem; align-items: center; text-align: left; padding: 1.1rem; }
/* Portrait tile, not an avatar: same 3/4 crop and corner radius as
   .trainer__media. Resets the circle, ring and shadow set on the base rule. */
.kleiter__photo { width: 130px; height: auto; aspect-ratio: 3/4; margin: 0; border-radius: var(--radius-sm); border: 0; box-shadow: none; background-position: 50% 25%; }
.kleiter__name { font-size: 1.3rem; }
.kleiter__spec { font-size: .9rem; color: var(--ink-2); margin: .35rem 0 0; }

/* ---- Personal-Training availability: booked-vs-free calendar ---- */
.fn__coachcards--two { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
.fn__avail-facts { display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; justify-content: center; font-size: .82rem; color: var(--ink-2); margin: .1rem 0 .7rem; }
.fn__avail-facts .fn__avail-dot { opacity: .4; }
.fn__avail-legend { display: flex; gap: 1.1rem; justify-content: center; align-items: center; font-size: .8rem; color: var(--ink-2); margin: .1rem 0 .7rem; }
.fn__avail-legend .fn__lg { display: inline-flex; align-items: center; gap: .4rem; }
.fn__avail-legend .fn__lg::before { content: ""; width: 13px; height: 13px; border-radius: 4px; }
.fn__avail-legend .fn__lg--free::before { background: var(--bg); border: 1.5px solid var(--line-strong); }
.fn__avail-legend .fn__lg--busy::before { background: repeating-linear-gradient(45deg, var(--line) 0, var(--line) 3px, var(--line-strong) 3px, var(--line-strong) 6px); border: 1px solid var(--line-strong); }
/* Free tiles: comfortable ≥44px thumb targets (A16). */
.fn__avail-week .fn__wslot { min-height: 46px; display: flex; align-items: center; justify-content: center; }
/* Booked hours: greyed, hatched, non-interactive, label-only "belegt" (A5, privacy-safe). */
.fn__avail-week .fn__wslot--busy { flex-direction: column; gap: 0; cursor: default; background: repeating-linear-gradient(45deg, var(--line) 0, var(--line) 4px, transparent 4px, transparent 8px), var(--bg); border-color: var(--line); color: var(--ink-2); box-shadow: none; }
.fn__avail-week .fn__wslot--busy:hover { transform: none; box-shadow: none; border-color: var(--line); }
.fn__avail-week .fn__wslot--busy .fn__wslot-t { font-size: .82rem; opacity: .55; font-weight: var(--fw-semibold); }
.fn__avail-week .fn__wslot--busy .fn__wslot-x { font-size: .6rem; letter-spacing: .04em; text-transform: uppercase; opacity: .65; }

/* ---- Personal-Training availability: time-first, compact, in a modal ------------
   The whole step renders inside a viewport-fit dialog (note 3). Inside it the card
   sheds its own chrome (the modal box IS the frame), the day slots wrap into a
   compact grid (note 1), and the coach picker only appears after a time is chosen
   (note 2). */
.fn__modal--avail { align-items: center; }
.fn__modal-box--avail { height: auto; max-height: 92vh; max-width: 620px; }
.fn__modal-body--avail { flex: 1; min-height: 0; overflow-y: auto; -webkit-overflow-scrolling: touch; background: var(--bg); padding: clamp(1.1rem, 3.5vw, 1.9rem); }
.fn__modal-body--avail .fn__steps-wrap { margin-top: 0; margin-bottom: 1.3rem; }
/* Card inside the dialog: no border/shadow/padding of its own – the box frames it. */
.fn__card--avail { background: transparent; border: 0; box-shadow: none; padding: 0; border-radius: 0; }
.fn__card--avail .fn__q { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }

/* Compact day list: one column of days, each day's times in a wrapping grid. */
.fn__avail-days { display: flex; flex-direction: column; gap: .7rem; margin-top: .2rem; }
.fn__avail-day { border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--bg-paper); padding: .7rem .8rem .8rem; }
.fn__avail-dayhead { display: flex; align-items: baseline; gap: .5rem; font-family: var(--font-display); font-weight: var(--fw-bold); font-size: .98rem; color: var(--ink); margin-bottom: .6rem; }
.fn__avail-daydate { font-family: var(--font-body); font-weight: var(--fw-semibold); font-size: .78rem; color: var(--ink-3); }
.fn__avail-dayslots { display: grid; grid-template-columns: repeat(auto-fill, minmax(60px, 1fr)); gap: .4rem; }
.fn__aslot { display: flex; align-items: center; justify-content: center; padding: .5rem .3rem; border: 1.5px solid var(--line-strong); border-radius: 8px; background: var(--bg); font-family: var(--font-body); font-weight: var(--fw-semibold); font-variant-numeric: tabular-nums; font-size: .9rem; color: var(--ink); cursor: pointer; transition: border-color var(--dur-hover), background-color var(--dur-hover), color var(--dur-hover), transform var(--dur-hover), box-shadow var(--dur-hover); }
.fn__aslot--free:hover { border-color: var(--sage); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.fn__aslot--free.is-sel { border-color: var(--sage-deep); background: var(--sage); color: #fff; box-shadow: 0 0 0 2px var(--sage-deep), var(--shadow-sm); transform: translateY(-1px); }
.fn__aslot--busy { cursor: default; color: var(--ink-3); border-color: var(--line); text-decoration: line-through; opacity: .68; background: repeating-linear-gradient(45deg, var(--line) 0, var(--line) 4px, transparent 4px, transparent 8px), var(--bg); }

/* Coach chooser after a time is picked (only when >1 coach is free). */
.fn__avail-coachpick { margin-top: 1.1rem; padding-top: 1.1rem; border-top: 1px dashed var(--line-strong); animation: fn-in .3s var(--ease-out) both; }
.fn__avail-coachq { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 1.02rem; color: var(--ink); text-align: center; margin-bottom: .7rem; }
.fn__avail-coachpick .fn__coachcards { margin: 0; }
.fn__ccard--sm { flex-direction: row; align-items: center; gap: .7rem; padding: .7rem .85rem; text-align: left; }
.fn__ccard--sm .fn__ccard-media { width: 52px; height: 52px; flex: none; }
.fn__ccard--sm .fn__ccard-media--fallback { font-size: 1.4rem; }
.fn__ccard--sm .fn__ccard-body { display: flex; flex-direction: column; gap: .15rem; min-width: 0; }
.fn__ccard--sm .fn__ccard-name { font-size: .98rem; }
.fn__ccard--sm .fn__ccard-spec { font-size: .74rem; line-height: 1.35; color: var(--ink-3); }
.fn__ccard-specs { margin: .2rem 0 0; padding-left: 1.05rem; list-style: disc; text-align: left; }
.fn__ccard-specs li { font-size: .74rem; line-height: 1.3; color: var(--ink-3); margin: 0 0 .12rem; }
.fn__pick .fn__pick-hint { color: var(--sage-deep); font-weight: var(--fw-semibold); }

/* Mobile: full-height sheet, internal scroll (note 3: mobile may slide). */
@media (max-width: 560px) {
  .fn__modal--avail { padding: 0; align-items: stretch; }
  .fn__modal-box--avail { max-width: none; max-height: 100vh; height: 100dvh; border-radius: 0; }
  .fn__avail-dayslots { grid-template-columns: repeat(auto-fill, minmax(56px, 1fr)); }
  .fn__ccard--sm { padding: .6rem .7rem; }
  .fn__ccard--sm .fn__ccard-media { width: 44px; height: 44px; }
}

/* ---- Termin step: offer-type switcher (note A2) + workshop date list (A3/A4) ---- */
.fn__offerswitch { margin: .2rem 0 1.1rem; }
.fn__offerswitch-lab { font-size: .82rem; color: var(--ink-3); margin: 0 0 .5rem; }
.fn__offerswitch .fn__chips { gap: .5rem; }
.fn__wslist { display: flex; flex-direction: column; gap: .6rem; margin: .3rem 0 0; }
.fn__wsrow { display: grid; grid-template-columns: 1fr auto; grid-auto-rows: min-content; gap: .15rem .8rem; text-align: left; padding: .9rem 1.05rem; border: 1.5px solid var(--line-strong); border-radius: var(--radius-md); background: var(--bg); cursor: pointer; transition: border-color var(--dur-hover), box-shadow var(--dur-hover), transform var(--dur-hover), background-color var(--dur-hover); }
.fn__wsrow:hover { border-color: var(--sage); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.fn__wsrow.is-sel { border-color: var(--sage-deep); background: var(--sage-wash); box-shadow: 0 0 0 2px var(--sage-deep), var(--shadow-sm); }
.fn__wsrow-date { grid-column: 1; font-size: .82rem; font-weight: var(--fw-semibold); color: var(--sage-deep); display: inline-flex; align-items: center; gap: .35rem; }
.fn__wsrow-title { grid-column: 1; font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 1.05rem; color: var(--ink); }
.fn__wsrow-venue { grid-column: 1; font-size: .8rem; color: var(--ink-3); }
.fn__wsrow-price { grid-column: 2; grid-row: 1 / span 3; align-self: center; justify-self: end; font-weight: var(--fw-bold); font-size: .92rem; color: var(--ink-2); white-space: nowrap; }
