    .legal-banner {
      padding-top: 62px;
      background: var(--dark);
      position: relative;
      overflow: hidden;
    }

    .legal-banner-inner {
      padding: 72px 60px 0;
      position: relative;
      z-index: 2;
      max-width: 900px;
    }

    .legal-banner-eyebrow {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--accent-light);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .legal-banner-eyebrow::before {
      content: '';
      display: block;
      width: 32px;
      height: 1px;
      background: var(--accent-light);
      flex-shrink: 0;
    }

    .legal-banner h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(36px, 5vw, 72px);
      font-weight: 300;
      line-height: 1.08;
      color: white;
      letter-spacing: -.01em;
      margin-bottom: 24px;
    }

    .legal-banner h1 em {
      font-style: italic;
      color: var(--accent-light);
    }

    .legal-banner-sub {
      font-size: 16px;
      color: rgba(227, 242, 253, .5);
      font-weight: 300;
      max-width: 520px;
      line-height: 1.7;
    }

    .legal-tabs {
      display: flex;
      gap: 0;
      margin-top: 52px;
      border-top: 1px solid rgba(255, 255, 255, .08);
    }

    .legal-tab {
      font-size: 12px;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(227, 242, 253, .4);
      padding: 16px 28px;
      text-decoration: none;
      border-bottom: 2px solid transparent;
      transition: color .2s, border-color .2s;
      font-weight: 400;
    }

    .legal-tab:hover {
      color: rgba(227, 242, 253, .8);
    }

    .legal-tab.active {
      color: var(--accent-light);
      border-bottom-color: var(--accent);
    }

    .legal-banner-bg {
      position: absolute;
      bottom: -20px;
      right: -10px;
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(80px, 14vw, 220px);
      font-weight: 300;
      color: rgba(4, 150, 255, .05);
      line-height: 1;
      pointer-events: none;
      white-space: nowrap;
      z-index: 1;
    }

    /* ══════════════════════════════
     LAYOUT
  ══════════════════════════════ */
    .legal-layout {
      display: grid;
      grid-template-columns: 260px 1fr;
      gap: 0;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 60px;
      align-items: start;
    }

    /* TOC */
    .legal-toc {
      position: sticky;
      top: 88px;
      padding: 56px 40px 56px 0;
      border-right: 1px solid var(--border);
    }

    .legal-toc-label {
      font-size: 10px;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 20px;
    }

    .legal-toc-list {
      list-style: none;
    }

    .legal-toc-list li+li {
      margin-top: 4px;
    }

    .legal-toc-list a {
      font-size: 13px;
      color: var(--text-muted);
      text-decoration: none;
      display: block;
      padding: 7px 12px;
      border-left: 2px solid transparent;
      transition: color .2s, border-color .2s, background .2s;
      line-height: 1.4;
      border-radius: 0 2px 2px 0;
    }

    .legal-toc-list a:hover {
      color: var(--dark);
      border-left-color: var(--accent-light);
      background: rgba(4, 150, 255, .04);
    }

    .legal-toc-list a.active {
      color: var(--accent);
      border-left-color: var(--accent);
      background: rgba(4, 150, 255, .06);
      font-weight: 500;
    }

    /* Content */
    .legal-content {
      padding: 56px 0 80px 56px;
    }

    .legal-section {
      margin-bottom: 60px;
      padding-bottom: 60px;
      border-bottom: 1px solid var(--border);
    }

    .legal-section:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .legal-section-num {
      font-size: 11px;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .legal-section-num::before {
      content: '';
      width: 24px;
      height: 1px;
      background: var(--accent);
    }

    .legal-section h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(24px, 2.5vw, 36px);
      font-weight: 300;
      line-height: 1.15;
      color: var(--dark);
      margin-bottom: 28px;
    }

    .legal-section h2 em {
      font-style: italic;
      color: var(--brown-mid);
    }

    .legal-section h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      font-weight: 400;
      color: var(--dark);
      margin-top: 32px;
      margin-bottom: 12px;
      line-height: 1.2;
    }

    .legal-section p {
      font-size: 15px;
      line-height: 1.85;
      color: var(--text-muted);
      font-weight: 300;
      margin-bottom: 14px;
    }

    .legal-section p:last-child {
      margin-bottom: 0;
    }

    .legal-section p strong {
      color: var(--text-body);
      font-weight: 500;
    }

    .legal-section a {
      color: var(--accent);
      text-decoration: none;
      transition: opacity .2s;
    }

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

    /* Contact card */
    .impressum-contact-card {
      background: white;
      border: 1px solid var(--border);
      padding: 40px 44px;
      margin-bottom: 32px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      transition: border-color .2s;
    }

    .impressum-contact-card:hover {
      border-color: var(--accent);
    }

    .impressum-field-label {
      font-size: 10px;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .impressum-field-label::before {
      content: '';
      width: 14px;
      height: 1px;
      background: var(--accent);
    }

    .impressum-field-value {
      font-size: 15px;
      color: var(--text-body);
      line-height: 1.7;
      font-weight: 300;
    }

    .impressum-field-value strong {
      font-weight: 500;
      color: var(--dark);
    }

    /* Dark contact box */
    .impressum-dark-box {
      background: var(--dark);
      border: 1px solid rgba(4, 150, 255, .15);
      padding: 36px 40px;
      margin-bottom: 32px;
      position: relative;
      overflow: hidden;
    }

    .impressum-dark-box::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--accent), var(--accent-light));
    }

    .impressum-dark-box-label {
      font-size: 10px;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--accent-light);
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .impressum-dark-box-label::before {
      content: '';
      width: 14px;
      height: 1px;
      background: var(--accent-light);
    }

    .impressum-dark-box-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 300;
      color: var(--cream);
      margin-bottom: 16px;
      line-height: 1.2;
    }

    .impressum-contact-rows {
      list-style: none;
    }

    .impressum-contact-rows li {
      font-size: 14px;
      color: rgba(227, 242, 253, .6);
      padding: 10px 0;
      border-bottom: 1px solid rgba(255, 255, 255, .06);
      display: flex;
      align-items: center;
      gap: 16px;
      font-weight: 300;
    }

    .impressum-contact-rows li:last-child {
      border-bottom: none;
    }

    .impressum-contact-rows li span:first-child {
      font-size: 10px;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(227, 242, 253, .35);
      min-width: 64px;
      flex-shrink: 0;
    }

    .impressum-contact-rows li a {
      color: var(--accent-light);
      text-decoration: none;
      transition: opacity .2s;
    }

    .impressum-contact-rows li a:hover {
      opacity: .75;
    }

    /* Highlight box */
    .legal-highlight {
      background: rgba(4, 150, 255, .05);
      border-left: 3px solid var(--accent);
      padding: 20px 24px;
      margin: 20px 0;
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.8;
    }

    .legal-highlight strong {
      color: var(--text-body);
      font-weight: 500;
    }

    /* Law chip */
    .legal-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--cream);
      border: 1px solid var(--border);
      padding: 6px 14px;
      font-size: 12px;
      letter-spacing: .06em;
      color: var(--text-muted);
      margin-bottom: 20px;
    }

    .legal-chip::before {
      content: '§';
      color: var(--accent);
      font-weight: 500;
    }

    /* ══════════════════════════════
     FOOTER
  ══════════════════════════════ */
    footer {
      background: var(--dark);
      padding: 60px;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 60px;
      align-items: start;
    }

    .footer-brand-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
      color: var(--cream);
      margin-bottom: 12px;
      font-weight: 300;
    }

    .footer-brand-name span {
      color: var(--accent);
    }

    .footer-tagline {
      font-size: 13px;
      color: rgba(227, 242, 253, .45);
      line-height: 1.6;
      max-width: 240px;
      font-weight: 300;
      margin-bottom: 28px;
    }

    .footer-social {
      display: flex;
      gap: 12px;
    }

    .footer-social a {
      width: 36px;
      height: 36px;
      border: 1px solid rgba(255, 255, 255, .12);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(227, 242, 253, .45);
      font-size: 13px;
      text-decoration: none;
      transition: border-color .2s, color .2s;
    }

    .footer-social a:hover {
      border-color: var(--accent);
      color: var(--accent);
    }

    .footer-col-title {
      font-size: 10px;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: rgba(227, 242, 253, .4);
      margin-bottom: 20px;
    }

    .footer-col ul {
      list-style: none;
    }

    .footer-col li+li {
      margin-top: 10px;
    }

    .footer-col a {
      color: rgba(227, 242, 253, .5);
      font-size: 13px;
      text-decoration: none;
      transition: color .2s;
      font-weight: 300;
    }

    .footer-col a:hover {
      color: var(--cream);
    }

    .footer-bottom {
      background: #061828;
      padding: 20px 60px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-bottom p {
      font-size: 11px;
      color: rgba(227, 242, 253, .3);
      letter-spacing: .06em;
    }

    .footer-bottom a {
      color: rgba(227, 242, 253, .3);
      text-decoration: none;
      font-size: 11px;
      transition: color .2s;
    }

    .footer-bottom a:hover {
      color: rgba(227, 242, 253, .5);
    }

    .footer-links {
      display: flex;
      gap: 24px;
    }

    /* ══════════════════════════════
     RESPONSIVE
  ══════════════════════════════ */
    @media (max-width: 1024px) {
      nav {
        padding: 16px 32px;
      }

      .legal-banner-inner {
        padding: 60px 40px 0;
      }

      .legal-layout {
        grid-template-columns: 1fr;
        padding: 0 40px;
      }

      .legal-toc {
        display: none;
      }

      .legal-content {
        padding: 48px 0 60px;
      }

      .impressum-contact-card {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 32px;
      }

      footer {
        padding: 48px 40px;
        gap: 40px;
      }

      .footer-bottom {
        padding: 18px 40px;
      }
    }

    @media (max-width: 768px) {
      nav {
        padding: 14px 20px;
      }

      .nav-links {
        display: none;
      }

      .nav-hamburger {
        display: flex;
      }

      .legal-banner-inner {
        padding: 48px 24px 0;
      }

      .legal-tabs {
        overflow-x: auto;
      }

      .legal-tab {
        padding: 14px 20px;
        white-space: nowrap;
        font-size: 11px;
      }

      .legal-layout {
        padding: 0 24px;
      }

      .legal-content {
        padding: 40px 0 48px;
      }

      .impressum-contact-card {
        padding: 28px 24px;
      }

      .impressum-dark-box {
        padding: 28px 24px;
      }

      footer {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
        padding: 48px 24px 0;
      }

      .footer-bottom {
        padding: 16px 24px;
        flex-direction: column;
        gap: 12px;
        text-align: center;
      }

      .footer-links {
        justify-content: center;
      }
    }

    @media (max-width: 480px) {
      footer {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 36px 20px 0;
      }

      .footer-bottom {
        padding: 16px 20px;
      }
    }
