/* ==========================================================================
   Rehathletik by Ronnie Nolte – Stylesheet
   Farben: Schwarz / Weiß / Cyan #0DE9EB · Schrift: Figtree (lokal, OFL)
   ========================================================================== */

/* ---------- Schrift ---------- */
@font-face {
  font-family: "Figtree";
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url("../assets/fonts/figtree-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Figtree";
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url("../assets/fonts/figtree-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Design-Tokens ---------- */
:root {
  --ink: #0A0A0A;
  --ink-2: #161819;
  --ink-3: #232628;
  --paper: #FFFFFF;
  --paper-2: #F4F6F7;
  --line: #E3E7E9;
  --line-dark: #2C3134;
  --text: #17191A;
  --text-2: #4F565A;
  --text-on-dark: #F5F7F8;
  --text-on-dark-2: #B9C1C5;
  --cyan: #0DE9EB;
  --cyan-deep: #0AB9BB;   /* für Text auf Weiß (Kontrast) */
  --cyan-soft: rgba(13, 233, 235, .12);

  --font: "Figtree", "Avenir Next", "Avenir", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --container: 1140px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section: clamp(4.5rem, 9vw, 7.5rem);
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 20px 50px -30px rgba(10, 10, 10, .45);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }
.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 100;
  padding: .6rem 1rem; background: var(--cyan); color: var(--ink);
  border-radius: var(--radius-sm); font-weight: 700; text-decoration: none;
}
.skip-link:focus { top: 1rem; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Layout ---------- */
.container {
  width: min(100% - 2 * var(--gutter), var(--container));
  margin-inline: auto;
}
.section { padding-block: var(--section); }
[id] { scroll-margin-top: 74px; }
.section--dark { background: var(--ink); color: var(--text-on-dark); }
.section--muted { background: var(--paper-2); }

/* ---------- Typografie ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .65rem;
  font-size: .95rem; font-weight: 600; letter-spacing: .04em; text-transform: lowercase;
  color: var(--text-2); margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 1.75rem; height: 3px; background: var(--cyan); border-radius: 2px; }
.section--dark .eyebrow { color: var(--cyan); }

.h1 {
  font-size: clamp(2.35rem, 5.4vw, 4.1rem);
  line-height: 1.04; font-weight: 800; letter-spacing: -.02em;
}
.h2 {
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  line-height: 1.12; font-weight: 800; letter-spacing: -.02em;
  max-width: 22ch;
}
.h3 { font-size: 1.25rem; line-height: 1.3; font-weight: 700; }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); line-height: 1.55; color: var(--text-2); max-width: 60ch; }
.section--dark .lead { color: var(--text-on-dark-2); }
.section-head { margin-bottom: clamp(2.25rem, 5vw, 3.5rem); }
.section-head .lead { margin-top: 1rem; }
.muted { color: var(--text-2); }
.section--dark .muted { color: var(--text-on-dark-2); }
strong { font-weight: 700; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.5rem; border-radius: 999px;
  font-weight: 700; font-size: 1rem; line-height: 1; text-decoration: none;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.05em; height: 1.05em; flex: none; }
.btn--primary { background: var(--cyan); color: var(--ink); box-shadow: 0 10px 30px -12px rgba(13, 233, 235, .8); }
.btn--primary:hover { background: #3DEFF1; }
.btn--ghost { background: transparent; color: var(--text-on-dark); border: 1.5px solid rgba(255, 255, 255, .28); }
.btn--ghost:hover { border-color: var(--cyan); color: var(--cyan); }
.btn--dark { background: var(--ink); color: var(--paper); }
.btn--dark:hover { background: var(--ink-3); }
.btn--sm { padding: .7rem 1.15rem; font-size: .95rem; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 10, 10, .92);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  color: var(--text-on-dark);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: 74px; }
.brand { display: inline-flex; align-items: baseline; gap: .7rem; text-decoration: none; color: var(--paper); }
.brand__mark { height: 28px; width: auto; }
.brand__by { font-size: .78rem; font-weight: 500; letter-spacing: .06em; color: var(--text-on-dark-2); white-space: nowrap; }
.nav { display: flex; align-items: center; gap: 1.75rem; }
.nav__links { display: flex; gap: 1.6rem; }
.nav__links a {
  text-decoration: none; font-weight: 600; font-size: .98rem; color: var(--text-on-dark-2);
  transition: color .2s var(--ease);
}
.nav__links a:hover { color: var(--paper); }
.nav__item-cta { display: none; }
.nav__toggle {
  display: none; width: 44px; height: 44px; align-items: center; justify-content: center;
  border-radius: var(--radius-sm); color: var(--paper);
}
.nav__toggle svg { width: 26px; height: 26px; }
.nav__toggle .icon-close { display: none; }
.nav__toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav__toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 860px) {
  .brand__by { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__links {
    position: absolute; left: 0; right: 0; top: 74px;
    flex-direction: column; gap: 0;
    background: var(--ink); border-bottom: 1px solid var(--line-dark);
    padding: .5rem var(--gutter) 1.25rem;
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { display: block; padding: .95rem 0; border-bottom: 1px solid rgba(255, 255, 255, .08); font-size: 1.05rem; color: var(--paper); }
  .nav__cta { display: none; }
  .nav__item-cta { display: block; padding-top: 1.1rem; }
  .nav__item-cta a.btn { display: inline-flex; border: 0; padding: .8rem 1.3rem; color: var(--ink); }
}

/* ---------- Hero ---------- */
.hero {
  background: var(--ink); color: var(--text-on-dark);
  position: relative; overflow: hidden;
  padding-block: clamp(3.5rem, 8vw, 6.5rem) clamp(3rem, 6vw, 5rem);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(60% 50% at 85% 15%, rgba(13, 233, 235, .16), transparent 70%),
    radial-gradient(40% 40% at 10% 90%, rgba(13, 233, 235, .07), transparent 70%);
}
.hero__grid {
  position: relative;
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.hero .eyebrow { color: var(--cyan); }
.hero__claim {
  margin-top: 1.4rem; font-size: 1.05rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--cyan);
}
.hero__lead { margin-top: 1.25rem; font-size: clamp(1.1rem, 1.7vw, 1.3rem); line-height: 1.55; color: var(--text-on-dark-2); max-width: 54ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2.25rem; }
.hero__note { margin-top: 1rem; font-size: .92rem; color: var(--text-on-dark-2); }

.photo {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--ink-2); box-shadow: 0 40px 80px -40px rgba(0, 0, 0, .9);
}
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo--hero { aspect-ratio: 4 / 5; max-width: 460px; margin-left: auto; }
.photo--portrait { aspect-ratio: 4 / 5; }
.photo__caption {
  position: absolute; left: 1rem; bottom: 1rem; right: 1rem;
  display: inline-flex; align-items: center; gap: .6rem; width: fit-content;
  padding: .5rem .85rem; border-radius: 999px;
  background: rgba(10, 10, 10, .7); color: var(--text-on-dark); font-size: .85rem; font-weight: 600;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.photo__caption::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); }

.proof {
  position: relative;
  margin-top: clamp(3rem, 6vw, 4.5rem); padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1.5rem 1.25rem;
}
.proof__item { display: grid; gap: .25rem; min-width: 0; }
.proof__item span { overflow-wrap: anywhere; }
.proof__value { font-size: 1.25rem; font-weight: 800; letter-spacing: -.01em; color: var(--paper); }
.proof__label { font-size: .92rem; color: var(--text-on-dark-2); line-height: 1.4; }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .photo--hero { max-width: 420px; margin-left: 0; aspect-ratio: 4 / 3; }
  .proof { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) { .proof { grid-template-columns: 1fr; gap: 1.25rem; } .proof__item span { hyphens: auto; } }

/* ---------- Karten ---------- */
.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.75rem 1.6rem; position: relative; overflow: hidden;
  box-shadow: var(--shadow);
}
.card::before { content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%; background: var(--cyan); }
.card__num { font-size: .85rem; font-weight: 700; letter-spacing: .12em; color: var(--text-2); margin-bottom: 1rem; }
.card .h3 { margin-bottom: .6rem; }
.card p { color: var(--text-2); hyphens: manual; }
@media (max-width: 900px) { .cards { grid-template-columns: 1fr; } }

