/* ============================================
   STILLE MEDITATION – Erfurt
   Helles, freundliches, einladendes Design
   Segoe UI Light / System Font
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Helle, warme Farbpalette – kräftige Kontraste */
  --color-bg: #faf8f5;
  --color-bg-warm: #f3efe8;
  --color-surface: #ffffff;
  --color-text: #2a2520;
  --color-text-muted: #4d463e;
  --color-text-light: #6b635a;
  --color-heading: #1a1510;
  --color-accent: #8b6914;
  --color-accent-hover: #a47d1a;
  --color-accent-light: rgba(139, 105, 20, 0.1);
  --color-white: #ffffff;
  --color-border: rgba(0, 0, 0, 0.1);

  /* Overlays – sehr transparent für lebendige, farbenfrohe Videos */
  --overlay-light: rgba(250, 248, 245, 0.35);
  --overlay-content: rgba(250, 248, 245, 0.65);
  --overlay-hero: rgba(20, 18, 14, 0.3);
  --overlay-cta: rgba(20, 18, 14, 0.4);

  /* Segoe UI Light Font-Stack */
  --font-main: 'Segoe UI Light', 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;

  --max-width: 1200px;
  --max-width-narrow: 800px;
  --border-radius: 8px;
  --transition: 0.3s ease;

  scroll-behavior: smooth;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-main);
  font-weight: 600;
  line-height: 1.75;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-accent-hover);
}

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

/* --- Typography (Segoe UI Light) --- */
h1, h2, h3, h4 {
  font-family: var(--font-main);
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-heading);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.25rem); font-weight: 500; }
h4 { font-size: 1.05rem; font-weight: 500; }

em {
  font-style: italic;
  color: var(--color-accent);
}

strong {
  font-weight: 600;
  color: var(--color-heading);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.8rem;
  border: none;
  border-radius: var(--border-radius);
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn--primary {
  background: var(--color-accent);
  color: #fff;
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 105, 20, 0.25);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn--lg {
  padding: 0.9rem 2.2rem;
  font-size: 1.05rem;
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.8rem 0;
  transition: all 0.4s ease;
}

.nav--scrolled {
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.5rem 0;
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

.nav--scrolled .nav__logo,
.nav--scrolled .nav__link {
  color: var(--color-text);
}

.nav--scrolled .nav__link:hover {
  color: var(--color-accent);
}

.nav--solid {
  background: var(--color-bg);
  padding: 0.5rem 0;
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-main);
  font-size: 1.15rem;
  font-weight: 300;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.05em;
}

.nav__menu {
  display: flex;
  list-style: none;
  gap: 0.2rem;
}

.nav__link {
  display: block;
  padding: 0.45rem 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--border-radius);
  transition: all var(--transition);
}

.nav__link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.nav__link--cta {
  background: var(--color-accent);
  color: #fff !important;
  font-weight: 600;
}

.nav__link--cta:hover {
  background: var(--color-accent-hover);
}

/* Social Media Icons in Navigation */
.nav__social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.8rem;
}

.nav__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.85);
  transition: all var(--transition);
}

.nav__social-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

.nav--scrolled .nav__social-link {
  color: var(--color-text-muted);
}

.nav--scrolled .nav__social-link:hover {
  color: var(--color-accent);
  background: var(--color-accent-light);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all var(--transition);
}

.nav--scrolled .nav__toggle span {
  background: var(--color-text);
}

/* === HERO SECTION – SLIDESHOW === */
.module--hero {
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide--active {
  opacity: 1;
}

.hero-slide__video,
.hero-slide__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slideshow__overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-hero);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-sm);
}

/* Prominentes Datum-Badge */
.hero__date-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 1rem 2rem;
  margin-bottom: var(--space-sm);
}

.hero__date-badge-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.hero__date-badge-date {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}

.hero__date-badge-sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 0.25rem;
  font-weight: 600;
}

.hero__title {
  max-width: 800px;
  color: #fff;
}

.hero__title em {
  color: #e8cc7a;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255, 255, 255, 0.95);
  max-width: 600px;
  font-weight: 600;
}

