/* ============================================================================
   Konzentriert Mit Uns — Onepager styles
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body { background: var(--k-sand-100); }
img { max-width: 100%; display: block; }

.container { width: min(1180px, 100% - 48px); margin-inline: auto; }
.band { padding: clamp(64px, 8vw, 120px) 0; position: relative; overflow: hidden; }
.band--white { background: var(--k-white); }
.band--mint { background: var(--k-mint); }
.band--mint-soft { background: var(--k-mint-100); }
.band--sand { background: var(--k-sand); }
.band--sand-soft { background: var(--k-sand-100); }
.band--coral-soft { background: var(--k-coral-50); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: start; }
.two-col--center { align-items: center; }
@media (max-width: 820px) { .two-col { grid-template-columns: 1fr; } }

/* ─── Buttons ─────────────────────────────────────────────────────────── */
.btn { font-family: var(--font-sans); font-weight: 700; font-size: 15px; padding: 13px 22px; border-radius: 999px; cursor: pointer; border: none; transition: all .14s var(--ease-out); display: inline-flex; align-items: center; gap: 10px; text-decoration: none; line-height: 1; white-space: nowrap; }
.btn:focus-visible { outline: none; box-shadow: var(--shadow-focus); }
.btn-primary { background: var(--k-coral); color: var(--k-white); }
.btn-primary:hover { background: var(--k-coral-700); color: var(--k-white); transform: translateY(-1px); }
.btn-secondary { background: var(--k-white); color: var(--k-navy); box-shadow: inset 0 0 0 1.5px var(--k-navy); }
.btn-secondary:hover { background: var(--k-mint-100); color: var(--k-navy); }
.btn-ghost { background: transparent; color: var(--k-coral); padding: 13px 14px; }
.btn-ghost:hover { background: var(--k-coral-50); color: var(--k-coral-700); }
.btn-lg { padding: 16px 28px; font-size: 16px; }

.badge { display: inline-flex; align-items: center; padding: 6px 14px; border-radius: 999px; font-size: 13px; font-weight: 700; line-height: 1; white-space: nowrap; }
.badge-mint { background: var(--k-mint); color: var(--k-navy); }
.badge-sand { background: var(--k-sand); color: var(--k-navy); }
.badge-coral { background: var(--k-coral-100); color: var(--k-coral-700); }
.badge-outline { background: transparent; box-shadow: inset 0 0 0 1.5px var(--k-navy); color: var(--k-navy); padding: 5px 13px; }

/* ─── Hero / Aufmacher ────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: clamp(64px, 7vw, 110px) 0 clamp(96px, 11vw, 170px);
  background-color: var(--k-mint);
  background-image: url('assets/hero-banner.jpeg');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
}
.hero__brand { position: relative; z-index: 3; display: flex; justify-content: center; padding-bottom: 8px; margin-top: clamp(-32px, -3vw, -16px); }
.hero__brand img { height: 120px; width: auto; }
.hero__panel {
  position: relative; z-index: 2;
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  background: transparent;
  padding: clamp(20px, 3vw, 40px) clamp(8px, 5vw, 64px) clamp(20px, 3vw, 40px);
  text-align: center;
}
.hero__title {
  font-family: var(--font-display); font-style: italic; font-weight: 800;
  color: var(--k-coral);
  font-size: clamp(42px, 9.5vw, 88px);
  line-height: 0.95; letter-spacing: -0.02em;
  margin: 0 0 22px; text-wrap: balance;
  hyphens: manual; overflow-wrap: break-word;
}
.hero__sub { font-size: clamp(17px, 1.5vw, 21px); color: var(--k-navy); margin: 0 auto 28px; line-height: 1.45; max-width: 56ch; }
.hero__cta { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; justify-content: center; margin-top: clamp(48px, 7vw, 100px); }
.hero__badges { display: flex; gap: 10px; margin-top: 28px; flex-wrap: wrap; }
.hero__deco { position: absolute; z-index: 1; pointer-events: none; user-select: none; }
.hero__deco--cloud { top: 9%; right: 18%; width: clamp(36px, 4vw, 65px); transform: rotate(-4deg); }
.hero__deco--heart { top: 52%; left: 14%; width: clamp(32px, 3vw, 55px); transform: rotate(-10deg); }
.hero__deco--bloom { bottom: 14%; left: 38%; width: clamp(36px, 3.5vw, 60px); transform: rotate(6deg); }
.hero__deco--thumb { bottom: 22%; right: 9%; width: clamp(32px, 3vw, 55px); transform: rotate(-8deg); }
@media (max-width: 820px) {
  .hero__deco--cloud { top: 4%; right: 12%; width: 32px; }
  .hero__deco--heart { top: 46%; left: 9%; width: 27px; }
  .hero__deco--bloom { bottom: 10%; left: 32%; width: 29px; }
  .hero__deco--thumb { bottom: 16%; right: 4%; width: 28px; }
}

/* ─── Intro ───────────────────────────────────────────────────────────── */
.intro { padding: clamp(72px, 9vw, 128px) 0; }
.intro__lede { max-width: 760px; margin: 0 auto clamp(28px, 3.5vw, 44px); text-align: center; }
.intro__graphic { display: flex; justify-content: center; margin: 0 auto clamp(32px, 4.5vw, 56px); }
.intro__graphic img { width: clamp(220px, 32vw, 360px); height: auto; }

