/* ==========================================================================
   Wendaoismus – Demo-Redesign
   Konzept: "Tusche & Papier" – Reispapier, Tuschschwarz, Zinnober-Siegelrot
   ========================================================================== */

:root {
  --paper: #F7F3EB;
  --paper-deep: #EFE8DA;
  --paper-card: #FCFAF5;
  --ink: #1E1C18;
  --ink-soft: #55503F;
  --ink-faint: #8A8372;
  --seal: #A63A2B;
  --seal-dark: #8C2F22;
  --jade: #5B7553;
  --line: rgba(30, 28, 24, 0.12);

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;
  --font-hanzi: "Ma Shan Zheng", "Noto Serif SC", serif;

  --radius: 4px;
  --shadow-soft: 0 2px 6px rgba(30, 28, 24, 0.06), 0 16px 40px rgba(30, 28, 24, 0.08);
  --shadow-lift: 0 4px 10px rgba(30, 28, 24, 0.08), 0 24px 56px rgba(30, 28, 24, 0.14);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 1.25rem;
  letter-spacing: 0.005em;
}

h2 { font-size: clamp(2.1rem, 4.2vw, 3.1rem); }
h3 { font-size: 1.45rem; line-height: 1.25; }

p { margin: 0 0 1.1rem; }

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

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.br-mobile { display: none; }

/* --------------------------------------------------------------------------
   Papierstruktur (feines Korn über allem)
   -------------------------------------------------------------------------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.12 0 0 0 0 0.11 0 0 0 0 0.09 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   Blütenblätter-Canvas (seitenweit, dezent)
   -------------------------------------------------------------------------- */
