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

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #0d0d0d;
  font-family: 'Lato', sans-serif;
  overflow: hidden;
  color: white;
}

/* Subtle grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.4;
  z-index: 0;
}

/* Header oben mittig */
.header {
  position: fixed;
  top: 24px;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 10;
}

.header-title {
  font-family: 'Lato', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 2.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #c9a84c;
}

.header-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 2.85rem;
  letter-spacing: 0.1em;
  color: #888;
}

.header::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: #c9a84c;
  margin-top: 8px;
  opacity: 0.5;
}

.stage {
  position: relative;
  width: min(760px, 90vw);
  text-align: center;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.deco {
  width: 60px;
  height: 2px;
  background: #c9a84c;
  margin: 0 auto 32px;
  flex-shrink: 0;
}

.slide-container {
  position: relative;
  width: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}

.slide.exit {
  opacity: 0;
  transform: translateX(80px);
  position: absolute;
}

.slide blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 3vw, 1.8rem);
  font-style: italic;
  color: #f0ece0;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

.slide cite {
  display: block;
  margin-top: 24px;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c9a84c;
}

.deco-bottom {
  width: 60px;
  height: 2px;
  background: #c9a84c;
  margin: 32px auto 0;
  flex-shrink: 0;
}

.dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 28px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3a3a3a;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.dot.active {
  background: #c9a84c;
  transform: scale(1.3);
}

.progress {
  position: fixed;
  bottom: 0;
  left: 0;
  height: 3px;
  background: #c9a84c;
  width: 0%;
  transition: width linear;
  z-index: 10;
}
