/* ============================================================
   MASTERMIND 2026 v4
   ============================================================ */

/* --- Reset & Base ------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:             #080e1c;
  --surface:        #0f1829;
  --surface-2:      #162037;
  --gold:           #c9a96e;
  --gold-hover:     #e8c98a;
  --gold-dim:       rgba(201, 169, 110, 0.1);
  --text:           #eef2ff;
  --muted:          #8fa3c0;
  --border:         #1e2f48;
  --blue:           #5b8fcc;
  --blue-dim:       rgba(91, 143, 204, 0.1);
  --special:        #a78bd9;
  --special-dim:    rgba(167, 139, 217, 0.1);
  --radius:         8px;
  --max-w:          1100px;
  --scarcity-h:     0px;
  --nav-h:          72px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--scarcity-h) + var(--nav-h));
  overflow-x: hidden;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  /* overflow-x: hidden entfernt — bricht position:sticky im Nav */
}

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-hover); }
ul { list-style: none; }
img { display: block; max-width: 100%; }
picture { display: block; max-width: 100%; }

/* Prevent long unbreakable text from causing horizontal overflow */
p, li, h1, h2, h3, blockquote, label {
  overflow-wrap: break-word;
  word-break: break-word;
}

/* --- Container -------------------------------------------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: 1200px; }

/* --- Buttons ---------------------------------------------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s;
  text-align: center;
}
.btn--gold { background: var(--gold); color: #080e1c; }
.btn--gold:hover:not(:disabled) { background: var(--gold-hover); color: #080e1c; transform: translateY(-2px); }
.btn--gold:disabled {
  background: var(--surface-2);
  color: var(--muted);
  cursor: not-allowed;
  border: 1px solid var(--border);
}

/* --- Scarcity Bar ----------------------------------------- */
.scarcity-bar {
  display: none;
  position: sticky;
  top: 0;
  z-index: 110;
  height: var(--scarcity-h);
  background: rgba(201, 169, 110, 0.08);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.scarcity-bar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
}

.scarcity-bar__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  animation: dotPulse 2.5s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5); }
  50% { opacity: 0.75; box-shadow: 0 0 0 5px rgba(74, 222, 128, 0); }
}

.scarcity-bar__text { color: var(--muted); flex: 1; }
.scarcity-bar__text strong { color: var(--gold); }

.scarcity-bar__cta {
  font-weight: 600;
  color: var(--gold);
  font-size: 0.8rem;
  white-space: nowrap;
  border: 1px solid rgba(201, 169, 110, 0.35);
  padding: 5px 14px;
  border-radius: 100px;
  transition: background 0.2s, color 0.2s;
}
.scarcity-bar__cta:hover { background: var(--gold); color: #080e1c; }

/* --- Navigation ------------------------------------------- */
.nav {
  position: sticky;
  top: var(--scarcity-h);
  z-index: 100;
  background: rgba(8, 14, 28, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  user-select: none;
}

.nav__logo-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
  line-height: 1.2;
}

.nav__logo-accent { color: var(--gold); }

.nav__logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--muted);
  line-height: 1.2;
}

.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a { color: var(--muted); font-size: 0.875rem; font-weight: 500; }
.nav__links a:hover { color: var(--text); }

.nav__cta {
  color: var(--gold) !important;
  border: 1px solid var(--gold);
  padding: 8px 20px;
  border-radius: var(--radius);
}
.nav__cta:hover { background: var(--gold) !important; color: #080e1c !important; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Hero ------------------------------------------------- */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--scarcity-h) - var(--nav-h));
  overflow: hidden;
}

.hero__pane--left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 64px 80px max(24px, calc((100vw - var(--max-w)) / 2 + 24px));
  background: var(--bg);
  position: relative;
}

.hero__pane--left::after {
  content: '';
  position: absolute;
  right: 0;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold) 25%, var(--gold) 75%, transparent);
  opacity: 0.45;
  z-index: 2;
}

.hero__pane--right {
  position: relative;
  background: url('img/hero-bg.jpg') center top/cover no-repeat;
  overflow: hidden;
}

.hero__pane--right::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--bg) 0%, rgba(8, 14, 28, 0.7) 20%, rgba(8, 14, 28, 0.1) 55%, transparent 100%),
    linear-gradient(to top, rgba(8, 14, 28, 0.5) 0%, transparent 30%);
  z-index: 1;
}

.hero__mobile-img {
  display: none;
}