.petals {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.9rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.btn:active { transform: scale(0.97); }

.btn--seal {
  background: var(--seal);
  color: #FCFAF5;
}
.btn--seal:hover {
  background: var(--seal-dark);
  box-shadow: 0 6px 20px rgba(166, 58, 43, 0.3);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(30, 28, 24, 0.35);
}
.btn--ghost:hover {
  border-color: var(--ink);
  background: rgba(30, 28, 24, 0.04);
  transform: translateY(-2px);
}

.btn--ink {
  background: var(--ink);
  color: #FCFAF5;
}
.btn--ink:hover {
  background: #000;
  box-shadow: 0 6px 20px rgba(30, 28, 24, 0.3);
  transform: translateY(-2px);
}

.btn--paper {
  background: var(--paper);
  color: var(--ink);
}
.btn--paper:hover {
  background: #fff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}

.btn--small { padding: 0.65rem 1.25rem; font-size: 0.88rem; }

/* --------------------------------------------------------------------------
   Eyebrow / Labels
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--seal);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--seal);
}
.eyebrow--light { color: #D8A79A; }
.eyebrow--light::before { background: #D8A79A; }

.section-no {
  font-family: var(--font-hanzi);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  margin-right: 0.15rem;
  transform: translateY(1px);
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background-color 0.3s, box-shadow 0.3s, padding 0.3s;
}
.nav.is-scrolled {
  background: rgba(247, 243, 235, 0.88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav.is-scrolled .nav__inner { padding-top: 0.75rem; padding-bottom: 0.75rem; }

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
}
.nav__seal {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  background: var(--seal);
  color: #FCFAF5;
  font-family: var(--font-hanzi);
  font-size: 1.5rem;
  line-height: 1;
  border-radius: 3px;
  box-shadow: inset 0 0 0 1.5px rgba(252, 250, 245, 0.35), inset 0 0 0 3px var(--seal);
}
.nav__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.nav__name--light { color: var(--paper); }

.nav__links {
  display: flex;
  gap: 1.9rem;
  margin-left: auto;
}
.nav__links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 0.3rem 0;
  border-bottom: 1.5px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav__links a:hover { color: var(--ink); border-bottom-color: var(--seal); }

.nav__cta { flex-shrink: 0; padding: 0.65rem 1.4rem; font-size: 0.88rem; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 120;
}

.nav__backdrop {
  position: fixed;
  inset: 0;
  z-index: 98;
  background: rgba(30, 28, 24, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  touch-action: none;
}
html.menu-open .nav__backdrop {
  opacity: 1;
  pointer-events: auto;
}
html.menu-open,
html.menu-open body {
  overflow: hidden;
}
.nav__burger span {
  width: 24px; height: 2px;
  background: var(--ink);
  transition: transform 0.25s var(--ease), opacity 0.2s;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 60% at 75% 20%, rgba(166, 58, 43, 0.05), transparent 60%),
    var(--paper);
}

.hero__hanzi {
  position: absolute;
  top: 50%;
  right: -2%;
  transform: translateY(-54%);
  font-family: var(--font-hanzi);
  font-size: clamp(22rem, 46vw, 44rem);
  line-height: 1;
  color: rgba(30, 28, 24, 0.065);
  user-select: none;
  pointer-events: none;
  will-change: transform;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem 6rem;
  width: 100%;
}

.hero__content { max-width: 620px; }

.hero__title {
  font-size: clamp(2.9rem, 6.4vw, 5rem);
  font-weight: 500;
  margin-bottom: 1.6rem;
}
.hero__title em {
  font-style: italic;
  color: var(--seal);
}

.hero__sub {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 34rem;
  margin-bottom: 2.2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.2rem;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
}
.hero__stats > div { margin: 0; }
.hero__stats dt {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}
.hero__stats dt::after { content: "+"; color: var(--seal); }
.hero__stats div:last-of-type dt::after { content: ""; }
.hero__stats dd {
  margin: 0.3rem 0 0;
  font-size: 0.82rem;
  color: var(--ink-faint);
  letter-spacing: 0.02em;
}
.hero__stats-divider {
  width: 1px;
  height: 2.8rem;
  background: var(--line);
}

.hero__mountains {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: clamp(120px, 22vh, 300px);
  z-index: 1;
}

/* Tuscheast */
.hero__branch {
  position: absolute;
  top: 3.5rem;
  right: -3rem;
  width: min(56vw, 780px);
  height: auto;
  z-index: 1;
  pointer-events: none;
}
.hero__branch-strokes path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.3, 1);
  transition-delay: var(--draw-delay, 0s);
}
.hero__branch.is-drawn .hero__branch-strokes path { stroke-dashoffset: 0; }

.blossom {
  opacity: 0;
  transform: scale(0);
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.45s ease;
}
.blossom.is-bloomed {
  opacity: 1;
  transform: scale(1);
}

/* Vertikale Schriftspalte */
.hero__vertical {
  position: absolute;
  right: 2.2rem;
  bottom: 16%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.hero__vertical-text {
  writing-mode: vertical-rl;
  font-family: "Noto Serif SC", serif;
  font-size: 0.95rem;
  letter-spacing: 0.55em;
  color: rgba(30, 28, 24, 0.34);
}
.hero__vertical-seal {
  writing-mode: vertical-rl;
  font-family: "Noto Serif SC", serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: #FCFAF5;
  background: var(--seal);
  padding: 0.45rem 0.3rem;
  border-radius: 2px;
  box-shadow: inset 0 0 0 1px rgba(252, 250, 245, 0.35);
}

/* Scroll-Indikator */
.hero__scrollhint {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  z-index: 2;
  width: 1px;
  height: 56px;
  background: rgba(30, 28, 24, 0.18);
  overflow: hidden;
}
.hero__scrollhint span {
  position: absolute;
  left: -1.5px;
  top: -8px;
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: var(--seal);
  animation: scrollhint 2.4s cubic-bezier(0.4, 0, 0.4, 1) infinite;
}
@keyframes scrollhint {
  0% { transform: translateY(0); opacity: 0; }
  25% { opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translateY(64px); opacity: 0; }
}

/* --------------------------------------------------------------------------
   Zitat-Band
   -------------------------------------------------------------------------- */
.quoteband {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}
.quoteband__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5.5rem 2rem;
  text-align: center;
}
.quoteband__hanzi {
  position: absolute;
  top: 50%; left: 4%;
  transform: translateY(-50%) rotate(-6deg);
  font-family: var(--font-hanzi);
  font-size: 9rem;
  line-height: 1;
  color: rgba(247, 243, 235, 0.06);
  pointer-events: none;
}
.quoteband blockquote { margin: 0; }
.quoteband p {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.35;
  margin-bottom: 1rem;
}
.quoteband cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 243, 235, 0.55);
}

