/* ════════════════════════════════════════════════════════════════════════
   Gabriel Nuo Coaching – Stylesheet v4
   Dark Performance Design · elektrisch-oranger Akzent
   Athletisch, hochwertig, kontraststark · Laptop / Tablet / Mobile
   ════════════════════════════════════════════════════════════════════════ */

:root {
  /* Akzent – elektrisch Orange */
  --brand: #ff6a1a;          /* Hauptakzent */
  --brand-2: #ff9442;        /* Sekundär / Gradient (Amber) */
  --brand-dark: #e2520c;     /* Hover / dunkler */
  --brand-ink: #140a02;      /* Text auf Akzent-Flächen */
  --brand-glow: rgba(255,106,26,.45);

  /* Flächen – tiefes Anthrazit */
  --bg: #0c0d10;             /* Seitenhintergrund */
  --bg-2: #121419;           /* Alt-Sektion */
  --surface: #16181e;        /* Cards */
  --surface-2: #1c1f27;      /* Inputs / Sub-Flächen */

  /* Extra-dunkle Kontrast-Flächen (Feature-Bänder, Footer) */
  --dark: #070809;
  --dark-2: #101218;

  /* Linien & Text */
  --border: #262932;
  --border-light: #353a45;
  --ink: #f4f2ec;            /* Haupttext (warmweiss) */
  --text: #f4f2ec;
  --muted: #9aa1ad;          /* gedämpfter Text */

  --shadow: 0 30px 70px -30px rgba(0,0,0,.85);
  --shadow-sm: 0 14px 34px -20px rgba(0,0,0,.8);
  --glow: 0 14px 40px -12px var(--brand-glow);
  --radius: 22px;
  --radius-sm: 14px;
  --maxw: 76rem;
  --font-head: "Archivo", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .logo, .price, .stats strong, .cta-banner h2 {
  font-family: var(--font-head);
  letter-spacing: -.02em;
  line-height: 1.08;
  font-weight: 800;
  color: var(--ink);
}
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); margin: 0 0 .5rem; }
h3 { font-size: 1.2rem; margin: 0 0 .4rem; font-weight: 700; }
p { margin: 0 0 .75rem; }
a { color: inherit; text-decoration: none; transition: color .15s; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 1.4rem; }
.section { padding: 6rem 0; }
.section-sm { padding: 3rem 0; }
.muted { color: var(--muted); }
.link-accent { color: var(--brand); font-weight: 700; }
.link-accent:hover { color: var(--brand-2); }
.text-center { text-align: center; }

.eyebrow {
  display: inline-block; font-family: var(--font-head);
  font-size: .78rem; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--brand); margin-bottom: .7rem;
}