.hero__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--space-sm);
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: float 2.5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* === MODULE (Video-Hintergrund-Sektionen) === */
.module {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.module__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.module__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.module__overlay {
  position: absolute;
  inset: 0;
}

/* Helles Overlay – lässt Videofarben natürlich durchscheinen */
.module__overlay--light {
  background: var(--overlay-light);
}

/* Stärkeres Overlay für Text-lastiges Inhalte-Modul */
.module__overlay--content {
  background: var(--overlay-content);
}

/* CTA-Modul – etwas dunkler für weißen Text */
.module__overlay--cta {
  background: var(--overlay-cta);
}

.module__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-md);
  background: rgba(250, 248, 245, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 16px;
}

/* "Für wen" und "FAQ" – Layer etwas transparenter */
#fuerwen .module__content,
#faq .module__content {
  background: rgba(250, 248, 245, 0.45);
}

/* Hero-Content braucht keinen hellen Layer (dunkler Hintergrund, weißer Text) */
.hero__content {
  background: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-radius: 0 !important;
}

/* CTA-Modul – dunkler Layer für weißen Text */
.module--cta .module__content {
  background: rgba(20, 18, 14, 0.5);
}

.module__content--narrow {
  max-width: var(--max-width-narrow);
}

.module__content--center {
  text-align: center;
  max-width: var(--max-width-narrow);
}

/* === Section Titles & Text === */
.section-title {
  margin-bottom: var(--space-lg);
  position: relative;
  color: var(--color-heading);
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background: var(--color-accent);
  margin-top: 0.75rem;
}

.module__content--center .section-title::after {
  margin-left: auto;
  margin-right: auto;
}

/* CTA Sektion mit weißem Text */
.module--cta .section-title,
.module--cta .section-text p,
.module--cta .section-note {
  color: #fff;
}

.module--cta .section-title::after {
  background: #e8cc7a;
}

.module--cta .cta-email {
  color: rgba(255, 255, 255, 0.7);
}

.section-text {
  margin-bottom: var(--space-md);
}

.section-text p {
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.section-intro {
  font-size: 1.05rem;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
  max-width: var(--max-width-narrow);
}

.section-highlight {
  background: var(--color-accent-light);
  border-left: 3px solid var(--color-accent);
  padding: var(--space-md);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  margin-top: var(--space-md);
}

.section-highlight p {
  color: var(--color-text);
  font-size: 0.95rem;
}

.section-note {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-top: var(--space-md);
}

/* === Theme Cards (Inhalte) === */
.theme-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-md);
}

.theme-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: var(--space-md);
  transition: all 0.4s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.theme-card:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.theme-card__number {
  font-size: 1.8rem;
  font-weight: 200;
  color: var(--color-accent);
  opacity: 0.5;
  line-height: 1;
}

.theme-card__title {
  margin: var(--space-xs) 0 var(--space-sm);
  font-size: 1.1rem;
  color: var(--color-heading);
}

.theme-card p {
  color: var(--color-text);
  font-size: 0.9rem;
}

/* === Ablauf (Kursaufbau) === */
.ablauf {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.ablauf__step {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 12px;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.ablauf__step:hover {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.ablauf__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-accent-light);
  color: var(--color-accent);
}

.ablauf__step h4 {
  margin-bottom: 0.3rem;
  color: var(--color-heading);
}

.ablauf__step p {
  color: var(--color-text);
  font-size: 0.9rem;
}

/* === Martin Laird Grid === */
.laird-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-lg);
  align-items: center;
}

.laird-grid__text p {
  margin-bottom: var(--space-sm);
}

.laird-grid__images {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
}

