/* ============================================
   NOW ONE RETREAT — Styles
   Sister design system to NOW Masterclass
   Dark · Gold · Premium · Serif-driven
   ============================================ */

/* ---------- Tokens ---------- */
:root {
  --gold: #C9A84C;
  --gold-light: #E2C97A;
  --gold-dark: #A07830;
  --black: #0e0c0a;
  --surface: #181410;
  --surface-2: #211d18;
  --border: rgba(201, 168, 76, 0.28);
  --text: #f2efe9;
  --text-muted: #9e9a94;
  --text-dim: #6a6560;
  --white: #ffffff;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'Montserrat', sans-serif;
  --radius: 4px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
  --max-width: 1180px;
  --section-pad: 96px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* Scrollbar */
html { scrollbar-width: thin; scrollbar-color: rgba(201,168,76,0.3) transparent; }
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: rgba(201,168,76,0.25); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(201,168,76,0.5); }

/* Background gradient layer */
.bg-gradient {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(201,168,76,0.10), transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(201,168,76,0.07), transparent 50%),
    linear-gradient(180deg, #0e0c0a 0%, #0a0907 100%);
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  z-index: 1000; transition: width 0.05s linear;
  box-shadow: 0 0 12px rgba(201,168,76,0.6);
}

/* ---------- Utility ---------- */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-pad) 0; position: relative; }
.gold { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  border: none; cursor: pointer; white-space: nowrap;
  transition: all var(--transition);
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  box-shadow: 0 0 18px rgba(201,168,76,0.28), 0 4px 16px rgba(201,168,76,0.18);
}
.btn--gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(201,168,76,0.55), 0 8px 32px rgba(201,168,76,0.35);
}
.btn--ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.55);
  box-shadow: none;
}
.btn--ghost:hover {
  background: rgba(201,168,76,0.08);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(201,168,76,0.22);
}
.btn--large { padding: 18px 48px; font-size: 1rem; min-height: 56px; }
.btn--sm { padding: 10px 22px; font-size: 0.82rem; }
.btn--full { width: 100%; }

/* ---------- Navigation ---------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 0;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}
.site-nav.scrolled {
  background: rgba(10,9,7,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(201,168,76,0.15);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__logo-link { display: flex; align-items: center; }
.nav__logo { height: 44px; width: auto; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-item { opacity: 0; transform: translateX(-20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal-item.visible { opacity: 1; transform: translateX(0); }
.reveal-card { opacity: 0; transform: translateY(24px); filter: blur(5px); transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease; }
.reveal-card.visible { opacity: 1; transform: translateY(0); filter: blur(0); }
.reveal-testi { opacity: 0; transform: translateY(40px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal-testi.visible { opacity: 1; transform: translateY(0); }

/* ---------- Section header ---------- */
.section__header { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.section__eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.section__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.01em;
}
.section__title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 600;
}
.section__subtitle {
  margin-top: 22px;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 96px 0 80px;
  display: flex; align-items: flex-start;
  overflow: hidden;
}
.hero__bg-overlay {
  position: absolute; inset: 0; pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 30%, rgba(201,168,76,0.12), transparent 60%),
    radial-gradient(circle at 50% 80%, rgba(201,168,76,0.05), transparent 50%);
}
.hero__content {
  position: relative; z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.hero__top-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 22px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.05);
  backdrop-filter: blur(6px);
  margin-bottom: 36px;
}
.hero__date-icon { font-size: 0.9rem; }

/* Titelbild im Hero */
.hero__titelbild {
  width: 100%;
  max-width: 720px;
  margin: 0 auto 36px;
}
.hero__titelbild img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.6)) drop-shadow(0 0 60px rgba(201,168,76,0.18));
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.8vw, 2.9rem);
  line-height: 1.2;
  color: var(--text);
  max-width: 820px;
  margin: 0 auto 28px;
}
.hero__headline em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}

/* Hero video / trailer */
.hero__video {
  position: relative;
  width: 100%;
  max-width: 820px;
  margin: 0 auto 28px;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 80px rgba(201,168,76,0.12);
}
.hero__video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.hero__video-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--surface), var(--surface-2));
}