.hero__text {
  max-width: 480px;
  width: 100%;
  text-align: left;
}

.hero__eyebrow {
  font-size: 0.875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  font-weight: 500;
  animation: heroUp 0.7s ease forwards;
  animation-delay: 0.1s;
  opacity: 0;
}

.hero__headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text);
  animation: heroUp 0.7s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

.hero__headline span {
  display: block;
  white-space: nowrap;
}

.hero__headline em {
  display: block;
  font-style: italic;
  color: var(--gold);
}

.hero__sub {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 44px;
  letter-spacing: 0.06em;
  animation: heroUp 0.7s ease forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

.hero__stats {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  margin-bottom: 40px;
  animation: heroUp 0.7s ease forwards;
  animation-delay: 0.65s;
  opacity: 0;
}

.stat {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 24, 41, 0.9);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
}
.stat__icon { display: flex; color: var(--gold); }
.stat__icon svg { width: 15px; height: 15px; }

.hero__cta-btn {
  animation: heroUp 0.7s ease forwards;
  animation-delay: 0.8s;
  opacity: 0;
}

.hero__secondary-cta {
  display: block;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--muted);
  animation: heroUp 0.7s ease forwards;
  animation-delay: 0.9s;
  opacity: 0;
}
.hero__secondary-cta:hover { color: var(--gold-hover); }

@keyframes heroUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- Sections --------------------------------------------- */
.section { padding: 96px 0; }
.section--dark { background: var(--surface); }

.section--image-bg {
  background-image:
    linear-gradient(rgba(8, 14, 28, 0.87), rgba(8, 14, 28, 0.92)),
    url('img/programm-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.section--mentoren {
  background:
    radial-gradient(ellipse at 20% 60%, rgba(201, 169, 110, 0.04) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(91, 143, 204, 0.03) 0%, transparent 50%),
    var(--bg);
}

.section__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

.section__lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 680px;
  margin-bottom: 56px;
  line-height: 1.75;
}

/* --- Checklist -------------------------------------------- */
.checklist { display: flex; flex-direction: column; gap: 18px; max-width: 660px; }
.checklist--wide { max-width: 100%; }
.checklist li { display: flex; gap: 14px; font-size: 1rem; color: var(--text); line-height: 1.6; }
.checklist li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* --- Highlight Grid ---------------------------------------- */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.highlight-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  transition: border-color 0.25s, transform 0.2s;
}
.highlight-card:hover { border-color: var(--gold); transform: translateY(-3px); }

.highlight-card__icon { display: flex; color: var(--gold); }
.highlight-card__icon svg { width: 28px; height: 28px; }
.highlight-card__text { font-size: 0.9rem; font-weight: 600; color: var(--text); line-height: 1.4; }

/* --- Video Facade (DSGVO-konforme Zwei-Klick-Lösung) ------- */
.video-showcase {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.video-facade {
  position: relative;
  width: 100%;
  max-width: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color 0.25s, transform 0.2s;
}
.video-facade:hover,
.video-facade:focus-visible { border-color: var(--gold); transform: translateY(-3px); }
.video-facade:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.video-facade__thumb {
  width: 100%;
  height: auto;
  display: block;
}

.video-facade__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(8, 14, 28, 0.75);
  border: 1px solid rgba(201, 169, 110, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: background 0.2s, transform 0.2s;
  pointer-events: none;
}
.video-facade__play svg { width: 26px; height: 26px; margin-left: 3px; }
.video-facade:hover .video-facade__play { background: var(--gold); color: #080e1c; transform: translate(-50%, -50%) scale(1.08); }

.video-facade__consent {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 12px;
  font-size: 0.7rem;
  line-height: 1.5;
  color: rgba(238, 242, 255, 0.85);
  background: linear-gradient(to top, rgba(8, 14, 28, 0.92) 0%, rgba(8, 14, 28, 0.75) 60%, transparent 100%);
  text-align: left;
}
.video-facade__link {
  position: relative;
  z-index: 1;
  color: var(--gold);
  text-decoration: underline;
}
.video-facade__link:hover { color: var(--gold-hover); }

/* --- Video Modal --------------------------------------------- */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.video-modal[hidden] { display: none; }

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 14, 28, 0.92);
  backdrop-filter: blur(4px);
}

.video-modal__dialog {
  /* Breite wird von script.js exakt in Pixeln gesetzt (sizeVideoFrame) —
     zuverlässiger geräteübergreifend als CSS aspect-ratio, das auf älteren
     iOS-/Safari-Versionen zu einem 0×0-Frame führen kann. */
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
}