.laird-portrait {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(139, 105, 20, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.laird-book {
  width: 160px;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* === Ort Grid === */
.ort-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.ort-grid__text p {
  margin-bottom: var(--space-sm);
}

.ort-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.ort-info__item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-accent);
}

.ort-info__item span {
  color: var(--color-text);
  font-weight: 400;
}

.ort-grid__images {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.ort-grid__images img {
  border-radius: var(--border-radius);
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* === Feature List (Für wen) === */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(6px);
  border-radius: var(--border-radius);
  border: 1px solid var(--color-border);
}

.feature-list svg {
  flex-shrink: 0;
  color: var(--color-accent);
}

/* === FAQ === */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.faq-item {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item[open] {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.faq-item__q {
  padding: var(--space-md);
  cursor: pointer;
  font-weight: 600;
  color: var(--color-heading);
  font-size: 1rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color var(--transition);
}

.faq-item__q::-webkit-details-marker {
  display: none;
}

.faq-item__q::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--color-accent);
  font-weight: 300;
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: var(--space-sm);
}

.faq-item[open] .faq-item__q::after {
  transform: rotate(45deg);
}

.faq-item__a {
  padding: 0 var(--space-md) var(--space-md);
  color: var(--color-text);
}

.faq-item__a a {
  color: var(--color-accent);
}

/* === CTA Section === */
.module--cta {
  min-height: 70vh;
}

.cta-box {
  margin: var(--space-lg) 0 var(--space-md);
}

.cta-email {
  margin-top: var(--space-sm);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

/* === Footer === */
.footer {
  background: var(--color-bg-warm);
  border-top: 1px solid var(--color-border);
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-lg) var(--space-md);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.footer__col h4 {
  font-size: 0.95rem;
  font-weight: 400;
  margin-bottom: var(--space-sm);
  color: var(--color-accent);
}

.footer__col p,
.footer__col a {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.footer__col a {
  display: block;
}

.footer__col a:hover {
  color: var(--color-accent);
}

.footer__bottom {
  text-align: center;
  padding: var(--space-md);
  border-top: 1px solid var(--color-border);
  font-size: 0.8rem;
  color: var(--color-text-light);
}

/* === COOKIE CONSENT BANNER (DSGVO-konform) === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.12);
  z-index: 9999;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.cookie-banner--visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner__content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-md);
}

.cookie-banner__header {
  margin-bottom: var(--space-xs);
}

.cookie-banner__title {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--color-heading);
  margin-bottom: 0;
}

.cookie-banner__text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.cookie-banner__link {
  color: var(--color-accent);
  font-weight: 400;
}

.cookie-banner__categories {
  display: grid;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.cookie-category {
  background: var(--color-bg-warm);
  border-radius: var(--border-radius);
  padding: var(--space-sm) var(--space-md);
}

.cookie-category__label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  cursor: pointer;
  font-weight: normal;
  margin-bottom: 0;
}

.cookie-category__checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-category__checkmark {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 2px solid var(--color-accent);
  border-radius: 4px;
  background: var(--color-white);
  position: relative;
  transition: all var(--transition);
  margin-top: 2px;
}

.cookie-category__checkmark::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 2px;
  width: 7px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity var(--transition);
}

.cookie-category__checkbox:checked + .cookie-category__checkmark {
  background: var(--color-accent);
}

.cookie-category__checkbox:checked + .cookie-category__checkmark::after {
  opacity: 1;
}

.cookie-category__checkbox:focus + .cookie-category__checkmark {
  outline: 3px solid rgba(139, 105, 20, 0.3);
  outline-offset: 2px;
}

.cookie-category__checkbox:disabled + .cookie-category__checkmark {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-category__info {
  flex: 1;
}

.cookie-category__name {
  display: block;
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--color-text);
  margin-bottom: 2px;
}

.cookie-category__required {
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-left: var(--space-xs);
}

.cookie-category__description {
  display: block;
  font-size: 0.8rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

.cookie-banner__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: flex-end;
}

.cookie-btn {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 400;
  font-family: var(--font-main);
  text-decoration: none;
  border-radius: var(--border-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  min-height: 44px;
}

.cookie-btn:focus {
  outline: 3px solid rgba(139, 105, 20, 0.3);
  outline-offset: 2px;
}

.cookie-btn--primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.cookie-btn--primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
}

.cookie-btn--secondary {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.cookie-btn--secondary:hover {
  background: var(--color-accent);
  color: #fff;
}

/* === Scroll Animations === */
.anim-fade {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.anim-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

.anim-fade:nth-child(2) { transition-delay: 0.1s; }
.anim-fade:nth-child(3) { transition-delay: 0.2s; }
.anim-fade:nth-child(4) { transition-delay: 0.3s; }
.anim-fade:nth-child(5) { transition-delay: 0.4s; }
.anim-fade:nth-child(6) { transition-delay: 0.5s; }
.anim-fade:nth-child(7) { transition-delay: 0.6s; }

/* === Legal Pages === */
.page-legal {
  background: var(--color-bg);
}

.page-legal .nav__logo,
.page-legal .nav__link {
  color: var(--color-text);
}

.legal {
  padding-top: 80px;
}

.legal__content {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: var(--space-lg) var(--space-md) var(--space-2xl);
}

.legal__content h1 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: var(--space-lg);
}

.legal__content h2 {
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  color: var(--color-accent);
}

.legal__content h3 {
  font-size: 1.05rem;
  font-weight: 400;
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
}

.legal__content p {
  margin-bottom: var(--space-sm);
  color: var(--color-text-muted);
}

.legal__content ul {
  margin: var(--space-sm) 0 var(--space-sm) var(--space-md);
  color: var(--color-text-muted);
}

.legal__content li {
  margin-bottom: var(--space-xs);
}

.legal__date {
  margin-top: var(--space-lg);
  font-size: 0.85rem;
  color: var(--color-text-light);
  font-style: italic;
}

.legal__back {
  margin-top: var(--space-lg);
}

.legal__back a {
  color: var(--color-accent);
  font-weight: 400;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: var(--color-white);
    flex-direction: column;
    padding: 5rem var(--space-md) var(--space-md);
    transition: right 0.4s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  }

  .nav__menu.open {
    right: 0;
  }

  .nav__menu .nav__link {
    font-size: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text);
  }

  .nav__social {
    margin-left: 0;
    margin-right: 0.5rem;
  }

  .nav__social-link {
    color: rgba(255, 255, 255, 0.85);
  }

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

  .laird-grid__images {
    flex-direction: row;
    justify-content: center;
  }

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

  .footer__inner {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

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

@media (max-width: 768px) {
  /* Cookie Banner responsive */
  .cookie-banner__content {
    padding: var(--space-sm);
  }

  .cookie-banner__buttons {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .hero__actions {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }

  .hero__actions .btn {
    justify-content: center;
  }

  .hero__date-badge {
    padding: 0.8rem 1.2rem;
  }

  .hero__date-badge-date {
    font-size: 1.1rem;
  }

  .module__content {
    padding: var(--space-xl) var(--space-sm);
  }

  .ablauf__step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .laird-portrait {
    width: 150px;
    height: 150px;
  }

  .laird-book {
    width: 120px;
  }

  .cookie-category {
    padding: var(--space-xs) var(--space-sm);
  }
}

/* === Mobile: statische Poster-Bilder statt Video === */
@media (max-width: 768px) {
  .module__video {
    display: none;
  }

  .module__video-wrap {
    background-size: cover;
    background-position: center;
  }

  #ueber .module__video-wrap { background-image: url('../assets/posters/kerze-waidhaus.jpg'); }
  #inhalte .module__video-wrap { background-image: url('../assets/posters/hero-intro.jpg'); }
  #aufbau .module__video-wrap { background-image: url('../assets/posters/meditationsraum.jpg'); }
  #laird .module__video-wrap { background-image: url('../assets/posters/synagoge.jpg'); }
  #ort .module__video-wrap { background-image: url('../assets/posters/kloster-ort.jpg'); }
  #fuerwen .module__video-wrap { background-image: url('../assets/posters/brunnenkirche.jpg'); }
  #faq .module__video-wrap { background-image: url('../assets/posters/faq-raum.jpg'); }
  #anmeldung .module__video-wrap { background-image: url('../assets/posters/kerze-anmeldung.jpg'); }

  /* Hero Slideshow: nur erstes Bild auf Mobile */
  .hero-slide { display: none; }
  .hero-slide:first-child {
    display: block;
    opacity: 1;
  }
  .hero-slide__video { display: block !important; }
  .hero-slideshow {
    background-image: url('../assets/posters/hero-intro.jpg');
    background-size: cover;
    background-position: center;
  }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .anim-fade {
    opacity: 1;
    transform: none;
  }

  .hero__scroll-hint {
    animation: none;
  }

  .hero-slide {
    transition-duration: 0.01ms !important;
  }
}