/* ImPowerFlow Retreat — BusinessHub InnerFlow
   Farben & Schriften 1:1 aus den offiziellen BusinessHub-InnerFlow Guidelines
   (Sundays. Brand Studio Markenkonzept) — keine freien Farb-/Font-Entscheidungen. */

:root {
  --color-bg: #FBFAF9;        /* Cotton — offizielle Guideline-Farbe */
  --color-bg-alt: #FFFFFF;    /* Weiß, für dezente Sektions-Abwechslung zu Cotton */
  --color-ink: #181818;       /* Charcoal — offizielle Guideline-Farbe */
  --color-ink-soft: #4a4944;  /* abgeleiteter, lesbarer Grauton von Charcoal für Fließtext */
  --color-green: #5A6144;     /* Dried Parsley — offizielle Guideline-Farbe */
  --color-green-dark: #3f4530;/* abgeleitete dunklere Stufe von Dried Parsley für Hover-States */
  --color-gold: #F2CA00;      /* Pollen — offizielle Guideline-Farbe (Fläche/Akzent) */
  --color-gold-light: #F7D96C;/* Pollen Light — offizielle Guideline-Hintergrundfarbe */
  --color-gold-deep: #7a5f00; /* abgeleitete dunklere Pollen-Stufe für lesbaren Text auf hellem Grund */
  --color-line: #E5E1D8;      /* abgeleiteter, dezenter Rahmenton von Cotton */
  --color-card: #FFFFFF;      /* Cotton/Weiß */
  --font-serif: 'Libre Baskerville', Georgia, 'Times New Roman', serif; /* Guideline-Schrift für Titel */
  --font-sans: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; /* Platzhalter für Glacial Indifference (Guideline-Schrift, Lizenz noch zu klären) */
  --radius: 14px;
  --shadow: 0 10px 30px -12px rgba(24, 24, 24, 0.18);
  --maxw: 1120px;
}

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

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

img { max-width: 100%; display: block; border-radius: var(--radius); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--font-serif); font-weight: 600; line-height: 1.15; color: var(--color-green-dark); margin: 0 0 0.5em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.3rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; color: var(--color-ink-soft); }
a { color: var(--color-green); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold-deep);
  margin-bottom: 0.9em;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--color-gold);
}

/* Header */
header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 249, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-line);
}
header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo { font-family: var(--font-serif); font-weight: 600; font-size: 1.15rem; color: var(--color-green-dark); text-decoration: none; display: inline-block; }
.logo img { height: 52px; width: auto; display: block; }
footer.site .logo img { height: 40px; }
header.site nav a.btn { padding: 10px 22px; font-size: 0.95rem; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 34px;
  border-radius: 999px;
  background: var(--color-green);
  color: #fff !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.02rem;
  transition: transform 0.15s ease, background 0.15s ease;
  border: none;
  cursor: pointer;
}
.btn:hover { background: var(--color-green-dark); transform: translateY(-1px); }
.btn.secondary {
  background: transparent;
  color: var(--color-green-dark) !important;
  border: 1.5px solid var(--color-green-dark);
}
.btn.secondary:hover { background: var(--color-green-dark); color: #fff !important; }

/* Hero */
.hero {
  padding: 84px 0 64px;
  position: relative;
  background:
    linear-gradient(180deg, rgba(242, 202, 0, 0.10) 0%, transparent 60%),
    var(--color-bg);
}
.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-green-dark), var(--color-gold));
  opacity: 0.9;
}
.hero .wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 32px;
}
.hero-facts .fact {
  background: var(--color-card);
  border: 1px solid var(--color-line);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 0.92rem;
  color: var(--color-ink-soft);
  font-weight: 500;
}
.hero-facts .fact strong { color: var(--color-green-dark); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-image { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/5; background: var(--color-bg-alt); }
.hero-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }

@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-image { order: -1; aspect-ratio: 16/10; }
}

/* Generic section spacing */
section { padding: 72px 0; }
section.alt { background: var(--color-bg-alt); }
.section-head { max-width: 660px; margin: 0 auto 48px; text-align: center; }
.section-head p { font-size: 1.08rem; }

/* Vorteile grid */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--color-card);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.icon-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-gold-light);
  color: var(--color-ink);
  margin-bottom: 16px;
}
.icon-badge svg { width: 22px; height: 22px; }
.card h3 { margin-bottom: 8px; }
.card p { margin-bottom: 0; font-size: 0.98rem; }

