/* Impressum, Datenschutz und 404: ruhige Textseiten im Stil der Startseite */
:root {
  --ink: #1c1d20;
  --paper: #efeeec;
  --muted: #6b6c70;
  --line: rgba(28, 29, 32, 0.14);
  --accent: #b28a3e;
  --display: "Schibsted Grotesk", system-ui, sans-serif;
  --text: "Hanken Grotesk", system-ui, sans-serif;
  --pad: clamp(20px, 4.2vw, 64px);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body { min-height: 100vh; display: flex; flex-direction: column; background: var(--paper); color: var(--ink); font-family: var(--text); font-size: 17px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: underline; text-decoration-color: rgba(28, 29, 32, 0.35); text-underline-offset: 3px; transition: text-decoration-color 0.3s; }
a:hover { text-decoration-color: var(--accent); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 4px; }

.lg-top { display: flex; justify-content: space-between; align-items: center; padding: 26px var(--pad); }
.lg-logo { font-weight: 500; text-decoration: none; }
.lg-logo span { display: inline-block; margin-right: 4px; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.lg-logo:hover span { transform: rotate(360deg); }
.lg-back { padding: 11px 20px; border-radius: 999px; background: var(--ink); color: var(--paper); font-weight: 500; font-size: 0.95rem; text-decoration: none; transition: background 0.3s; }
.lg-back:hover { background: var(--accent); }

.lg { flex: 1; width: 100%; max-width: 760px; margin: 0 auto; padding: clamp(40px, 7vw, 90px) var(--pad) clamp(60px, 8vw, 110px); }
.lg-eyebrow { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.lg h1 { font-family: var(--display); font-weight: 500; font-size: clamp(2.6rem, 7vw, 4.6rem); line-height: 1; letter-spacing: -0.03em; margin-bottom: clamp(30px, 5vw, 50px); hyphens: manual; }
.lg-lead { font-size: clamp(1.1rem, 1.6vw, 1.25rem); margin-bottom: 40px; max-width: 58ch; }
.lg section { padding: 26px 0; border-top: 1px solid var(--line); }
.lg h2 { font-family: var(--display); font-weight: 500; font-size: 1.25rem; letter-spacing: -0.01em; margin-bottom: 10px; }
.lg section p + p { margin-top: 12px; }
.lg-date { margin-top: 30px; font-size: 0.9rem; color: var(--muted); }

.lg-foot { display: flex; gap: 24px; padding: 26px var(--pad); border-top: 1px solid var(--line); font-size: 0.9rem; }
.lg-foot [aria-current] { text-decoration-color: var(--accent); }

.lg--404 { display: grid; align-content: center; }
.lg--404 h1 { margin-bottom: 18px; }
.lg--404 p { max-width: 44ch; margin-bottom: 30px; }

.lg h1, .lg-lead, .lg section { animation: lgUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both; }
.lg-lead { animation-delay: 0.06s; }
.lg section { animation-delay: 0.12s; }
@keyframes lgUp { from { opacity: 0; transform: translateY(18px); } }
@media (prefers-reduced-motion: reduce) { .lg h1, .lg-lead, .lg section { animation: none; } .lg-logo span { transition: none; } }
