/* ============================================================
   Lokale Schriften (selbst-gehostet, kein externer Anbieter)
   ============================================================ */

@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 300 500;
  font-display: swap;
  src: url("assets/fonts/cormorant-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url("assets/fonts/cormorant-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url("assets/fonts/jost.woff2") format("woff2");
}

/* ============================================================
   Zweite Hälfte – Schlafklang für Frauen 45+
   styles.css
   ============================================================ */

:root {
  /* Markenfarben */
  --midnight: #0E1A2D;
  --midnight-2: #142339;
  --midnight-3: #1B2D48;
  --cream: #F2EBD7;
  --cream-2: #EDE3CB;
  --cream-3: #E5D9BC;
  --gold: #BFA060;
  --gold-soft: #D4BB7C;
  --gold-dim: rgba(191, 160, 96, 0.45);

  /* Typografie */
  --serif: "Cormorant Garamond", "EB Garamond", "Iowan Old Style", Garamond, serif;
  --sans: "Jost", "Avenir Next", "Avenir", "Helvetica Neue", system-ui, sans-serif;

  /* Layout */
  --measure: 38rem;
  --gutter: clamp(1.5rem, 4vw, 3rem);
  --section-y: clamp(5rem, 10vw, 9rem);

  /* Motion */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--midnight);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(16px, 1.05vw + 0.6rem, 19px);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

::selection { background: var(--gold); color: var(--midnight); }

/* ============================================================
   Reusable bits
   ============================================================ */

.container {
  width: 100%;
  max-width: 76rem;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

.rule {
  display: block;
  width: 64px;
  height: 1px;
  background: var(--gold);
  border: 0;
  margin: 1.75rem auto;
  opacity: 0.7;
}

.rule.left { margin-left: 0; margin-right: 0; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -0.005em;
  margin: 0;
  text-wrap: balance;
}

p { text-wrap: pretty; }

/* ============================================================
   Top nav
   ============================================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem var(--gutter);
  background: linear-gradient(to bottom, rgba(14, 26, 45, 0.7), rgba(14, 26, 45, 0));
  transition: background 600ms var(--ease), backdrop-filter 600ms var(--ease);
}

.nav.is-scrolled {
  background: rgba(14, 26, 45, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav__mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--cream);
  letter-spacing: 0.005em;
}

.nav__links {
  display: flex;
  gap: clamp(1rem, 3vw, 2.25rem);
  align-items: center;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
}

.nav__links a {
  position: relative;
  padding: 0.25rem 0;
  opacity: 0.85;
  transition: opacity 300ms var(--ease), color 300ms var(--ease);
}

.nav__links a:hover { opacity: 1; color: var(--gold-soft); }

@media (max-width: 640px) {
  .nav__links a:not(.nav__cta) { display: none; }
}

.nav__cta {
  border: 1px solid var(--gold-dim);
  border-radius: 999px;
  padding: 0.55rem 1rem !important;
  color: var(--gold) !important;
  opacity: 1 !important;
}

.nav__cta:hover {
  background: var(--gold);
  color: var(--midnight) !important;
  border-color: var(--gold);
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 8rem var(--gutter) 6rem;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(27, 45, 72, 0.85), transparent 70%),
    linear-gradient(180deg, #0B1626 0%, #0E1A2D 60%, #0A1322 100%);
}

.starfield {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}

.star {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: var(--cream);
  opacity: 0;
  animation: twinkle 6s var(--ease) infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(0.8); }
  50% { opacity: var(--max-opacity, 0.7); transform: scale(1); }
}

/* Sternschnuppe */
.shooting-star {
  position: absolute;
  z-index: -3;
  height: 2px;
  width: 130px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(212, 187, 124, 0.4), rgba(242, 235, 215, 0.95));
  filter: drop-shadow(0 0 6px rgba(242, 235, 215, 0.5));
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
  --angle: 28deg;
  --dist: 125vw;
}

.shooting-star::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: #fff;
  box-shadow: 0 0 8px 2px rgba(242, 235, 215, 0.85), 0 0 18px 5px rgba(212, 187, 124, 0.45);
}

.shooting-star--1 {
  top: 12%;
  left: -14%;
  --angle: 26deg;
  animation: shoot 13s linear infinite;
}

.shooting-star--2 {
  top: -4%;
  left: 24%;
  width: 100px;
  --angle: 36deg;
  animation: shoot 17s linear 7s infinite;
}

