/* ============================================================
   New Earth Academy — Masterclass Landingpage
   Markenfarben: warmes Creme · Espresso-Braun · Gold
   ============================================================ */

:root {
  /* Hintergründe */
  --bg:        #f1ebe0;   /* warmes Papier */
  --bg-2:      #e9e1d2;   /* tieferes Creme (Wechsel) */
  --bg-dark:   #221610;   /* Espresso (dunkle Bänder) */
  --card:      #faf6ec;   /* helle Karte */
  --card-2:    #f4eede;
  --card-dark: #2c1d14;   /* dunkle Karte */
  --line:      rgba(58, 36, 23, 0.14);
  --line-soft: rgba(58, 36, 23, 0.08);
  --line-dark: rgba(241, 235, 224, 0.13);

  /* Text */
  --text:       #2c1b11;  /* Espresso */
  --muted:      #6a5848;
  --faint:      #9a8a78;
  --text-dark:  #f3ede1;  /* auf dunklem Grund */
  --muted-dark: #c3b39d;

  /* Akzente (über Tweaks anpassbar) */
  --teal:   #a9824c;   /* GOLD — Eyebrows, Links, Häkchen, Bullets */
  --violet: #8c5733;   /* TERRAKOTTA — sekundärer warmer Akzent */

  /* CTA-Verlauf (warmes Braun) */
  --cta-from: #3a2417;
  --cta-to:   #5e3c23;

  /* Schriften (über Tweaks anpassbar) */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-head:  'Poppins', system-ui, sans-serif;
  --font-body:  'Mulish', system-ui, sans-serif;

  /* Maße */
  --col:   640px;
  --col-wide: 1080px;
  --radius: 22px;
  --radius-sm: 14px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
  color: var(--text);
}

p { margin: 0; text-wrap: pretty; }

/* ---------- Layout helpers ---------- */
.col {
  width: 100%;
  max-width: var(--col);
  margin: 0 auto;
  padding-inline: 24px;
}
.col-wide { max-width: var(--col-wide); }

.section { padding-block: 84px; position: relative; }
.section-sm { padding-block: 52px; }

.eyebrow {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}
.eyebrow.left { justify-content: flex-start; }
.eyebrow .dash { width: 26px; height: 1px; background: var(--teal); opacity: 0.7; }

.text-violet { color: var(--violet); }
.text-teal   { color: var(--teal); }