/* ── Feature-Band (extra dunkel + Glow) ─────────────────────────────────────── */
.section-dark {
  background: var(--dark);
  color: var(--ink);
  position: relative; overflow: hidden;
}
.section-dark::before {
  content:""; position:absolute; inset:0;
  background: radial-gradient(720px 360px at 85% 0%, rgba(255,106,26,.18), transparent 60%);
  pointer-events:none;
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .muted { color: rgba(244,242,236,.62); }
.section-dark .card { background: var(--dark-2); border-color: rgba(255,255,255,.08); }
.section-dark .card:hover { border-color: rgba(255,106,26,.5); }

/* ── Header ──────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(12,13,16,.78);
  backdrop-filter: blur(14px) saturate(140%);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 4.6rem; gap: 1rem; }
.logo { display: flex; align-items: center; gap: .65rem; font-weight: 800; font-size: 1.05rem; color: var(--ink); }
.logo-img { height: 3rem; width: auto; display: block; }
.logo-mark {
  width: 2.5rem; height: 2.5rem; border-radius: 13px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: var(--brand-ink);
  display: grid; place-items: center; font-size: .82rem; font-weight: 900;
  letter-spacing: .02em;
  box-shadow: 0 8px 20px -8px var(--brand-glow);
}
.logo-text { color: var(--ink); }
.nav { display: flex; gap: .1rem; align-items: center; }
.nav a { padding: .5rem .8rem; border-radius: 10px; color: var(--muted); font-size: .92rem; font-weight: 600; }
.nav a:hover { color: var(--ink); background: rgba(255,255,255,.05); }
.nav a.active { color: var(--brand); }
.nav-toggle { display: none; background: none; border: none; color: var(--ink); font-size: 1.6rem; cursor: pointer; }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .9rem 1.7rem; border-radius: 999px;
  font-family: var(--font-head);
  font-size: .92rem; font-weight: 700; border: none; cursor: pointer;
  transition: transform .15s, box-shadow .2s, background .2s, border-color .2s, color .2s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brand); color: var(--brand-ink); box-shadow: var(--glow); }
.btn-primary:hover { background: var(--brand-2); transform: translateY(-2px); box-shadow: 0 18px 46px -12px var(--brand-glow); }
.btn-secondary { background: transparent; color: var(--ink); border: 1.5px solid var(--border-light); }
.btn-secondary:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.section-dark .btn-secondary { color: #fff; border-color: rgba(255,255,255,.4); }
.section-dark .btn-secondary:hover { background: #fff; color: var(--dark); border-color: #fff; }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero { padding: 5.5rem 0 4.5rem; position: relative; overflow: hidden; }
.hero::before {
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(760px 420px at 80% 6%, rgba(255,106,26,.20), transparent 60%),
    radial-gradient(620px 420px at 0% 100%, rgba(255,148,66,.07), transparent 60%);
  pointer-events:none;
}
.hero-grid { position: relative; display: grid; gap: 3.5rem; align-items: center; }
@media (min-width: 960px) { .hero-grid { grid-template-columns: 1.05fr .95fr; } }
.hero-inner { position: relative; max-width: 38rem; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); margin: 0; font-weight: 900; }
.hero h1 span { color: var(--brand); display: block; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.3rem; }
.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-top: 3rem; padding-top: 1.8rem; border-top: 1px solid var(--border); max-width: 30rem; }
.stats strong { font-size: 1.9rem; color: var(--brand); display: block; }
.stats span { font-size: .82rem; color: var(--muted); }

.hero-photo-wrap { position: relative; max-width: 440px; margin: 0 auto; }
.hero-photo-wrap::after {
  content:""; position:absolute; right:-18px; bottom:-18px;
  width: 66%; height: 66%; border-radius: var(--radius); z-index:-1;
  background: linear-gradient(135deg, var(--brand), var(--brand-2)); opacity:.35; filter: blur(2px);
}
.coach-photo-wrap {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); background: var(--surface);
  box-shadow: var(--shadow);
}
.coach-photo-wrap--accent { box-shadow: var(--shadow), 0 0 0 1px rgba(255,106,26,.18); }
.coach-photo { width: 100%; height: auto; display: block; object-fit: cover; object-position: center top; }
.hero-coach-photo { max-height: 520px; object-fit: cover; border-radius: var(--radius); }
.coach-about-grid { align-items: center; gap: 3.5rem; }
@media (min-width: 768px) { .coach-about-grid, .coach-coaching-intro { grid-template-columns: .85fr 1.15fr; } }

.badge {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .4rem 1rem; border-radius: 999px;
  border: 1px solid rgba(255,106,26,.45); background: rgba(255,106,26,.12);
  color: var(--brand-2); font-size: .8rem; font-weight: 700; margin-bottom: 1.1rem;
}

/* ── Grids ───────────────────────────────────────────────────────────────── */
.grid-2, .grid-3, .grid-4 { display: grid; gap: 1.5rem; }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: repeat(3,1fr); }
  .grid-4 { grid-template-columns: repeat(4,1fr); }
}
@media (min-width: 600px) and (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

/* ── Cards ───────────────────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.85rem;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: var(--border-light); }
.card.featured {
  border-color: rgba(255,106,26,.55);
  box-shadow: 0 0 0 1.5px rgba(255,106,26,.35), var(--glow);
  background: linear-gradient(180deg, rgba(255,106,26,.08), var(--surface));
}
.card h3 { margin: 0 0 .5rem; }
.price { color: var(--brand); font-size: 1.85rem; font-weight: 800; }

/* ── Blog/Story Prose ────────────────────────────────────────────────────── */
.post-prose { max-width: 72ch; line-height: 1.8; color: var(--ink); }
.post-prose h1,.post-prose h2,.post-prose h3,.post-prose h4 { font-family: var(--font-head); color: var(--ink); margin: 1.75rem 0 .5rem; line-height: 1.2; }
.post-prose h1 { font-size: 2rem; }
.post-prose h2 { font-size: 1.5rem; border-bottom: 1px solid var(--border); padding-bottom: .35rem; }
.post-prose h3 { font-size: 1.15rem; }
.post-prose p  { margin: .85rem 0; }
.post-prose ul,.post-prose ol { padding-left: 1.5rem; margin: .75rem 0; }
.post-prose li { margin: .35rem 0; }
.post-prose blockquote { border-left: 3px solid var(--brand); padding: .5rem 1rem; margin: 1rem 0; background: rgba(255,106,26,.06); border-radius: 0 8px 8px 0; color: var(--muted); font-style: italic; }
.post-prose pre,.post-prose code { background: var(--surface-2); border-radius: 6px; font-size: .875rem; }
.post-prose pre { padding: 1rem; overflow-x: auto; }
.post-prose code { padding: .1em .35em; }
.post-prose a { color: var(--brand); text-decoration: underline; }
.post-prose hr { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }
.post-prose strong { color: var(--ink); font-weight: 700; }
.post-prose .ql-size-small { font-size: .8rem; }
.post-prose .ql-size-large { font-size: 1.25rem; }
.post-prose .ql-size-huge  { font-size: 1.6rem; }

/* ── Erfolgsgeschichten Story-Text ─────────────────────────────────────── */
.story-prose {
  font-size: .925rem;
  line-height: 1.8;
  color: var(--ink);
  margin-top: .75rem;
}
.story-prose p { margin: .6rem 0; }
.story-prose br + br { display: block; margin: .4rem 0; }
.offer-card { display: flex; flex-direction: column; }
.offer-card.offer-glow {
  border-color: rgba(255,106,26,.7);
  box-shadow: 0 0 0 2px rgba(255,106,26,.5), 0 0 32px rgba(255,106,26,.25), var(--glow);
  animation: offerGlowPulse 3s ease-in-out infinite;
}
@keyframes offerGlowPulse {
  0%,100% { box-shadow: 0 0 0 2px rgba(255,106,26,.5), 0 0 32px rgba(255,106,26,.25), var(--glow); }
  50%      { box-shadow: 0 0 0 2px rgba(255,106,26,.7), 0 0 48px rgba(255,106,26,.4), var(--glow); }
}
.offer-features { list-style: none; padding: 0; margin: .75rem 0; display: flex; flex-direction: column; gap: .35rem; }
.offer-features li { font-size: .875rem; color: var(--muted); display: flex; gap: .5rem; align-items: flex-start; line-height: 1.4; }
.offer-features li::before { content: ''; width: .9rem; height: .9rem; border-radius: 999px; background: rgba(255,106,26,.18); color: var(--brand); display: grid; place-items: center; flex-shrink: 0; margin-top: .12rem; font-size: .6rem; }
/* If line starts with ✓ or ✗ – let it show naturally */
blockquote.card { margin: 0; }
blockquote.card footer { color: var(--ink); }

/* Highlight-Card (Akzent-Tönung) */
.card-highlight {
  background: linear-gradient(180deg, rgba(255,106,26,.10), var(--surface));
  border-color: rgba(255,106,26,.32);
}

/* ── CTA Banner ──────────────────────────────────────────────────────────── */
.cta-banner {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #15171d, var(--dark));
  color: #fff;
  border: 1px solid rgba(255,106,26,.22);
  border-radius: 28px; padding: 4rem 2rem; text-align: center;
  box-shadow: var(--shadow);
}
@media (max-width: 600px) {
  .cta-banner { padding: 2.5rem 1.25rem; border-radius: 20px; }
}
.cta-banner::before {
  content:""; position:absolute; inset:0;
  background: radial-gradient(560px 260px at 50% -20%, rgba(255,106,26,.5), transparent 62%);
}
.cta-banner h2 { margin: 0 0 .75rem; font-size: clamp(1.65rem,5.5vw,2.7rem); line-height: 1.18; color: #fff; position: relative; }
.cta-banner p { position: relative; color: rgba(255,255,255,.78); font-weight: 500; }
.cta-banner .btn { background: var(--brand); color: var(--brand-ink); margin-top: 1.3rem; position: relative; }
.cta-banner .btn:hover { background: var(--brand-2); }
/* Padding höher gewichten als die mobile .container-Regel – sonst wird das vertikale
   Padding auf Mobile auf 0 gesetzt und der Text klebt oben/unten am Rand. */
.container.cta-banner { padding: 4rem 2rem; }
@media (max-width: 600px) {
  .container.cta-banner { padding: 2.75rem 1.5rem; }
}

/* ── Bild-Platzhalter (nummeriert) ──────────────────────────────────────── */
.img-slot { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: var(--radius); }
.img-ph {
  width: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .4rem;
  border-radius: var(--radius); border: 2px dashed var(--border-light);
  background:
    repeating-linear-gradient(45deg, rgba(255,106,26,.05) 0 14px, transparent 14px 28px),
    var(--surface-2);
  color: var(--muted); text-align: center; padding: 1.25rem;
}
.img-ph-num { font-family: var(--font-head); font-weight: 900; font-size: 2.6rem; color: var(--brand); line-height: 1; }
.img-ph-file { font-size: .8rem; font-weight: 700; color: var(--ink); background: rgba(255,106,26,.12); border: 1px solid rgba(255,106,26,.32); padding: .15rem .65rem; border-radius: 999px; }
.img-ph-hint { font-size: .78rem; max-width: 22rem; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.site-footer { border-top: 1px solid var(--border); margin-top: 0; padding: 4rem 0 1.75rem; background: var(--dark); color: rgba(244,242,236,.7); }
.footer-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand { font-family: var(--font-head); font-weight: 800; font-size: 1.25rem; color: #fff; }
.footer-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(244,242,236,.5); margin-bottom: .85rem; font-weight: 700; }
.site-footer a { display: block; color: rgba(244,242,236,.7); margin-bottom: .55rem; font-size: .9rem; }
.site-footer a:hover { color: var(--brand-2); }
.site-footer .muted { color: rgba(244,242,236,.55); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; margin-top: 2.5rem; padding-top: 1.75rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .85rem; color: rgba(244,242,236,.55); }
.footer-bottom a { display: inline; }

/* ── Formulare ───────────────────────────────────────────────────────────── */
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; margin-bottom: .4rem; font-size: .85rem; color: var(--ink); font-weight: 600; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: .8rem 1rem; border-radius: 12px;
  border: 1px solid var(--border-light); background: var(--surface-2); color: var(--ink);
  font-family: inherit; font-size: .95rem; transition: border-color .15s, box-shadow .15s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #6b7280; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(255,106,26,.2);
}
.form-row { display: grid; gap: 1rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.alert { padding: 1rem; border-radius: 12px; margin-bottom: 1rem; }
.alert-success { background: rgba(34,197,94,.14); color: #56d98a; border: 1px solid rgba(34,197,94,.32); }
.alert-error { background: rgba(239,68,68,.14); color: #f88; border: 1px solid rgba(239,68,68,.34); }

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.faq details { margin-bottom: .85rem; border: 1px solid var(--border); border-radius: 14px; padding: 1rem 1.25rem; background: var(--surface); transition: border-color .2s, box-shadow .2s; }
.faq details[open] { border-color: rgba(255,106,26,.4); box-shadow: var(--shadow-sm); }
.faq summary { cursor: pointer; font-weight: 700; list-style: none; font-family: var(--font-head); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--brand); font-weight: 800; }
.faq details[open] summary::after { content: "−"; }

/* ── Mobile-Nav ──────────────────────────────────────────────────────────── */
.nav-erstgespraech-mobile { display: none; }
@media (max-width: 960px) {
  .hide-mobile { display: none; }
  .nav-toggle { display: block; }
  .nav { display: none; position: absolute; top: 4.6rem; left: 0; right: 0; background: var(--surface); flex-direction: column; align-items: stretch; padding: 1rem; border-bottom: 1px solid var(--border); gap: .25rem; box-shadow: var(--shadow-sm); }
  .nav.open { display: flex; }
  .nav a { min-height: 44px; display: flex; align-items: center; }
  .nav-erstgespraech-mobile { display: flex; color: var(--brand) !important; font-weight: 700; margin-top: .5rem; border-top: 1px solid var(--border); padding-top: 1rem !important; }
  .btn { min-height: 44px; }
}

/* ══ Admin ══════════════════════════════════════════════════════════════════ */

/* Body */
.admin-body { background: var(--bg); }

/* Desktop sidebar layout */
.admin-layout { display: flex; min-height: 100vh; }

.admin-sidebar {
  width: 15rem; flex-shrink: 0;
  background: var(--surface);
  border-right: 1px solid var(--border);
  padding: 1.25rem 1rem;
  position: sticky; top: 0; height: 100vh; overflow-y: auto;
  display: flex; flex-direction: column;
}
.admin-logo-link {
  display: flex; align-items: center; gap: .6rem;
  margin-bottom: 1.5rem; text-decoration: none; color: var(--ink);
}
.admin-nav-section {
  display: block; padding: .7rem .75rem .2rem;
  font-size: .68rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted);
}
.admin-sidebar a {
  display: block; padding: .55rem .8rem; border-radius: 10px;
  color: var(--muted); font-size: .875rem; margin-bottom: .15rem;
  text-decoration: none; transition: background .15s, color .15s;
}
.admin-sidebar a:hover, .admin-sidebar a.active {
  background: rgba(255,106,26,.12); color: var(--brand);
}
.admin-sidebar-util {
  display: block; padding: .45rem .75rem;
  font-size: .8rem; color: var(--muted); text-decoration: none;
}
.admin-sidebar-util:hover { color: var(--ink); }

/* Main content */
.admin-main { flex: 1; padding: 2rem; min-width: 0; }

/* Mobile header (only visible on mobile) */
.admin-mobile-header { display: none; }

/* Tables */
.admin-table-wrap { border: 1px solid var(--border); border-radius: 14px; overflow-x: auto; background: var(--surface); }
.admin-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.admin-table thead th {
  text-align: left; padding: .7rem .9rem; font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em; color: var(--muted);
  background: var(--surface-2); border-bottom: 1px solid var(--border); white-space: nowrap;
}
.admin-table td { text-align: left; padding: .8rem .9rem; border-bottom: 1px solid var(--border); vertical-align: middle; }
.admin-table tbody tr:last-child td { border-bottom: none; }
.admin-table tbody tr { transition: background .12s; }
.admin-table tbody tr:hover { background: var(--surface-2); }

/* Filter-/Sortierzeile (Admin-Listen) – Desktop: kompakt horizontal */
.admin-filter-row { display: flex; flex-wrap: wrap; gap: .6rem; align-items: center; margin-bottom: 1.25rem; }
.admin-filter-row select,
.admin-filter-row input {
  padding: .5rem .85rem; background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--ink); font-size: .85rem;
  min-width: 9.5rem; cursor: pointer; transition: border-color .15s;
}
.admin-filter-row select:hover,
.admin-filter-row input:hover { border-color: var(--border-light); }
.admin-filter-row select:focus,
.admin-filter-row input:focus { outline: none; border-color: var(--brand); }
.stat-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr)); margin-bottom: 2rem; }
.stat-card strong { font-size: 2rem; color: var(--brand); display: block; }
.legal-content .card { line-height: 1.75; }
.legal-content .card p { margin: 0 0 1rem; }
.w-full { width: 100%; height: auto; display: block; border-radius: 14px; }
.w-full-btn { width: 100%; margin-top: .5rem; }