/* --------------------------------------------------------------------------
   Sektionen allgemein
   -------------------------------------------------------------------------- */
.section { padding: 7rem 0; }
.section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section--paper-deep { background: var(--paper-deep); }
.section--ink { background: var(--ink); color: var(--paper); }

.section__head {
  max-width: 640px;
  margin-bottom: 4rem;
}
.section__lead {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--ink-soft);
}
.section--ink .section__lead { color: rgba(247, 243, 235, 0.7); }

/* --------------------------------------------------------------------------
   Über Wen
   -------------------------------------------------------------------------- */
.about__grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 5rem;
  align-items: center;
}

.about__figure {
  position: relative;
  margin: 0;
}
.about__frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  background: #fff;
}
.about__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(30, 28, 24, 0.08);
  border-radius: var(--radius);
  pointer-events: none;
}
.about__stamp {
  position: absolute;
  right: -1.4rem;
  bottom: -1.4rem;
  display: grid;
  place-items: center;
  width: 4.6rem;
  height: 4.6rem;
  background: var(--seal);
  color: #FCFAF5;
  font-family: var(--font-hanzi);
  font-size: 2.6rem;
  line-height: 1;
  border-radius: 6px;
  box-shadow: inset 0 0 0 2px rgba(252, 250, 245, 0.4), inset 0 0 0 5px var(--seal), 0 10px 30px rgba(166, 58, 43, 0.35);
  transform: rotate(-4deg);
}

.about__points {
  list-style: none;
  padding: 0;
  margin: 1.8rem 0 2.2rem;
}
.about__points li {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  padding: 0.45rem 0;
  font-weight: 500;
}
.about__points svg {
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
  color: var(--seal);
  transform: translateY(2px);
}

.about__socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.about__socials span {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
}
.about__socials a {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink-soft);
  transition: color 0.2s, border-color 0.2s, transform 0.2s var(--ease), background-color 0.2s;
}
.about__socials a:hover {
  color: #FCFAF5;
  background: var(--seal);
  border-color: var(--seal);
  transform: translateY(-3px);
}
.about__socials svg { width: 1.1rem; height: 1.1rem; }

/* --------------------------------------------------------------------------
   Bücher
   -------------------------------------------------------------------------- */
.books__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.book {
  display: flex;
  flex-direction: column;
}

.book__coverwrap {
  position: relative;
  padding: 3rem 3rem 0;
}

