/* ============================================
   janinemay.de — Design-System
   Markenfarben: Dunkelblau #1F3555, Gelb #F2B33D, Creme
   (Hinweis: Variablennamen historisch — "terracotta" = Gelb, "green" = Dunkelblau)
   ============================================ */

:root {
  --cream: #FAF6F0;
  --sand: #F3EAE0;
  --white: #FFFFFF;
  --terracotta: #F2B33D;
  --terracotta-dark: #D6981F;
  --terracotta-soft: #FCEBC9;
  --green: #1F3555;
  --green-dark: #16273F;
  --green-soft: #E3E9F2;
  --ink: #2B241E;
  --muted: #6E6259;
  --line: #E5DBCE;
  --gold: #F2B33D;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 10px 30px rgba(43, 36, 30, 0.08);
  --shadow-lg: 0 18px 50px rgba(43, 36, 30, 0.14);
  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; color: var(--ink); }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; }

a { color: var(--green); }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 780px; }

section { padding: 88px 0; }

.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}

.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 14px; color: var(--muted); font-size: 1.06rem; }

.bg-sand { background: var(--sand); }
.bg-green { background: var(--green); }
.bg-green h2, .bg-green h3, .bg-green p { color: var(--white); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--terracotta);
  color: var(--green-dark);
  box-shadow: 0 6px 18px rgba(242, 179, 61, 0.4);
}
.btn--primary:hover { background: var(--terracotta-dark); color: var(--green-dark); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--cream); }

.btn--light {
  background: var(--white);
  color: var(--green);
}

.btn--lg { padding: 18px 38px; font-size: 1.08rem; }

.btn-note { display: block; margin-top: 12px; font-size: 0.88rem; color: var(--muted); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1120px;
  margin: 0 auto;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}
.nav__logo span { color: var(--green); }
.nav__links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav__links a:not(.btn) {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
}
.nav__links a:not(.btn):hover { color: var(--terracotta-dark); }
.nav__links .btn { padding: 10px 22px; font-size: 0.94rem; }
.nav__toggle { display: none; background: none; border: none; font-size: 1.7rem; cursor: pointer; color: var(--ink); }

/* ---------- Hero ---------- */
.hero { padding: 72px 0 88px; overflow: hidden; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 em { font-style: normal; color: var(--green); }
.hero__sub { margin: 20px 0 32px; font-size: 1.15rem; color: var(--muted); max-width: 540px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 16px; }
.hero__trust { display: flex; align-items: center; gap: 10px; margin-top: 28px; color: var(--muted); font-size: 0.94rem; }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 1.05rem; }

.hero__image { position: relative; max-width: 380px; margin: 0 auto; }
.hero__image .img-frame { transform: rotate(2deg); }

/* Nav-/Footer-Wortmarke */
.nav__wordmark { height: 24px; width: auto; display: block; }
.nav__logo { flex-shrink: 0; margin-right: 40px; }
.footer__wordmark { height: 32px; width: auto; margin-bottom: 14px; }

/* Hero-Figur: Freisteller auf Markenkreis */
.hero__figure {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.hero__figure::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -16%;
  transform: translateX(-50%);
  width: 94%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--terracotta);
}
.hero__figure::after {
  content: "";
  position: absolute;
  right: 4%;
  top: 10%;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 3px solid var(--green);
  opacity: 0.3;
}
.hero__figure img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 96%;
  width: auto;
  filter: drop-shadow(0 14px 30px rgba(31, 53, 85, 0.25));
}

/* Über-mich-Bild kompakter */
.about__grid .img-frame { max-width: 380px; margin: 0 auto; }