/* ── Bottom Navigation (nur Mobile) ─────────────────────────────────────── */
.admin-bottom-nav { display: none !important; }
.admin-drawer      { display: none; }
.admin-drawer-backdrop { display: none; }

/* CRUD: Cards nur auf Mobile; Tabelle nur auf Desktop */
.crud-list-cards { display: none; }

/* ── Drawer (Mehr-Menü) ──────────────────────────────────────────────────── */
.admin-drawer-backdrop {
  display: none !important; position: fixed; inset: 0; z-index: 199;
  background: rgba(0,0,0,.55); backdrop-filter: blur(3px);
}
@media (max-width: 900px) {
  .admin-drawer-backdrop.open { display: block !important; }
}
.admin-drawer {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--surface);
  border-radius: 22px 22px 0 0;
  border-top: 1px solid var(--border);
  padding: 0 0 calc(env(safe-area-inset-bottom) + 1rem);
  transform: translateY(100%);
  transition: transform .32s cubic-bezier(.32,1,.23,1);
  max-height: 85vh; overflow-y: auto;
}
.admin-drawer.open { transform: translateY(0); }
.admin-drawer-handle {
  width: 2.5rem; height: .28rem; border-radius: 999px;
  background: var(--border); margin: .75rem auto .25rem;
}
.admin-drawer-header {
  display: flex; align-items: center; gap: .75rem; padding: .75rem 1.25rem 1rem;
  border-bottom: 1px solid var(--border);
}
.admin-drawer-close {
  margin-left: auto; background: var(--surface-2); border: none;
  color: var(--ink); width: 2rem; height: 2rem; border-radius: 999px;
  cursor: pointer; font-size: .9rem; display: grid; place-items: center;
}
.admin-drawer-body { padding: .75rem 1rem; }
.admin-drawer-section {
  font-size: .68rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted);
  padding: .75rem .5rem .2rem;
}
.admin-drawer a {
  display: block; padding: .7rem .75rem; border-radius: 12px;
  color: var(--ink); font-size: .925rem; margin-bottom: .1rem;
  text-decoration: none; transition: background .15s;
}
.admin-drawer a:hover, .admin-drawer a.active {
  background: rgba(255,106,26,.12); color: var(--brand);
}