/* ─── Fokus-Text ─────────────────────────────────────────────────────── */
.fokus { padding: 0 0 clamp(56px, 8vw, 104px); background: var(--k-white); }
.fokus__inner { max-width: 820px; margin: 0 auto; text-align: center; }
.fokus__title {
  font-family: var(--font-display); font-style: italic; font-weight: 800;
  color: var(--k-coral);
  font-size: clamp(36px, 5.5vw, 68px); line-height: 1.0; letter-spacing: -0.02em;
  margin: 0 0 24px; text-wrap: balance;
}
.fokus__sub {
  font-family: var(--font-display); font-style: italic; font-weight: 800;
  color: var(--k-coral);
  font-size: clamp(24px, 3vw, 38px); line-height: 1.1;
  margin: clamp(36px, 5vw, 56px) 0 18px;
}
.fokus__body {
  color: var(--k-ink-2);
  line-height: 1.65; font-size: 16.5px;
  margin: 0 auto; max-width: 680px; text-wrap: pretty;
}
.fokus__heart { display: flex; justify-content: center; margin: clamp(2px, 0.6vw, 10px) 0; }
.fokus__heart img { width: clamp(220px, 30vw, 340px); height: auto; }

/* ─── Was wir fördern (Herz-Liste) ───────────────────────────────────── */
.foerdern { padding: clamp(48px, 7vw, 96px) 0; background: var(--k-white); }
.foerdern__inner { max-width: 760px; }
.foerdern__title {
  font-family: var(--font-display); font-style: italic; font-weight: 800;
  color: var(--k-coral);
  font-size: clamp(34px, 5vw, 60px); line-height: 1.0; letter-spacing: -0.02em;
  margin: 0 0 clamp(24px, 3vw, 36px);
}
.foerdern__sub {
  font-family: var(--font-display); font-style: italic; font-weight: 800;
  color: var(--k-coral);
  font-size: clamp(22px, 2.6vw, 32px); line-height: 1.1;
  margin: clamp(40px, 5vw, 64px) 0 clamp(20px, 2.5vw, 28px);
}
.foerdern__list { list-style: none; padding: 0; margin: 0; display: grid; gap: clamp(16px, 2vw, 24px); }
.foerdern__list li {
  display: grid; grid-template-columns: 28px 1fr; align-items: start; gap: 12px;
  color: var(--k-navy);
  font-size: clamp(17px, 1.5vw, 21px); line-height: 1.4; text-wrap: pretty;
}
.foerdern__list svg { width: 24px; height: 24px; margin-top: 1px; }
.foerdern__art { display: flex; justify-content: center; margin-top: clamp(16px, 2.5vw, 32px); }
.foerdern__art img { width: clamp(196px, 27.6vw, 322px); height: auto; }
.intro__lede .eyebrow { display: block; margin-bottom: 10px; }
.intro__lede h2 { margin: 0 0 28px; }
.intro__questions { display: grid; gap: 10px; }
.intro__questions p {
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  color: var(--k-coral);
  font-size: clamp(20px, 2.2vw, 28px); line-height: 1.3;
  margin: 0; text-wrap: balance;
}