.callout {
  margin-top: 1.5rem; padding: 1.25rem 1.5rem; border-radius: var(--radius);
  background: var(--ink); color: var(--text-on-dark);
  display: flex; gap: 1rem; align-items: flex-start;
}
.callout svg { width: 26px; height: 26px; flex: none; color: var(--cyan); margin-top: .1rem; }
.callout p { color: var(--text-on-dark-2); }
.callout strong { color: var(--paper); }

/* ---------- Leistungen ---------- */
.offer { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.checks { display: grid; gap: .9rem; margin-top: 1.75rem; }
.checks li { display: flex; gap: .85rem; align-items: flex-start; }
.checks svg { width: 24px; height: 24px; flex: none; color: var(--ink); background: var(--cyan); border-radius: 50%; padding: 5px; margin-top: .1rem; }
.checks strong { display: block; }
.checks span { color: var(--text-2); }

.price {
  position: sticky; top: 96px;
  background: var(--ink); color: var(--text-on-dark); border-radius: var(--radius);
  padding: 2rem 1.9rem; box-shadow: 0 40px 80px -45px rgba(0, 0, 0, .8);
}
.price__label { font-size: .9rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--cyan); }
.price__value { margin-top: .6rem; font-size: clamp(2.6rem, 4vw, 3.4rem); font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.price__value small { font-size: 1.1rem; font-weight: 600; letter-spacing: 0; color: var(--text-on-dark-2); }
.price__value small:first-child { margin-right: .15em; }
.price__facts { display: grid; gap: .7rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line-dark); }
.price__facts li { display: flex; gap: .7rem; color: var(--text-on-dark-2); font-size: .98rem; }
.price__facts li::before { content: "—"; color: var(--cyan); flex: none; }
.price .btn { width: 100%; margin-top: 1.6rem; }
.price__hint { margin-top: .9rem; font-size: .85rem; color: var(--text-on-dark-2); line-height: 1.45; }
@media (max-width: 900px) { .offer { grid-template-columns: 1fr; } .price { position: static; } }