/* ── Mobile (≤ 900px) ────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .admin-sidebar { display: none !important; }
  .admin-layout { display: block; }

  .admin-main {
    padding: .75rem 1rem;
    padding-top: calc(.75rem + env(safe-area-inset-top));
    padding-bottom: calc(4.5rem + env(safe-area-inset-bottom));
  }
  /* Seitentitel auf Mobile ausblenden – steht schon in der Bottom Nav */
  .admin-main h1:first-of-type,
  .admin-page-header { display: none !important; }

  /* Dashboard: 2-Spalten → 1 Spalte */
  .admin-dash-grid { grid-template-columns: 1fr !important; }

  /* Bottom Nav */
  .admin-bottom-nav {
    display: flex !important;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding-bottom: env(safe-area-inset-bottom);
    box-shadow: 0 -4px 24px rgba(0,0,0,.3);
  }

  /* Drawer sichtbar machen */
  .admin-drawer         { display: block; }
  .admin-drawer-backdrop { display: none; } /* backdrop nur wenn .open */
  .admin-bn-item {
    flex: 1; display: flex; flex-direction: column; align-items: center;
    justify-content: center; gap: .2rem;
    padding: .55rem .25rem;
    color: var(--muted); font-size: .65rem; font-weight: 600;
    text-decoration: none; background: none; border: none; cursor: pointer;
    font-family: inherit; transition: color .15s;
    min-height: 56px;
  }
  .admin-bn-item svg { width: 1.4rem; height: 1.4rem; }
  .admin-bn-item.active { color: var(--brand); }
  .admin-bn-item.active svg { stroke: var(--brand); }

  /* Filter-Zeile: 2 Spalten auf Mobile */
  .admin-filter-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin-bottom: 1rem;
  }
  .admin-filter-row input,
  .admin-filter-row select { width: 100%; min-width: 0; }

  /* Elemente auf Mobile ausblenden */
  .hide-on-mobile { display: none !important; }

  /* Stats: 2 Spalten statt 1 */
  .admin-stat-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* CRUD-Tabelle auf Mobile ausblenden, Cards zeigen */
  .crud-list-table { display: none !important; }
  .crud-list-cards { display: block !important; }

  /* CRUD Card-Layout */
  .crud-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 14px; padding: 1rem; margin-bottom: .75rem;
  }
  .crud-card-title { font-weight: 700; font-size: .95rem; margin-bottom: .35rem; color: var(--ink); }
  .crud-card-meta  { font-size: .8rem; color: var(--muted); margin-bottom: .6rem; }
  .crud-card-actions { display: flex; gap: .5rem; flex-wrap: wrap; }
  .crud-card-actions a,
  .crud-card-actions button { font-size: .8rem; padding: .4rem .75rem; }

  /* Tables scrollable (Fallback) */
  .admin-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .admin-table { min-width: 36rem; }

  /* Lead cards mobile */
  .lead-card-mobile { border: 1px solid var(--border); border-radius: 14px; padding: 1rem; margin-bottom: .75rem; }
  .lead-card-mobile a { color: var(--brand); font-weight: 600; }
  .lead-card-meta { font-size: .8rem; color: var(--muted); margin-top: .25rem; }
}