.intro__card {
  max-width: 980px; margin: 0 auto;
  background: var(--k-sand-100);
  border-radius: 36px 28px 44px 24px / 32px 40px 28px 44px;
  padding: clamp(36px, 5vw, 64px) clamp(28px, 5vw, 72px);
  position: relative;
}
.intro__pull {
  font-family: var(--font-display); font-style: italic; font-weight: 800;
  color: var(--k-coral);
  font-size: clamp(28px, 3.5vw, 44px); line-height: 1.05;
  letter-spacing: -0.01em;
  text-align: center;
  margin: 0 0 clamp(28px, 4vw, 48px);
  text-wrap: balance;
}
.intro__columns { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
@media (max-width: 720px) { .intro__columns { grid-template-columns: 1fr; gap: 28px; } }
.intro__col p { color: var(--k-ink-2); line-height: 1.65; font-size: 16.5px; margin: 0 0 14px; }
.intro__col p:last-child { margin-bottom: 0; }
.intro__col p.kicker { color: var(--k-navy); font-weight: 700; font-size: 17px; margin-bottom: 14px; }
.intro__close {
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  color: var(--k-coral) !important;
  font-size: 20px !important;
  line-height: 1.35 !important;
}
.intro__bullets { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.intro__bullets li {
  color: var(--k-navy);
  line-height: 1.5; font-size: 16.5px;
  padding-left: 28px; position: relative;
}
.intro__bullets li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 14px; height: 14px; border-radius: 999px;
  background: var(--k-coral);
  box-shadow: 0 0 0 4px var(--k-coral-100);
}

/* ─── Termine ─────────────────────────────────────────────────────────── */
.termine { padding: clamp(72px, 9vw, 120px) 0; background: var(--k-coral-50); position: relative; }
.termine__head { display: flex; justify-content: space-between; align-items: end; gap: 32px; flex-wrap: wrap; margin-bottom: clamp(32px, 4vw, 56px); }
.termine__head h2 {
  font-family: var(--font-display); font-style: italic; font-weight: 800;
  color: var(--k-coral);
  font-size: clamp(34px, 5vw, 60px); line-height: 1.0; letter-spacing: -0.02em;
  margin: 0;
}
.termine__head .eyebrow { display: block; margin-bottom: 8px; }
.termine__head p { color: var(--k-ink-2); margin: 0; max-width: 38ch; line-height: 1.55; }

/* Variant A: horizontal cards */
.t-grid-a { display: grid; gap: 20px; }
.t-card-a {
  background: var(--k-white);
  border-radius: 28px;
  padding: 28px clamp(24px, 3vw, 36px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  box-shadow: 0 2px 4px rgba(28,46,76,0.04), 0 10px 30px -16px rgba(28,46,76,0.18);
  transition: transform .18s var(--ease-out);
}
.t-card-a:hover { transform: translateY(-2px); }
.t-card-a__date {
  background: var(--k-coral);
  color: var(--k-white);
  border-radius: 22px;
  padding: 18px 22px;
  min-width: 148px;
  display: flex; flex-direction: column; gap: 12px;
  align-self: stretch;
}
.t-card-a__date .dc__group { display: flex; flex-direction: column; gap: 6px; }
.t-card-a__date .dc__month {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.32);
  text-align: center;
}
.t-card-a__date .dc__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 4px; }
.t-card-a__date .dc__row {
  display: grid; grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 10px;
  padding: 2px 4px;
}
.t-card-a__date .dc__wd {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
}
.t-card-a__date .dc__day {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: 26px;
  line-height: 1;
  color: var(--k-white);
  letter-spacing: -0.01em;
}

/* Variant B — date list inside stamp card */
.t-card-b__dates { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.t-card-b__dates li {
  display: grid; grid-template-columns: 30px 1fr;
  gap: 14px;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(28, 46, 76, 0.18);
  align-items: baseline;
}
.t-card-b__dates li:last-child { border-bottom: none; }
.t-card-b__dates li > span:first-child {
  font-weight: 600; font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--k-coral);
}
.t-card-b__dates li > span:last-child {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: 22px; line-height: 1; color: var(--k-navy);
}
.t-card-a__body h3 { margin: 0 0 12px; font-size: 24px; }
.t-card-a__body .meta {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 8px;
  color: var(--k-ink-2); font-size: 14.5px; line-height: 1.4;
}
.t-card-a__body .meta li { display: grid; grid-template-columns: 22px 1fr; gap: 10px; align-items: center; }
.t-card-a__body .meta .meta__icon { display: inline-flex; align-items: center; justify-content: center; }
.t-card-a__body .meta li > span:last-child { color: var(--k-navy); font-weight: 500; }
.t-card-a__cta { display: flex; flex-direction: column; gap: 8px; align-items: stretch; }
.t-card-a__cta .seats { font-size: 12px; color: var(--k-ink-2); text-align: center; }
@media (max-width: 760px) {
  .t-card-a { grid-template-columns: 1fr; text-align: left; }
  .t-card-a__date { justify-self: start; }
  .t-card-a__cta { align-items: flex-start; }
}