@keyframes shoot {
  0%   { opacity: 0; transform: rotate(var(--angle)) translateX(0); }
  3%   { opacity: 1; }
  13%  { opacity: 0; transform: rotate(var(--angle)) translateX(var(--dist)); }
  100% { opacity: 0; transform: rotate(var(--angle)) translateX(var(--dist)); }
}

@media (prefers-reduced-motion: reduce) {
  .shooting-star { display: none; }
}

.moon {
  position: absolute;
  top: 18%;
  right: 8%;
  width: clamp(120px, 18vw, 220px);
  height: clamp(120px, 18vw, 220px);
  z-index: -1;
  opacity: 0.95;
  filter: drop-shadow(0 0 60px rgba(212, 187, 124, 0.18));
  will-change: transform, opacity;
}

@keyframes moon-breathe {
  0%, 100% { transform: translateY(0) scale(1); filter: drop-shadow(0 0 60px rgba(212, 187, 124, 0.18)); }
  50%      { transform: translateY(-8px) scale(1.02); filter: drop-shadow(0 0 80px rgba(212, 187, 124, 0.28)); }
}

@media (max-width: 700px) {
  .moon { top: 9%; right: -3%; opacity: 0.7; }
}

/* Aufgehende Sonne – steigt beim Untergang des Mondes auf */
.sun {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(150px, 22vw, 280px);
  height: clamp(150px, 22vw, 280px);
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
}
.sun__disc {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%,
    #F7C07E 0%, #E88B3C 32%, #D2571E 58%,
    rgba(176, 58, 24, 0.28) 78%, rgba(176, 58, 24, 0) 100%);
  box-shadow: 0 0 70px 22px rgba(214, 96, 40, 0.40);
}

/* Warmer Schein, der von der Sonne ausgeht und sich aufs ganze Bild legt */
.hero__glow {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at 30% 44%,
    rgba(255, 196, 130, 0.55) 0%,
    rgba(255, 168, 110, 0.28) 32%,
    rgba(255, 150, 100, 0) 64%);
}

@media (max-width: 700px) {
  .sun { width: clamp(120px, 34vw, 200px); height: clamp(120px, 34vw, 200px); }
}

.hero__inner {
  position: relative;
  max-width: 56rem;
}

.hero__eyebrow { margin-bottom: 2.5rem; }
.js-loaded .hero__eyebrow {
  opacity: 0;
  animation: fade-up 1.4s var(--ease-out) 0.2s forwards;
}

.hero__title {
  font-size: clamp(3.5rem, 11vw, 8.5rem);
  letter-spacing: -0.01em;
  margin: 0;
}
.js-loaded .hero__title {
  opacity: 0;
  animation: fade-up 1.6s var(--ease-out) 0.5s forwards;
}

.hero__rule {
  margin: 2rem auto 1.5rem;
  width: 80px;
}
.js-loaded .hero__rule {
  width: 0;
  animation: rule-grow 1.6s var(--ease-out) 1.2s forwards;
}

@keyframes rule-grow {
  to { width: 80px; }
}

.hero__subtitle {
  font-size: 0.92rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
}
.js-loaded .hero__subtitle {
  opacity: 0;
  animation: fade-up 1.4s var(--ease-out) 1.4s forwards;
}

.hero__claim {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.15rem, 1.6vw + 0.6rem, 1.65rem);
  line-height: 1.45;
  max-width: 34rem;
  margin: 0 auto 3rem;
  color: var(--cream);
}
.js-loaded .hero__claim {
  opacity: 0;
  animation: fade-up 1.4s var(--ease-out) 1.7s forwards;
}

.hero__claim em {
  font-style: italic;
  color: var(--gold-soft);
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.js-loaded .hero__ctas {
  opacity: 0;
  animation: fade-up 1.4s var(--ease-out) 2s forwards;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.8rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 350ms var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: var(--midnight);
}

.btn--primary:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -10px rgba(212, 187, 124, 0.45);
}

.btn--ghost {
  color: var(--cream);
  border-color: rgba(242, 235, 215, 0.25);
}

.btn--ghost:hover {
  border-color: var(--cream);
  background: rgba(242, 235, 215, 0.04);
}

.btn svg { width: 16px; height: 16px; }

/* Wave divider at the bottom of hero */
.hero__wave {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 80px;
  opacity: 0.5;
  pointer-events: none;
}

.hero__wave path {
  stroke: var(--gold-dim);
  stroke-width: 1;
  fill: none;
}