/* ── Lead-Popup ──────────────────────────────────────────────────────────── */
body.lead-modal-open { overflow: hidden; }
.lead-modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.lead-modal[hidden] { display: none !important; }
.lead-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.7); backdrop-filter: blur(4px); }
.lead-modal-dialog { position: relative; z-index: 1; width: 100%; max-width: 32rem; max-height: 90vh; overflow-y: auto; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.9rem; box-shadow: var(--shadow); }
.lead-modal-close { position: absolute; top: .75rem; right: .9rem; background: none; border: none; color: var(--muted); font-size: 1.8rem; line-height: 1; cursor: pointer; }
.lead-modal-close:hover { color: var(--ink); }
.lead-interest-grid { display: grid; gap: .75rem; margin-top: 1.25rem; }
@media (min-width: 480px) { .lead-interest-grid { grid-template-columns: 1fr 1fr; } }
.lead-interest-card { display: flex; flex-direction: column; align-items: flex-start; gap: .25rem; text-align: left; padding: 1rem; border-radius: 14px; border: 1px solid var(--border); background: var(--surface-2); color: var(--ink); cursor: pointer; font: inherit; transition: border-color .15s, box-shadow .15s; }
.lead-interest-card:hover, .lead-interest-card:focus { border-color: var(--brand); outline: none; box-shadow: 0 0 0 1px rgba(255,106,26,.4); }
.lead-interest-icon { font-size: 1.5rem; }
.lead-interest-card strong { font-size: .95rem; }
.lead-interest-card .muted { font-size: .8rem; }
.lead-back { background: none; border: none; color: var(--muted); cursor: pointer; padding: 0; margin-bottom: .75rem; font-size: .875rem; }
.lead-back:hover { color: var(--brand); }
.lead-selected-badge { display: block; margin: 0 0 1.1rem; padding: .7rem 1rem; border-radius: 12px; background: rgba(255,106,26,.12); border: 1px solid rgba(255,106,26,.35); color: var(--brand-2); font-size: .9rem; font-weight: 600; }
.lead-privacy { display: flex; gap: .75rem; align-items: flex-start; font-size: .8rem; color: var(--muted); margin: 1rem 0; cursor: pointer; }
.lead-privacy input { margin-top: .2rem; flex-shrink: 0; }
.lead-privacy a { color: var(--brand); text-decoration: underline; }
.lead-success-icon { width: 3rem; height: 3rem; border-radius: 999px; background: rgba(255,106,26,.18); color: var(--brand); display: grid; place-items: center; font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }

