:root {
  --bg:           #1a1208;
  --bg-section:   #221a0e;
  --fire:         #c9521a;
  --fire-bright:  #e8703a;
  --ember:        #e8a030;
  --gold:         #c4953a;
  --cream:        #f0e8d5;
  --text-light:   #f0e8d5;
  --text-muted:   #a09070;
  --sage:         #7a9060;

  --font-display: 'Cormorant Garamond', Georgia;
  --font-body:    'Barlow';

  --max-w: min(1080px, calc(100vw - 4rem));
  --pad-section: clamp(5rem, 10vw, 9rem);
}

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

body {
  background: var(--bg);
  color: var(--text-light);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

section { padding: var(--pad-section) 0; }

.container {
  width: var(--max-w);
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.section-label::after {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--fire);
  opacity: 0.5;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--fire-bright);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 768px) {
  .hero-tagline { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

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