/* Shared styles for legal pages (Impressum, Datenschutz).
   Matches the brand tokens used on the landing page. */

:root {
  --warm-white:   #FAF8F5;
  --near-black:   #1A1A1A;
  --terracotta:   #C4622D;
  --surface-alt:  #F0EDEA;
  --mid-grey:     #8A8A8A;
  --light-grey:   #E2DDD8;
  --white:        #FFFFFF;
}

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

body {
  background: var(--warm-white);
  color: var(--near-black);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Nav */
.legal-nav {
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--light-grey);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--near-black);
  text-decoration: none;
}

.nav-logo-light { font-weight: 300; }
.nav-logo-bold { font-weight: 700; }

.legal-nav-back {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--terracotta);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.legal-nav-back:hover { opacity: 0.7; }

/* Layout */
.legal-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 32px 100px;
}

.legal-eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 20px;
}

.legal-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.legal-intro {
  font-size: 15px;
  font-weight: 300;
  color: #5A5754;
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 600px;
}

.legal-section { margin-bottom: 44px; }

.legal-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.legal-section h3 {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin: 24px 0 8px;
  color: var(--near-black);
}

.legal-section p {
  font-size: 15px;
  font-weight: 300;
  color: #3D3A38;
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-section ul {
  margin: 0 0 14px 20px;
  font-size: 15px;
  font-weight: 300;
  color: #3D3A38;
  line-height: 1.8;
}

.legal-section li { margin-bottom: 6px; }

.legal-section a {
  color: var(--terracotta);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-section a:hover { opacity: 0.75; }

.legal-address {
  font-size: 15px;
  font-weight: 300;
  color: var(--near-black);
  line-height: 1.9;
  border-left: 3px solid var(--terracotta);
  padding: 4px 0 4px 22px;
  margin-bottom: 14px;
}

.legal-rule {
  width: 40px;
  height: 2px;
  background: var(--terracotta);
  margin: 0 0 40px;
}

.legal-updated {
  font-size: 13px;
  font-weight: 300;
  color: var(--mid-grey);
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--light-grey);
}

/* Footer */
.legal-footer {
  padding: 32px 40px;
  border-top: 1px solid var(--light-grey);
  text-align: center;
}

.legal-footer p {
  font-size: 11px;
  font-weight: 300;
  color: var(--mid-grey);
  letter-spacing: 0.06em;
}

.legal-footer a {
  color: var(--mid-grey);
  text-decoration: none;
  transition: color 0.2s;
}

.legal-footer a:hover { color: var(--terracotta); }

@media (max-width: 600px) {
  .legal-nav { padding: 18px 22px; }
  .legal-wrap { padding: 56px 22px 72px; }
}
