/* ── BASE / RESET / CUSTOM PROPERTIES ── */
:root {
  --bg:      #F2EDE5;
  --bg2:     #EBE5DB;
  --bg3:     #E3DDD3;
  --border:  #D4CCC0;
  --mid:     #736B63; /* verbessert von #9A9088 fuer WCAG AA Kontrast auf --bg */
  --muted:   #5a4a3e; /* verbessert: dunkler fuer WCAG AA Kontrast */
  --text:    #1E1A17;
  --text2:   #5A5248;
  --accent:  #7D5C3E;
  --accent2: #B8844A;
  --accent-spot: #E86A33;
  --neon:    #FF5C35;
  --ink:     #1E1A17;
  --focus-ring: 0 0 0 3px rgba(232, 106, 51, 0.4);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── SKIP TO CONTENT ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  background: var(--ink);
  color: var(--bg);
  padding: 0.6rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0.5rem;
}

/* ── SECTIONS ── */
.section { padding: 7rem 4rem; }
.section-eyebrow {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(105%); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── REDUCED 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; }
  html { scroll-behavior: auto; }
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 1.8rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg2);
}
.footer-logo {
  display: flex; align-items: center; gap: 0.6rem;
}
.footer-logo img {
  width: 26px; height: 26px;
  object-fit: contain;
  opacity: 0.85;
}
.footer-logo span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
}
.footer-links {
  display: flex; gap: 2rem; list-style: none;
}
.footer-links a {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-copy { font-size: 0.65rem; color: var(--mid); }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .section { padding: 4rem 1.5rem; }
  footer { flex-direction: column; gap: 1rem; text-align: center; }
}