.hero__subline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--text-muted);
  max-width: 660px;
  margin: 0 auto 16px;
  line-height: 1.6;
}
.hero__date-info {
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

/* Countdown */
.countdown {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 48px;
  padding: 18px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
}
.countdown__unit { display: flex; flex-direction: column; align-items: center; min-width: 56px; }
.countdown__num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.countdown__label {
  margin-top: 6px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.countdown__sep {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold-dark);
  padding: 0 6px;
  line-height: 1;
  align-self: flex-start;
  margin-top: 4px;
}

/* ============================================
   WAS IST / PILLARS
   ============================================ */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 24px;
}
.pillar {
  padding: 40px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(24,20,16,0.7), rgba(14,12,10,0.7));
  backdrop-filter: blur(6px);
  transition: all var(--transition);
  position: relative;
}
.pillar:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.45);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 60px rgba(201,168,76,0.1);
}
.pillar__num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 1.05rem;
  margin-bottom: 14px;
  letter-spacing: 0.1em;
}
.pillar__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.55rem;
  color: var(--text);
  margin-bottom: 14px;
}
.pillar__text { color: var(--text-muted); font-size: 0.98rem; line-height: 1.7; }

/* ============================================
   FÜR WEN
   ============================================ */
.fw__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.fw-card {
  padding: 40px 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(24,20,16,0.6), rgba(14,12,10,0.6));
  backdrop-filter: blur(6px);
}
.fw-card--yes { border-color: rgba(201,168,76,0.45); }
.fw-card--no { border-color: rgba(255,255,255,0.08); opacity: 0.92; }

.fw-card__header { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.fw-card__check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  font-size: 1.05rem; font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
}
.fw-card__check--no { background: rgba(255,255,255,0.08); color: var(--text-dim); }
.fw-card__header h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--text);
}
.fw-card__list li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.6;
}
.fw-card__list li:last-child { border-bottom: 0; }
.fw-card__list li::before {
  content: '✓';
  position: absolute; left: 0; top: 10px;
  color: var(--gold);
  font-weight: 600;
}
.fw-card__list--no li { color: var(--text-muted); }
.fw-card__list--no li::before { content: '✕'; color: var(--text-dim); }

/* ============================================
   INHALTE
   ============================================ */
.inhalte__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.inhalte-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(24,20,16,0.7), rgba(14,12,10,0.7));
  transition: all var(--transition);
  display: flex; flex-direction: column;
}
.inhalte-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.5);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 60px rgba(201,168,76,0.12);
}
.inhalte-card__img {
  aspect-ratio: 4/3;
  background: var(--surface-2);
  position: relative;
  overflow: hidden;
}
.inhalte-card__img img { width: 100%; height: 100%; object-fit: cover; }
.inhalte-card__body { padding: 28px 28px 32px; }
.inhalte-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.7rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.inhalte-card__sub {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: 1rem;
}
.inhalte-card__list li {
  position: relative;
  padding: 8px 0 8px 24px;
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--text);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.inhalte-card__list li:last-child { border-bottom: 0; }
.inhalte-card__list li::before {
  content: '◈';
  position: absolute; left: 0; top: 8px;
  color: var(--gold);
  font-size: 0.7rem;
}

/* ============================================
   TAGESABLAUF (Schedule)
   ============================================ */
.schedule {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  padding-left: 24px;
}
.schedule::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold) 10%, var(--gold) 90%, transparent);
  opacity: 0.5;
}
.schedule__item {
  position: relative;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.schedule__item::before {
  content: '';
  position: absolute;
  left: -28px; top: 28px;
  width: 9px; height: 9px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(201,168,76,0.18);
}
.schedule__time {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--gold);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.schedule__body h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 4px;
}
.schedule__body p { color: var(--text-muted); font-size: 0.95rem; }

/* ============================================
   DARKO
   ============================================ */