.book__cover {
  position: relative;
  aspect-ratio: 5 / 7;
  background: linear-gradient(160deg, #FCFAF3 0%, #F3EDDF 100%);
  border-radius: 3px 8px 8px 3px;
  padding: 2.2rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow:
    inset 4px 0 8px -4px rgba(30, 28, 24, 0.25),
    var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.book:hover .book__cover {
  transform: translateY(-10px) rotate(-1deg);
  box-shadow:
    inset 4px 0 8px -4px rgba(30, 28, 24, 0.25),
    var(--shadow-lift);
}
.book__cover::before {
  content: "";
  position: absolute;
  left: 10px; top: 0; bottom: 0;
  width: 1px;
  background: rgba(30, 28, 24, 0.12);
}

.book__cover-hanzi {
  font-family: var(--font-hanzi);
  font-size: 1.6rem;
  letter-spacing: 0.5em;
  margin-right: -0.5em;
  color: var(--seal);
  margin-bottom: 0.8rem;
}
.book__cover-rule {
  width: 2.2rem;
  height: 1px;
  background: rgba(30, 28, 24, 0.3);
  margin-bottom: 1.1rem;
}
.book__cover-title {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}
.book__cover-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-top: 0.55rem;
}
.book__cover-art {
  width: 78%;
  margin: auto 0 0.9rem;
  opacity: 0.9;
}
.book__cover-art--enso { width: 46%; }
.book__cover-author {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.book__cover-author b {
  font-family: var(--font-hanzi);
  font-weight: 400;
  color: var(--seal);
  letter-spacing: 0;
  margin-left: 0.2em;
}

.book__badge {
  position: absolute;
  top: 1.9rem;
  right: 1.6rem;
  z-index: 2;
  background: var(--seal);
  color: #FCFAF5;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 2px;
  transform: rotate(3deg);
  box-shadow: 0 4px 12px rgba(166, 58, 43, 0.3);
}
.book__badge--green { background: var(--jade); box-shadow: 0 4px 12px rgba(91, 117, 83, 0.3); }

.book__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.8rem 0.4rem 0;
}
.book__body h3 { margin-bottom: 0.7rem; }
.book__body > p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  flex: 1;
}

.book__meta {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  margin: 0.8rem 0 1.2rem;
}
.book__price {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
}
.book__format {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  border: 1px solid var(--line);
  padding: 0.2rem 0.55rem;
  border-radius: 2px;
}

.book__actions { display: flex; gap: 0.7rem; flex-wrap: wrap; }

.books__note {
  margin: 3.5rem 0 0;
  text-align: center;
  font-size: 0.88rem;
  color: var(--ink-faint);
}

/* --------------------------------------------------------------------------
   Poesie-Zwischensektion
   -------------------------------------------------------------------------- */
.poem {
  position: relative;
  padding: 7.5rem 2rem;
  text-align: center;
  overflow: hidden;
}
.poem__hanzi {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-4deg);
  font-family: var(--font-hanzi);
  font-size: 13rem;
  line-height: 1;
  letter-spacing: 0.1em;
  color: rgba(30, 28, 24, 0.05);
  pointer-events: none;
  white-space: nowrap;
}
.poem__quote {
  position: relative;
  margin: 0;
}
.poem__quote p {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 1.6rem;
}
.poem__quote em {
  font-style: italic;
  color: var(--seal);
}
.poem__seal {
  display: grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  margin: 0 auto 1.1rem;
  background: var(--seal);
  color: #FCFAF5;
  font-family: var(--font-hanzi);
  font-size: 1.7rem;
  line-height: 1;
  border-radius: 4px;
  box-shadow: inset 0 0 0 1.5px rgba(252, 250, 245, 0.35), 0 6px 18px rgba(166, 58, 43, 0.28);
  transform: rotate(-3deg);
}
.poem__quote cite {
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* --------------------------------------------------------------------------
   Videokurs
   -------------------------------------------------------------------------- */
.course { position: relative; overflow: hidden; }
.course::before {
  content: "静";
  position: absolute;
  top: -4rem;
  right: -3rem;
  font-family: var(--font-hanzi);
  font-size: 22rem;
  line-height: 1;
  color: rgba(247, 243, 235, 0.04);
  pointer-events: none;
}

.course__grid {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: 5rem;
  align-items: center;
}

.course h2 { color: var(--paper); }
.course__title-em {
  display: block;
  font-size: 0.52em;
  font-style: italic;
  font-weight: 500;
  color: #D8A79A;
  margin-top: 0.4rem;
}
.course p { color: rgba(247, 243, 235, 0.78); }
.course strong { color: var(--paper); }

.course__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.course__list li {
  font-size: 0.88rem;
  padding: 0.4rem 0.95rem;
  border: 1px solid rgba(247, 243, 235, 0.25);
  border-radius: 100px;
  color: rgba(247, 243, 235, 0.85);
}

.course__cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 2rem;
}
.course__duration {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: rgba(247, 243, 235, 0.65);
}
.course__duration svg { width: 1.1rem; height: 1.1rem; }