.scroll-cue {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(242, 235, 215, 0.5);
}
.js-loaded .scroll-cue {
  opacity: 0;
  animation: fade-in 2s var(--ease-out) 2.6s forwards;
}

.scroll-cue::after {
  content: "";
  display: block;
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  margin: 0.6rem auto 0;
  animation: scroll-pulse 2.4s var(--ease) infinite;
  transform-origin: top;
}

@keyframes scroll-pulse {
  0%   { transform: scaleY(0.3); opacity: 0.3; }
  50%  { transform: scaleY(1);   opacity: 1; }
  100% { transform: scaleY(0.3); opacity: 0.3; }
}

@keyframes fade-in {
  to { opacity: 1; }
}

/* ============================================================
   Sections
   ============================================================ */

.section {
  padding: var(--section-y) 0;
  position: relative;
}

.section--cream {
  background: var(--cream);
  color: var(--midnight);
}

.section--cream .eyebrow { color: var(--gold); opacity: 0.95; }
.section--cream .rule { background: var(--gold); opacity: 0.6; }

.section__head {
  text-align: center;
  margin-bottom: 4rem;
}

.section__head .eyebrow { display: block; margin-bottom: 1.25rem; }

.section__title {
  font-size: clamp(2.25rem, 4.5vw + 0.5rem, 4rem);
  max-width: 22ch;
  margin: 0 auto;
}

/* ------------------------------------------------------------
   About / Editorial
   ------------------------------------------------------------ */

.about__lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.6rem, 2.4vw + 0.5rem, 2.5rem);
  line-height: 1.3;
  text-align: center;
  max-width: 30ch;
  margin: 0 auto 3rem;
  color: var(--midnight);
}

.about__body {
  max-width: var(--measure);
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--midnight);
  opacity: 0.88;
}

.about__body p + p { margin-top: 1.25rem; }

.about__body em {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15em;
  color: var(--midnight);
}

.about__signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  text-align: center;
  margin-top: 3rem;
  color: var(--gold);
  letter-spacing: 0.005em;
}

/* ------------------------------------------------------------
   Philosophy – three principles
   ------------------------------------------------------------ */

.philosophy {
  background: var(--midnight);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.philosophy::before,
.philosophy::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim) 30%, var(--gold-dim) 70%, transparent);
  opacity: 0.6;
}
.philosophy::before { top: 0; }
.philosophy::after { bottom: 0; }

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  max-width: 64rem;
  margin: 0 auto;
}

@media (max-width: 800px) {
  .principles { grid-template-columns: 1fr; gap: 3.5rem; }
}

.principle {
  text-align: center;
}

.principle__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.principle__title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.7rem;
  margin-bottom: 0.85rem;
  color: var(--cream);
}

.principle__body {
  font-size: 0.96rem;
  line-height: 1.65;
  color: rgba(242, 235, 215, 0.75);
  max-width: 22ch;
  margin: 0 auto;
}

/* ------------------------------------------------------------
   Formats – was dich erwartet
   ------------------------------------------------------------ */

.formats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  max-width: 66rem;
  margin: 0 auto;
}

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

.format {
  position: relative;
  padding: clamp(2rem, 3vw, 2.75rem) clamp(1.75rem, 2.5vw, 2.25rem);
  background: rgba(14, 26, 45, 0.03);
  border: 1px solid rgba(191, 160, 96, 0.3);
  border-radius: 3px;
  transition: transform 400ms var(--ease), border-color 400ms var(--ease), background 400ms var(--ease);
}

.format:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  background: rgba(191, 160, 96, 0.06);
}

.format__time {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(191, 160, 96, 0.3);
}

.format__title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.85rem;
  line-height: 1.1;
  color: var(--midnight);
  margin-bottom: 0.85rem;
}

.format__body {
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(14, 26, 45, 0.72);
  margin: 0;
}

/* ------------------------------------------------------------
   Klangwelten CTA – big card
   ------------------------------------------------------------ */

.listen {
  background: var(--cream);
  color: var(--midnight);
}

.listen__card {
  position: relative;
  max-width: 64rem;
  margin: 0 auto;
  background: var(--midnight);
  color: var(--cream);
  border-radius: 4px;
  padding: clamp(2.5rem, 5vw, 4.5rem);
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  box-shadow:
    0 30px 60px -30px rgba(14, 26, 45, 0.45),
    0 1px 0 rgba(191, 160, 96, 0.15) inset;
}