@media (max-width: 860px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .grid-3 { grid-template-columns: 1fr; } }

/* Mentoren */
.mentors-photo {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 40px;
  max-height: 480px;
}
.mentors-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; max-height: 480px; }

.mentors { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.mentor-bio {
  background: var(--color-card);
  border-radius: var(--radius);
  border: 1px solid var(--color-line);
  padding: 28px 26px;
}
.mentor-bio h3 { margin-bottom: 4px; }
.mentor-role { color: var(--color-gold-deep); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 10px; display: block; }
.mentor-bio p { font-size: 0.95rem; margin-bottom: 0; }

@media (max-width: 860px) { .mentors { grid-template-columns: 1fr; } .mentors-photo { max-height: 340px; } .mentors-photo img { max-height: 340px; } }

/* Testimonials */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
  background: var(--color-card);
  border-radius: var(--radius);
  padding: 30px 26px;
  border: 1px solid var(--color-line);
  position: relative;
}
.testimonial p { font-family: var(--font-serif); font-size: 1.1rem; color: var(--color-ink); font-style: italic; margin-bottom: 12px; }
.testimonial cite { font-style: normal; font-size: 0.88rem; color: var(--color-ink-soft); }

@media (max-width: 860px) { .testimonials { grid-template-columns: 1fr; } }

/* Video-Feature: zweispaltig, Video schmal & hoch (Hochformat), Text daneben */
.video-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 280px) 1fr;
  gap: 44px;
  align-items: center;
}
.video-feature-media {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
  justify-self: center;
  width: 100%;
  max-width: 280px;
}
.video-feature-media video { width: 100%; display: block; max-height: 70vh; }
.video-feature-text h2 { margin-bottom: 14px; }
.video-feature-text p { font-size: 1.05rem; margin-bottom: 0; }

@media (max-width: 720px) {
  .video-feature-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .video-feature-media { max-width: 240px; }
  .video-feature-text .eyebrow { justify-content: center; }
}

/* Location */
.location .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.location .wrap.location-single { grid-template-columns: 1fr; max-width: 680px; text-align: left; }
.location-image { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; background: var(--color-bg-alt); }
.location-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }
.location ul { padding-left: 0; list-style: none; margin: 20px 0; }
.location li { padding: 8px 0 8px 28px; position: relative; color: var(--color-ink-soft); border-bottom: 1px solid var(--color-line); }
.location li:before { content: "→"; position: absolute; left: 0; color: var(--color-gold-deep); font-weight: 700; }

@media (max-width: 860px) { .location .wrap { grid-template-columns: 1fr; } .location-image { order: -1; } }

/* Preis / Ablauf */
.info-panel {
  background: var(--color-green-dark);
  color: var(--color-bg);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
}
.info-panel h2 { color: #fff; }
.info-panel p { color: rgba(251, 250, 249, 0.82); max-width: 620px; margin-left: auto; margin-right: auto; }
.info-panel .btn { margin-top: 12px; }

/* FAQ */
.faq { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--color-line); padding: 22px 0; }
.faq-item h3 { font-family: var(--font-sans); font-size: 1.05rem; color: var(--color-ink); margin-bottom: 8px; }
.faq-item p { margin-bottom: 0; }

/* Final CTA */
.final-cta { text-align: center; }
.final-cta .wrap { max-width: 700px; }
.final-cta-image {
  max-width: 320px;
  margin: 0 auto 28px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.final-cta-image img { width: 100%; display: block; }

/* Footer */
footer.site {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-line);
  padding: 40px 0 28px;
}
footer.site .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px; align-items: center; }
footer.site nav { display: flex; gap: 20px; flex-wrap: wrap; }
footer.site a { color: var(--color-ink-soft); text-decoration: none; font-size: 0.9rem; }
footer.site a:hover { color: var(--color-green-dark); }
.footer-note { font-size: 0.82rem; color: var(--color-ink-soft); opacity: 0.8; width: 100%; margin-top: 18px; }

/* Scroll reveal — dezent, respektiert reduzierte Bewegung */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Legal pages */
.legal { padding: 64px 0 96px; }
.legal .wrap { max-width: 780px; }
.legal h2 { margin-top: 1.6em; }
.legal p, .legal li { color: var(--color-ink-soft); }
.legal a { word-break: break-word; }