.grad-text {
  background: linear-gradient(105deg, var(--violet) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ============================================================
   Ankündigungsbanner (Espresso)
   ============================================================ */
.banner {
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(0,0,0,0.2);
  font-size: 14px;
  color: var(--text-dark);
  text-align: center;
  padding: 11px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  line-height: 1.4;
  gap: 6px 10px;
}
.banner .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 10px var(--teal);
  flex: none;
}
.banner b { color: var(--teal); font-weight: 700; }

/* ============================================================
   Header
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(241, 235, 224, 0.82);
  border-bottom: 1px solid var(--line-soft);
}
.header .inner {
  max-width: var(--col-wide);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Logo als New-Earth-Wortmarke (Serif) */
.logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.logo .ring {
  width: 30px; height: 30px; border-radius: 50%;
  background:
    radial-gradient(circle at 38% 32%, #d8b072 0%, #a9824c 38%, #4a3018 78%, #241610 100%);
  box-shadow: inset -2px -2px 5px rgba(0,0,0,0.35), 0 0 0 1px rgba(58,36,23,0.1);
  flex: none;
}
.logo .b {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: 0.02em;
  color: var(--text);
  line-height: 1;
}
.logo .b span {           /* "academy" Zusatz */
  display: block;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}

.nav-desk {
  display: flex; align-items: center; gap: 30px;
  font-size: 15px; color: var(--muted);
}
.nav-desk a { text-decoration: none; transition: color .15s; }
.nav-desk a:hover { color: var(--text); }
.nav-cta {
  font-family: var(--font-head); font-weight: 600;
  border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 18px; color: var(--text) !important;
}
.nav-cta:hover { border-color: var(--teal); color: var(--teal) !important; }

.burger {
  display: none;
  width: 30px; height: 22px; cursor: pointer;
  flex-direction: column; justify-content: space-between;
  background: none; border: none; padding: 0;
}
.burger span { height: 2px; width: 100%; background: var(--text); border-radius: 2px; }

@media (max-width: 860px) {
  .nav-desk { display: none; }
  .burger { display: flex; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding-top: 60px;
  padding-bottom: 64px;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: -10% 0 auto 0; height: 620px;
  background:
    radial-gradient(46% 52% at 50% 4%, rgba(169, 130, 76, 0.30), transparent 70%),
    radial-gradient(40% 46% at 78% 16%, rgba(140, 87, 51, 0.16), transparent 72%);
  pointer-events: none;
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }

.hero h1 {
  font-size: clamp(38px, 6.4vw, 62px);
  max-width: 16ch;
  margin: 0 auto;
}
.hero .sub {
  color: var(--muted);
  font-size: 18px;
  max-width: 44ch;
  margin: 22px auto 0;
}

/* ---------- Video facade ---------- */
.video {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(135deg, #3a2417, #221610),
    repeating-linear-gradient(135deg, #2e1d12 0 14px, #261810 14px 28px);
  border: 1px solid var(--line);
  cursor: pointer;
  box-shadow: 0 30px 70px -34px rgba(58, 36, 23, 0.55);
}
.video.full { cursor: default; }
.video iframe { width: 100%; height: 100%; border: 0; display: block; }
.video .poster {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background-size: cover; background-position: center;
}
.video .poster::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.35));
}
.video .label {
  position: absolute; left: 16px; bottom: 14px; z-index: 3;
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 12px; letter-spacing: 0.04em;
  color: rgba(243, 237, 225, 0.7);
}
.play {
  position: relative; z-index: 3;
  width: 84px; height: 84px; border-radius: 50%;
  background: rgba(243, 237, 225, 0.92);
  border: 1px solid rgba(255,255,255,0.4);
  display: grid; place-items: center;
  transition: transform .2s, background .2s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.video:hover .play { transform: scale(1.06); background: #fff; }
.play svg { width: 30px; height: 30px; margin-left: 4px; fill: var(--cta-from); }

/* ---------- Kapitel-Chips ---------- */
.chapters {
  display: flex; gap: 12px;
  overflow-x: auto;
  padding: 22px 24px 6px;
  margin: 0 auto;
  max-width: var(--col-wide);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.chapters::-webkit-scrollbar { display: none; }
.chip {
  flex: none;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--muted);
  border-radius: 999px;
  padding: 11px 18px;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: all .15s;
  font-family: var(--font-body);
}
.chip:hover { border-color: var(--teal); color: var(--text); }
.chip b { color: var(--teal); font-weight: 700; margin-right: 6px; }

/* ============================================================
   Presse / Bekannt aus
   ============================================================ */
.press { text-align: center; }
.press .lead { color: var(--muted); font-size: 18px; margin: 14px auto 0; max-width: 30ch; }
.press-grid {
  margin-top: 48px;
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: flex-start;
  gap: 40px 44px;
}
.press-grid .pl {
  flex: 0 1 150px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--cta-from); text-align: center;
  font-family: var(--font-head);
  opacity: 0.88;
  transition: opacity .2s, transform .3s ease;
}
.press-grid .pl:hover { opacity: 1; }
.pl-ic {
  width: 54px; height: 54px; border-radius: 50%;
  display: grid; place-items: center; margin-bottom: 8px;
  background: rgba(169, 130, 76, 0.12);
  border: 1px solid rgba(169, 130, 76, 0.32);
}
.pl-ic svg { width: 26px; height: 26px; stroke: var(--teal); fill: none; }
.pl-name { font-weight: 700; font-size: 20px; letter-spacing: 0.01em; }
.pl-name.serif { font-family: var(--font-serif); font-weight: 600; font-size: 24px; }
.pl-sub { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--faint); }
@media (max-width: 620px) {
  .press-grid { gap: 32px 28px; }
  .press-grid .pl { flex-basis: 130px; }
}

/* ---------- Feature-Leiste (Special Calls etc.) ---------- */
.feature-grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .feature-grid { grid-template-columns: 1fr; } }
.feature {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 28px 24px;
}
.feature-ic {
  width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 18px;
  background: rgba(169, 130, 76, 0.12);
  border: 1px solid rgba(169, 130, 76, 0.32);
}
.feature-ic svg { width: 24px; height: 24px; stroke: var(--teal); fill: none; }
.feature h3 { font-size: 19px; }
.feature p { color: var(--muted); font-size: 15px; margin-top: 10px; }

/* ---------- Video-Testimonials ---------- */
.vt-head { text-align: center; margin-top: 64px; }
.vt-head h3 { font-family: var(--font-serif); font-weight: 600; font-size: 30px; color: var(--text-dark); }
.vt-head p { color: var(--muted-dark); margin-top: 10px; font-size: 16px; }
.vt-grid {
  margin-top: 32px;
  display: grid; gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) { .vt-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .vt-grid { grid-template-columns: 1fr; } }
.vt-grid .video { aspect-ratio: 9/16; }
@media (max-width: 560px) { .vt-grid .video { aspect-ratio: 16/9; } }

/* ============================================================
   Fabian CTA
   ============================================================ */
.fabian { display: grid; gap: 40px; align-items: center; }
@media (min-width: 880px) {
  .fabian { grid-template-columns: 1fr 1fr; gap: 56px; }
}
.fabian img.fabian-photo {
  width: 100%; max-width: 540px;
  height: auto;
  margin: 0 auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: block;
}
.fabian h2 { font-size: clamp(26px, 3.4vw, 34px); }
.fabian p { color: var(--muted); margin-top: 18px; font-size: 17px; }
.fabian .alt { font-style: italic; margin-top: 22px; font-size: 16px; }
.fabian .alt a { color: var(--violet); font-weight: 600; }

.btn-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  margin-top: 28px;
  padding: 19px 28px;
  border-radius: 14px;
  background: linear-gradient(100deg, var(--cta-from), var(--cta-to));
  color: #f6efe3; text-decoration: none;
  font-family: var(--font-head); font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; font-size: 15px;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 18px 40px -18px rgba(58, 36, 23, 0.7);
  transition: transform .15s, box-shadow .2s;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 24px 50px -16px rgba(58, 36, 23, 0.8); }