/* Variant B: stamp cards (vertical, organic) */
.t-grid-b { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .t-grid-b { grid-template-columns: 1fr; } }
.t-card-b {
  position: relative;
  background: var(--k-white);
  border-radius: 36px 28px 44px 24px / 32px 40px 28px 44px;
  padding: 32px 30px 30px;
  box-shadow: 0 2px 4px rgba(28,46,76,0.04), 0 18px 36px -22px rgba(28,46,76,0.22);
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .18s var(--ease-out);
}
.t-card-b:hover { transform: translateY(-3px) rotate(-0.4deg); }
.t-card-b:nth-child(2) { background: var(--k-mint-100); }
.t-card-b:nth-child(3) { background: var(--k-sand); }
.t-card-b__stamp {
  display: inline-flex; align-items: center; justify-content: center;
  align-self: flex-start;
  background: var(--k-coral); color: var(--k-white);
  border-radius: 70% 30% 60% 40% / 50% 50% 50% 50%;
  padding: 14px 22px;
  font-family: var(--font-display); font-style: italic; font-weight: 800;
  font-size: 22px; letter-spacing: -0.01em;
  transform: rotate(-4deg);
  box-shadow: 0 6px 16px -10px rgba(229, 66, 79, 0.6);
}
.t-card-b__title { font-family: var(--font-display); font-style: italic; font-weight: 800; color: var(--k-coral); font-size: 28px; line-height: 1.05; margin: 0; }
.t-card-b__meta { color: var(--k-ink-2); font-size: 14.5px; line-height: 1.55; margin: 0; }
.t-card-b__meta strong { color: var(--k-navy); font-weight: 700; }
.t-card-b__spacer { flex: 1; }
.t-card-b__cta { display: flex; flex-direction: column; gap: 8px; }
.t-card-b__seats { font-size: 12px; color: var(--k-ink-2); }

.termine__foot {
  margin-top: 28px; padding: 18px 24px;
  background: var(--k-white); border-radius: 999px;
  display: inline-flex; align-items: center; gap: 12px; font-size: 14px; color: var(--k-ink-2);
  box-shadow: var(--shadow-2);
}
.termine__foot strong { color: var(--k-navy); font-weight: 700; }

.termine__empty {
  background: var(--k-white); border-radius: 22px;
  padding: 32px 28px; text-align: center;
  color: var(--k-ink-2); font-size: 16px; line-height: 1.55;
  box-shadow: var(--shadow-1); border: 1px dashed var(--color-border);
}
.termine__empty a { color: var(--k-coral); text-decoration: underline; }

/* ─── Banner ──────────────────────────────────────────────────────────── */
.banner { padding: 0; }
.banner__inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
.banner--reverse .banner__inner { grid-template-columns: 1fr 1fr; }
.banner--reverse .banner__media { order: 2; }
@media (max-width: 820px) { .banner__inner, .banner--reverse .banner__inner { grid-template-columns: 1fr; } .banner--reverse .banner__media { order: 0; } }

.banner__media {
  position: relative;
  background: var(--k-mint);
  display: flex; align-items: center; justify-content: center;
  min-height: 360px;
  overflow: hidden;
}
.banner__media image-slot { width: 100%; height: 100%; }
.banner__media--sand { background: var(--k-sand); }
.banner__media--coral { background: var(--k-coral-100); }

.banner__text { padding: clamp(48px, 6vw, 88px) clamp(32px, 5vw, 72px); display: flex; flex-direction: column; justify-content: center; gap: 18px; background: var(--k-white); }
.banner__text--sand { background: var(--k-sand-100); }
.banner__text--mint { background: var(--k-mint-100); }
.banner__text h2 { margin: 0; }
.banner__text .eyebrow { margin-bottom: 4px; }
.banner__text p { color: var(--k-ink-2); line-height: 1.65; font-size: 16.5px; margin: 0 0 4px; }
.banner__text p.lead { color: var(--k-navy); font-size: 18px; }