.usps { margin-top: clamp(3rem, 6vw, 4.5rem); }
.usps__grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1rem; margin-top: 1.5rem; }
.usp { padding: 1.35rem 1.25rem; border-radius: var(--radius); background: var(--paper-2); border: 1px solid var(--line); }
.usp__num { font-size: 1.6rem; font-weight: 800; color: var(--cyan-deep); letter-spacing: -.02em; }
.usp .h3 { font-size: 1.05rem; margin-top: .35rem; }
.usp p { margin-top: .4rem; font-size: .93rem; color: var(--text-2); line-height: 1.5; }
@media (max-width: 1000px) { .usps__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .usps__grid { grid-template-columns: 1fr; } }

/* ---------- Ablauf (Timeline) ---------- */
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.5rem; counter-reset: step; }
.step { position: relative; padding-top: 1.5rem; border-top: 1px solid var(--line-dark); }
.step::before {
  content: ""; position: absolute; top: -1px; left: 0; width: 3.5rem; height: 3px; background: var(--cyan);
}
.step__num { font-size: .85rem; font-weight: 700; letter-spacing: .12em; color: var(--cyan); }
.step .h3 { margin-top: .5rem; color: var(--paper); }
.step p { margin-top: .6rem; color: var(--text-on-dark-2); font-size: .98rem; }
.step__tag { display: inline-block; margin-top: .9rem; padding: .3rem .7rem; border-radius: 999px; font-size: .8rem; font-weight: 700; background: var(--cyan-soft); color: var(--cyan); }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Über mich ---------- */
.about { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.about__text p + p { margin-top: 1rem; }
.quote {
  margin-top: 1.75rem; padding-left: 1.25rem; border-left: 3px solid var(--cyan);
  font-size: 1.25rem; font-weight: 600; line-height: 1.45; letter-spacing: -.01em;
}
.timeline { margin-top: 2rem; display: grid; gap: .1rem; }
.timeline li { display: grid; grid-template-columns: 5.5rem 1fr; gap: 1rem; padding: .7rem 0; border-top: 1px solid var(--line); }
.timeline li:last-child { border-bottom: 1px solid var(--line); }
.timeline time { font-weight: 800; color: var(--cyan-deep); font-variant-numeric: tabular-nums; }
.timeline span { color: var(--text-2); }
.timeline strong { color: var(--text); }
.timeline a { color: var(--text); text-decoration-color: var(--cyan-deep); text-underline-offset: 3px; }
.timeline a:hover { color: var(--cyan-deep); }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.25rem; }
.chips li { padding: .45rem .85rem; border-radius: 999px; background: var(--paper-2); border: 1px solid var(--line); font-size: .9rem; font-weight: 600; color: var(--text-2); }
.chips--sports { margin-top: 1.4rem; align-items: center; }
.chips__label { background: none !important; border: 0 !important; padding-left: 0 !important; color: var(--text) !important; letter-spacing: .04em; text-transform: lowercase; }
.about__media { position: sticky; top: 96px; display: grid; gap: 1rem; }
.photo--wide { aspect-ratio: 3 / 2; }
@media (max-width: 900px) { .about { grid-template-columns: 1fr; } .about__media { position: static; max-width: 420px; } }