/* ============================================================
   Testimonials (dunkles Espresso-Band)
   ============================================================ */
.t-head { text-align: center; }
.t-head h2 { font-size: clamp(30px, 4.6vw, 46px); margin-top: 16px; }
#stimmen .t-head h2 { color: var(--text-dark); }
.t-grid {
  margin-top: 52px;
  display: grid; gap: 26px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 980px) { .t-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .t-grid { grid-template-columns: 1fr; } }

.t-card {
  background: var(--card-dark);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.t-card .video { border-radius: 0; border: none; box-shadow: none; aspect-ratio: 4/3; }
.t-card .body { padding: 22px 24px 26px; }
.t-card h3 { font-size: 21px; color: var(--text-dark); }
.t-card .role {
  color: var(--teal); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; font-family: var(--font-head); font-weight: 600;
  margin-top: 6px;
}
.t-card blockquote {
  margin: 16px 0 0; font-style: italic;
  font-family: var(--font-serif); font-weight: 500;
  color: var(--text-dark); font-size: 21px; line-height: 1.4;
}
.t-card.text .body { padding: 32px 28px 30px; }
.t-card.text .stars { color: var(--teal); letter-spacing: 5px; font-size: 15px; }
.t-card.text blockquote { margin-top: 16px; font-size: 22px; }
.t-card.text .role { margin-top: 18px; }

/* ============================================================
   Garantie-Karte
   ============================================================ */
.guarantee {
  position: relative;
  background: linear-gradient(160deg, var(--card), var(--card-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px 40px;
  overflow: hidden;
  box-shadow: 0 30px 70px -40px rgba(58, 36, 23, 0.4);
}
.guarantee .guarantee-logo {
  position: absolute; top: 26px; right: 28px;
  z-index: 0; opacity: 0.9;
}
/* Inhalt über dem Logo halten, falls sie sich überlappen */
.guarantee h2, .guarantee p, .guarantee ul, .guarantee .shield {
  position: relative; z-index: 1;
}
@media (max-width: 560px) {
  .guarantee .guarantee-logo { display: none; }
}
.guarantee .shield {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(169, 130, 76, 0.14);
  border: 1px solid rgba(169, 130, 76, 0.4);
  margin-bottom: 22px;
}
.guarantee .shield svg { width: 26px; height: 26px; stroke: var(--teal); fill: none; }
.guarantee h2 { font-size: clamp(26px, 3.4vw, 34px); max-width: 14ch; }
.guarantee p { color: var(--muted); margin-top: 18px; }
.guarantee ul { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 14px; }
.guarantee li { display: flex; gap: 12px; color: var(--text); }
.guarantee li svg { width: 20px; height: 20px; flex: none; stroke: var(--teal); fill: none; margin-top: 3px; }

/* ============================================================
   Über mich
   ============================================================ */
.about { background: var(--bg-2); }
.about .eyebrow { justify-content: center; }
.about-title { text-align: center; font-size: clamp(28px, 4vw, 42px); margin-top: 16px; }
.about-grid {
  margin-top: 52px;
  display: grid; gap: 48px;
  align-items: start;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 0.82fr 1.18fr; gap: 60px; }
  /* Sticky nur im 2-spaltigen Desktop-Layout */
  .about-media { position: sticky; top: 96px; }
}
/* Mobil: Bild scrollt normal mit, kein Überlappen mehr */
@media (max-width: 899px) {
  .about-media { position: static; }
}
.about-media .about-photo {
  width: 100%; height: auto; aspect-ratio: 4/5; object-fit: cover; display: block;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
}
.about-name {
  font-family: var(--font-head); font-weight: 700; font-size: 18px;
  color: var(--text); margin-top: 18px; line-height: 1.3;
}
.about-name span {
  display: block; font-weight: 500; font-size: 14px;
  color: var(--muted); margin-top: 3px;
}
.about-bio {
  color: var(--muted); font-size: 15px; line-height: 1.6; margin-top: 16px;
}
.about-bio b { color: var(--text); font-weight: 700; }
.about-handle {
  font-family: var(--font-head); font-weight: 600; font-size: 14px;
  color: var(--teal); margin-top: 10px; letter-spacing: 0.01em;
}
.about-body > p { color: var(--muted); font-size: 17px; margin-top: 18px; }
.about-body em { color: var(--text); font-style: italic; }
.about-pull {
  margin: 0; padding: 0 0 0 24px;
  border-left: 3px solid var(--teal);
  font-family: var(--font-serif); font-weight: 500; font-style: italic;
  font-size: clamp(22px, 2.6vw, 28px); line-height: 1.35;
  color: var(--text);
}
.about-vision {
  font-family: var(--font-serif); font-style: italic;
  font-size: 22px; line-height: 1.4;
  color: var(--text) !important; margin-top: 26px !important;
}
.about-coda {
  margin-top: 30px; padding: 28px 30px;
  background: var(--bg-dark); color: var(--text-dark);
  border-radius: var(--radius);
}
.about-coda p { color: var(--muted-dark); font-size: 17px; line-height: 1.6; }
.about-call {
  font-family: var(--font-serif); font-weight: 600; font-style: italic;
  font-size: 24px; color: var(--teal) !important; margin-top: 16px !important;
}
.faq h2 { text-align: center; font-size: clamp(30px, 4.6vw, 46px); margin-bottom: 36px; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 26px 4px; text-align: left;
  font-family: var(--font-head); font-weight: 600; font-size: 19px; color: var(--text);
}
.faq-q .pm { font-size: 26px; color: var(--teal); flex: none; transition: transform .25s; line-height: 1; }
.faq-item.open .pm { transform: rotate(45deg); }
.faq-a {
  overflow: hidden; max-height: 0;
  transition: max-height .35s ease;
  color: var(--muted);
}
.faq-a .inner { padding: 0 4px 26px; }
.faq-a p + p { margin-top: 14px; }

/* ============================================================
   Angebot / 14 Tage (Seite 2)
   ============================================================ */
.offer-hero { text-align: center; position: relative; overflow: hidden; }
.offer-hero::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 560px;
  background:
    radial-gradient(46% 52% at 50% 0%, rgba(169, 130, 76, 0.26), transparent 70%),
    radial-gradient(40% 48% at 80% 18%, rgba(140, 87, 51, 0.14), transparent 72%);
  z-index: 0; pointer-events: none;
}
.offer-hero > * { position: relative; z-index: 1; }
.offer-hero h2 { font-size: clamp(32px, 5vw, 52px); max-width: 18ch; margin: 18px auto 0; }

.offer-points {
  list-style: none; padding: 0; margin: 40px auto 0; max-width: 540px;
  display: grid; gap: 18px; text-align: left;
}
.offer-points li { display: flex; gap: 14px; color: var(--text); font-size: 18px; }
.offer-points .bullet {
  width: 14px; height: 14px; border-radius: 50%; margin-top: 7px; flex: none;
  border: 2px solid var(--teal);
  background: rgba(169, 130, 76, 0.18);
}
.offer-points a { color: var(--violet); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* Preis-Karte */
.price-card {
  margin: 48px auto 0;
  max-width: 560px;
  background: linear-gradient(165deg, #fdfaf2, var(--card));
  border: 1px solid rgba(169, 130, 76, 0.45);
  border-radius: var(--radius);
  padding: 40px 36px;
  text-align: center;
  box-shadow: 0 30px 80px -42px rgba(169, 130, 76, 0.6);
}
.price-card .tag {
  font-family: var(--font-head); font-weight: 600; font-size: 13px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal);
}
.price-card .big {
  font-family: var(--font-head); font-weight: 700;
  font-size: 76px; line-height: 1; margin-top: 14px;
  display: flex; align-items: baseline; justify-content: center; gap: 12px;
  flex-wrap: nowrap; white-space: nowrap;
  color: var(--text);
}
.price-card .big small { font-size: 24px; font-weight: 500; color: var(--muted); white-space: nowrap; }
@media (max-width: 480px) {
  .price-card .big { font-size: 52px; gap: 8px; }
  .price-card .big small { font-size: 20px; }
}
.price-card .struck { margin-top: 14px; color: var(--faint); }
.price-card .struck s { margin: 0 10px; }
.price-card .after { color: var(--muted); margin-top: 14px; font-size: 16px; }
.price-card .after b { color: var(--text); }

.btn-pill {
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 28px; width: 100%;
  padding: 18px 26px; border-radius: 999px;
  background: linear-gradient(100deg, var(--cta-from), var(--cta-to));
  border: 1px solid rgba(0,0,0,0.1);
  color: #f6efe3; text-decoration: none; cursor: pointer;
  font-family: var(--font-head); font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; font-size: 14px;
  transition: transform .15s, box-shadow .2s;
  box-shadow: 0 16px 40px -20px rgba(58, 36, 23, 0.7);
}
.btn-pill:hover { transform: translateY(-2px); box-shadow: 0 22px 50px -18px rgba(58, 36, 23, 0.85); }

/* ============================================================
   Digistore Checkout (helles Panel)
   ============================================================ */
.checkout-wrap { margin-top: 56px; }
.checkout {
  max-width: 560px; margin: 0 auto;
  background: #ffffff;
  color: #2c1b11;
  border-radius: 16px;
  overflow: hidden;
  font-family: var(--font-body);
  box-shadow: 0 40px 90px -34px rgba(58, 36, 23, 0.5);
  border: 1px solid var(--line);
}
.co-steps { display: flex; gap: 8px; padding: 18px 20px 0; }
.co-step {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: 15px;
  color: #b6a591; padding: 12px 16px; border-radius: 12px 12px 0 0;
}
.co-step .n {
  width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center; font-size: 13px;
  background: #d8cdbb; color: #fff;
}
.co-step.active { color: var(--cta-from); background: #f6efe3; }
.co-step.active .n { background: var(--cta-from); }

.co-body { padding: 22px 26px 28px; }
.co-product-img {
  width: 100%; aspect-ratio: 16/9; border-radius: 10px; overflow: hidden;
  background: radial-gradient(120% 100% at 70% 30%, #5a3a22, #231610);
  display: grid; place-items: center; text-align: center;
}
.co-product-img .pi {
  font-family: var(--font-serif); font-weight: 600; letter-spacing: 0.03em;
  color: #d8b072; font-size: 26px; line-height: 1.15;
}
.co-product-img .pi small { display:block; color:#cbb89c; font-size: 11px; letter-spacing:0.32em; font-weight:500; margin-top:6px; font-family: var(--font-head); text-transform: uppercase;}

.co-row { display: flex; justify-content: space-between; gap: 16px; margin-top: 18px; }
.co-row h3 { color: #2c1b11; font-size: 20px; }
.co-qty { color: #8a7860; font-size: 14px; }
.co-price { text-align: right; }
.co-price .amt { font-family: var(--font-head); font-weight: 700; font-size: 20px; color: var(--cta-from); }
.co-price .vat { color: #8a7860; font-size: 13px; }

.co-feat-title { font-weight: 700; text-align: center; margin-top: 22px; color: #2c1b11; font-family: var(--font-head); }
.co-feats { list-style: none; padding: 0; margin: 14px 0 0; display: grid; gap: 12px; text-align: center; }
.co-feats li { color: #4a3a2a; font-size: 15px; }
.co-feats li::before { content: "✓ "; color: var(--teal); font-weight: 700; }
.co-desc { color: #6a5848; font-size: 14px; text-align: center; margin-top: 18px; line-height: 1.55; }

.co-sum {
  display: flex; justify-content: space-between; align-items: baseline;
  border-top: 1px solid #ece4d5; margin-top: 24px; padding-top: 20px;
}
.co-sum .l { font-family: var(--font-head); font-weight: 700; font-size: 18px; }
.co-sum .r { font-family: var(--font-head); font-weight: 700; font-size: 22px; color: var(--cta-from); }
.co-fine { color: #8a7860; font-size: 13px; text-align: right; margin-top: 10px; line-height: 1.5; }

.co-choose { font-family: var(--font-head); font-weight: 700; font-size: 13px; letter-spacing: 0.12em; color: #2c1b11; margin-top: 26px; }
.co-plan {
  display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid #ece4d5;
  cursor: pointer; align-items: flex-start;
}
.co-plan .radio {
  width: 22px; height: 22px; border-radius: 50%; border: 2px solid #cdbfa9;
  flex: none; margin-top: 3px; display: grid; place-items: center; transition: border-color .15s;
}
.co-plan.sel .radio { border-color: var(--cta-from); }
.co-plan.sel .radio::after { content: ""; width: 11px; height: 11px; border-radius: 50%; background: var(--cta-from); }
.co-plan .pt { font-family: var(--font-head); font-weight: 700; font-size: 20px; color: #2c1b11; }
.co-plan .pf { list-style: none; padding: 0; margin: 6px 0 0; display: grid; gap: 5px; }
.co-plan .pf li { color: #6a5848; font-size: 14px; }
.co-plan .pf li::before { content: "✓ "; color: var(--teal); }

/* Plan-Karten: Kopf mit Badge + Beschreibung */
.co-plan .pinfo { flex: 1; }
.co-plan .phead { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.co-plan .pdesc { color: #6a5848; font-size: 14px; margin-top: 6px; line-height: 1.5; }
.pbadge {
  font-family: var(--font-head); font-weight: 700; font-size: 11px;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  background: #efe7d6; color: #6e4327;
}
.pbadge.gold  { background: var(--teal); color: #fff; }
.pbadge.alt   { background: rgba(140,87,51,0.14); color: #8c5733; }
.pbadge.ghost { background: #f0ebe1; color: #8a7860; }
.co-plan.sel .pt { color: var(--cta-from); }

.co-select {
  margin-top: 22px; width: 100%; padding: 14px 16px;
  border: 1px solid #d8cdbb; border-radius: 8px; background: #fff;
  font-family: var(--font-body); font-size: 16px; color: #2c1b11;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%232c1b11' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.co-next {
  display: flex; justify-content: flex-end; margin-top: 24px;
}
.btn-next {
  border: none; cursor: pointer;
  background: var(--cta-from); color: #f6efe3;
  padding: 16px 36px; border-radius: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: 16px;
  letter-spacing: 0.06em; transition: background .2s, transform .15s;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
}
.btn-next:hover { background: #4a2e1a; transform: translateY(-1px); }

.co-secure {
  text-align: center; margin-top: 26px; color: var(--muted); font-size: 13px;
  display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap;
}
.co-secure .ds { font-family: var(--font-head); font-weight: 700; color: var(--text); }
.co-secure .ds span { color: var(--teal); }

/* ============================================================
   Footer (Espresso)
   ============================================================ */
.footer { background: var(--bg-dark); border-top: 1px solid rgba(0,0,0,0.2); padding-block: 64px; color: var(--muted-dark); }
.footer .logo .b { color: var(--text-dark); }
.footer .logo .b span { color: var(--muted-dark); }
.footer .top { display: grid; gap: 40px; }
@media (min-width: 880px) { .footer .top { grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; } }
.footer .brand p { color: var(--muted-dark); font-size: 14px; margin-top: 16px; max-width: 32ch; }
.footer .socials { display: flex; gap: 18px; margin-top: 18px; }
.footer .socials a {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-decoration: none; color: var(--muted-dark); transition: color .15s;
}
.footer .socials .ic {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line-dark);
  display: grid; place-items: center; transition: border-color .15s;
}
.footer .socials a:hover { color: var(--teal); }
.footer .socials a:hover .ic { border-color: var(--teal); }
.footer .socials .lbl {
  font-family: var(--font-head); font-weight: 600; font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.footer .socials svg { width: 18px; height: 18px; fill: currentColor; }
.footer h4 { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); margin-bottom: 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer a { color: var(--muted-dark); text-decoration: none; font-size: 14px; }
.footer a:hover { color: var(--text-dark); }
.footer .copy { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line-dark); color: var(--muted-dark); opacity: 0.7; font-size: 13px; text-align: center; }

/* ============================================================
   Mobile menu overlay
   ============================================================ */
.mobile-menu {
  position: fixed; inset: 0; z-index: 60;
  background: rgba(241, 235, 224, 0.98); backdrop-filter: blur(10px);
  display: flex; flex-direction: column; padding: 24px;
  transform: translateX(100%); transition: transform .3s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu .x { align-self: flex-end; background: none; border: none; color: var(--text); font-size: 34px; cursor: pointer; line-height: 1; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 6px; margin-top: 20px; }
.mobile-menu nav a { color: var(--text); text-decoration: none; font-family: var(--font-head); font-size: 22px; padding: 14px 4px; border-bottom: 1px solid var(--line-soft); }

/* ============================================================
   Unterseiten (Impressum / Datenschutz / AGB)
   ============================================================ */
.legal { padding-block: 64px 72px; }
.legal .back {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--teal); text-decoration: none;
  font-family: var(--font-head); font-weight: 600; font-size: 14px;
  margin-bottom: 30px;
}
.legal .back:hover { color: var(--violet); }
.legal h1 { font-size: clamp(30px, 5vw, 46px); }
.legal .updated { color: var(--faint); font-size: 14px; margin-top: 12px; }
.legal h2 {
  font-family: var(--font-head); font-size: 22px;
  margin-top: 44px; padding-top: 4px;
}
.legal h3 { font-size: 18px; margin-top: 26px; }
.legal p { color: var(--muted); margin-top: 14px; }
.legal ul { color: var(--muted); margin-top: 14px; padding-left: 22px; display: grid; gap: 8px; }
.legal li { padding-left: 2px; }
.legal a { color: var(--violet); text-decoration: underline; text-underline-offset: 3px; }
.legal strong, .legal b { color: var(--text); font-weight: 700; }
.legal address {
  font-style: normal; color: var(--text); margin-top: 16px; line-height: 1.75;
}
.legal .note {
  margin-top: 30px; padding: 18px 22px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 14px; color: var(--muted);
}
.legal .fill {
  background: rgba(169, 130, 76, 0.16);
  border-bottom: 1px dashed var(--teal);
  padding: 0 4px; border-radius: 3px; color: var(--text); font-style: italic;
}

/* ============================================================
   Hover-Animationen (dezente Bewegung beim Drüberfahren)
   ============================================================ */

/* Feature-Karten: anheben + Icon reagiert */
.feature {
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.feature:hover {
  transform: translateY(-8px);
  border-color: var(--teal);
  box-shadow: 0 24px 50px -28px rgba(58, 36, 23, 0.45);
}
.feature-ic { transition: transform .3s ease, background .3s ease; }
.feature:hover .feature-ic {
  transform: scale(1.1) rotate(-6deg);
  background: rgba(169, 130, 76, 0.22);
}

/* Testimonial-Karten: anheben + goldener Rand */
.t-card {
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.t-card:hover {
  transform: translateY(-6px);
  border-color: rgba(169, 130, 76, 0.5);
  box-shadow: 0 26px 60px -30px rgba(0, 0, 0, 0.6);
}

/* "New Earth Familie"-Kennzahlen: leicht anheben */
.press-grid .pl { transition: transform .3s ease, opacity .2s ease; }
.press-grid .pl:hover { transform: translateY(-5px) scale(1.04); }

/* Preis-Karte & Garantie-Karte: sanftes Anheben */
.price-card, .guarantee {
  transition: transform .35s ease, box-shadow .35s ease;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 90px -40px rgba(169, 130, 76, 0.7);
}
.guarantee:hover {
  transform: translateY(-5px);
  box-shadow: 0 40px 80px -36px rgba(58, 36, 23, 0.5);
}

/* Checkout-Pläne: Hintergrund-Tönung beim Drüberfahren */
.co-plan { transition: background .25s ease, padding-left .25s ease; }
.co-plan:hover { background: rgba(169, 130, 76, 0.06); padding-left: 8px; }

/* Bilder: sanfter Zoom (Wrapper schneidet den Überstand ab) */
.fabian img.fabian-photo,
.about-media .about-photo {
  transition: transform .5s ease;
}
.fabian img.fabian-photo:hover,
.about-media .about-photo:hover {
  transform: scale(1.03);
}

/* Logo-Orb: dreht sich beim Drüberfahren */
.logo .ring { transition: transform .6s ease, box-shadow .3s ease; }
.logo:hover .ring {
  transform: rotate(35deg);
  box-shadow: inset -2px -2px 5px rgba(0,0,0,0.35), 0 0 14px rgba(169,130,76,0.6);
}

/* Eyebrow-Striche: dehnen sich leicht, wenn man den Abschnitt überfährt */
.section:hover .eyebrow .dash { width: 34px; transition: width .4s ease; }

/* Footer-Links & Aufzählungen: gleiten leicht nach rechts */
.footer ul a { display: inline-block; transition: transform .2s ease, color .15s ease; }
.footer ul a:hover { transform: translateX(4px); }

/* Sanfte Reduktion für Menschen, die wenig Bewegung möchten */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
  .feature:hover, .t-card:hover, .press-grid .pl:hover,
  .price-card:hover, .guarantee:hover, .footer ul a:hover,
  .fabian img.fabian-photo:hover, .about-media .about-photo:hover,
  .logo:hover .ring { transform: none; }
}

/* ============================================================
   Newsletter-Anmeldekarte (Kostprobe)
   ============================================================ */
.signup-card {
  max-width: 560px; margin: 40px auto 0;
  background: linear-gradient(165deg, #fdfaf2, var(--card));
  border: 1px solid rgba(169, 130, 76, 0.45);
  border-radius: var(--radius);
  padding: 40px 36px;
  text-align: center;
  box-shadow: 0 30px 80px -42px rgba(169, 130, 76, 0.6);
  transition: transform .35s ease, box-shadow .35s ease;
}
.signup-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 90px -40px rgba(169, 130, 76, 0.7);
}
.signup-ic {
  width: 60px; height: 60px; border-radius: 50%;
  display: grid; place-items: center; margin: 0 auto 18px;
  background: rgba(169, 130, 76, 0.14);
  border: 1px solid rgba(169, 130, 76, 0.4);
}
.signup-ic svg { width: 28px; height: 28px; stroke: var(--teal); fill: none; }
.signup-card h3 { font-size: 24px; }
.signup-card > p { color: var(--muted); margin-top: 14px; font-size: 16px; }
.signup-form {
  margin-top: 26px; display: grid; gap: 12px;
  max-width: 420px; margin-inline: auto;
}
.signup-input {
  width: 100%; padding: 16px 18px;
  border: 1px solid var(--line); border-radius: 12px;
  background: #fff; color: var(--text);
  font-family: var(--font-body); font-size: 16px;
  transition: border-color .2s, box-shadow .2s;
}
.signup-input::placeholder { color: var(--faint); }
.signup-input:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(169, 130, 76, 0.18);
}
.signup-submit {
  width: 100%; margin-top: 4px;
  padding: 17px 26px; border-radius: 999px; cursor: pointer;
  background: linear-gradient(100deg, var(--cta-from), var(--cta-to));
  border: 1px solid rgba(0,0,0,0.1); color: #f6efe3;
  font-family: var(--font-head); font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; font-size: 14px;
  transition: transform .15s, box-shadow .2s, opacity .2s;
  box-shadow: 0 16px 40px -20px rgba(58, 36, 23, 0.7);
}
.signup-submit:hover { transform: translateY(-2px); box-shadow: 0 22px 50px -18px rgba(58, 36, 23, 0.85); }
.signup-submit:disabled { opacity: 0.6; cursor: default; transform: none; }
.signup-msg { margin-top: 18px !important; font-size: 16px; font-weight: 600; }
.signup-success { color: var(--teal); font-family: var(--font-head); }
.signup-error { color: #b3402b; }
.signup-fine { font-size: 13px; color: var(--faint); margin-top: 16px !important; }