/* Partner-Leiste */
.partners { padding: 40px 0; background: var(--white); border-bottom: 1px solid var(--line); }
.partners__label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.partners__track { overflow: hidden; }
.partners__row {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  padding-right: 72px;
  animation: partners-scroll 32s linear infinite;
}
.partners__track:hover .partners__row { animation-play-state: paused; }
.partners__row a { display: block; opacity: 0.85; transition: opacity 0.15s; }
.partners__row a:hover { opacity: 1; }
.partners__row img { max-height: 52px; max-width: 220px; width: auto; display: block; }
.partners__text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--muted);
  white-space: nowrap;
}
@keyframes partners-scroll {
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .partners__row { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
}
@media (max-width: 640px) {
  .partners__row img { max-height: 40px; }
}

/* Bild-Platzhalter — wird durch echte Fotos ersetzt */
.img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--white);
  border: 6px solid var(--white);
}
.img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--terracotta-soft), var(--sand) 60%, var(--green-soft));
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
  padding: 20px;
}
.img-placeholder::before { content: "📷"; font-size: 2.2rem; }
.img-placeholder--portrait { aspect-ratio: 4 / 5; }
.img-placeholder--landscape { aspect-ratio: 16 / 10; }
.img-placeholder--square { aspect-ratio: 1; }

.img-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo--portrait { aspect-ratio: 4 / 5; }
.photo--landscape { aspect-ratio: 16 / 10; }
.photo--square { aspect-ratio: 1; }

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

/* ---------- Bühnen-Band (Beweis) ---------- */
.proof-band { position: relative; }
.proof-band img {
  width: 100%;
  height: clamp(200px, 30vw, 380px);
  object-fit: cover;
  object-position: center 55%;
  display: block;
}
.proof-band__note {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  background: rgba(43, 36, 30, 0.72);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 999px;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}
@media (max-width: 560px) {
  .proof-band__note { font-size: 0.8rem; padding: 7px 14px; bottom: 14px; }
}

/* ---------- Zahlen / Trustbar ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
.stat__number { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: var(--terracotta); }
.bg-green .stat__number { color: var(--gold); }
.stat__label { color: var(--muted); font-weight: 600; }
.bg-green .stat__label { color: rgba(255, 255, 255, 0.85); }

/* ---------- Cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card__icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--terracotta-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.card p { color: var(--muted); font-size: 0.98rem; flex-grow: 1; }
.card__link { font-weight: 700; text-decoration: none; }
.card__link:hover { text-decoration: underline; }

/* ---------- Über mich ---------- */
.about__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.about__text p { margin-bottom: 16px; color: var(--muted); }
.about__text p strong { color: var(--ink); }
.checklist { list-style: none; margin: 22px 0; }
.checklist li { padding-left: 34px; position: relative; margin-bottom: 12px; font-weight: 600; }
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

/* ---------- Testimonials ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.testimonial__text { color: var(--ink); font-size: 0.99rem; flex-grow: 1; }
.testimonial__text::before {
  content: "„";
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  height: 2rem;
  color: var(--terracotta);
  margin-bottom: 10px;
}
.testimonial__author { font-weight: 700; font-size: 0.94rem; }
.testimonial__meta { color: var(--muted); font-size: 0.85rem; font-weight: 500; }
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--shadow);
}

/* ---------- Kurs-Teaser (Homepage) ---------- */
.course-teaser {
  border-radius: var(--radius-lg);
  background: var(--green);
  color: var(--white);
  padding: 60px 56px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}
.course-teaser .eyebrow { color: var(--gold); }
.course-teaser h2, .course-teaser p { color: var(--white); }
.course-teaser p { color: rgba(255, 255, 255, 0.88); margin: 16px 0 28px; }

.pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0 8px 8px 0;
}

/* ---------- Landingpage: Hero ---------- */
.lp-hero { text-align: center; padding: 80px 0 70px; }
.lp-hero__badge {
  display: inline-block;
  background: var(--terracotta-soft);
  color: var(--green);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.lp-hero h1 { max-width: 850px; margin: 0 auto; }
.lp-hero__sub { max-width: 640px; margin: 22px auto 34px; font-size: 1.16rem; color: var(--muted); }

/* ---------- Pain / Lösung ---------- */
.pain-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.pain-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-weight: 600;
}
.pain-item span { font-size: 1.3rem; }

/* ---------- Module ---------- */
.module {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 18px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  box-shadow: var(--shadow);
}
.module__number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.module p { color: var(--muted); font-size: 0.98rem; margin-top: 6px; }