.darko__inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}
.darko__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/5;
  background: var(--surface-2);
}
.darko__img img { width: 100%; height: 100%; object-fit: cover; }
.darko__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.6rem;
  color: var(--text);
  line-height: 1.1;
}
.darko__role {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 1.1rem;
  margin: 6px 0 24px;
}
.darko__bio { color: var(--text-muted); font-size: 1rem; line-height: 1.75; margin-bottom: 18px; }
.darko__bio em { color: var(--gold); font-style: italic; }
.darko__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 32px 0 28px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(0,0,0,0.3);
}
.darko__stat { text-align: center; }
.darko__stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.darko__stat-label {
  display: block;
  margin-top: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  transition: all var(--transition);
}
.testi-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201,168,76,0.45);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.testi-card__video {
  aspect-ratio: 16/9;
  background: var(--surface-2);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.testi-card__video iframe,
.testi-card__video video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: cover; background: #000; }
.testi-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--text);
  margin: 18px 18px 2px;
}
.testi-card__role {
  font-style: italic;
  color: var(--gold);
  font-size: 0.9rem;
  margin: 0 18px 18px;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.gallery__item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-2);
  transition: all var(--transition);
}
.gallery__item:hover {
  border-color: rgba(201,168,76,0.5);
  transform: scale(1.01);
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; }
.gallery__item--large { grid-column: span 2; grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

/* ============================================
   ANMELDUNG
   ============================================ */
.anmeldung-section {
  background: linear-gradient(180deg, transparent, rgba(201,168,76,0.04), transparent);
}
.anmeldung__inner { max-width: 640px; margin: 0 auto; }
.anmeldung__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.2;
  margin-top: 16px;
}
.anmeldung__title em { color: var(--gold); font-style: italic; }
.anmeldung__sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 22px 0 36px;
  line-height: 1.7;
}
.anmeldung__form {
  display: flex; flex-direction: column; gap: 14px;
  max-width: 480px;
  margin: 0 auto;
}
.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 16px 18px;
  background: rgba(0,0,0,0.45);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.98rem;
  transition: all var(--transition);
}
.form__input::placeholder,
.form__textarea::placeholder { color: var(--text-dim); }
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.18);
}
.form__textarea { resize: vertical; min-height: 80px; }
.form__phone-wrap {
  display: flex; gap: 10px;
  border-radius: var(--radius);
}
.form__select { flex: 0 0 110px; }
.form__input--tel { flex: 1; }
.form__note {
  margin-top: 14px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  text-align: center;
}

/* ============================================
   FAQ
   ============================================ */
.faq__list { max-width: 780px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__question {
  width: 100%;
  background: transparent; border: 0;
  padding: 22px 8px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--text);
  text-align: left;
  transition: color var(--transition);
}
.faq__question:hover { color: var(--gold); }
.faq__icon {
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform var(--transition);
}
.faq__item.open .faq__icon { transform: rotate(45deg); }
.faq__answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq__item.open .faq__answer { max-height: 500px; padding: 0 8px 22px; }
.faq__answer p { color: var(--text-muted); line-height: 1.75; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, transparent, rgba(201,168,76,0.03));
}
.footer__inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 24px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer__logo { height: 56px; width: auto; }
.footer__tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--text-muted);
  margin-top: 8px;
  font-size: 1rem;
}
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  padding-top: 24px;
}
.footer__bottom p { color: var(--text-dim); font-size: 0.85rem; }
.footer__legal { display: flex; gap: 24px; }
.footer__legal-btn {
  background: 0; border: 0;
  color: var(--text-dim);
  font-size: 0.85rem;
  transition: color var(--transition);
}
.footer__legal-btn:hover { color: var(--gold); }

/* ============================================
   PLACEHOLDERS (für Layout-Review)
   ============================================ */
.img-placeholder,
.placeholder-label {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background:
    linear-gradient(135deg, rgba(201,168,76,0.05), rgba(201,168,76,0.02)),
    repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(201,168,76,0.04) 12px, rgba(201,168,76,0.04) 13px);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border: 1px dashed rgba(201,168,76,0.25);
  min-height: 120px;
}
.img-placeholder--portrait { aspect-ratio: 4/5; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  :root { --section-pad: 72px; }
  .pillar-grid,
  .inhalte__grid,
  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
  .fw__grid { grid-template-columns: 1fr; }
  .darko__inner { grid-template-columns: 1fr; gap: 32px; }
  .darko__img { max-width: 320px; margin: 0 auto; }
  .darko__stats { grid-template-columns: repeat(3, 1fr); }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery__item--large,
  .gallery__item--wide { grid-column: span 2; grid-row: auto; }
}