@media (max-width: 760px) {
  .listen__card { grid-template-columns: 1fr; text-align: center; }
}

.listen__card::before {
  /* faint wave pattern */
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 300' preserveAspectRatio='none'><path d='M0,150 C100,110 200,190 300,150 C400,110 500,190 600,150' fill='none' stroke='%23BFA060' stroke-width='0.5' opacity='0.35'/><path d='M0,170 C100,130 200,210 300,170 C400,130 500,210 600,170' fill='none' stroke='%23BFA060' stroke-width='0.5' opacity='0.25'/><path d='M0,130 C100,90 200,170 300,130 C400,90 500,170 600,130' fill='none' stroke='%23BFA060' stroke-width='0.5' opacity='0.2'/></svg>");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  opacity: 0.55;
  z-index: -1;
  mix-blend-mode: screen;
}

.listen__copy h2 {
  font-size: clamp(2rem, 3.4vw + 0.5rem, 3.25rem);
  margin-bottom: 1.5rem;
}

.listen__copy p {
  max-width: 32ch;
  color: rgba(242, 235, 215, 0.78);
  margin-bottom: 2rem;
}

.listen__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.listen__meta::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2.4s var(--ease) infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 0.4; box-shadow: 0 0 0 0 rgba(191, 160, 96, 0.4); }
  50%      { opacity: 1;   box-shadow: 0 0 0 6px rgba(191, 160, 96, 0); }
}

/* Player visual */
.player {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(191, 160, 96, 0.18), rgba(20, 35, 57, 0) 65%);
  border: 1px solid rgba(191, 160, 96, 0.2);
}

.player__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(191, 160, 96, 0.35);
  animation: ring-pulse 4s ease-out infinite;
}

.player__ring:nth-child(2) { animation-delay: 1.3s; }
.player__ring:nth-child(3) { animation-delay: 2.6s; }

@keyframes ring-pulse {
  0%   { transform: scale(0.5); opacity: 0; }
  20%  { opacity: 1; }
  100% { transform: scale(1.15); opacity: 0; }
}

.player__btn {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(80px, 16%, 110px);
  height: clamp(80px, 16%, 110px);
  border-radius: 50%;
  background: var(--gold);
  color: var(--midnight);
  border: 0;
  cursor: pointer;
  transition: transform 350ms var(--ease), background 350ms var(--ease);
  z-index: 1;
}

.player__btn:hover { transform: scale(1.06); background: var(--gold-soft); }
.player__btn svg { width: 36%; height: 36%; transform: translateX(2px); }

/* ------------------------------------------------------------
   Newsletter
   ------------------------------------------------------------ */

.newsletter {
  background: var(--midnight);
  color: var(--cream);
  text-align: center;
}

.newsletter__inner { max-width: 36rem; margin: 0 auto; }

.newsletter h2 {
  font-size: clamp(2rem, 3.4vw + 0.5rem, 3rem);
  margin-bottom: 1rem;
}

.newsletter p {
  color: rgba(242, 235, 215, 0.75);
  margin: 0 auto 2.5rem;
  max-width: 28rem;
}

.newsletter__form {
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid var(--gold-dim);
  padding-bottom: 0.5rem;
  transition: border-color 300ms var(--ease);
}

.newsletter__form:focus-within { border-bottom-color: var(--gold); }

.newsletter__form input {
  flex: 1;
  background: transparent;
  border: 0;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 1rem;
  padding: 0.85rem 0.25rem;
  outline: none;
}

.newsletter__form input::placeholder {
  color: rgba(242, 235, 215, 0.4);
  font-style: italic;
  font-family: var(--serif);
  font-size: 1.05rem;
}

.newsletter__form button {
  background: transparent;
  border: 0;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 0 1rem;
  cursor: pointer;
  transition: color 250ms var(--ease);
}

.newsletter__form button:hover { color: var(--gold-soft); }

.newsletter__hint {
  margin-top: 1.25rem;
  font-size: 0.78rem;
  color: rgba(242, 235, 215, 0.45);
  letter-spacing: 0.04em;
}

.newsletter__success {
  display: none;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold-soft);
  margin-top: 1.5rem;
}

.newsletter.is-success .newsletter__form { display: none; }
.newsletter.is-success .newsletter__success { display: block; }

/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */

.footer {
  background: #0A1322;
  color: rgba(242, 235, 215, 0.75);
  padding: 5rem 0 3rem;
  border-top: 1px solid rgba(191, 160, 96, 0.12);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

@media (max-width: 760px) {
  .footer__inner { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
}

.footer__mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.85rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.footer__tagline {
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer__disclaimer {
  font-size: 0.84rem;
  line-height: 1.6;
  color: rgba(242, 235, 215, 0.5);
  max-width: 28rem;
}

.footer__col h4 {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.25rem;
}

.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__col a {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--cream);
  opacity: 0.85;
  transition: color 250ms var(--ease), opacity 250ms var(--ease);
}

.footer__col a:hover { color: var(--gold-soft); opacity: 1; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(191, 160, 96, 0.1);
  font-size: 0.78rem;
  color: rgba(242, 235, 215, 0.45);
}

/* ============================================================
   Reveal on scroll
   ============================================================ */

.reveal { transition: opacity 1.2s var(--ease-out), transform 1.2s var(--ease-out); }
.js-loaded .reveal:not(.is-in) { opacity: 0; transform: translateY(24px); }
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* Safety: if animations never play (e.g. hidden tab freezes the timeline),
   JS adds .anims-complete after a timeout and we force the final state. */
.js-loaded.anims-complete .hero__eyebrow,
.js-loaded.anims-complete .hero__title,
.js-loaded.anims-complete .hero__subtitle,
.js-loaded.anims-complete .hero__claim,
.js-loaded.anims-complete .hero__ctas,
.js-loaded.anims-complete .scroll-cue { opacity: 1 !important; transform: none !important; }
.js-loaded.anims-complete .hero__rule { width: 80px !important; }
.js-loaded.anims-complete .reveal { opacity: 1 !important; transform: none !important; }
.reveal--d1 { transition-delay: 0.1s; }
.reveal--d2 { transition-delay: 0.25s; }
.reveal--d3 { transition-delay: 0.4s; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}


/* ============================================================
   Buch-Sektion
   ============================================================ */

.book__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(2rem, 4vw, 3rem);
}

.book__head {
  text-align: center;
}

.book__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: clamp(1.75rem, 4vw, 3rem);
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.book__card {
  flex: 0 1 208px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 300px;
}

.book__cover {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 1.5rem;
}

.book__cover img {
  display: block;
  width: clamp(170px, 22vw, 220px);
  aspect-ratio: 2 / 3;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.10);
}

.book__card .btn {
  margin-top: auto;
}

.book__title {
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  margin-bottom: 0.55rem;
}

.book__subtitle {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  color: var(--c-gold, #C8A96E);
  margin-bottom: 1rem;
  font-style: italic;
  text-align: center;
}

.book__text {
  font-size: clamp(0.95rem, 1.5vw, 1.02rem);
  line-height: 1.7;
  color: var(--c-text, #2a2a2a);
  max-width: 26ch;
  margin: 0 auto 1.6rem;
}

.book__divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 8rem;
  margin-bottom: -7rem;
  opacity: 0.75;
  position: relative;
  z-index: 1;
}

.book__moon {
  width: 130px;
  height: 130px;
  filter: drop-shadow(0 0 16px rgba(212, 187, 124, 0.5));
}

.book__divider-line {
  display: none;
}

@media (max-width: 600px) {
  .book__cover img {
    width: clamp(160px, 60vw, 260px);
  }
}

/* Sticky-Hero Scroll-Animation (Mond geht unter, Himmel wird hell) */
.hero-pin {
  position: relative;
  height: 200vh;
}
.hero__inner { will-change: opacity; }
.hero__day {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--cream);
  opacity: 0;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .hero-pin { height: auto; }
  .hero { position: static; }
  .hero__day { display: none; }
  .hero__glow { display: none; }
  .sun { display: none; }
}

/* FAQ */
.faq__list {
  max-width: var(--measure);
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid var(--gold-dim);
}
.faq__q {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  line-height: 1.3;
  color: var(--midnight);
  padding: 1.15rem 2.4rem 1.15rem 0;
  cursor: pointer;
  list-style: none;
  position: relative;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "+";
  position: absolute;
  right: 0.1rem;
  top: 1rem;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--gold);
  transition: transform 0.25s var(--ease);
}
.faq__item[open] .faq__q::after { content: "–"; }
.faq__a {
  padding: 0 0 1.3rem;
}
.faq__a p {
  margin: 0;
  max-width: none;
  color: var(--midnight-3);
}