/* ---------- Das-bekommst-du-Box ---------- */
.includes-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  border-top: 6px solid var(--green);
  box-shadow: var(--shadow-lg);
  padding: 44px 40px;
  margin-top: 48px;
}
.includes-box h3 { font-size: 1.5rem; margin-bottom: 24px; text-align: center; }
.includes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 28px; }
.includes-item { display: flex; gap: 14px; align-items: flex-start; }
.includes-item span.icon { font-size: 1.5rem; flex-shrink: 0; }
.includes-item strong { display: block; }
.includes-item small { color: var(--muted); font-size: 0.92rem; line-height: 1.5; display: block; }
.bonus-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 3px 10px;
  margin-left: 8px;
  vertical-align: middle;
}
@media (max-width: 640px) {
  .includes-grid { grid-template-columns: 1fr; }
  .includes-box { padding: 30px 22px; }
}

/* ---------- Zielgruppe ---------- */
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* ---------- FAQ ---------- */
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 26px;
  margin-bottom: 14px;
}
.faq summary {
  font-weight: 700;
  cursor: pointer;
  font-size: 1.02rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--terracotta); font-weight: 400; transition: transform 0.2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: 14px; color: var(--muted); }

/* ---------- Warteliste / CTA-Formular ---------- */
.signup-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 48px;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  border-top: 6px solid var(--terracotta);
}
.signup-box h2 { margin-bottom: 12px; }
.signup-box > p { color: var(--muted); margin-bottom: 26px; }
.ghl-embed {
  border: 2px dashed var(--line);
  border-radius: var(--radius);
  padding: 40px 24px;
  color: var(--muted);
  font-size: 0.94rem;
  background: var(--cream);
}

/* ---------- Danke-Seite ---------- */
.thanks { text-align: center; padding: 80px 0 70px; }
.thanks__icon {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-size: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 26px;
}
.thanks h1 { max-width: 760px; margin: 0 auto; }
.thanks__sub { max-width: 600px; margin: 20px auto 0; font-size: 1.12rem; color: var(--muted); }

.steps { max-width: 620px; margin: 44px auto 0; text-align: left; }
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-bottom: 14px;
  box-shadow: var(--shadow);
}
.step__num {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--green-dark);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step strong { display: block; margin-bottom: 4px; }
.step small { color: var(--muted); font-size: 0.94rem; line-height: 1.55; display: block; }

.next-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 800px; margin: 0 auto; }
@media (max-width: 640px) {
  .next-cards { grid-template-columns: 1fr; }
  .step { padding: 18px 20px; gap: 14px; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 56px 0 32px;
  font-size: 0.95rem;
}
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer__brand { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.site-footer h4 { color: var(--white); font-family: var(--font-body); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: rgba(255, 255, 255, 0.75); text-decoration: none; }
.site-footer a:hover { color: var(--white); }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.15); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.86rem; }

/* ---------- Cookie-Consent-Banner ---------- */
#jm-consent-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 999;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.consent__inner {
  pointer-events: auto;
  max-width: 720px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--terracotta);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 22px 26px;
}
.consent__text { font-size: 0.95rem; color: var(--muted); margin-bottom: 16px; }
.consent__text a { font-weight: 700; }
.consent__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.consent__btn { padding: 11px 22px; font-size: 0.93rem; }

/* ---------- Scroll-Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  section { padding: 64px 0; }
  .hero__grid, .about__grid, .course-teaser { grid-template-columns: 1fr; }
  .hero__image { max-width: 420px; margin: 0 auto; }
  .card-grid, .testimonial-grid, .audience-grid { grid-template-columns: 1fr 1fr; }
  .course-teaser { padding: 44px 32px; }
}

@media (max-width: 640px) {
  .nav__toggle { display: block; }
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--cream);
    padding: 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav__links.is-open { display: flex; }
  .card-grid, .testimonial-grid, .audience-grid, .pain-list, .stats { grid-template-columns: 1fr; }
  .stats { gap: 32px; }
  .signup-box { padding: 32px 22px; }
  .module { flex-direction: column; gap: 14px; padding: 24px; }
  .footer__grid { grid-template-columns: 1fr; }
}