@media (max-width: 640px) {
  :root { --section-pad: 56px; }
  .hero { padding: 90px 0 60px; }
  .hero__top-badge { font-size: 0.65rem; padding: 8px 16px; }
  .countdown { padding: 14px 12px; gap: 4px; }
  .countdown__unit { min-width: 44px; }
  .countdown__num { font-size: 1.5rem; }
  .countdown__sep { font-size: 1.1rem; padding: 0 2px; }
  .schedule { padding-left: 20px; }
  .schedule__item { grid-template-columns: 1fr; gap: 4px; padding: 16px 0; }
  .schedule__item::before { left: -24px; top: 22px; }
  .schedule__time { font-size: 1rem; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery__item--large,
  .gallery__item--wide { grid-column: auto; }
  .footer__bottom { flex-direction: column; align-items: center; text-align: center; }
  .footer__inner { flex-direction: column; align-items: center; text-align: center; }
  .footer__right .btn { width: 100%; }
  .darko__stats { grid-template-columns: 1fr 1fr 1fr; gap: 10px; padding: 16px; }
  .darko__stat-num { font-size: 1.5rem; }
}

/* ============================================
   HIGH-END ADDITIONS (from Mitarbeiter design system)
   ============================================ */

/* --- WebGL Background Canvas --- */
#bgShader {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

/* --- Matrix Rain Canvas --- */
.hero__matrix {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.18;
  pointer-events: none;
}

/* --- Hero Shimmer Overlay --- */
.hero__bg-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 30%, rgba(201, 168, 76, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 50% 35% at 80% 20%, rgba(201, 168, 76, 0.05) 0%, transparent 50%);
  animation: heroShimmer 8s ease-in-out infinite alternate;
}

@keyframes heroShimmer {
  0%   { opacity: 0.4; transform: scale(1) translateY(0); }
  50%  { opacity: 0.9; transform: scale(1.05) translateY(-10px); }
  100% { opacity: 0.5; transform: scale(1) translateY(0); }
}

/* --- Letter Assemble --- */
.letter-assemble { visibility: hidden; }
.letter-assemble.la-ready { visibility: visible; }
.letter-assemble .la-word { display: inline-block; white-space: nowrap; }
.letter-assemble .la-char {
  display: inline-block;
  opacity: 0;
  animation: letterFlyIn 0.72s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  will-change: transform, opacity;
}
@keyframes letterFlyIn {
  0% {
    opacity: 0;
    transform: translate(var(--la-x), var(--la-y)) scale(0.5) rotate(var(--la-r));
    filter: blur(4px);
  }
  60% { opacity: 1; filter: blur(0); }
  100% { opacity: 1; transform: translate(0, 0) scale(1) rotate(0deg); filter: blur(0); }
}

/* --- Gold Particle Burst --- */
.btn-particle-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
  border-radius: inherit;
}
.btn-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  opacity: 0;
}

/* --- Ambient Sparks --- */
.btn-spark-container {
  position: absolute;
  inset: -12px;
  pointer-events: none;
  overflow: visible;
  z-index: -1;
}
.btn-spark {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform, opacity;
}
@keyframes sparkDrift {
  0%   { opacity: 0; transform: translate(0, 0) scale(1); }
  15%  { opacity: 0.7; }
  100% { opacity: 0; transform: translate(var(--sx), var(--sy)) scale(0); }
}

/* --- Logo Transition Overlay --- */
.logo-transition {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  transition: opacity 0.3s ease, background 0.5s ease;
}
.logo-transition.active {
  opacity: 1;
  pointer-events: all;
}
.logo-transition__img {
  width: 100vmax;
  transform: scale(0.09);
  transition: transform 1.5s cubic-bezier(0.15, 0, 0.05, 1);
  image-rendering: high-quality;
}
.logo-transition.active:not(.expand) .logo-transition__img {
  animation: logo-glow 1s ease-in-out infinite alternate;
}
@keyframes logo-glow {
  from { filter: drop-shadow(0 0 20px rgba(201, 168, 76, 0.4)); }
  to   { filter: drop-shadow(0 0 60px rgba(201, 168, 76, 1)) brightness(1.15); }
}
.logo-transition.expand .logo-transition__img {
  transform: scale(1.1);
  animation: none;
  filter: drop-shadow(0 0 80px rgba(201, 168, 76, 0.8));
}
.logo-transition.gold { background: var(--gold); }
.logo-transition.fade-out { opacity: 0; transition: opacity 0.4s ease; }