.video-modal__frame {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
}
.video-modal__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-modal__close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.5);
  background: rgba(8, 14, 28, 0.75);
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.video-modal__close:hover { background: var(--gold); color: #080e1c; border-color: var(--gold); }

@media (max-width: 480px) {
  .video-modal__close { top: -40px; }
}

/* --- Quote Block -------------------------------------------- */
.quote-block {
  max-width: 680px;
  margin: 56px auto 0;
  padding: 32px 40px;
  background: var(--surface);
  border-left: 2px solid var(--gold);
  border-radius: var(--radius);
  text-align: center;
}
.quote-block--dark-section { background: var(--bg); }

.quote-block p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text);
}
.quote-block p + cite { margin-top: 12px; }

.quote-block cite {
  display: block;
  margin-top: 12px;
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold);
}

/* --- Outcomes --------------------------------------------- */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.outcome-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: border-color 0.25s, transform 0.2s;
}
.outcome-card:hover { border-color: var(--gold); transform: translateY(-3px); }

.outcome-card__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  border-radius: 14px;
  background: var(--bg);
  position: relative;
  padding: 14px;
  flex-shrink: 0;
}

.outcome-card__icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 1px;
  background: linear-gradient(135deg, var(--gold) 0%, rgba(201, 169, 110, 0.25) 50%, var(--gold) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}

.outcome-card__icon svg {
  width: 100%;
  height: 100%;
}

.outcome-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--gold);
}
.outcome-card p { font-size: 0.925rem; color: var(--muted); line-height: 1.75; }

/* --- Vertical Timeline ------------------------------------ */
.timeline-v { max-width: 680px; }

.timeline-v__item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0 28px;
  min-height: 80px;
  min-width: 0;
}

.timeline-v__left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-v__marker {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: #080e1c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 0.85rem;
  flex-shrink: 0;
  letter-spacing: 0.05em;
  transition: transform 0.2s, background 0.2s;
}
a.timeline-v__marker:hover { background: var(--gold-hover); transform: scale(1.08); }

.timeline-v__line {
  flex: 1;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), rgba(201, 169, 110, 0.15));
  margin: 10px 0;
  min-height: 40px;
}

.timeline-v__content {
  padding-bottom: 48px;
  min-width: 0;
}

.timeline-v__item:last-child .timeline-v__content { padding-bottom: 0; }

.timeline-v__content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  margin-top: 12px;
}

.timeline-v__content ul { display: flex; flex-direction: column; gap: 8px; }

.timeline-v__content li {
  font-size: 0.875rem;
  color: var(--muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.timeline-v__content li::before { content: '·'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* --- Module Badges ---------------------------------------- */
.module-legend {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.module-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: 100px;
}

.module-badge--harald {
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid rgba(201, 169, 110, 0.25);
}

.module-badge--bernd {
  background: var(--blue-dim);
  color: var(--blue);
  border: 1px solid rgba(91, 143, 204, 0.25);
}

.module-badge--special {
  background: var(--special-dim);
  color: var(--special);
  border: 1px solid rgba(167, 139, 217, 0.25);
}

.module-badge--sm { font-size: 0.68rem; padding: 3px 10px; flex-shrink: 0; }

/* --- Schedule / Interleaved Modules ----------------------- */
.schedule { display: flex; flex-direction: column; gap: 0; }

.schedule__block {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 0 40px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
}
.schedule__block:last-child { border-bottom: 1px solid var(--border); }

.schedule__time {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 18px;
}

.schedule__day {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.schedule__session {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.schedule__modules { display: flex; flex-direction: column; gap: 8px; }

.module--harald  .accordion__btn { border-left: 3px solid var(--gold); }
.module--bernd   .accordion__btn { border-left: 3px solid var(--blue); }
.module--special .accordion__btn { border-left: 3px solid var(--special); }

/* --- Accordion -------------------------------------------- */
.accordion {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.accordion__btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--bg);
  border: none;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}
.accordion__btn:hover { background: var(--surface-2); }
.accordion__btn > span:nth-child(2) { flex: 1; min-width: 0; overflow-wrap: break-word; word-break: break-word; }

.accordion__duration {
  font-size: 0.7rem;
  color: var(--gold);
  white-space: nowrap;
  font-weight: 500;
  background: var(--gold-dim);
  padding: 2px 8px;
  border-radius: 100px;
  flex-shrink: 0;
}

.accordion__icon {
  font-size: 1.3rem;
  color: var(--gold);
  line-height: 1;
  transition: transform 0.25s;
  flex-shrink: 0;
  font-weight: 300;
}
.accordion.open .accordion__icon { transform: rotate(45deg); }

.accordion__body {
  display: none;
  padding: 20px 18px 22px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.accordion.open .accordion__body { display: block; }

/* --- FAQ -------------------------------------------------- */
.faq { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }

.faq__q-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid rgba(201, 169, 110, 0.25);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq .accordion__body p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
}

.accordion__teaser-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin-bottom: 18px;
}

.accordion__guest {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.accordion__guest-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--special);
  flex-shrink: 0;
}

.accordion__guest-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.accordion__problem {
  font-size: 0.875rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.7;
}

.accordion__takeaways-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 16px 0 10px;
}

.accordion__body ul { display: flex; flex-direction: column; gap: 9px; }
.accordion__body li {
  font-size: 0.875rem;
  color: var(--text);
  padding-left: 18px;
  position: relative;
  line-height: 1.55;
}
.accordion__body li::before { content: '→'; position: absolute; left: 0; color: var(--gold); font-size: 0.75rem; top: 2px; }

/* --- Mentor Editorial ------------------------------------- */
.mentor-editorial { display: flex; flex-direction: column; gap: 0; }

.mentor-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 72px 0;
  border-top: 1px solid var(--border);
}
.mentor-card:last-child { border-bottom: 1px solid var(--border); }