/* ---------- Stimmen ---------- */
.testimonials { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.testimonial {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.9rem; display: grid; gap: 1.25rem; align-content: start; box-shadow: var(--shadow);
}
.testimonial__mark { width: 40px; height: 40px; color: var(--cyan); }
.testimonial blockquote p { color: var(--text); font-size: .98rem; }
.testimonial blockquote p + p { margin-top: .85rem; }
.testimonial__result {
  display: inline-flex; align-items: center; gap: .5rem; width: fit-content;
  padding: .45rem .85rem; border-radius: 999px; background: var(--ink); color: var(--paper);
  font-size: .88rem; font-weight: 700;
}
.testimonial__result::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); }
.testimonial figcaption { display: flex; align-items: center; gap: .85rem; padding-top: 1.1rem; border-top: 1px solid var(--line); }
.testimonial figcaption div { display: grid; gap: .1rem; }
.testimonial__photo { flex: none; width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid var(--cyan); }
.testimonial figcaption strong { font-size: 1.05rem; }
.testimonial figcaption span { color: var(--text-2); font-size: .95rem; }
@media (max-width: 1000px) { .testimonials { grid-template-columns: 1fr; max-width: 720px; } }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  padding: 1.2rem 0; font-weight: 700; font-size: 1.1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 12px; height: 12px;
  border-right: 2.5px solid var(--cyan-deep); border-bottom: 2.5px solid var(--cyan-deep);
  transform: rotate(45deg); transition: transform .25s var(--ease); margin-right: .4rem;
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq .faq__body { padding: 0 0 1.4rem; color: var(--text-2); max-width: 66ch; }
.faq .faq__body p + p { margin-top: .7rem; }

/* ---------- Kontakt / CTA ---------- */
.cta { text-align: center; }
.cta .h2 { margin-inline: auto; max-width: 18ch; }
.cta .lead { margin: 1.25rem auto 0; }
.cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .85rem; margin-top: 2.25rem; }
.cta__meta {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem 2rem;
  margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--line-dark);
  color: var(--text-on-dark-2); font-size: .98rem;
}
.cta__meta a { color: var(--paper); text-decoration: none; font-weight: 600; }
.cta__meta a:hover { color: var(--cyan); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--text-on-dark-2); border-top: 1px solid var(--line-dark); padding-block: 1.75rem; font-size: .92rem; }
.footer__inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem; }
.footer__links { display: flex; gap: 1.5rem; }
.footer__links a { text-decoration: none; color: var(--text-on-dark-2); font-weight: 600; }
.footer__links a:hover { color: var(--paper); }
.footer__social { display: inline-flex; align-items: center; gap: .4rem; }
.footer__social svg { width: 18px; height: 18px; }
.cta__meta a[href*="instagram"] { color: var(--paper); }