.kontakt-interest-grid { display: grid; gap: .75rem; margin: 1.5rem 0 2rem; }
@media (min-width: 640px) { .kontakt-interest-grid { grid-template-columns: repeat(2, 1fr); } }
.kontakt-interest-card { display: flex; flex-direction: column; align-items: flex-start; gap: .25rem; text-align: left; padding: 1rem; border-radius: 14px; border: 1px solid var(--border); background: var(--surface-2); color: var(--ink); cursor: pointer; font: inherit; width: 100%; transition: border-color .15s, box-shadow .15s; }
.kontakt-interest-card:hover, .kontakt-interest-card.selected { border-color: var(--brand); box-shadow: 0 0 0 1px rgba(255,106,26,.35); }

.page-cta-strip { margin-top: 3rem; padding: 2.75rem 2rem; border-radius: 24px; text-align: center; border: 1px solid rgba(255,106,26,.25); background: linear-gradient(180deg, rgba(255,106,26,.10), var(--surface)); }

/* ── 3-Schritte ──────────────────────────────────────────────────────────── */
.step-number { width: 2.7rem; height: 2.7rem; border-radius: 999px; background: var(--brand); border: none; color: var(--brand-ink); display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; margin: 0 auto .9rem; box-shadow: 0 8px 20px -8px var(--brand-glow); }
.section-dark .step-number { background: var(--brand); }