.mentor-card--reverse .mentor-card__media { order: 2; }
.mentor-card--reverse .mentor-card__content { order: 1; }

.mentor-card__media {
  position: relative;
}

.mentor-card__media::before {
  content: '';
  position: absolute;
  top: -14px;
  left: -14px;
  right: 14px;
  bottom: 14px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: var(--radius);
  z-index: 0;
}

.mentor-card--reverse .mentor-card__media::before {
  left: 14px;
  right: -14px;
}

.mentor-card__media img,
.mentor-card__media picture img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  position: relative;
  z-index: 1;
  display: block;
}

.mentor-card__num {
  position: absolute;
  bottom: -32px;
  right: -20px;
  font-family: 'Playfair Display', serif;
  font-size: 7rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(201, 169, 110, 0.06);
  z-index: 0;
  user-select: none;
  pointer-events: none;
}

.mentor-card--reverse .mentor-card__num { right: auto; left: -20px; }

.mentor-card__role {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}

.mentor-card__name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 28px;
}

.mentor-card__handle { color: var(--gold); }

.mentor-card__quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text);
  padding-left: 20px;
  border-left: 2px solid var(--gold);
  margin-bottom: 24px;
}

.mentor-card__bio {
  font-size: 0.925rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.mentor-card__links { display: flex; gap: 20px; flex-wrap: wrap; }
.mentor-card__link { font-size: 0.875rem; font-weight: 600; color: var(--gold); }
.mentor-card__link:hover { color: var(--gold-hover); }

.mentor-card__partner { margin-top: 20px; }
.mentor-card__partner-logo { width: 30%; }

/* --- Social Proof Grid ------------------------------------ */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 52px 28px;
  border-right: 1px solid var(--border);
  transition: background 0.25s;
}
.proof-stat:last-child { border-right: none; }
.proof-stat:hover { background: rgba(201, 169, 110, 0.04); }

.proof-stat__number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
}

.proof-stat__number--text {
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  line-height: 1.25;
}

.proof-stat__label {
  font-size: 0.825rem;
  color: var(--muted);
  line-height: 1.45;
}

/* --- Pricing Box ------------------------------------------ */
.pricing-box {
  max-width: 560px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid rgba(201, 169, 110, 0.35);
  border-radius: var(--radius);
  padding: 52px 48px;
  text-align: center;
  box-shadow: 0 0 80px rgba(201, 169, 110, 0.06);
}

.pricing-box__headline {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  margin-bottom: 6px;
}

