/* ── FONTS ── */
@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/instrument-sans-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: 'Instrument Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/instrument-sans-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: 'Instrument Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/instrument-sans-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: 'Instrument Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/instrument-sans-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;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --navy: #1A2E57; --sky: #407ED1; --ink: #212330;
      --steel: #808D9F; --ice: #E0EDF9; --white: #FFFFFF;
      --border: #DCE6F0; --font: 'Instrument Sans', sans-serif;
    }
    html { scroll-behavior: smooth; }
    body { font-family: var(--font); background: var(--ice); color: var(--ink); line-height: 1.75; }

    nav {
      background: var(--navy); height: 64px;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 48px;
    }
    .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
    .logo-mark { width: 34px; height: 34px; border-radius: 7px; background: var(--sky); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 12px; color: #fff; }
    .logo-text { font-size: 15px; font-weight: 700; color: #fff; }
    .logo-text em { color: var(--sky); font-style: normal; font-weight: 400; }
    .nav-back { color: rgba(255,255,255,0.6); font-size: 14px; text-decoration: none; font-family: var(--font); }
    .nav-back:hover { color: #fff; }
    @media (max-width: 640px) { nav { padding: 0 20px; } }

    .page-wrap { max-width: 720px; margin: 0 auto; padding: 56px 24px 80px; }
    .page-label { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--sky); margin-bottom: 10px; }
    h1 { font-size: clamp(28px, 4vw, 36px); font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.2; }
    .date-note { font-size: 13px; color: var(--steel); margin-bottom: 40px; }
    .card {
      background: var(--white); border: 1px solid var(--border); border-radius: 12px;
      padding: 32px 28px; margin-bottom: 20px;
    }
    .card h2 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
    .card h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin: 18px 0 8px; }
    .card h3:first-of-type { margin-top: 0; }
    .card p { font-size: 15px; color: var(--ink); line-height: 1.75; margin-bottom: 12px; }
    .card p:last-child { margin-bottom: 0; }
    .card ul { margin: 8px 0 12px 18px; }
    .card ul li { font-size: 15px; color: var(--ink); line-height: 1.7; margin-bottom: 5px; }
    .card a { color: var(--sky); text-decoration: none; }
    .card a:hover { text-decoration: underline; }
    .highlight { background: var(--ice); border-left: 3px solid var(--sky); border-radius: 0 6px 6px 0; padding: 14px 16px; margin: 14px 0; font-size: 14px; line-height: 1.65; }

    footer {
      background: var(--navy); padding: 20px 48px;
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 10px;
    }
    footer p { font-size: 12px; color: rgba(255,255,255,0.35); }
    .footer-links { display: flex; gap: 20px; }
    .footer-links a { font-size: 12px; color: rgba(255,255,255,0.4); text-decoration: none; }
    .footer-links a:hover { color: rgba(255,255,255,0.8); }
    @media (max-width: 640px) { footer { padding: 20px; flex-direction: column; text-align: center; } }
  

/* Impressum-specific */
.card p, .card address { font-size: 15px; color: var(--ink); line-height: 1.75; font-style: normal; margin-bottom: 6px; }
.notice { background: var(--ice); border: 1px solid var(--border); border-radius: 8px; padding: 16px 18px; margin-top: 14px; font-size: 14px; color: var(--ink); line-height: 1.65; opacity: 0.85; }