/* ── Standort-Seiten ─────────────────────────────────────────────────────── */
.breadcrumb { font-size: .875rem; margin-bottom: 1.5rem; color: var(--muted); }
.location-distance-note { margin-top: 1.25rem; padding: .85rem 1rem; border-radius: 12px; background: rgba(255,106,26,.09); border: 1px solid rgba(255,106,26,.25); color: var(--muted); font-size: .875rem; }

/* ── Float WhatsApp / Call ───────────────────────────────────────────────── */
.float-actions { position: fixed; bottom: 1.25rem; right: 1.25rem; display: flex; flex-direction: column; gap: .6rem; z-index: 90; }
.float-btn { width: 3.4rem; height: 3.4rem; border-radius: 999px; display: grid; place-items: center; font-size: 1.4rem; text-decoration: none; box-shadow: 0 12px 28px rgba(0,0,0,.5); transition: transform .15s, box-shadow .15s; border: none; cursor: pointer; }
.float-btn:hover { transform: scale(1.08); }
.float-btn-wa { background: #25d366; color: #fff; }
.float-btn-tel { background: var(--brand); color: var(--brand-ink); }
@media (min-width: 960px) { .float-actions { display: none; } }

/* ── Cookie Consent ──────────────────────────────────────────────────────── */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; background: var(--surface); border-top: 1px solid var(--border); padding: 1rem 1.4rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; justify-content: space-between; box-shadow: 0 -12px 34px rgba(0,0,0,.5); }
.cookie-banner[hidden] { display: none !important; }
.cookie-banner p { margin: 0; font-size: .875rem; color: var(--muted); flex: 1; min-width: 200px; }
.cookie-banner a { color: var(--brand); }
.cookie-btn-accept { background: var(--brand); color: var(--brand-ink); border: none; border-radius: 999px; padding: .65rem 1.4rem; font-weight: 700; font-size: .875rem; cursor: pointer; white-space: nowrap; min-height: 44px; }
.cookie-btn-close { background: none; border: 1px solid var(--border-light); border-radius: 999px; color: var(--muted); padding: .65rem 1rem; font-size: .875rem; cursor: pointer; white-space: nowrap; min-height: 44px; }

/* ── Accessibility ───────────────────────────────────────────────────────── */
:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 6px; }
.skip-link { position: absolute; top: -100%; left: 1rem; background: var(--brand); color: var(--brand-ink); padding: .5rem 1rem; border-radius: 0 0 .5rem .5rem; font-weight: 700; z-index: 999; }
.skip-link:focus { top: 0; }

/* ── Utilities ───────────────────────────────────────────────────────────── */
.mt-sm { margin-top: .5rem; } .mt-md { margin-top: 1rem; } .mt-lg { margin-top: 1.5rem; } .mt-xl { margin-top: 2.5rem; }
.mt-xl { margin-top: 2rem; } .mt-xxl { margin-top: 3rem; }
.max-prose { max-width: 48rem; } .max-narrow { max-width: 52rem; }
.flex-wrap-gap { display: flex; flex-wrap: wrap; gap: 1rem; }
.flex-center { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.hero-lead { font-size: 1.18rem; color: var(--muted); margin-top: 1.4rem; max-width: 36rem; }
.feature-list { list-style: none; padding: 0; margin: .75rem 0 0; color: var(--muted); line-height: 2.15; }
.font-sm { font-size: .875rem; }
.alt-bg { background: var(--bg-2); border-block: 1px solid var(--border); }

/* ── Transformation (Damals / Heute) ───────────────────────────────────────── */
.transform-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.transform-figure { margin: 0; position: relative; }
.transform-figure .img-slot,
.transform-figure .img-ph { border-radius: 18px; box-shadow: var(--shadow-sm); width: 100%; }
.transform-tag {
  position: absolute; top: .7rem; left: .7rem; z-index: 2;
  font-family: var(--font-head); font-weight: 800; font-size: .72rem;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .35rem .7rem; border-radius: 999px;
  background: rgba(7,8,9,.82); color: #fff; backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.14);
}
.transform-tag--now { background: var(--brand); color: var(--brand-ink); border-color: transparent; }
.transform-figure figcaption { margin-top: .65rem; font-size: .85rem; color: var(--muted); line-height: 1.5; }
/* Genug Abstand nach dem Transformation-Block zum nächsten Element */
.transform-grid + * { margin-top: 2.5rem; }
@media (min-width: 560px) {
  /* Ab Tablet: zwei Bilder nebeneinander, zentriert */
  .transform-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 40rem; margin-left: auto; margin-right: auto; }
}
/* Mobile: Transformation stapelt in voller Breite (Basis-Regel = 1 Spalte) */

