/* EOZDUS – Europa Office Zentrum Düsseldorf · zentrales Stylesheet */

    :root {
      --eoz-red: #E30613;
      --eoz-red-dark: #B80510;
      --eoz-red-soft: #FCE9EA;
      --eoz-navy: #1A1F2E;
      --eoz-navy-soft: #2A3044;
      --white: #FFFFFF;
      --surface: #F5F6F8;
      --surface-deep: #ECEEF2;
      --line: #E3E6EC;
      --text-primary: #232838;
      --text-secondary: #5B6273;
      --text-muted: #8A90A0;
      --radius-sm: 8px;
      --radius-md: 14px;
      --radius-lg: 22px;
      --radius-xl: 30px;
      --shadow-sm: 0 1px 3px rgba(26, 31, 46, 0.07);
      --shadow-md: 0 10px 30px rgba(26, 31, 46, 0.10);
      --shadow-lg: 0 24px 60px rgba(26, 31, 46, 0.14);
      --container: min(1200px, calc(100vw - 40px));
    }

    * { box-sizing: border-box; }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--text-primary);
      background: var(--white);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-size: 16px;
      line-height: 1.65;
      overflow-x: hidden;
    }

    body.menu-open { overflow: hidden; }

    img { display: block; max-width: 100%; height: auto; }
    a { color: inherit; text-decoration: none; }
    button, input, select { font: inherit; }

    :focus-visible {
      outline: 3px solid rgba(227, 6, 19, 0.35);
      outline-offset: 2px;
    }

    .container {
      width: var(--container);
      margin-inline: auto;
    }

    .icon-svg {
      width: 1.25em;
      height: 1.25em;
      flex: none;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* ---------- Header ---------- */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: var(--white);
      border-bottom: 1px solid transparent;
      transition: box-shadow 180ms ease, border-color 180ms ease;
    }

    .site-header.is-scrolled {
      border-color: var(--line);
      box-shadow: var(--shadow-sm);
    }

    .nav-shell {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
      min-height: 78px;
    }

    .brand { display: inline-flex; align-items: center; }

    .brand-logo {
      width: clamp(110px, 11vw, 152px);
      height: auto;
      object-fit: contain;
    }

    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 6px;
      color: var(--text-secondary);
      font-size: 0.97rem;
      font-weight: 600;
    }

    .desktop-nav > a,
    .dropdown-button {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      min-height: 44px;
      padding: 0 15px;
      border: 0;
      border-radius: var(--radius-sm);
      color: var(--text-secondary);
      background: transparent;
      cursor: pointer;
    }

    .desktop-nav > a:hover,
    .desktop-nav > a.is-active,
    .dropdown:hover .dropdown-button,
    .dropdown-button[aria-expanded="true"] {
      color: var(--eoz-red);
    }

    .dropdown-button .caret {
      width: 0.7em;
      height: 0.7em;
      transition: transform 160ms ease;
    }

    .dropdown:hover .caret { transform: rotate(180deg); }

    .dropdown { position: relative; }

    .dropdown-menu {
      position: absolute;
      top: calc(100% + 10px);
      left: 50%;
      display: grid;
      width: min(540px, calc(100vw - 40px));
      padding: 10px;
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      background: var(--white);
      box-shadow: var(--shadow-lg);
      opacity: 0;
      visibility: hidden;
      transform: translate(-50%, 8px);
      transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
    }

    .dropdown:hover .dropdown-menu,
    .dropdown:focus-within .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translate(-50%, 0);
    }

    .dropdown-menu a {
      display: grid;
      gap: 2px;
      padding: 12px 14px;
      border-radius: var(--radius-sm);
    }

    .dropdown-menu a:hover { background: var(--surface); }

    .dropdown-menu strong {
      color: var(--eoz-navy);
      font-size: 0.95rem;
    }

    .dropdown-menu span {
      color: var(--text-secondary);
      font-size: 0.85rem;
      font-weight: 500;
      line-height: 1.45;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 48px;
      padding: 0 24px;
      border: 1px solid transparent;
      border-radius: var(--radius-sm);
      font-weight: 700;
      line-height: 1;
      cursor: pointer;
      transition: background 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
    }

    .button-primary {
      color: var(--white);
      background: var(--eoz-red);
      box-shadow: 0 8px 20px rgba(227, 6, 19, 0.22);
    }

    .button-primary:hover { background: var(--eoz-red-dark); }

    .button-outline {
      color: var(--eoz-red);
      border-color: rgba(227, 6, 19, 0.45);
      background: transparent;
    }

    .button-outline:hover {
      color: var(--white);
      border-color: var(--eoz-red);
      background: var(--eoz-red);
    }

    .button-ghost-light {
      color: var(--white);
      border-color: rgba(255, 255, 255, 0.55);
      background: rgba(255, 255, 255, 0.08);
    }

    .button-ghost-light:hover {
      color: var(--eoz-navy);
      background: var(--white);
    }

    .menu-toggle {
      display: none;
      width: 46px;
      height: 46px;
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      background: var(--white);
      cursor: pointer;
    }

    .menu-toggle span {
      display: block;
      width: 18px;
      height: 2px;
      margin: 4px auto;
      border-radius: 99px;
      background: var(--eoz-navy);
    }

    .mobile-panel {
      position: fixed;
      inset: 0;
      z-index: 60;
      display: none;
      padding: 20px;
      background: rgba(26, 31, 46, 0.45);
    }

    .mobile-panel.is-open { display: block; }

    .mobile-panel-inner {
      display: grid;
      gap: 16px;
      max-width: 520px;
      max-height: calc(100vh - 40px);
      margin: 0 auto;
      padding: 20px;
      overflow-y: auto;
      border-radius: var(--radius-lg);
      background: var(--white);
      box-shadow: var(--shadow-lg);
    }

    .mobile-panel-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .close-button {
      width: 44px;
      height: 44px;
      border: 0;
      border-radius: var(--radius-sm);
      color: var(--white);
      background: var(--eoz-navy);
      cursor: pointer;
      font-size: 1.4rem;
      line-height: 1;
    }

    .mobile-links { display: grid; gap: 4px; }

    .mobile-links a {
      padding: 12px 14px;
      border-radius: var(--radius-sm);
      color: var(--eoz-navy);
      font-weight: 650;
    }

    .mobile-links a:hover { background: var(--surface); }

    .mobile-links .sub { padding-left: 28px; font-weight: 500; color: var(--text-secondary); }

    /* ---------- Hero ---------- */
    .hero {
      position: relative;
      padding: clamp(64px, 7vw, 110px) 0 0;
      overflow: visible;
    }

    .hero-media {
      position: absolute;
      inset: 0 0 12% 0;
      z-index: -1;
      overflow: hidden;
      border-bottom-left-radius: clamp(28px, 6vw, 72px);
      background:
        linear-gradient(100deg, rgba(15, 18, 28, 0.62) 8%, rgba(15, 18, 28, 0.30) 60%, rgba(15, 18, 28, 0.55)),
        url("../images/duesseldorf-hero.webp") center / cover no-repeat;
      clip-path: polygon(0 0, 100% 0, 100% 74%, 78% 100%, 0 100%);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(340px, 430px) 1fr;
      gap: clamp(32px, 6vw, 90px);
      align-items: start;
    }

    .hero-copy {
      padding-top: clamp(8px, 3vw, 48px);
      color: var(--white);
    }

    .play-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 76px;
      height: 76px;
      margin-bottom: 26px;
      border: 0;
      border-radius: 50%;
      color: var(--eoz-red);
      background: var(--white);
      box-shadow: 0 0 0 14px rgba(255, 255, 255, 0.22), var(--shadow-lg);
      cursor: pointer;
    }

    .play-badge svg {
      width: 24px;
      height: 24px;
      margin-left: 4px;
      fill: currentColor;
      stroke: none;
    }

    .hero h1 {
      margin: 0;
      max-width: 640px;
      color: var(--white);
      font-size: clamp(2.4rem, 1.6rem + 3vw, 4rem);
      font-weight: 800;
      line-height: 1.08;
      letter-spacing: -0.01em;
      text-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    }

    .hero-copy p {
      max-width: 520px;
      margin: 20px 0 0;
      color: rgba(255, 255, 255, 0.88);
      font-size: 1.08rem;
      text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
    }

    .hero-trust {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 26px;
    }

    .hero-trust span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 38px;
      padding: 0 14px;
      border: 1px solid var(--line);
      border-radius: 99px;
      color: var(--eoz-navy);
      background: var(--white);
      box-shadow: var(--shadow-md);
      font-size: 0.9rem;
      font-weight: 650;
    }

    /* Booking card */
    .booking-card {
      position: relative;
      z-index: 2;
      margin-bottom: -64px;
      padding: clamp(24px, 3vw, 34px);
      border-radius: var(--radius-md);
      background: var(--white);
      box-shadow: var(--shadow-lg);
    }

    .booking-card h2 {
      margin: 0 0 20px;
      color: var(--eoz-navy);
      font-size: 1.4rem;
      font-weight: 750;
      line-height: 1.3;
    }

    .booking-form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px 14px;
    }

    .field { display: grid; gap: 6px; }

    .field label {
      color: var(--eoz-navy);
      font-size: 0.92rem;
      font-weight: 700;
    }

    .field input,
    .field select {
      min-height: 46px;
      padding: 0 13px;
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      color: var(--text-primary);
      background: var(--surface);
      width: 100%;
    }

    .field input:focus,
    .field select:focus {
      border-color: var(--eoz-red);
      background: var(--white);
      outline: none;
      box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.12);
    }

    .booking-form .button {
      grid-column: 1 / -1;
      margin-top: 6px;
    }

    .form-note {
      grid-column: 1 / -1;
      margin: 2px 0 0;
      color: var(--text-muted);
      font-size: 0.8rem;
    }

    /* ---------- Sections (generic) ---------- */
    section { padding: clamp(70px, 8vw, 120px) 0; }

    .eyebrow {
      display: block;
      margin: 0 0 14px;
      color: var(--eoz-red);
      font-size: 0.85rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    h2 {
      margin: 0;
      color: var(--eoz-navy);
      font-size: clamp(1.8rem, 1.3rem + 2.2vw, 2.7rem);
      font-weight: 800;
      line-height: 1.15;
      letter-spacing: -0.01em;
    }

    h2 .dot { color: var(--eoz-red); }

    h3 {
      margin: 0;
      color: var(--eoz-navy);
      font-size: 1.25rem;
      font-weight: 750;
      line-height: 1.3;
    }

    .section-head p,
    .lead {
      margin: 16px 0 0;
      color: var(--text-secondary);
      font-size: 1.05rem;
    }

    .section-head.center {
      max-width: 720px;
      margin-inline: auto;
      margin-bottom: 44px;
      text-align: center;
    }

    /* ---------- Who we are ---------- */
    .about { padding-top: clamp(120px, 12vw, 160px); }

    .about-head {
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
      gap: clamp(28px, 5vw, 70px);
      align-items: end;
      margin-bottom: clamp(36px, 5vw, 56px);
    }

    .about-head .columns {
      column-count: 2;
      column-gap: 32px;
      color: var(--text-secondary);
      font-size: 0.98rem;
    }

    .about-head .columns p { margin: 0; }

    .about-media {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-md);
    }

    .about-media img {
      width: 100%;
      aspect-ratio: 21 / 9;
      object-fit: cover;
    }

    .about-media .media-tag {
      position: absolute;
      left: 22px;
      bottom: 22px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 44px;
      padding: 0 18px;
      border-radius: 99px;
      color: var(--eoz-navy);
      background: rgba(255, 255, 255, 0.92);
      box-shadow: var(--shadow-md);
      font-weight: 700;
      font-size: 0.95rem;
    }

    /* ---------- USP strip ---------- */
    .usp-strip { padding-top: 0; }

    .usp-strip .section-head.center { margin-bottom: 34px; }

    .usp-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .usp-box {
      display: grid;
      gap: 12px;
      padding: 26px 24px;
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      background: var(--surface);
      transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
    }

    .usp-box:hover {
      background: var(--white);
      box-shadow: var(--shadow-md);
      transform: translateY(-4px);
    }

    .usp-box .icon-bubble {
      display: grid;
      place-items: center;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      color: var(--white);
      background: var(--eoz-red);
    }

    .usp-box .icon-bubble .icon-svg { width: 24px; height: 24px; }

    .usp-box h3 { font-size: 1.08rem; }

    .usp-box p {
      margin: 0;
      color: var(--text-secondary);
      font-size: 0.94rem;
    }

    /* ---------- Banner (giant text) ---------- */
    .banner {
      position: relative;
      height: clamp(300px, 42vw, 520px);
      padding: 0;
      overflow: hidden;
      background:
        linear-gradient(180deg, rgba(15, 18, 28, 0.18), rgba(15, 18, 28, 0.42)),
        url("../images/arbeitsplaetze-und-bueros-in-duesseldorf-1280.webp") center / cover no-repeat;
    }

    .banner strong {
      position: absolute;
      left: 50%;
      bottom: -0.18em;
      transform: translateX(-50%);
      width: max-content;
      max-width: 100vw;
      color: var(--white);
      font-size: clamp(3.4rem, 10.5vw, 9.5rem);
      font-weight: 800;
      letter-spacing: -0.02em;
      line-height: 1;
      white-space: nowrap;
      text-shadow: 0 10px 50px rgba(0, 0, 0, 0.30);
    }

    /* ---------- Location ---------- */
    .location-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
      gap: clamp(32px, 6vw, 80px);
      align-items: center;
    }

    .location-visual {
      position: relative;
      padding: 0 46px 46px 0;
    }

    .location-visual::before {
      content: "";
      position: absolute;
      top: -22px;
      left: -22px;
      width: 58%;
      height: 58%;
      border-radius: var(--radius-lg);
      background: var(--eoz-red);
      opacity: 0.92;
      z-index: -1;
    }

    .location-visual img {
      width: 100%;
      aspect-ratio: 4 / 4.4;
      object-fit: cover;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-md);
    }

    .rating-card {
      position: absolute;
      right: 0;
      bottom: 0;
      width: 180px;
      overflow: hidden;
      border-radius: var(--radius-md);
      background: var(--white);
      box-shadow: var(--shadow-lg);
      text-align: center;
    }

    .rating-card .rating-head {
      padding: 12px;
      color: var(--white);
      background: var(--eoz-navy);
      font-weight: 750;
    }

    .rating-card .rating-body {
      display: grid;
      gap: 8px;
      justify-items: center;
      padding: 16px;
    }

    .stars { color: #F6A800; letter-spacing: 2px; font-size: 0.95rem; }

    .rating-score {
      color: var(--eoz-navy);
      font-size: 2.4rem;
      font-weight: 850;
      line-height: 1;
    }

    .rating-chip {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 0 13px;
      border-radius: 99px;
      color: var(--white);
      background: var(--eoz-red);
      font-size: 0.82rem;
      font-weight: 700;
    }

    .location-copy hr {
      margin: 26px 0;
      border: 0;
      border-top: 1px solid var(--line);
    }

    .pin-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px 24px;
      margin: 0 0 30px;
      padding: 0;
      list-style: none;
    }

    .pin-grid li {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--eoz-navy);
      font-weight: 700;
      font-size: 0.98rem;
    }

    .pin-grid .icon-bubble {
      display: grid;
      place-items: center;
      width: 40px;
      height: 40px;
      flex: none;
      border-radius: 50%;
      color: var(--white);
      background: var(--eoz-red);
    }

    .pin-grid .icon-bubble .icon-svg { width: 19px; height: 19px; }

    /* ---------- Promo band ---------- */
    .promo-band {
      padding: 26px 0;
      color: var(--white);
      background:
        radial-gradient(circle at 88% 30%, rgba(255, 255, 255, 0.10), transparent 22rem),
        linear-gradient(95deg, var(--eoz-navy) 0%, var(--eoz-navy-soft) 55%, var(--eoz-navy) 100%);
    }

    .promo-inner {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 14px 18px;
      text-align: center;
    }

    .promo-chip {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 0 15px;
      border-radius: 99px;
      color: var(--eoz-navy);
      background: #FFC93C;
      font-weight: 800;
      font-size: 0.9rem;
    }

    .promo-inner p {
      margin: 0;
      font-size: clamp(1.05rem, 2vw, 1.25rem);
      font-weight: 750;
    }

    .promo-inner a {
      color: var(--white);
      font-weight: 750;
      text-decoration: underline;
      text-underline-offset: 5px;
    }

    .promo-inner a:hover { color: #FFC93C; }

    /* ---------- Workspaces / services ---------- */
    .workspaces { background: var(--surface); }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 26px;
    }

    .service-card {
      display: flex;
      flex-direction: column;
      overflow: hidden;
      border-radius: var(--radius-md);
      background: var(--white);
      box-shadow: var(--shadow-sm);
      transition: transform 200ms ease, box-shadow 200ms ease;
    }

    .service-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-6px);
    }

    .service-card-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 14px;
      padding: 24px 24px 18px;
    }

    .service-card-head p {
      margin: 6px 0 0;
      color: var(--text-secondary);
      font-size: 0.92rem;
    }

    .service-card .icon-bubble {
      display: grid;
      place-items: center;
      width: 54px;
      height: 54px;
      flex: none;
      border-radius: 50%;
      color: var(--white);
      background: var(--eoz-red);
    }

    .service-card .icon-bubble .icon-svg { width: 25px; height: 25px; }

    .service-card > img {
      width: 100%;
      aspect-ratio: 16 / 9;
      object-fit: cover;
    }

    .service-card-body {
      display: flex;
      flex-direction: column;
      flex: 1;
      gap: 14px;
      padding: 22px 24px 26px;
    }

    .service-card-body > p {
      margin: 0;
      color: var(--text-secondary);
      font-size: 0.96rem;
    }

    .feature-list {
      display: grid;
      gap: 10px;
      margin: 4px 0 8px;
      padding: 0;
      list-style: none;
    }

    .feature-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--eoz-navy);
      font-weight: 700;
      font-size: 0.94rem;
    }

    .feature-list .icon-svg { color: var(--eoz-red); }

    .service-card-body .actions {
      display: grid;
      gap: 10px;
      margin-top: auto;
    }

    /* ---------- Founding ---------- */
    .founding-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
      gap: clamp(32px, 6vw, 80px);
      align-items: center;
    }

    .founding-visual {
      overflow: hidden;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-md);
    }

    .founding-visual img {
      width: 100%;
      aspect-ratio: 4 / 3.4;
      object-fit: cover;
    }

    .step-list {
      display: grid;
      gap: 14px;
      margin: 30px 0;
      padding: 0;
      list-style: none;
      counter-reset: step;
    }

    .step-list li {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 16px 18px;
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      background: var(--white);
    }

    .step-list li::before {
      counter-increment: step;
      content: counter(step);
      display: grid;
      place-items: center;
      width: 34px;
      height: 34px;
      flex: none;
      border-radius: 50%;
      color: var(--white);
      background: var(--eoz-red);
      font-size: 0.9rem;
      font-weight: 800;
    }

    .step-list strong {
      display: block;
      color: var(--eoz-navy);
      font-size: 1rem;
    }

    .step-list span {
      color: var(--text-secondary);
      font-size: 0.92rem;
    }

    /* ---------- Testimonials ---------- */
    .testimonials { background: var(--surface); }

    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
    }

    .testimonial-card {
      display: flex;
      flex-direction: column;
      gap: 14px;
      padding: 26px 24px;
      border-radius: var(--radius-md);
      background: var(--white);
      box-shadow: var(--shadow-sm);
      transition: transform 180ms ease, box-shadow 180ms ease;
    }

    .testimonial-card:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-4px);
    }

    .testimonial-card .stars { font-size: 0.9rem; }

    .testimonial-card blockquote {
      margin: 0;
      color: var(--text-secondary);
      font-size: 0.95rem;
    }

    .testimonial-author {
      margin-top: auto;
      color: var(--eoz-navy);
      font-weight: 750;
    }

    .testimonial-author span {
      display: block;
      color: var(--text-muted);
      font-size: 0.85rem;
      font-weight: 550;
    }

    /* ---------- Footer ---------- */
    .site-footer {
      color: rgba(255, 255, 255, 0.78);
      background: var(--eoz-navy);
      padding: 64px 0 28px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr 1fr 0.9fr;
      gap: 40px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .footer-brand { display: grid; gap: 16px; max-width: 380px; }

    .footer-title {
      margin: 0 0 14px;
      color: var(--white);
      font-weight: 750;
    }

    .footer-links { display: grid; gap: 9px; }
    .footer-links a:hover { color: var(--white); }

    .social-row {
      display: flex;
      gap: 10px;
      margin-top: 4px;
    }

    .social-row a {
      display: grid;
      place-items: center;
      width: 42px;
      height: 42px;
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: 50%;
      color: rgba(255, 255, 255, 0.85);
      transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
    }

    .social-row a:hover {
      color: var(--white);
      border-color: var(--eoz-red);
      background: var(--eoz-red);
    }

    .social-row .icon-svg { width: 19px; height: 19px; }

    .payment-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 18px;
    }

    .payment-row img {
      height: 30px;
      width: auto;
      padding: 4px 8px;
      border-radius: 6px;
      background: var(--white);
    }

    .footer-bottom {
      display: flex;
      flex-wrap: wrap;
      gap: 12px 24px;
      justify-content: space-between;
      padding-top: 24px;
      color: rgba(255, 255, 255, 0.55);
      font-size: 0.9rem;
    }

    .footer-bottom .legal {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer-bottom a:hover { color: var(--white); }

    /* ---------- Responsive ---------- */
    @media (max-width: 1080px) {
      .desktop-nav, .nav-shell > .button { display: none; }
      .menu-toggle { display: block; }

      .hero-grid { grid-template-columns: 1fr; }
      .hero-copy { order: -1; padding-bottom: 26px; }
      .hero-media { inset: 0 0 30% 0; clip-path: polygon(0 0, 100% 0, 100% 82%, 60% 100%, 0 100%); }
      .booking-card { max-width: 560px; margin-bottom: -40px; }

      .about-head { grid-template-columns: 1fr; align-items: start; }
      .usp-grid { grid-template-columns: repeat(2, 1fr); }
      .service-grid { grid-template-columns: repeat(2, 1fr); }
      .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
      .location-grid, .founding-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 700px) {
      :root { --container: calc(100vw - 32px); }

      .about-head .columns { column-count: 1; }
      .usp-grid, .service-grid, .testimonial-grid { grid-template-columns: 1fr; }
      .pin-grid { grid-template-columns: 1fr; }
      .booking-form { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .location-visual { padding: 0 18px 46px 0; }
      .location-visual::before { display: none; }
      .banner strong { font-size: clamp(2.6rem, 13vw, 4.5rem); }
      .hero-trust span { font-size: 0.82rem; }
    }

    @media (prefers-reduced-motion: reduce) {
      * {
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
        animation-duration: 0.001ms !important;
      }
    }
  
    /* ---------- Subpage hero ---------- */
    .page-hero {
      position: relative;
      padding: clamp(56px, 7vw, 96px) 0 clamp(88px, 10vw, 130px);
    }

    .page-hero-media {
      position: absolute;
      inset: 0;
      z-index: -1;
      overflow: hidden;
      border-bottom-left-radius: clamp(28px, 6vw, 72px);
      background:
        linear-gradient(100deg, rgba(15, 18, 28, 0.78) 12%, rgba(15, 18, 28, 0.46) 58%, rgba(15, 18, 28, 0.64)),
        var(--page-img, url("../images/duesseldorf-hero.webp")) center / cover no-repeat;
      clip-path: polygon(0 0, 100% 0, 100% 76%, 78% 100%, 0 100%);
    }

    .breadcrumb {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 0 0 18px;
      color: rgba(255, 255, 255, 0.72);
      font-size: 0.9rem;
      font-weight: 600;
    }

    .breadcrumb a:hover { color: var(--white); }
    .breadcrumb strong { color: var(--white); font-weight: 700; }

    .page-hero h1 {
      margin: 0;
      max-width: 860px;
      color: var(--white);
      font-size: clamp(2.1rem, 1.4rem + 2.6vw, 3.4rem);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.01em;
      text-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    }

    .page-hero .lead-light {
      max-width: 720px;
      margin: 18px 0 0;
      color: rgba(255, 255, 255, 0.86);
      font-size: 1.08rem;
      text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
    }

    .page-hero .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 30px;
    }

    /* ---------- Trust band ---------- */
    .trust-band {
      padding: 22px 0;
      background: var(--white);
      border-bottom: 1px solid var(--line);
    }

    .trust-band .container {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 10px 18px;
      text-align: center;
      color: var(--eoz-navy);
      font-weight: 700;
    }

    .trust-band .stars { font-size: 1.05rem; }
    .trust-band span.muted { color: var(--text-muted); font-weight: 550; }

    /* ---------- Icon feature grid ---------- */
    .icon-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .icon-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

    .icon-box {
      display: grid;
      gap: 12px;
      align-content: start;
      padding: 26px 24px;
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      background: var(--white);
      transition: transform 180ms ease, box-shadow 180ms ease;
    }

    .icon-box:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-4px);
    }

    .icon-box .icon-bubble {
      display: grid;
      place-items: center;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      color: var(--white);
      background: var(--eoz-red);
    }

    .icon-box .icon-bubble .icon-svg { width: 23px; height: 23px; }
    .icon-box h3 { font-size: 1.06rem; }
    .icon-box p { margin: 0; color: var(--text-secondary); font-size: 0.94rem; }

    /* ---------- Pricing ---------- */
    .price-toggle-wrap { text-align: center; margin-bottom: 40px; }

    .price-toggle {
      display: inline-flex;
      padding: 5px;
      border: 1px solid var(--line);
      border-radius: 99px;
      background: var(--white);
      box-shadow: var(--shadow-sm);
    }

    .price-toggle button {
      min-height: 44px;
      padding: 0 24px;
      border: 0;
      border-radius: 99px;
      color: var(--text-secondary);
      background: transparent;
      font-weight: 700;
      cursor: pointer;
    }

    .price-toggle button.is-active {
      color: var(--white);
      background: var(--eoz-red);
    }

    .price-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 24px;
      align-items: stretch;
      max-width: 760px;
      margin-inline: auto;
    }

    .price-card {
      position: relative;
      display: flex;
      flex-direction: column;
      padding: 34px 28px 28px;
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      background: var(--white);
      box-shadow: var(--shadow-sm);
    }

    .price-card.is-featured {
      border-color: rgba(227, 6, 19, 0.55);
      box-shadow: var(--shadow-lg);
    }

    .badge-popular {
      position: absolute;
      top: -15px;
      left: 50%;
      transform: translateX(-50%);
      padding: 5px 16px;
      border-radius: 99px;
      color: var(--white);
      background: var(--eoz-red);
      font-size: 0.82rem;
      font-weight: 800;
      white-space: nowrap;
    }

    .price-card h3 { font-size: 1.3rem; }

    .price-card .price-for {
      margin: 6px 0 18px;
      color: var(--text-secondary);
      font-size: 0.92rem;
      min-height: 2.8em;
    }

    .price-value {
      color: var(--eoz-navy);
      font-size: 2.7rem;
      font-weight: 850;
      line-height: 1;
    }

    .price-value sub {
      bottom: 0;
      color: var(--text-muted);
      font-size: 1rem;
      font-weight: 600;
    }

    .price-note {
      margin: 8px 0 0;
      color: var(--text-muted);
      font-size: 0.84rem;
    }

    .check-list {
      display: grid;
      gap: 10px;
      margin: 22px 0 26px;
      padding: 0;
      list-style: none;
    }

    .check-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: var(--text-secondary);
      font-size: 0.94rem;
    }

    .check-list .icon-svg {
      width: 18px;
      height: 18px;
      margin-top: 3px;
      color: var(--eoz-red);
    }

    .price-card .button { margin-top: auto; }

    .price-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.95rem;
    }

    .price-table th,
    .price-table td {
      padding: 11px 8px;
      border-bottom: 1px solid var(--line);
      text-align: left;
      color: var(--text-secondary);
      vertical-align: top;
    }

    .price-table td:last-child,
    .price-table th:last-child {
      text-align: right;
      color: var(--eoz-navy);
      font-weight: 700;
      white-space: nowrap;
    }

    .price-table tr:last-child td { border-bottom: 0; }

    .addon-card {
      display: flex;
      flex-direction: column;
      gap: 14px;
      padding: 26px 24px;
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      background: var(--white);
    }

    .addon-card h3 { font-size: 1.1rem; }
    .addon-card .hint { margin: 0; color: var(--text-muted); font-size: 0.85rem; }

    .legal-note {
      max-width: 860px;
      margin: 36px auto 0;
      padding: 18px 22px;
      border: 1px solid var(--line);
      border-left: 4px solid var(--eoz-red);
      border-radius: var(--radius-sm);
      background: var(--white);
      color: var(--text-secondary);
      font-size: 0.92rem;
    }

    /* ---------- Contact ---------- */
    .contact-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .contact-card {
      display: grid;
      gap: 12px;
      justify-items: start;
      padding: 30px 26px;
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      background: var(--white);
      box-shadow: var(--shadow-sm);
    }

    .contact-card .icon-bubble {
      display: grid;
      place-items: center;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      color: var(--white);
      background: var(--eoz-red);
    }

    .contact-card .icon-bubble .icon-svg { width: 24px; height: 24px; }

    .contact-card a.value,
    .contact-card p.value {
      margin: 0;
      color: var(--eoz-navy);
      font-size: 1.05rem;
      font-weight: 750;
    }

    .contact-card a.value:hover { color: var(--eoz-red); }
    .contact-card .sub { margin: 0; color: var(--text-muted); font-size: 0.9rem; }

    /* ---------- Prose (legal pages) ---------- */
    .prose-section { padding-top: clamp(48px, 6vw, 80px); }

    .prose {
      max-width: 860px;
      margin-inline: auto;
      color: var(--text-secondary);
      font-size: 0.98rem;
    }

    .prose h2 {
      margin: 42px 0 14px;
      font-size: 1.45rem;
    }

    .prose h2:first-child { margin-top: 0; }
    .prose h3 { margin: 30px 0 10px; font-size: 1.15rem; }
    .prose h4 { margin: 24px 0 8px; color: var(--eoz-navy); font-size: 1.02rem; }
    .prose p { margin: 0 0 14px; }
    .prose ul, .prose ol { margin: 0 0 16px; padding-left: 22px; }
    .prose li { margin-bottom: 6px; }
    .prose a { color: var(--eoz-red); word-break: break-word; }
    .prose a:hover { text-decoration: underline; }

    .prose table {
      width: 100%;
      margin: 0 0 18px;
      border-collapse: collapse;
      font-size: 0.92rem;
    }

    .prose th, .prose td {
      padding: 9px 10px;
      border: 1px solid var(--line);
      text-align: left;
      vertical-align: top;
    }

    .prose th { color: var(--eoz-navy); background: var(--surface); }

    /* ---------- Final CTA ---------- */
    .cta-final {
      position: relative;
      padding: clamp(70px, 9vw, 110px) 0;
      color: var(--white);
      text-align: center;
      background:
        linear-gradient(110deg, rgba(20, 24, 36, 0.93), rgba(26, 31, 46, 0.85)),
        url("../images/duesseldorf-hero.webp") center / cover no-repeat;
    }

    .cta-final h2 { color: var(--white); max-width: 760px; margin-inline: auto; }

    .cta-final p {
      max-width: 640px;
      margin: 16px auto 0;
      color: rgba(255, 255, 255, 0.82);
    }

    .cta-final .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      justify-content: center;
      margin-top: 32px;
    }

    /* ---------- Success / confirmation ---------- */
    .success-card {
      max-width: 640px;
      margin-inline: auto;
      padding: clamp(34px, 5vw, 56px);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: var(--white);
      box-shadow: var(--shadow-md);
      text-align: center;
    }

    .success-card .icon-bubble {
      display: grid;
      place-items: center;
      width: 76px;
      height: 76px;
      margin: 0 auto 22px;
      border-radius: 50%;
      color: var(--white);
      background: var(--eoz-red);
    }

    .success-card .icon-bubble .icon-svg { width: 34px; height: 34px; }
    .success-card p { color: var(--text-secondary); }

    /* ---------- Booking page ---------- */
    .booking-layout {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
      gap: clamp(30px, 5vw, 64px);
      align-items: start;
    }

    .booking-layout .booking-card { margin-bottom: 0; }

    .info-stack { display: grid; gap: 16px; }

    @media (max-width: 1080px) {
      .icon-grid { grid-template-columns: repeat(2, 1fr); }
      .price-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
      .contact-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
      .booking-layout { grid-template-columns: 1fr; }
    }

    @media (max-width: 700px) {
      .icon-grid, .icon-grid.cols-2 { grid-template-columns: 1fr; }
      .page-hero .hero-actions .button { width: 100%; }
    }

    /* ---------- Cookie-Consent-Banner ---------- */
    .cookie-banner {
      position: fixed;
      right: 16px;
      bottom: 16px;
      left: 16px;
      z-index: 200;
      max-width: 460px;
      margin-left: auto;
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      background: var(--white);
      box-shadow: var(--shadow-lg);
    }

    .cookie-banner h3 {
      margin: 0 0 8px;
      font-size: 1.05rem;
    }

    .cookie-banner p {
      margin: 0 0 16px;
      color: var(--text-secondary);
      font-size: 0.9rem;
      line-height: 1.55;
    }

    .cookie-banner p a {
      color: var(--eoz-red);
      font-weight: 600;
    }

    .cookie-banner p a:hover { text-decoration: underline; }

    .cookie-banner .cookie-actions {
      display: grid;
      gap: 10px;
    }

    .cookie-banner .button { min-height: 44px; width: 100%; }

    /* ---------- Sprachumschalter ---------- */
    .lang-switch { position: relative; }

    .lang-switch .dropdown-button {
      gap: 6px;
      min-height: 42px;
      padding: 0 12px;
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      color: var(--text-secondary);
      background: var(--white);
      font-weight: 700;
      font-size: 0.9rem;
      text-transform: uppercase;
    }

    .lang-switch:hover .dropdown-button,
    .lang-switch .dropdown-button[aria-expanded="true"] {
      color: var(--eoz-red);
      border-color: rgba(227, 6, 19, 0.45);
    }

    .lang-switch .dropdown-menu {
      width: 180px;
      left: auto;
      right: 0;
      transform: translateY(8px);
    }

    .lang-switch:hover .dropdown-menu,
    .lang-switch:focus-within .dropdown-menu {
      transform: translateY(0);
    }

    .lang-switch .dropdown-menu a {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 11px 14px;
      color: var(--text-secondary);
      font-weight: 650;
    }

    .lang-switch .dropdown-menu a.is-active {
      color: var(--eoz-red);
      background: var(--eoz-red-soft);
    }

    .lang-switch .flag {
      font-size: 1.05rem;
      line-height: 1;
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .mobile-lang {
      display: flex;
      gap: 8px;
      margin-top: 6px;
      padding-top: 14px;
      border-top: 1px solid var(--line);
    }

    .mobile-lang a {
      flex: 1;
      padding: 10px 0;
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      text-align: center;
      font-weight: 700;
      font-size: 0.85rem;
      text-transform: uppercase;
      color: var(--text-secondary);
    }

    .mobile-lang a.is-active {
      color: var(--white);
      background: var(--eoz-red);
      border-color: var(--eoz-red);
    }

    @media (max-width: 1080px) {
      .lang-switch { display: none; }
    }

    /* ---------- Rechtstext-Disclaimer (EN/TR) ---------- */
    .legal-disclaimer {
      max-width: 860px;
      margin: 0 auto 30px;
      padding: 16px 22px;
      border: 1px solid rgba(227, 6, 19, 0.30);
      border-left: 4px solid var(--eoz-red);
      border-radius: var(--radius-sm);
      background: var(--eoz-red-soft);
      color: var(--text-secondary);
      font-size: 0.92rem;
      line-height: 1.6;
    }

    .legal-disclaimer strong { color: var(--eoz-navy); }
    .legal-disclaimer a { color: var(--eoz-red); font-weight: 600; }

    /* ---------- Meetergo-Terminbuchung ---------- */
    .meetergo-embed {
      max-width: 880px;
      margin: 0 auto;
      padding: clamp(14px, 2vw, 24px);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: var(--white);
      box-shadow: var(--shadow-md);
    }

    .meetergo-embed .meetergo-iframe {
      width: 100%;
      min-height: 640px;
    }

    .booking-info-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      max-width: 980px;
      margin: 0 auto clamp(34px, 4vw, 48px);
    }

    @media (max-width: 860px) {
      .booking-info-grid { grid-template-columns: 1fr; }
    }

    /* ---------- Footer-Credit (Synervia) ---------- */
    .footer-bottom .credit-link {
      color: rgba(255, 255, 255, 0.78);
      font-weight: 650;
    }

    .footer-bottom .credit-link:hover {
      color: var(--eoz-red);
    }