.foerder-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.foerder-list li { display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; color: var(--k-navy); line-height: 1.5; font-size: 16.5px; }
.foerder-list li svg { margin-top: 4px; }
.foerder-transfer { margin-top: 22px; padding: 22px 24px; background: var(--k-coral-50); border-radius: 22px; }
.foerder-transfer h4 { margin: 0 0 10px; font-size: 19px; }
.foerder-transfer p { color: var(--k-ink-2); margin: 0 0 8px; font-size: 15px; line-height: 1.55; }

/* ─── Über uns ────────────────────────────────────────────────────────── */
.about { padding: clamp(72px, 9vw, 128px) 0; background: var(--k-sand-100); }
.about__intro { max-width: 720px; margin: 0 0 clamp(36px, 5vw, 56px); text-align: left; }
.about__title { font-family: var(--font-display); font-style: italic; font-weight: 800; color: var(--k-coral); font-size: clamp(34px, 5vw, 60px); line-height: 1.0; letter-spacing: -0.02em; margin: 0; }
.about__sub { font-family: var(--font-display); font-style: italic; font-weight: 800; color: var(--k-coral); font-size: clamp(22px, 2.6vw, 32px); line-height: 1.1; margin: 6px 0 0; }
.about__intro .signature { font-family: var(--font-display); font-style: italic; font-weight: 700; color: var(--k-navy); font-size: 22px; margin: 16px 0 0; }

.about__grid { display: flex; flex-direction: column; gap: clamp(24px, 4vw, 40px); max-width: 560px; margin: 0; }
@media (max-width: 820px) { .about__grid { max-width: 100%; } }

.trainer { display: flex; flex-direction: row; align-items: center; gap: clamp(20px, 3vw, 32px); }
.trainer__photo {
  flex: 0 0 auto;
  width: clamp(108px, 13vw, 136px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--k-mint);
}
.trainer__photo image-slot { width: 100%; height: 100%; }
.trainer__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.trainer__name { font-style: normal; font-weight: 700; color: var(--k-coral); font-size: clamp(20px, 2.2vw, 24px); margin: 0 0 4px; line-height: 1.15; }
.trainer__role { color: var(--k-navy); font-size: clamp(16px, 1.8vw, 19px); line-height: 1.32; margin: 0; }

.about__body { max-width: 820px; margin: 48px 0 0; }
.about__body p { color: var(--k-ink-2); line-height: 1.7; font-size: 16.5px; margin: 0 0 14px; }
.about__body p.lead { color: var(--k-navy); font-size: 18px; }
.about__cert { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; padding: 8px 16px; background: var(--k-mint); border-radius: 999px; font-size: 13px; font-weight: 700; color: var(--k-navy); }
.about__cert svg { flex: 0 0 auto; }

/* ─── Footer ──────────────────────────────────────────────────────────── */
.footer { background: var(--k-coral); color: var(--k-white); padding: 64px 0 28px; }
.footer__grid { display: grid; grid-template-columns: 1fr auto; gap: 40px; }
@media (max-width: 820px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand img { height: 96px; width: auto; }
.footer__brand p { margin-top: 16px; color: rgba(255,255,255,0.92); font-size: 14px; line-height: 1.55; max-width: 36ch; }

/* ─── Mobile type scaling (desktop unchanged) ────────────────────────── */
@media (max-width: 640px) {
  .hero__title { font-size: 40px !important; }
  .intro__lede h2 { font-size: 34px !important; }
  .intro__questions p { font-size: 19px; }
  .fokus__title { font-size: 32px; }
  .fokus__sub { font-size: 22px; }
  .foerdern__title { font-size: 34px !important; }
  .foerdern__sub { font-size: 24px !important; }
  .foerdern__list li { font-size: 17px; }
}
.footer__col { display: flex; flex-direction: column; gap: 8px; }
.footer__col h6 { color: var(--k-white); margin: 0 0 6px; font-weight: 700; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; }
.footer__col a, .footer__col span { color: rgba(255,255,255,0.92); text-decoration: none; font-size: 14px; line-height: 1.7; }
.footer__col a:hover { color: var(--k-white); text-decoration: underline; }
.footer__base { border-top: 1px solid rgba(255,255,255,0.25); margin-top: 48px; padding-top: 20px; display: flex; justify-content: space-between; gap: 16px; font-size: 12px; color: rgba(255,255,255,0.85); flex-wrap: wrap; }
.footer__base a { color: rgba(255,255,255,0.92); text-decoration: none; }
.footer__base a:hover { text-decoration: underline; }
