/* ============================================================
   Shared styling for the legal pages (Impressum, Datenschutz,
   Nutzungsbedingungen + their English versions).
   Deliberately plain: these pages exist to be read and to be
   found, not to be art-directed. Same fonts/tokens as the
   marketing page so they still feel like Vaelo.
   ============================================================ */

@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/hanken-grotesk-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/hanken-grotesk-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url('fonts/space-grotesk-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url('fonts/space-grotesk-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --ink: #141414;
  --gray: #4d4d4d;
  --mute: #8a8a8a;
  --line: #e6e6e6;
  --bg: #f2f2f2;
  --blue: #2f6bff;
  --blue-ink: #1f4fd6;
  --coral-50: #ffeae3;
  --coral-ink: #c23a1c;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

a { color: var(--blue-ink); }
a:hover { color: var(--ink); }

.legal-nav {
  border-bottom: 1px solid var(--line);
  background: rgba(242, 242, 242, .9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 10;
}
.legal-nav-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
  height: 66px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.legal-nav-inner img { height: 26px; width: auto; display: block; }
.legal-nav-spacer { flex: 1; }

/* language switcher */
.lang {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 99px;
}
.lang a, .lang span {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  color: var(--gray);
}
.lang .on { background: var(--ink); color: #fff; }

main {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 96px;
}

h1 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: clamp(32px, 6vw, 46px);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.06;
  margin: 0 0 10px;
}
.updated {
  margin: 0 0 44px;
  font-size: 14px;
  color: var(--mute);
}

h2 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: clamp(20px, 3vw, 25px);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.25;
  margin: 44px 0 12px;
}
h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -.015em;
  margin: 28px 0 8px;
}

p, li { font-size: 16px; color: var(--gray); }
p { margin: 0 0 14px; }
ul, ol { margin: 0 0 14px; padding-left: 22px; }
li { margin-bottom: 7px; }
strong { color: var(--ink); font-weight: 600; }

table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 18px;
  font-size: 15px;
}
th, td {
  text-align: left;
  vertical-align: top;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  color: var(--gray);
}
th {
  color: var(--ink);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-bottom-color: #d6d6d6;
}
.table-wrap { overflow-x: auto; }

.legal-footer {
  max-width: 760px;
  margin: 0 auto;
  padding: 26px 24px 60px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}
.legal-footer a { color: var(--gray); text-decoration: none; }
.legal-footer a:hover { color: var(--ink); }

@media (max-width: 600px) {
  .legal-nav-inner { padding: 0 18px; height: 60px; }
  main { padding: 36px 18px 72px; }
  .legal-footer { padding: 22px 18px 48px; gap: 14px; }
}