.pricing-box__amount {
  font-family: 'Playfair Display', serif;
  font-size: 3.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.pricing-box__currency {
  font-size: 0.55em;
  vertical-align: 0.35em;
}

.pricing-box__note { font-size: 0.875rem; color: var(--muted); }

.pricing-box__formula {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 36px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-box__includes {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.pricing-box__includes li {
  display: flex;
  gap: 12px;
  font-size: 0.925rem;
  color: var(--text);
  line-height: 1.5;
}
.pricing-box__includes li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

.pricing-box__anchor {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 28px;
  padding: 20px 24px;
  background: var(--bg);
  border-radius: var(--radius);
  border-left: 2px solid var(--gold);
  text-align: left;
}

.pricing-box__scarcity {
  display: inline-block;
  background: var(--gold-dim);
  border: 1px solid rgba(201, 169, 110, 0.3);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 22px;
  border-radius: 100px;
  margin-bottom: 28px;
}

/* --- Contact Form ----------------------------------------- */
.contact-form { max-width: 680px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input, .form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  padding: 12px 16px;
  width: 100%;
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #3a5070; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-hint { margin-top: 16px; font-size: 0.78rem; color: var(--muted); line-height: 1.6; }

/* Cloudflare Turnstile */
.cf-turnstile { margin: 8px 0 20px; max-width: 100%; overflow: hidden; }

.form-group--consent { margin-bottom: 24px; }

.consent-label {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  cursor: pointer;
  text-transform: none;
  letter-spacing: normal;
  font-size: inherit;
  font-weight: normal;
}

.consent-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.consent-checkbox__box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--surface);
  cursor: pointer;
  margin-top: 2px;
  transition: border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}

.consent-checkbox__box::after {
  content: '';
  display: none;
  width: 5px;
  height: 9px;
  border: 2px solid #080e1c;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
}

.consent-checkbox:checked + .consent-checkbox__box {
  background: var(--gold);
  border-color: var(--gold);
}

.consent-checkbox:checked + .consent-checkbox__box::after {
  display: block;
}

.consent-checkbox:focus + .consent-checkbox__box {
  outline: 2px solid rgba(201, 169, 110, 0.5);
  outline-offset: 2px;
}

.consent-label__text {
  font-size: 0.825rem;
  color: var(--muted);
  line-height: 1.6;
  text-transform: none;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* --- Webinar Box ------------------------------------------ */
.webinar-box {
  max-width: 680px;
  background: var(--surface);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 40px;
}

.webinar-box__badge {
  display: inline-block;
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.webinar-box__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.webinar-box__date {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
}

.webinar-box__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.webinar-box__list li {
  font-size: 0.9rem;
  color: var(--muted);
  padding-left: 0;
  display: flex;
  gap: 10px;
}

.webinar-box__list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* --- Signup Choices --------------------------------------- */
.form-group--signup-choices { margin-bottom: 20px; }

.form-group__label-heading {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  display: block;
}

.signup-choices {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.signup-choice__text {
  font-size: 0.9rem;
  line-height: 1.5;
}

.signup-choice__text strong {
  color: var(--text);
  font-weight: 600;
}

/* --- Legal Pages ------------------------------------------ */
.legal-page { max-width: 720px; }

.legal-page__intro {
  font-size: 0.925rem;
  color: var(--muted);
  margin-bottom: 56px;
  margin-top: -8px;
}

.legal-block {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.legal-block:last-of-type { border-bottom: none; }

.legal-block h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}

.legal-block h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal-block p {
  font-size: 0.925rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 12px;
}
.legal-block p:last-child { margin-bottom: 0; }

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0;
}
.legal-list li {
  font-size: 0.925rem;
  color: var(--muted);
  padding-left: 18px;
  position: relative;
  line-height: 1.6;
}
.legal-list li::before { content: '→'; position: absolute; left: 0; color: var(--gold); font-size: 0.75rem; top: 3px; }

.legal-page__back {
  margin-top: 48px;
  font-size: 0.875rem;
  font-weight: 600;
}

/* --- Footer ----------------------------------------------- */
.footer { background: var(--surface); border-top: 1px solid var(--border); padding: 40px 0; }
.footer .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer__copy { font-size: 0.825rem; color: var(--muted); }
.footer__links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__links a { font-size: 0.825rem; color: var(--muted); }
.footer__links a:hover { color: var(--gold); }

/* --- Location --------------------------------------------- */
.location-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 40px;
}

.location-gallery__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
  transition: transform 0.4s ease;
}
.location-gallery__img:hover { transform: scale(1.02); }

/* picture elements in location gallery need the img to inherit dimensions */
.location-gallery picture {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
}

.location-gallery picture img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.4s ease;
}
.location-gallery picture:hover img { transform: scale(1.02); }

.location-details { max-width: 680px; }
.location-details p { font-size: 0.975rem; color: var(--muted); line-height: 1.75; margin-bottom: 24px; }

.location-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
}
.location-link:hover { color: var(--gold-hover); }