.course__media { margin: 0; }
.course__thumb {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  cursor: pointer;
}
.course__thumb img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: 10% center;
  transition: transform 0.6s var(--ease);
}
.course__thumb:hover img { transform: scale(1.04); }
.course__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 28, 24, 0.35), transparent 45%);
}
.course__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 4.6rem;
  height: 4.6rem;
  background: rgba(247, 243, 235, 0.92);
  border-radius: 50%;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s var(--ease), background-color 0.2s;
}
.course__play svg { width: 1.7rem; height: 1.7rem; color: var(--seal); margin-left: 3px; }
.course__thumb:hover .course__play {
  transform: translate(-50%, -50%) scale(1.1);
  background: #fff;
}
.course__media figcaption {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: rgba(247, 243, 235, 0.5);
  text-align: center;
}

/* --------------------------------------------------------------------------
   Coaching
   -------------------------------------------------------------------------- */
.coaching__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.coach-card {
  position: relative;
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2.8rem 2.6rem;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.coach-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}
.coach-card__hanzi {
  position: absolute;
  top: -1.2rem;
  right: 0.4rem;
  font-family: var(--font-hanzi);
  font-size: 7.5rem;
  line-height: 1;
  color: rgba(166, 58, 43, 0.08);
  pointer-events: none;
}
.coach-card--business .coach-card__hanzi { color: rgba(30, 28, 24, 0.07); }

.coach-card h3 { font-size: 1.7rem; margin-bottom: 0.4rem; }
.coach-card__tags {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--seal);
  margin-bottom: 1.2rem;
}
.coach-card--business .coach-card__tags { color: var(--ink-soft); }
.coach-card > p:not(.coach-card__tags) {
  font-size: 0.97rem;
  color: var(--ink-soft);
}

.coach-card__meta {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin: 1.6rem 0 1.8rem;
}
.coach-card__price {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 700;
}
.coach-card__unit { color: var(--ink-faint); font-size: 0.9rem; }

/* --------------------------------------------------------------------------
   Stimmen
   -------------------------------------------------------------------------- */
.voices__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.voice {
  position: relative;
  margin: 0;
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2.4rem 2.2rem 2rem;
  box-shadow: var(--shadow-soft);
}
.voice::before {
  content: "„";
  position: absolute;
  top: -0.6rem;
  left: 1.3rem;
  font-family: var(--font-display);
  font-size: 4.4rem;
  line-height: 1;
  color: var(--seal);
  opacity: 0.3;
}
.voice p {
  position: relative;
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-style: italic;
  line-height: 1.5;
  margin: 0.6rem 0 1.4rem;
}
.voice footer {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
}
.voice cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.95rem;
}
.voice footer span {
  font-size: 0.82rem;
  color: var(--ink-faint);
}
.voice footer span::before {
  content: "· ";
}

/* --------------------------------------------------------------------------
   Outro / Newsletter
   -------------------------------------------------------------------------- */
.outro { position: relative; overflow: hidden; }
.outro__inner {
  position: relative;
  text-align: center;
  max-width: 720px;
}
.outro__hanzi {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -52%);
  font-family: var(--font-hanzi);
  font-size: 20rem;
  line-height: 1;
  color: rgba(30, 28, 24, 0.045);
  pointer-events: none;
}
.outro__quote { position: relative; margin: 0 0 1rem; }
.outro__quote p {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 0.8rem;
}
.outro__quote cite {
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.outro__lead {
  position: relative;
  color: var(--ink-soft);
  font-weight: 300;
  margin: 1.6rem auto 2.4rem;
  max-width: 30rem;
}

.outro__form {
  position: relative;
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}
.outro__form input {
  flex: 1 1 280px;
  max-width: 360px;
  padding: 0.9rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--paper-card);
  border: 1px solid rgba(30, 28, 24, 0.25);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.outro__form input:focus {
  outline: none;
  border-color: var(--seal);
  box-shadow: 0 0 0 3px rgba(166, 58, 43, 0.15);
}
.outro__form input::placeholder { color: var(--ink-faint); }
.outro__success {
  display: none;
  width: 100%;
  margin: 0.6rem 0 0;
  font-size: 0.9rem;
  color: var(--jade);
  font-weight: 500;
}
.outro__form.is-sent .outro__success { display: block; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--ink);
  color: rgba(247, 243, 235, 0.7);
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4.5rem 2rem 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}
.footer__brand p {
  margin-top: 1.2rem;
  font-size: 0.92rem;
  line-height: 1.7;
}
.footer__nav, .footer__legal-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer__nav a, .footer__legal-links a {
  color: rgba(247, 243, 235, 0.7);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s;
  width: fit-content;
}
.footer__nav a:hover, .footer__legal-links a:hover { color: var(--paper); }