/* ── Ernährungs-Galerie (Masonry-Spalten) ───────────────────────────────── */
.ern-gallery { columns: 4 220px; column-gap: .8rem; }
.ern-gallery img { width: 100%; margin: 0 0 .8rem; border-radius: 12px; display: block; box-shadow: var(--shadow-sm); break-inside: avoid; }
@media (max-width: 640px) {
  .ern-gallery { columns: 2 140px; column-gap: .5rem; }
  .ern-gallery img { margin-bottom: .5rem; }
}

/* ── Blog-Karten (Listing) ────────────────────────────────────────────────── */
.blog-card-img-wrap {
  width: 100%; aspect-ratio: 16/9; overflow: hidden;
  background: var(--surface-2);
}
.blog-card-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block; transition: transform .35s ease;
}
.blog-card:hover .blog-card-img { transform: scale(1.04); }

/* ── YouTube-Video Block ─────────────────────────────────────────────────── */
.yt-wrap {
  position: relative; width: 100%; padding-top: 56.25%; /* 16:9 */
  border-radius: var(--radius); overflow: hidden;
  background: #000;
  box-shadow: 0 20px 60px -12px rgba(0,0,0,.7);
}

/* ── Testimonials ────────────────────────────────────────────────────────── */
.testimonial-avatar {
  width: 2.8rem; height: 2.8rem; border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: var(--brand-ink); font-family: var(--font-head); font-weight: 900;
  font-size: 1.05rem; display: grid; place-items: center; flex-shrink: 0;
  box-shadow: 0 6px 16px -6px var(--brand-glow);
}
.testimonial-avatar--photo { object-fit: cover; object-position: top center; }
.testimonial-header { display: flex; align-items: center; gap: .85rem; margin-bottom: 1rem; }
.testimonial-name { font-weight: 700; font-size: .95rem; line-height: 1.2; }
.testimonial-meta { font-size: .78rem; color: var(--muted); }
.testimonial-stars { color: var(--brand); letter-spacing: .05em; font-size: .95rem; margin-bottom: .6rem; }
.testimonial-quote { color: rgba(244,242,236,.88); font-size: .95rem; line-height: 1.65; }
.testimonial-quote::before { content: '«'; color: var(--brand); font-weight: 700; }
.testimonial-quote::after  { content: '»'; color: var(--brand); font-weight: 700; }

/* ── Erfolgsgeschichten (Before/After) ───────────────────────────────────── */
.story-card { overflow: hidden; }
.story-images { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-bottom: 1.1rem; }

/* Konsistente Bild-Container – egal ob Hoch- oder Querformat */
.story-img-wrap {
  position: relative; overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 3/4;       /* Porträt-Format – passt für Vorher/Nachher Fotos */
  background: var(--surface-2);
}
.story-img-wrap .story-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block;
}
.story-img-label {
  position: absolute; bottom: .5rem; left: .5rem;
  background: rgba(7,8,9,.78); color: #fff; font-size: .72rem;
  font-weight: 700; padding: .25rem .6rem; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(4px);
}

/* Blog Featured Image – immer 16:9, kein Verzerren */
.blog-featured-img-wrap {
  overflow: hidden; border-radius: var(--radius); margin-bottom: 1.25rem;
  aspect-ratio: 16/9; background: var(--surface-2);
}
.blog-featured-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* Testimonial Foto (falls vorhanden) */
.testimonial-foto-wrap {
  width: 2.8rem; height: 2.8rem; border-radius: 999px;
  overflow: hidden; flex-shrink: 0;
}
.testimonial-foto-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Medien-Grid: Bilder immer gleich gross */
.media-img-wrap {
  aspect-ratio: 16/9; overflow: hidden; border-radius: var(--radius-sm);
  background: var(--surface-2);
}
.media-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

.story-weight { color: var(--brand); font-size: 1.25rem; font-weight: 800; margin: .25rem 0 .5rem; }

/* ── Responsive (Handy) ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero { padding: 3rem 0 3.5rem; }
  .hero-grid { gap: 2rem; }
  .hero-photo-wrap { max-width: 100%; max-height: 260px; overflow: hidden; }
  .hero-coach-photo { max-height: 260px; object-position: top center; }
  .hero-actions { margin-top: 1.8rem; }
  .hero-actions .btn { width: 100%; }
  .stats { gap: 1.25rem; }
  .coach-about-grid, .coach-coaching-intro { display: flex; flex-direction: column; }
  .coach-about-grid .coach-photo-wrap,
  .coach-coaching-intro .coach-photo-wrap { order: -1; max-width: 320px; margin: 0 auto 1.25rem; }
  .section { padding: 3.5rem 0; }
  .page-cta-strip { padding: 2rem 1.25rem; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.1rem; }
  .hero h1 { font-size: clamp(2.1rem, 9vw, 2.8rem); }
  .hero-photo-wrap::after { display: none; }
  .transform-figure figcaption { font-size: .8rem; }
  .transform-tag { font-size: .66rem; padding: .3rem .6rem; }
}