/* --- Map Facade (DSGVO-konforme Zwei-Klick-Lösung) --------- */
.map-facade {
  margin-top: 40px;
  max-width: 680px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
}

.map-facade__pin {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--gold);
}
.map-facade__pin svg { width: 100%; height: 100%; }

.map-facade__address {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 16px;
}

.map-facade__consent {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 24px;
}
.map-facade__consent a { color: var(--gold); text-decoration: underline; }
.map-facade__consent a:hover { color: var(--gold-hover); }

.map-facade__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.map-facade__btn {
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.map-facade__btn:hover { background: var(--gold-dim); transform: translateY(-2px); }
.map-facade__btn--gold { background: var(--gold); color: #080e1c; }
.map-facade__btn--gold:hover { background: var(--gold-hover); color: #080e1c; }

/* Zustand nach dem Laden: Karte ersetzt den Inhalt der Facade */
.map-facade--loaded {
  padding: 0;
  text-align: left;
  overflow: hidden;
}
.map-facade__frame {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.map-facade__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.map-facade__reset {
  display: block;
  width: 100%;
  padding: 12px;
  background: var(--bg);
  border: none;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  cursor: pointer;
  text-align: center;
  transition: color 0.2s;
}
.map-facade__reset:hover { color: var(--gold); }

@media (max-width: 480px) {
  .map-facade { padding: 32px 20px; }
  .map-facade__actions { flex-direction: column; }
  .map-facade__btn { width: 100%; }
}

/* --- Responsive ------------------------------------------- */
@media (max-width: 1024px) {
  .mentor-card { gap: 48px; }
  .mentor-card__name { font-size: 2rem; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }

  .hero__pane--left {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0;
  }
  .hero__pane--left::after { display: none; }
  .hero__pane--right { display: none; }

  .hero__mobile-img {
    display: block;
    width: 100%;
    height: 260px;
    background: url('img/hero-bg-mobile.jpg') center top / cover no-repeat;
    position: relative;
    flex-shrink: 0;
  }
  .hero__mobile-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--bg));
  }

  .hero__text {
    max-width: 100%;
    padding: 36px 24px 72px;
  }

  .hero__stats { flex-wrap: wrap; }

  .outcomes-grid { grid-template-columns: 1fr; }
  .highlight-grid { grid-template-columns: repeat(2, 1fr); }

  .schedule__block { grid-template-columns: 1fr; gap: 12px; }
  .schedule__time { flex-direction: row; gap: 8px; align-items: baseline; padding-top: 0; }

  .mentor-card { grid-template-columns: 1fr; gap: 40px; }
  .mentor-card--reverse .mentor-card__media { order: 0; }
  .mentor-card--reverse .mentor-card__content { order: 0; }

  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-stat:nth-child(2) { border-right: none; }
  .proof-stat:nth-child(3) { border-top: 1px solid var(--border); }
  .proof-stat:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }

  .location-gallery { grid-template-columns: 1fr 1fr; }
  .location-gallery picture:last-child { display: none; }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: calc(var(--scarcity-h) + var(--nav-h));
    left: 0;
    right: 0;
    background: rgba(8, 14, 28, 0.99);
    border-bottom: 1px solid var(--border);
    padding: 24px 24px 32px;
    gap: 20px;
    z-index: 99;
  }
  .nav__links.open { display: flex; }
  .nav__burger { display: flex; }

  .scarcity-bar__text { font-size: 0.72rem; }

  .section { padding: 64px 0; }
  .form-row { grid-template-columns: 1fr; }
  .pricing-box { padding: 36px 24px; }
  .pricing-box__amount { font-size: 2.8rem; }
  .footer .container { flex-direction: column; text-align: center; }

  .section--image-bg {
    background-image:
      linear-gradient(rgba(8, 14, 28, 0.87), rgba(8, 14, 28, 0.92)),
      url('img/programm-bg-mobile.jpg');
    background-attachment: scroll;
  }
}

@media (max-width: 600px) {
  .location-gallery { grid-template-columns: 1fr; }
  .location-gallery picture:last-child { display: block; }
  .location-gallery picture img { height: 220px; }
}

@media (max-width: 480px) {
  .hero__headline { font-size: 2rem; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-stat { border-right: none !important; border-top: 1px solid var(--border); }
  .proof-stat:first-child { border-top: none; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .highlight-grid { grid-template-columns: 1fr; }
  .quote-block { padding: 28px 24px; }
}