/* ---------- Rechtsseiten ---------- */
.legal { max-width: 760px; }
.legal .h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }
.legal h2 { font-size: 1.35rem; font-weight: 800; margin-top: 2.25rem; margin-bottom: .6rem; letter-spacing: -.01em; }
.legal h3 { font-size: 1.08rem; font-weight: 700; margin-top: 1.5rem; margin-bottom: .4rem; }
.legal p + p { margin-top: .75rem; }
.legal ul { list-style: disc; padding-left: 1.3rem; margin-top: .5rem; }
.legal li + li { margin-top: .3rem; }
.legal a { color: var(--text); text-decoration-color: var(--cyan-deep); text-underline-offset: 3px; }
.legal .note {
  margin-top: 1rem; padding: 1rem 1.25rem; border-radius: var(--radius-sm);
  background: var(--paper-2); border: 1px solid var(--line); color: var(--text-2); font-size: .95rem;
}
.legal address { font-style: normal; }
.legal .todo { background: #FFF4CC; padding: .05em .35em; border-radius: 4px; font-weight: 700; }

/* ---------- Scroll-Reveal (nur mit JS aktiv) ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }
@media print { .js [data-reveal] { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
  .btn, .faq summary::after { transition: none; }
}

/* ---------- Bildgalerie (Teamfotos) ---------- */
.gallery {
  width: min(100% - 2 * var(--gutter), 1400px); margin: var(--section) auto 0;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem;
}
.gallery__item {
  position: relative; border-radius: var(--radius); overflow: hidden; background: var(--ink-2);
  aspect-ratio: 3 / 2;
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
.gallery__caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2.5rem 1.25rem 1.1rem;
  background: linear-gradient(to top, rgba(10, 10, 10, .88), rgba(10, 10, 10, 0));
  color: var(--text-on-dark-2); font-size: .92rem; line-height: 1.45;
}
.gallery__caption strong { color: var(--paper); }
@media (max-width: 900px) { .gallery { grid-template-columns: 1fr; } .gallery__item { aspect-ratio: 4 / 3; } .gallery__item img { object-position: center 30%; } }

/* ---------- Hero-Figur (freigestelltes Portrait) ---------- */
.hero__figure {
  position: relative; align-self: end; justify-self: end;
  width: min(100%, 500px); aspect-ratio: 8 / 9;
  margin-bottom: calc(-1 * clamp(3rem, 6vw, 5rem));
}
.hero__figure::before {
  content: ""; position: absolute; inset: auto 0 0 0; margin: auto;
  width: 90%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(13, 233, 235, .55), rgba(13, 233, 235, .12) 60%, transparent 72%);
  filter: blur(6px);
}
.hero__figure::after {
  content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 84%; aspect-ratio: 1; border-radius: 50%;
  border: 1.5px solid rgba(13, 233, 235, .35);
  -webkit-mask-image: linear-gradient(to top, black 45%, transparent 100%);
  mask-image: linear-gradient(to top, black 45%, transparent 100%);
}
.hero__figure img {
  position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; object-position: top center;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, .6));
}
@media (max-width: 900px) {
  .hero__figure { justify-self: center; width: min(100%, 380px); margin-bottom: -1rem; }
}

/* ---------- Erstgespräch-Formular ---------- */
.form-intro { background: var(--ink); color: var(--text-on-dark); padding-block: clamp(3rem, 7vw, 5.5rem); position: relative; overflow: hidden; }
.form-intro::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(50% 60% at 90% 10%, rgba(13, 233, 235, .16), transparent 70%);
}
.form-intro__grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.form-intro .eyebrow { color: var(--cyan); }
.form-intro .h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
.form-intro__notes { padding: 1.5rem 1.6rem; border-radius: var(--radius); background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1); color: var(--text-on-dark-2); }
.form-intro__notes p + p { margin-top: .9rem; }
.form-intro__notes strong { color: var(--paper); }
@media (max-width: 900px) { .form-intro__grid { grid-template-columns: 1fr; } }

