  :root {
        --red: #e3051a;
        --cream: #ffefcc;
        --ink: #020202;
        --mist: #f2f2f2;
        --pad: clamp(16px, 2.2vw, 28px);
        --max: 1200px;
        --headline-font: "Syne", system-ui, sans-serif;
        --line: rgba(242, 242, 242, 0.12);
      }
      * {
        box-sizing: border-box;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        margin: 0;
        font-family: "Space Grotesk", system-ui, sans-serif;
        color: var(--mist);
        background: var(--ink);
        letter-spacing: 0.01em;
      }
      a {
        color: inherit;
        text-decoration: none;
        transition: color 0.2s;
      }
      a:hover {
        color: var(--red);
      }
      img {
        max-width: 100%;
        height: auto;
        display: block;
      }
      :focus-visible {
        outline: 2px solid var(--cream);
        outline-offset: 3px;
        border-radius: 4px;
      }
      .wrap {
        width: min(100%, var(--max));
        margin: 0 auto;
        padding: 0 var(--pad);
      }

      h1,
      h2,
      h3,
      h4,
      h5,
      h6 {
        color: var(--red) !important;
        font-family: var(--headline-font);
        text-transform: uppercase;
      }
      .blur-title {
        position: relative;
        display: inline-block;
      }
      .blur-title::after {
        content: attr(data-text);
        position: absolute;
        inset: 0;
        filter: blur(10px);
        opacity: 0.3;
        color: var(--red);
        pointer-events: none;
      }

      .grain {
        position: fixed;
        inset: -20vmax;
        z-index: 1;
        pointer-events: none;
        opacity: 0.06;
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="160" height="160"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23n)"/></svg>');
        background-size: 320px 320px;
        animation: grainShift 12s steps(10) infinite;
      }
      @keyframes grainShift {
        100% {
          transform: translate3d(-160px, -160px, 0);
        }
      }

      header {
        position: sticky;
        top: 0;
        z-index: 60;
        background: linear-gradient(
          180deg,
          rgba(2, 2, 2, 0.9),
          rgba(2, 2, 2, 0.6) 70%,
          rgba(2, 2, 2, 0)
        );
        backdrop-filter: saturate(1.1) blur(8px);
      }
      main {
        position: relative;
        z-index: 5;
        background: var(--ink);
        overflow: clip;
      }

      .nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px var(--pad);
        background: black;
      }
      .brand {
        display: flex;
        gap: 10px;
        align-items: center;
        font-weight: 700;
      }
      .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--red);
        box-shadow: 0 0 0 4px rgba(227, 5, 26, 0.2);
      }
      .nav-list {
        display: flex;
        gap: 22px;
        list-style: none;
        margin: 0;
        padding: 0;
      }
      .nav-list a:hover,
      .nav-list a.active {
        color: var(--red);
      }
      .cta {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        border: 1px solid rgba(242, 242, 242, 0.16);
        padding: 10px 14px;
        border-radius: 999px;
        transition: 0.25s transform, 0.25s background-color;
      }
      .cta:hover {
        transform: translateY(-1px);
        background: rgba(255, 239, 204, 0.06);
      }
      /* === MOBILE NAV === */
      @media (min-width: 981px) {
        .nav-list {
          display: flex !important;
        }
        .cta {
          display: inline-flex !important;
        }
        .nav-toggle {
          display: none !important;
        }
      }

      /* Robustheit im Header-Layout */
      .nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap; /* verhindert, dass die Liste wegbricht */
        min-height: 64px; /* „kürzerer Header“ bleibt stabil */
      }
      .nav > nav {
        flex: 0 1 auto;
      } /* Standard, verhindert Überdehnung */
      .nav-toggle {
        display: none;
        width: 44px;
        height: 44px;
        border: 1px solid rgba(242, 242, 242, 0.16);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.02);
        color: var(--mist);
        cursor: pointer;
      }
      .nav-toggle svg {
        display: block;
      }
      @media (max-width: 980px) {
        .nav-list,
        .cta {
          display: none;
        }
        .nav-toggle {
          display: grid;
          place-items: center;
        }
      }

      .nav-overlay {
        position: fixed;
        inset: 0;
        z-index: 1100;
        display: grid;
        place-items: center;
        background: radial-gradient(
            120% 100% at 50% -10%,
            rgba(227, 5, 26, 0.22),
            transparent 40%
          ),
          rgba(2, 2, 2, 0.94);
        backdrop-filter: blur(12px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.35s ease;
      }
      .nav-overlay.open {
        opacity: 1;
        pointer-events: auto;
      }

      .nav-close {
        position: absolute;
        top: 16px;
        right: 16px;
        width: 44px;
        height: 44px;
        display: grid;
        place-items: center;
        border: 1px solid rgba(242, 242, 242, 0.25);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.02);
        color: var(--mist);
      }
      .nav-close svg {
        width: 22px;
        height: 22px;
      }

      .nav-menu {
        display: grid;
        gap: 22px;
        text-align: center;
        transform: translateY(12px);
        opacity: 0;
        transition: 0.35s ease;
      }
      .nav-overlay.open .nav-menu {
        transform: none;
        opacity: 1;
      }
      .nav-menu a {
        font-family: "Space Grotesk", system-ui, sans-serif !important;
        font-weight: 800 !important;
        font-size: clamp(28px, 8vw, 64px);
        letter-spacing: -0.01em;
        color: var(--mist);
      }

      .noscroll {
        overflow: hidden;
        height: 100%;
      }
      @media (max-width: 980px) {
        .nav-list,
        .cta {
          display: none;
        }
        .nav-toggle {
          display: block;
          background: transparent;
          border: 0;
          cursor: pointer;
        }
      }

      @media (max-width: 768px) {
        h1 {
          font-size: 35px !important;
        }
      }

      section {
        padding: clamp(50px, 8vw, 100px) 0;
      }

      .btn {
        --bg: rgba(255, 239, 204, 0.08);
        --bd: rgba(242, 242, 242, 0.15);
        --fg: var(--mist);
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 24px;
        border-radius: 14px;
        border: 1px solid var(--bd);
        background: var(--bg);
        color: var(--fg);
        transition: 0.25s transform, 0.25s background-color, 0.25s border-color;
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 0.05em;
      }
      .btn:hover {
        transform: translateY(-2px);
      }
      .btn.primary {
        --bg: var(--red);
        --bd: transparent;
        --fg: #fff;
      }

      .breadcrumbs {
        padding-top: 120px;
        padding-bottom: 10px;
        border-bottom: 1px solid var(--line);
        font-size: 0.9rem;
        opacity: 0.8;
      }
      .breadcrumbs a {
        text-decoration: underline;
      }

      .hero {
        min-height: 90vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        position: relative;
        isolation: isolate;
        padding: 10vh var(--pad);
      }
      #hero-canvas {
        position: absolute;
        inset: 0;
        z-index: -1;
        opacity: 0.3;
      }
      .hero h1 {
        font-size: clamp(3rem, 8vw, 6.5rem);
        line-height: 1;
        min-height: 1.2em;
      }
      .hero p {
        max-width: 50ch;
        margin: 1rem auto 1.5rem;
        opacity: 0.9;
      }

      .section-head {
        margin-bottom: 2rem;
        max-width: 65ch;
      }

      .process-accordion details {
        border-bottom: 1px solid var(--line);
        padding: 1rem 0;
      }
      .process-accordion summary {
        cursor: pointer;
        list-style: none;
        display: flex;
        align-items: center;
        gap: 1.5rem;
        font-size: clamp(1.5rem, 3vw, 2.5rem);
        font-family: var(--headline-font);
        text-transform: uppercase;
        padding: 0.5rem 0;
      }
      .process-accordion summary::-webkit-details-marker {
        display: none;
      }
      .process-accordion .step-num {
        color: var(--mist);
        opacity: 0.4;
        font-size: 1rem;
        font-family: "Space Grotesk", sans-serif;
      }
      .process-accordion .answer {
        padding: 1rem 0 1rem 4.5rem;
        opacity: 0.9;
      }

      .deliverables-list {
        list-style: none;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1rem;
      }
      .deliverables-list li {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        background: #0a0a0a;
        padding: 1.25rem;
        border-radius: 12px;
        border: 1px solid var(--line);
      }
      .deliverables-list .icon {
        color: var(--red);
        font-weight: bold;
        font-size: 1.5rem;
      }

      #faq details {
        border-bottom: 1px solid var(--line);
        padding: 1rem 0;
      }
      #faq summary {
        cursor: pointer;
        list-style: none;
        position: relative;
        padding-right: 2rem;
        font-size: clamp(16px, 1.8vw, 20px);
        font-weight: 500;
      }
      #faq summary::after {
        content: "+";
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        color: var(--red);
        font-weight: 800;
        font-size: 1.5rem;
        transition: transform 0.2s;
      }
      #faq details[open] summary::after {
        content: "–";
        transform: translateY(-50%) rotate(180deg);
      }
      #faq .answer {
        padding-top: 0.5rem;
        max-width: 65ch;
        opacity: 0.9;
        line-height: 1.7;
      }

      .card-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
      }
      .card-special {
        background-color: rgba(255, 255, 255, 0.02);
        border: 1px solid var(--line);
        border-radius: 16px;
        padding: 1.5rem;
        position: relative;
        overflow: hidden;
        transition: transform 0.4s ease, box-shadow 0.4s ease;
      }
      .card-special:hover {
        border-color: rgba(242, 242, 242, 0.25);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      }
      .card-special::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(
          300px circle at var(--mouse-x) var(--mouse-y),
          rgba(227, 5, 26, 0.15),
          transparent 80%
        );
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: 1;
      }
      .card-special:hover::before {
        opacity: 1;
      }
      .card-content {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        height: 100%;
      }
      .card-icon {
        width: 40px;
        height: 40px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: rgba(227, 5, 26, 0.1);
        color: var(--red);
        margin-bottom: 1rem;
      }
      .card-special h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
      }
      .card-special p {
        font-size: 1rem;
        opacity: 0.8;
        line-height: 1.6;
        margin-bottom: 1rem;
        flex-grow: 1;
      }
      .card-link {
        display: inline-block;
        font-weight: 700;
        color: var(--mist);
        margin-top: auto;
      }
      .card-special:hover .card-link span {
        display: inline-block;
        transform: translateX(5px);
        transition: transform 0.2s ease;
      }

      .cta-section {
        text-align: center;
        background: #0a0a0a;
        border-radius: 16px;
        border: 1px solid var(--line);
      }
      .cta-section p {
        max-width: 50ch;
        margin: 1rem auto 1.5rem;
      }

      /* ===== Footer (Basis) ===== */
      footer {
        position: sticky;
        bottom: 0;
        z-index: 4;
        background: var(--ink);
      }
      .footer-content.wrap {
        width: 100%;
        max-width: 100%;
        padding-left: var(--pad);
        padding-right: var(--pad);
      }
      .footer-content {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        gap: clamp(26px, 6vw, 64px);
        padding: 56px var(--pad);
      }
      .footer-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 18px;
      }
      .newsletter-form {
        display: flex;
        align-items: center;
        gap: 12px;
        flex-grow: 1;
        min-width: 280px;
      }
      .newsletter-form input {
        background: transparent;
        border: none;
        border-bottom: 1px solid var(--mist);
        color: var(--mist);
        padding: 10px 0;
        font-size: 15px;
        width: 100%;
        max-width: 280px;
      }
      .footer-links {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 18px;
        width: 100%;
        font-size: 14px;
        line-height: 1.8;
      }
      .footer-logo {
        text-align: center;
        width: 100%;
        color: var(--red);
      }
      .footer-logo .logo-the {
        font-family: "Playfair Display", serif;
        font-style: italic;
        font-weight: 600;
        font-size: clamp(32px, 10vw, 96px);
      }
      .footer-logo .logo-atelier {
        font-family: "Space Grotesk", sans-serif;
        font-weight: 700;
        font-size: clamp(44px, 16vw, 140px);
        letter-spacing: -0.02em;
        margin-left: 8px;
      }
      .footer-credits {
        width: 100%;
        font-size: 12px;
        opacity: 0.7;
        border-top: 1px solid rgba(242, 242, 242, 0.12);
        padding-top: 16px;
        color: var(--mist);
        display: flex;
        justify-content: space-between;
        gap: 12px;
        flex-wrap: wrap;
      }

      /* ===== Cream-Theme für eine Sektion ===== */
      .section--cream {
        background: var(--cream);
        color: var(--ink);
      }
      .section--cream h1,
      .section--cream h2,
      .section--cream h3,
      .section--cream h4,
      .section--cream h5,
      .section--cream h6 {
        color: var(--ink) !important;
      }
      .section--cream a {
        color: var(--ink);
        text-decoration: none;
      }
      .section--cream a:hover {
        color: var(--red);
        text-decoration: underline;
      }
      .section--cream .deliverables-list li {
        background: rgba(0, 0, 0, 0.04);
        border: 1px solid rgba(0, 0, 0, 0.12);
        color: var(--ink);
      }
      .section--cream .deliverables-list .icon {
        color: var(--red);
      }
      .section--cream .section-head {
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        padding-bottom: 0.5rem;
        margin-bottom: 1.5rem;
      }
      .section--cream .btn {
        --fg: var(--ink);
        --bd: rgba(0, 0, 0, 0.18);
        --bg: rgba(0, 0, 0, 0.04);
      }
      .section--cream .btn.primary {
        --bg: var(--ink);
        --fg: #fff;
        --bd: transparent;
      }

      /* ===== Footer in Cream ===== */
      footer.footer--cream {
        background: var(--cream);
        color: var(--ink);
      }
      footer.footer--cream a {
        color: var(--ink);
      }
      footer.footer--cream a:hover {
        color: var(--red);
      }
      footer.footer--cream .newsletter-form input {
        border-bottom: 1px solid var(--ink);
        color: var(--ink);
      }
      footer.footer--cream .footer-credits {
        color: var(--ink);
        border-top: 1px solid rgba(0, 0, 0, 0.12);
      }
      footer.footer--cream .back-to-top a {
        color: var(--ink);
      }
      footer.footer--cream .back-to-top a:hover {
        color: var(--red);
      }