.footer__bottom {
  border-top: 1px solid rgba(247, 243, 235, 0.12);
}
.footer__bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.4rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
}
.footer__bottom p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(247, 243, 235, 0.4);
}
.footer__credit a {
  color: rgba(247, 243, 235, 0.65);
  text-decoration: none;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(247, 243, 235, 0.25);
  transition: color 0.2s, border-color 0.2s;
}
.footer__credit a:hover {
  color: var(--paper);
  border-bottom-color: var(--seal);
}

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

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .about__grid, .course__grid { gap: 3rem; }
  .books__grid { grid-template-columns: repeat(2, 1fr); }
  .book__coverwrap { padding: 2rem 2rem 0; }
}

@media (max-width: 860px) {
  .section { padding: 5rem 0; }

  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__links.is-open {
    display: flex;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(78vw, 320px);
    flex-direction: column;
    gap: 0;
    padding: 6rem 2.2rem 2rem;
    background: var(--paper);
    box-shadow: -20px 0 60px rgba(30, 28, 24, 0.18);
    z-index: 99;
    animation: menu-in 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }
  @keyframes menu-in {
    from { transform: translateX(40px); opacity: 0; }
    to { transform: none; opacity: 1; }
  }
  .nav__links.is-open a {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ink);
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--line);
  }

  .br-mobile { display: inline; }

  .hero__inner { padding-top: 7rem; }
  .hero__hanzi {
    right: -22%;
    top: 38%;
    opacity: 0.8;
  }
  .hero__branch {
    top: 2rem;
    right: -4rem;
    width: 78vw;
    opacity: 0.85;
  }
  .hero__vertical, .hero__scrollhint { display: none; }
  .poem { padding: 5rem 1.5rem; }
  .poem__hanzi { font-size: 8.5rem; }
  .hero__stats { gap: 1.2rem; flex-wrap: wrap; }
  .hero__stats dt { font-size: 1.6rem; }

  .quoteband__hanzi { display: none; }

  .about__grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .about__figure { max-width: 420px; }
  .about__stamp { right: 0.9rem; bottom: -1.2rem; }

  .books__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }

  .course__grid { grid-template-columns: 1fr; }
  .course__media { order: -1; }

  .coaching__grid { grid-template-columns: 1fr; }
  .coach-card { padding: 2.2rem 1.8rem; }

  .voices__grid { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; gap: 2.2rem; }
}

@media (max-width: 480px) {
  body { font-size: 1rem; }
  .section__inner, .nav__inner { padding-left: 1.3rem; padding-right: 1.3rem; }
  .hero__inner { padding-left: 1.3rem; padding-right: 1.3rem; }
  .book__coverwrap { padding: 1.5rem 1.5rem 0; }
  .hero__actions .btn { width: 100%; }
}

/* --------------------------------------------------------------------------
   Reduzierte Bewegung
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero__hanzi { transform: translateY(-54%) !important; }
  .hero__branch-strokes path { stroke-dashoffset: 0; transition: none; }
  .blossom { opacity: 1; transform: scale(1); transition: none; }
  .hero__scrollhint span { animation: none; }
  .petals { display: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
