@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('/assets/fonts/lato-latin-300-normal.woff2') format('woff2');
  }
  @font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/assets/fonts/lato-latin-400-normal.woff2') format('woff2');
  }
  @font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/assets/fonts/lato-latin-700-normal.woff2') format('woff2');
  }
  @font-face {
    font-family: 'Merriweather';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('/assets/fonts/merriweather-latin-300-normal.woff2') format('woff2');
  }
  @font-face {
    font-family: 'Merriweather';
    font-style: italic;
    font-weight: 300;
    font-display: swap;
    src: url('/assets/fonts/merriweather-latin-300-italic.woff2') format('woff2');
  }
  @font-face {
    font-family: 'Merriweather';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/assets/fonts/merriweather-latin-400-normal.woff2') format('woff2');
  }
  @font-face {
    font-family: 'Merriweather';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('/assets/fonts/merriweather-latin-400-italic.woff2') format('woff2');
  }

:root {
    --blue:       #0047AB;
    --blue-dark:  #003080;
    --blue-mid:   #1a5bbf;
    --blue-light: #e8eef8;
    --blue-faint: #f0f4fb;
    --gray-dark:  #3a3a3a;
    --gray-mid:   #6b6b6b;
    --gray-soft:  #9a9a9a;
    --gray-faint: #d4d4d4;
    --gray-bg:    #f5f5f5;
    --white:      #ffffff;
    --ink:        #1a1a1a;
    --serif: 'Merriweather', Georgia, serif;
    --sans:  'Lato', 'Calibri', system-ui, sans-serif;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { font-family: var(--sans); background: var(--white); color: var(--ink); font-size: 16px; line-height: 1.7; }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: var(--white); border-bottom: 1px solid var(--gray-faint);
    padding: 0 2rem; display: flex; align-items: center;
    justify-content: space-between; height: 64px;
  }

  .nav-logo { display: flex; flex-direction: column; text-decoration: none; line-height: 1.2; }

  .nav-wordmark { font-family: var(--sans); font-size: 18px; letter-spacing: 0.01em; }
  .nav-wordmark .just { color: var(--blue); font-weight: 400; }
  .nav-wordmark .future { color: var(--blue); font-weight: 700; }

  .nav-claim { font-size: 10px; color: var(--gray-mid); font-weight: 300; letter-spacing: 0.06em; }

  .nav-links { display: flex; align-items: center; gap: 1.75rem; list-style: none; }
  .nav-links a { text-decoration: none; color: var(--gray-mid); font-size: 14px; font-weight: 400; transition: color 0.2s; }
  .nav-links a:hover { color: var(--blue); }
  .nav-cta { background: var(--blue) !important; color: var(--white) !important; padding: 8px 18px; border-radius: 3px; font-size: 13px !important; font-weight: 700 !important; transition: background 0.2s !important; }
  .nav-cta:hover { background: var(--blue-dark) !important; }

  .nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
  .nav-burger span { display: block; width: 22px; height: 1.5px; background: var(--ink); }

  /* ── SECTIONS ── */
  section { display: none; }
  section.active { display: block; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh; padding: 120px 2rem 80px;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center;
    max-width: 1100px; margin: 0 auto;
  }

  .hero-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--blue); margin-bottom: 1.25rem; }

  .hero-headline { font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 300; line-height: 1.25; color: var(--ink); margin-bottom: 1.5rem; }
  .hero-headline strong { font-weight: 400; color: var(--blue); }

  .hero-body { font-size: 17px; color: var(--gray-dark); line-height: 1.85; font-weight: 300; margin-bottom: 2.5rem; }

  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

  .btn-primary { background: var(--blue); color: var(--white); padding: 13px 28px; border: none; border-radius: 3px; font-family: var(--sans); font-size: 14px; font-weight: 700; cursor: pointer; text-decoration: none; display: inline-block; transition: background 0.2s; letter-spacing: 0.02em; }
  .btn-primary:hover { background: var(--blue-dark); }

  .btn-secondary { background: transparent; color: var(--blue); padding: 12px 28px; border: 1.5px solid var(--blue); border-radius: 3px; font-family: var(--sans); font-size: 14px; font-weight: 400; cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.2s; letter-spacing: 0.02em; }
  .btn-secondary:hover { background: var(--blue-faint); }

  .hero-visual { position: relative; }

  .hero-photo-placeholder { width: 100%; aspect-ratio: 4/5; background: var(--blue-faint); border: 1px solid var(--gray-faint); border-radius: 4px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: var(--gray-soft); font-size: 13px; }
  .hero-photo-placeholder svg { width: 40px; height: 40px; opacity: 0.35; stroke: var(--blue); }

  .hero-quote { position: absolute; bottom: -24px; left: -32px; background: var(--white); border: 1px solid var(--gray-faint); border-left: 3px solid var(--blue); border-radius: 0 4px 4px 0; padding: 1.2rem 1.5rem; max-width: 290px; box-shadow: 0 4px 20px rgba(0,71,171,0.08); }
  .hero-quote p { font-family: var(--serif); font-size: 13px; font-style: italic; color: var(--gray-dark); line-height: 1.65; font-weight: 300; }
  .hero-quote cite { display: block; font-size: 11px; color: var(--blue); margin-top: 8px; font-style: normal; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700; }

  /* ── LAYOUT ── */
  .divider { width: 48px; height: 2px; background: var(--blue); margin: 0 auto 3rem; }
  .section-wrap { max-width: 900px; margin: 0 auto; padding: 5rem 2rem; }
  .section-wrap-wide { max-width: 1100px; margin: 0 auto; padding: 5rem 2rem; }
  .eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--blue); margin-bottom: 1rem; }
  .section-headline { font-family: var(--serif); font-size: clamp(1.7rem, 2.8vw, 2.2rem); font-weight: 300; line-height: 1.3; color: var(--ink); margin-bottom: 1.5rem; }
  .section-body { font-size: 17px; color: var(--gray-dark); line-height: 1.85; font-weight: 300; }

  /* ── BLUE STRIPE ── */
  .blue-stripe { background: var(--blue); padding: 4rem 2rem; }
  .blue-stripe-inner { max-width: 900px; margin: 0 auto; text-align: center; }
  .blue-stripe blockquote { font-family: var(--serif); font-size: clamp(1.2rem, 2vw, 1.55rem); font-weight: 300; font-style: italic; line-height: 1.6; color: var(--white); margin-bottom: 1rem; }
  .blue-stripe cite { font-size: 12px; color: rgba(255,255,255,0.6); font-style: normal; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; }

  /* ── GRAY BAND ── */
  .gray-band { background: var(--gray-bg); border-top: 1px solid var(--gray-faint); border-bottom: 1px solid var(--gray-faint); }

  /* ── CARDS ── */
  .card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
  .card { background: var(--white); border: 1px solid var(--gray-faint); border-top: 3px solid var(--blue); border-radius: 0 0 4px 4px; padding: 1.75rem; }
  .card h3 { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 0.75rem; }
  .card p { font-size: 15px; color: var(--gray-mid); line-height: 1.75; font-weight: 300; }
  .card-link { display: inline-block; margin-top: 1rem; font-size: 13px; color: var(--blue); text-decoration: none; font-weight: 700; }
  .card-link:hover { text-decoration: underline; }

  /* ── LISTS ── */
  .angebot-list { list-style: none; margin-bottom: 1.5rem; }
  .angebot-list li { font-size: 15px; color: var(--gray-mid); padding: 8px 0; border-bottom: 1px solid var(--gray-faint); display: flex; gap: 10px; align-items: baseline; font-weight: 300; }
  .angebot-list li::before { content: '▸'; color: var(--blue); flex-shrink: 0; font-size: 11px; }

  /* ── FORMAT CARDS ── */
  .format-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
  .format-card { border: 1px solid var(--gray-faint); border-radius: 4px; padding: 1.75rem; background: var(--white); transition: border-color 0.2s; }
  .format-card:hover { border-color: var(--blue); }
  .format-card.featured { border-color: var(--blue); background: var(--blue-faint); }
  .format-card .duration { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); margin-bottom: 0.75rem; }
  .format-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--ink); margin-bottom: 0.75rem; }
  .format-card p { font-size: 14px; color: var(--gray-mid); line-height: 1.7; font-weight: 300; }

  /* ── QUOTE BLOCK ── */
  .quote-block { background: var(--blue-faint); border-left: 3px solid var(--blue); padding: 1.75rem 2rem; margin: 2.5rem 0; border-radius: 0 4px 4px 0; }
  .quote-block blockquote { font-family: var(--serif); font-size: 1.15rem; font-style: italic; color: var(--ink); line-height: 1.65; font-weight: 300; margin-bottom: 0.75rem; }
  .quote-block cite { font-size: 12px; color: var(--blue); font-style: normal; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700; }

  /* ── INFO BOX ── */
  .info-box { background: var(--blue-faint); border: 1px solid var(--blue-light); border-radius: 4px; padding: 1.25rem 1.5rem; font-size: 15px; color: var(--gray-dark); line-height: 1.7; font-weight: 300; margin-top: 1.5rem; }
  .info-box strong { color: var(--blue); font-weight: 700; }

  /* ── BADGE ── */
  .badge { display: inline-block; background: var(--blue-faint); border: 1px solid var(--blue-light); border-radius: 2px; padding: 4px 10px; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue); margin-right: 6px; margin-bottom: 6px; }

  /* ── ÜBER MICH ── */
  .about-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; align-items: start; margin-top: 3rem; }
  .about-photo-placeholder { aspect-ratio: 3/4; background: var(--blue-faint); border: 1px solid var(--gray-faint); border-radius: 4px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: var(--gray-soft); font-size: 13px; }
  .about-text h2 { font-family: var(--serif); font-size: 2rem; font-weight: 300; color: var(--ink); margin-bottom: 0.25rem; }
  .about-text .subtitle { font-size: 13px; color: var(--blue); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 2rem; }
  .about-text p { font-size: 16px; color: var(--gray-dark); line-height: 1.85; font-weight: 300; margin-bottom: 1.25rem; }
  .stationen { margin-top: 2rem; border-top: 1px solid var(--gray-faint); padding-top: 1.5rem; }
  .stationen h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-soft); margin-bottom: 1.25rem; }
  .station { display: flex; gap: 1rem; margin-bottom: 1rem; font-size: 14px; }
  .station-year { color: var(--blue); font-weight: 700; min-width: 52px; flex-shrink: 0; }
  .station-text { color: var(--gray-mid); line-height: 1.6; font-weight: 300; }

  /* ── KONTAKT ── */
  .kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; margin-top: 3rem; }
  .kontakt-info h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 300; color: var(--ink); margin-bottom: 0.5rem; }
  .kontakt-info p { font-size: 15px; color: var(--gray-mid); line-height: 1.8; margin-bottom: 1.5rem; font-weight: 300; }
  .kontakt-detail { display: flex; gap: 12px; align-items: center; font-size: 14px; color: var(--gray-mid); margin-bottom: 0.75rem; }
  .kontakt-detail strong { color: var(--ink); font-weight: 700; min-width: 52px; }

  form { display: flex; flex-direction: column; gap: 1rem; }
  .form-group { display: flex; flex-direction: column; gap: 5px; }
  label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-mid); }
  input, select, textarea { font-family: var(--sans); font-size: 15px; color: var(--ink); background: var(--white); border: 1px solid var(--gray-faint); border-radius: 3px; padding: 11px 14px; outline: none; transition: border-color 0.2s; width: 100%; font-weight: 300; }
  input:focus, select:focus, textarea:focus { border-color: var(--blue); }
  textarea { min-height: 120px; resize: vertical; }
  .form-submit { background: var(--blue); color: var(--white); padding: 13px 28px; border: none; border-radius: 3px; font-family: var(--sans); font-size: 14px; font-weight: 700; cursor: pointer; letter-spacing: 0.03em; transition: background 0.2s; align-self: flex-start; }
  .form-submit:hover { background: var(--blue-dark); }

  /* ── SIDEBAR ── */
  .sidebar-banner { position: fixed; right: 0; top: 50%; transform: translateY(-50%); z-index: 90; display: flex; flex-direction: column; gap: 3px; }
  .sidebar-item { background: var(--blue); color: var(--white); writing-mode: vertical-rl; text-orientation: mixed; transform: rotate(180deg); padding: 14px 9px; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; border-radius: 3px 0 0 3px; transition: background 0.2s, padding-left 0.2s; display: flex; align-items: center; gap: 5px; border: none; font-family: var(--sans); color: var(--white); }
  .sidebar-item:hover { background: var(--blue-dark); padding-left: 13px; }
  .sidebar-item.alt { background: var(--gray-dark); }
  .sidebar-item.alt:hover { background: var(--ink); }

  /* ── ARTICLE BODY ── */
  .article-body { max-width: 680px; }
  .article-body h3 { font-family: var(--sans); font-size: 1rem; font-weight: 700; color: var(--ink); margin: 2rem 0 0.75rem; }
  .article-body p { font-size: 16px; color: var(--gray-dark); line-height: 1.9; font-weight: 300; margin-bottom: 1.25rem; }

  /* ── FOOTER ── */
  footer { background: var(--ink); color: var(--white); padding: 3rem 2rem; margin-top: 4rem; }
  .footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
  .footer-wordmark { font-size: 17px; }
  .footer-wordmark .just { color: #6ea3e8; font-weight: 400; }
  .footer-wordmark .future { color: #6ea3e8; font-weight: 700; }
  .footer-claim { font-size: 11px; color: var(--gray-soft); margin-top: 3px; letter-spacing: 0.04em; font-weight: 300; }
  .footer-links { display: flex; gap: 1.5rem; list-style: none; flex-wrap: wrap; }
  .footer-links a { color: var(--gray-soft); text-decoration: none; font-size: 13px; transition: color 0.2s; font-weight: 300; }
  .footer-links a:hover { color: var(--white); }
  .footer-copy { font-size: 12px; color: var(--gray-soft); font-weight: 300; }

  /* ── LEGAL PAGES ── */
  .legal-body { max-width: 720px; }
  .legal-body h2 { font-family: var(--sans); font-size: 1rem; font-weight: 700; color: var(--ink); margin: 2.5rem 0 0.75rem; padding-top: 1.5rem; border-top: 1px solid var(--gray-faint); }
  .legal-body h2:first-of-type { border-top: none; margin-top: 1.5rem; }
  .legal-body h3 { font-size: 0.9rem; font-weight: 700; color: var(--gray-dark); margin: 1.5rem 0 0.5rem; }
  .legal-body p { font-size: 15px; color: var(--gray-mid); line-height: 1.8; font-weight: 300; margin-bottom: 0.75rem; }
  .legal-body ul { margin: 0.5rem 0 0.75rem 1.25rem; }
  .legal-body ul li { font-size: 15px; color: var(--gray-mid); line-height: 1.7; font-weight: 300; margin-bottom: 0.25rem; }
  .legal-body a { color: var(--blue); }
  .legal-body strong { color: var(--ink); font-weight: 700; }

  /* ── SOCIAL ICONS ── */
  .social-links { display: flex; gap: 1rem; align-items: center; }
  .social-link { display: flex; align-items: center; gap: 6px; color: var(--gray-soft); text-decoration: none; font-size: 12px; font-weight: 300; transition: color 0.2s; }
  .social-link:hover { color: var(--white); }
  .social-link svg { width: 16px; height: 16px; fill: currentColor; }

  /* ── BLOG WIDGET ── */
  .blog-widget { margin-top: 3rem; }
  .blog-widget-item { padding: 1.5rem 0; border-bottom: 1px solid var(--gray-faint); }
  .blog-widget-item:first-child { border-top: 1px solid var(--gray-faint); }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-burger { display: flex; }
    .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 64px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--gray-faint); padding: 1.5rem 2rem; gap: 1.5rem; }
    .hero { grid-template-columns: 1fr; padding-top: 100px; }
    .hero-visual { display: none; }
    .format-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .kontakt-grid { grid-template-columns: 1fr; }
    .sidebar-banner { display: none; }
    .footer-inner { flex-direction: column; align-items: flex-start; }
  }
