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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: var(--card); }

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--card);
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: var(--r-sm); }

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

button { cursor: pointer; border: none; background: none; }

ul { list-style: none; }

/* Typography scale */
h1, h2, h3, h4 {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); text-wrap: balance; margin-bottom: var(--s6); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); text-wrap: balance; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 700; letter-spacing: 0; line-height: 1.3; text-wrap: balance; }
h4 { font-size: 1.1rem; font-weight: 700; letter-spacing: 0; line-height: 1.4; }

p { max-width: 65ch; }
p + p { margin-top: var(--s4); }

strong { font-weight: 700; color: var(--text-2); }

/* Accent word — colored span inside heading */
.accent { color: var(--accent); }
.accent-kk { color: var(--accent-klickkarte); }
.accent-sp { color: var(--accent-schichtplan); }

/* Eyebrow label */
.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s3);
}
.eyebrow::before { content: ""; }

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