/* --- Cookie Overlay --- */
.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9995;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.cookie-overlay.visible { opacity: 1; pointer-events: all; }
.cookie-modal {
  background: rgba(10, 10, 10, 0.92);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
}
.cookie-modal__icon { margin-bottom: 16px; display: flex; justify-content: center; }
.cookie-modal__logo { width: 60px; height: 60px; object-fit: contain; }
.cookie-modal__title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--white);
  margin-bottom: 14px;
  font-style: italic;
}
.cookie-modal__text { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; }
.cookie-modal__btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  border: none;
  padding: 14px 40px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}
.cookie-modal__btn:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(201, 168, 76, 0.55);
}

/* --- Legal Overlays --- */
.legal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9997;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.legal-overlay.open { opacity: 1; pointer-events: all; }
.legal-modal {
  background: #0a0a0a;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
}
.legal-modal__close {
  position: absolute;
  top: 16px; right: 20px;
  background: none; border: none;
  color: var(--text-dim); font-size: 1.1rem;
  cursor: pointer; padding: 4px 8px;
  transition: color var(--transition);
}
.legal-modal__close:hover { color: var(--gold); }
.legal-modal__title { font-family: var(--font-display); font-size: 1.5rem; color: var(--white); margin-bottom: 24px; }
.legal-modal__body h3 {
  font-size: 0.9rem; font-weight: 600; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.05em; margin: 20px 0 8px;
}
.legal-modal__body p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 8px; }
.legal-modal__body a { color: var(--gold); }
.legal-modal__body a:hover { text-decoration: underline; }

/* --- Statement Section --- */
.statement-section {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 50% 50%, rgba(201, 168, 76, 0.14) 0%, rgba(201, 168, 76, 0.04) 45%, transparent 65%),
    var(--black);
}
.statement__glow { position: absolute; pointer-events: none; z-index: 0; }
.statement__glow--1 {
  width: 180px; height: 100px; top: 8%; left: 2%;
  border-radius: 60% 40% 50% 45% / 50% 35% 60% 45%;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.16) 0%, rgba(201, 168, 76, 0.04) 50%, transparent 70%);
  filter: blur(20px); animation: glowFloat1 7s ease-in-out infinite;
}
.statement__glow--2 {
  width: 120px; height: 140px; top: 50%; right: 3%;
  border-radius: 45% 55% 40% 60% / 55% 45% 60% 40%;
  background: radial-gradient(ellipse at center, rgba(230, 210, 140, 0.14) 0%, rgba(230, 210, 140, 0.03) 55%, transparent 75%);
  filter: blur(18px); animation: glowFloat2 9s ease-in-out infinite;
}
.statement__glow--3 {
  width: 220px; height: 110px; top: 25%; left: 50%; transform: translateX(-50%);
  border-radius: 50% 40% 55% 45% / 40% 55% 35% 50%;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.12) 0%, rgba(201, 168, 76, 0.03) 50%, transparent 70%);
  filter: blur(24px); animation: glowFloat3 6s ease-in-out infinite;
}
.statement__glow--4 {
  width: 130px; height: 80px; bottom: 12%; left: 12%;
  border-radius: 40% 60% 45% 55% / 55% 40% 60% 45%;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.18) 0%, rgba(201, 168, 76, 0.04) 50%, transparent 70%);
  filter: blur(16px); animation: glowFloat4 8s ease-in-out infinite;
}
.statement__glow--5 {
  width: 90px; height: 110px; top: 3%; right: 15%;
  border-radius: 55% 45% 50% 50% / 45% 60% 40% 55%;
  background: radial-gradient(ellipse at center, rgba(230, 210, 140, 0.13) 0%, rgba(201, 168, 76, 0.03) 55%, transparent 70%);
  filter: blur(14px); animation: glowFloat5 10s ease-in-out infinite;
}
.statement__glow--6 {
  width: 170px; height: 80px; bottom: 3%; right: 20%;
  border-radius: 45% 55% 50% 45% / 50% 40% 55% 50%;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.12) 0%, rgba(201, 168, 76, 0.03) 50%, transparent 70%);
  filter: blur(18px); animation: glowFloat6 7.5s ease-in-out infinite;
}
@keyframes glowFloat1 {
  0%, 100% { transform: translate(0,0) scale(1); opacity: 0.5; }
  33%      { transform: translate(30px,-20px) scale(1.15); opacity: 0.8; }
  66%      { transform: translate(-15px,15px) scale(0.9); opacity: 0.4; }
}
@keyframes glowFloat2 {
  0%, 100% { transform: translate(0,0) scale(1); opacity: 0.45; }
  40%      { transform: translate(-25px,20px) scale(1.1); opacity: 0.75; }
  70%      { transform: translate(15px,-10px) scale(0.85); opacity: 0.35; }
}
@keyframes glowFloat3 {
  0%, 100% { transform: translateX(-50%) translate(0,0) scale(1); opacity: 0.4; }
  30%      { transform: translateX(-50%) translate(20px,15px) scale(1.2); opacity: 0.7; }
  60%      { transform: translateX(-50%) translate(-25px,-10px) scale(0.85); opacity: 0.3; }
}
@keyframes glowFloat4 {
  0%, 100% { transform: translate(0,0) scale(1); opacity: 0.45; }
  50%      { transform: translate(20px,-25px) scale(1.2); opacity: 0.8; }
}
@keyframes glowFloat5 {
  0%, 100% { transform: translate(0,0) scale(1); opacity: 0.4; }
  25%      { transform: translate(-20px,15px) scale(1.05); opacity: 0.7; }
  50%      { transform: translate(10px,25px) scale(0.9); opacity: 0.45; }
  75%      { transform: translate(15px,-10px) scale(1.1); opacity: 0.75; }
}
@keyframes glowFloat6 {
  0%, 100% { transform: translate(0,0) scale(1); opacity: 0.35; }
  35%      { transform: translate(-18px,-20px) scale(1.1); opacity: 0.7; }
  65%      { transform: translate(22px,12px) scale(0.85); opacity: 0.4; }
}
.statement__inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.statement__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 600; line-height: 1.25;
  color: var(--white); margin-bottom: 20px;
}
.statement__title em { font-style: italic; color: var(--gold); }
.statement__text {
  font-family: var(--font-body);
  font-size: 1.05rem; font-weight: 300;
  line-height: 1.7; color: var(--text-dim); margin-bottom: 40px;
}