.form-wrap { max-width: 860px; }
.form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 4vw, 2.75rem); box-shadow: var(--shadow); }
.form__group { border: 0; padding: 0; margin: 0 0 2.25rem; min-width: 0; }
.form__group legend {
  display: flex; align-items: center; gap: .75rem; padding: 0; margin-bottom: 1.25rem;
  font-size: 1.25rem; font-weight: 800; letter-spacing: -.01em;
}
.form__num { display: inline-grid; place-items: center; width: 2.1rem; height: 2.1rem; border-radius: 50%; background: var(--ink); color: var(--cyan); font-size: .85rem; font-weight: 800; letter-spacing: .04em; }
.form__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem 1.25rem; }
.form__row--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 640px) { .form__row, .form__row--3 { grid-template-columns: 1fr; } }
.field { margin-bottom: 1.1rem; min-width: 0; }
.field label, .field__label { display: block; font-weight: 600; margin-bottom: .45rem; line-height: 1.4; }
.field abbr { text-decoration: none; color: var(--cyan-deep); font-weight: 800; }
.field em { font-style: italic; color: var(--text-2); font-weight: 500; }
.field input[type="text"], .field input[type="email"], .field input[type="tel"], .field input[type="number"], .field textarea {
  width: 100%; font: inherit; color: var(--text);
  padding: .8rem .95rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: var(--paper-2);
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 6.5rem; line-height: 1.5; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--ink); background: var(--paper); box-shadow: 0 0 0 4px var(--cyan-soft); }
.field input::placeholder, .field textarea::placeholder { color: #9AA3A8; }
.js .form input:user-invalid, .js .form textarea:user-invalid { border-color: #D9483B; }

.choices { display: flex; flex-wrap: wrap; gap: .6rem; }
.choices--stack { flex-direction: column; }
.choice { display: flex; align-items: flex-start; gap: .7rem; padding: .75rem .95rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: var(--paper-2); cursor: pointer; font-weight: 500; line-height: 1.4; transition: border-color .2s var(--ease), background .2s var(--ease); }
.choice:hover { border-color: #C5CCD0; }
.choice:has(input:checked) { border-color: var(--ink); background: var(--paper); box-shadow: 0 0 0 3px var(--cyan-soft); }
.choice input { flex: none; width: 1.15rem; height: 1.15rem; margin: .15rem .35rem 0 0; accent-color: var(--cyan-deep); }
.choices:not(.choices--stack) .choice { flex: 1 1 200px; }

.form__consent { margin: 1.5rem 0 0; padding: 1.1rem 1.2rem; border-radius: var(--radius-sm); background: var(--paper-2); border: 1px solid var(--line); }
.check { display: flex; gap: .8rem; align-items: flex-start; cursor: pointer; font-size: .95rem; line-height: 1.5; color: var(--text-2); }
.check input { flex: none; width: 1.2rem; height: 1.2rem; margin-top: .2rem; accent-color: var(--cyan-deep); }
.check a { color: var(--text); text-decoration-color: var(--cyan-deep); text-underline-offset: 3px; }
.form__submit { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; margin-top: 1.5rem; }
.form__submit .btn { min-width: 240px; }
.form__submit .btn:disabled { opacity: .6; cursor: wait; transform: none; }
.form__hint { font-size: .9rem; }
.hp { position: absolute !important; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.alert { margin-bottom: 1.25rem; padding: 1rem 1.2rem; border-radius: var(--radius-sm); background: #FDECEA; border: 1px solid #F1B8B1; color: #7A2018; }

/* ---------- Danke-Seite ---------- */
.thanks { min-height: 60vh; display: flex; align-items: center; }
.thanks .container { max-width: 760px; }
.thanks__icon { width: 56px; height: 56px; color: var(--cyan); margin-bottom: 1.5rem; }
.thanks .hero__lead { margin-top: 1.25rem; }
.thanks a:not(.btn) { color: var(--paper); }

/* ---------- Teams-Seite ---------- */
.hero--teams { padding-top: clamp(3.5rem, 8vw, 6.5rem); }
.hero--teams .hero__bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 35%;
  opacity: .28; filter: saturate(.7);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 55%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 0%, black 55%, transparent 100%);
}
.hero--teams::before {
  background:
    linear-gradient(to right, rgba(10, 10, 10, .92) 0%, rgba(10, 10, 10, .75) 55%, rgba(10, 10, 10, .45) 100%),
    radial-gradient(50% 60% at 90% 10%, rgba(13, 233, 235, .18), transparent 70%);
}
.hero--teams::before { z-index: 1; }
.hero--teams .hero__bg { z-index: 0; }
.hero--teams .container { position: relative; z-index: 2; }
.hero--teams .hero__content > * { max-width: 800px; }
.hero--teams .hero__content .hero__lead { max-width: 60ch; }
.hero--teams .proof { margin-top: clamp(3rem, 6vw, 4.5rem); }

.formats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.format {
  position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.75rem 1.6rem 1.9rem; box-shadow: var(--shadow); overflow: hidden;
}
.format::before { content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%; background: var(--cyan); }
.format__num { font-size: .85rem; font-weight: 700; letter-spacing: .12em; color: var(--text-2); margin-bottom: .9rem; }
.format .h3 { font-size: 1.35rem; }
.format__for { margin-top: .5rem; color: var(--text-2); }
.format__label { margin-top: 1.4rem; font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--cyan-deep); }
.format__list { display: grid; gap: .6rem; margin-top: .7rem; }
.format__list li { position: relative; padding-left: 1.4rem; font-size: .97rem; line-height: 1.5; }
.format__list li::before {
  content: ""; position: absolute; left: 0; top: .55em; width: .8rem; height: .8rem; border-radius: 50%;
  background: var(--cyan); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='12' fill='black'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='12' fill='black'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity: .9;
}
@media (max-width: 1000px) { .formats { grid-template-columns: 1fr; max-width: 720px; } }

.gallery--flush { margin-top: 0; }
#anfrage .form-wrap { max-width: 860px; }
#anfrage .section-head { margin-bottom: 1.75rem; }

/* Teaser auf der Startseite */
.teaser__grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.teaser__grid .lead { margin-top: 1rem; }
.teaser__list { display: grid; gap: .8rem; }
.teaser__item {
  display: flex; gap: .9rem; align-items: flex-start;
  padding: 1rem 1.15rem; border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1);
}
.teaser__item strong { display: block; color: var(--paper); }
.teaser__item span { color: var(--text-on-dark-2); font-size: .95rem; line-height: 1.45; }
.teaser__num { flex: none; display: inline-grid; place-items: center; width: 2rem; height: 2rem; border-radius: 50%; background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .14); color: var(--paper); font-size: .78rem; font-weight: 800; }
@media (max-width: 900px) { .teaser__grid { grid-template-columns: 1fr; } }

/* ---------- Bildstreifen (Ablauf) ---------- */
.strip { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; margin-top: clamp(3rem, 6vw, 4.5rem); }
.strip__item { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--ink-2); aspect-ratio: 4 / 3; }
.strip__item img { width: 100%; height: 100%; object-fit: cover; }
.strip__caption {
  position: absolute; left: .9rem; bottom: .9rem; max-width: calc(100% - 1.8rem);
  padding: .45rem .85rem; border-radius: 999px;
  background: rgba(10, 10, 10, .72); color: var(--text-on-dark-2); font-size: .85rem; line-height: 1.35;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.strip__caption strong { color: var(--paper); }
@media (max-width: 900px) { .strip { grid-template-columns: 1fr; max-width: 520px; } }

/* Bilder auf den Formatkarten (Teams) */
.format__img { display: block; width: calc(100% + 3.2rem); height: auto; max-width: none; margin: -1.75rem -1.6rem 1.25rem; aspect-ratio: 3 / 2; object-fit: cover; }