/* --- Section Divider Glow Lines --- */
.section--divider { position: relative; }
.section--divider::before,
.section--divider::after {
  content: '';
  position: absolute;
  left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.55) 30%, rgba(201, 168, 76, 0.55) 70%, transparent);
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.35), 0 0 28px rgba(201, 168, 76, 0.15);
  opacity: 0;
  transition: opacity 1.2s ease;
  pointer-events: none;
}
.section--divider::before { top: 0; }
.section--divider::after  { bottom: 0; }
.section--divider.section-divider-visible::before,
.section--divider.section-divider-visible::after { opacity: 1; }
footer.section--divider::after { display: none; }

/* --- Form Success State --- */
.form-success {
  display: none;
  padding: 48px 32px;
  text-align: center;
}
.form-success__icon { color: var(--gold); font-size: 2.5rem; margin-bottom: 20px; }
.form-success__title {
  font-family: var(--font-display);
  font-weight: 600; font-size: 2rem;
  color: var(--text); margin-bottom: 16px;
}
.form-success__text {
  color: var(--text-muted); font-size: 1rem;
  line-height: 1.75; max-width: 480px; margin: 0 auto;
}

/* --- Form Error States --- */
.form__error-msg { display: none; font-size: 0.78rem; color: #e05555; margin-top: -8px; padding-left: 4px; }
.form__error-msg.visible { display: block; }
.form__input.error { border-color: #c0392b; background: rgba(192, 57, 43, 0.05); }
.form__phone-wrap.error { border-color: #c0392b; background: rgba(192, 57, 43, 0.05); }

/* --- Section CTA Spacing --- */
.section__cta { text-align: center; margin-top: 3rem; }
.darko__cta-wrap { margin-top: 28px; }

/* --- Scroll Progress (updated z-index) --- */
.scroll-progress { z-index: 10000; transition: none; }

/* --- Reduced Motion Overrides --- */
@media (prefers-reduced-motion: reduce) {
  .scroll-progress, .btn-particle, .btn-spark { display: none; }
  .letter-assemble .la-char { opacity: 1 !important; transform: none !important; filter: none !important; animation: none !important; }
  .statement__glow--1, .statement__glow--2, .statement__glow--3,
  .statement__glow--4, .statement__glow--5, .statement__glow--6 { animation: none; }
  .hero__bg-overlay::after { animation: none; }
}
