:root {
        --red: #e3051a;
        --cream: #ffefcc;
        --ink: #020202;
        --mist: #f2f2f2;
        --pad: clamp(16px, 2.2vw, 26px);
        --max: 1100px;
        --headline: "Syne", system-ui, -apple-system, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;

        --grain-opacity: 0.07;
        --grain-scale: 320px;
        --grain-speed: 12s;
        --line: rgba(242, 242, 242, 0.12);
        --line-strong: rgba(242, 242, 242, 0.22);
      }

      * {
        box-sizing: border-box;
      }
      html,
      body {
        height: 100%;
      }
      body {
        margin: 0;
        background: var(--ink);
        color: var(--mist);
        font-family: "Space Grotesk", system-ui, -apple-system, Segoe UI, Roboto,
          "Helvetica Neue", Arial, sans-serif;
        -webkit-font-smoothing: antialiased;
        letter-spacing: 0.01em;
        overflow-x: hidden;
      }
      a {
        color: inherit;
        text-decoration: none;
      }
      img {
        max-width: 100%;
        display: block;
        height: auto;
      }
      :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);
      } /* zentral */

      h1,
      h2,
      h3,
      h4,
      h5,
      h6 {
        color: var(--red);
        font-family: var(--headline);
        font-weight: 800;
        letter-spacing: -0.01em;
        text-transform: uppercase;
        margin: 0 0 0.4em;
      }
      p {
        margin: 0 0 1em;
      }

      /* Grain BG (dezent) */
      .grain {
        position: fixed;
        inset: -20vmax;
        z-index: 1;
        pointer-events: none;
        opacity: var(--grain-opacity);
        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: var(--grain-scale) var(--grain-scale);
        animation: grainShift var(--grain-speed) steps(10) infinite;
      }
      @keyframes grainShift {
        to {
          transform: translate3d(-160px, -160px, 0);
        }
      }
      @media (prefers-reduced-motion: reduce) {
        .grain {
          animation: none;
        }
      }

      /* Header / Nav */
      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);
      }
      .nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px var(--pad);
      }
      .nav-toggle {
        display: none !important;
      }
      .brand {
        display: flex;
        gap: 10px;
        align-items: center;
      }
      .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--red);
        box-shadow: 0 0 0 4px rgba(227, 5, 26, 0.2);
      }
      .brand b {
        font-weight: 700;
        letter-spacing: 0.02em;
      }
      .nav-list {
        display: flex;
        gap: 22px;
        list-style: none;
        margin: 0;
        padding: 0;
      }
      .nav-list a {
        opacity: 0.9;
        transition: opacity 0.2s, color 0.2s;
      }
      .nav-list a:hover,
      .nav-list a.active {
        opacity: 1;
        color: var(--red);
      }
      .cta {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        border: 1px solid var(--line);
        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);
      }
     /* Basis – oben bei deinen Nav-Styles einfügen/ersetzen */
.nav-toggle{
  display:none;                 /* Desktop aus */
  width:44px; height:44px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,.02);
  color:var(--mist);            /* -> SVG stroke = sichtbar */
  cursor:pointer;
  display:grid; place-items:center;
}
.nav-toggle svg{ width:24px; height:24px; display:block; }

/* Mobil erzwingen (überschreibt evtl. ältere Regeln) */
@media (max-width:980px){
  .nav-list, .cta{ display:none !important; }
  .nav-toggle{ display:grid !important; }
}


      .nav-overlay {
        position: fixed;
        inset: 0;
        z-index: 80;
        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-menu {
        display: grid;
        gap: 18px;
        text-align: center;
        transform: translateY(12px);
        opacity: 0;
        transition: 0.4s;
      }
      .nav-overlay.open .nav-menu {
        transform: translateY(0);
        opacity: 1;
      }
      .nav-menu a {
       font-family: "Space Grotesk", system-ui, sans-serif !important;
        font-weight: 800 !important;
        font-weight: 700;
        letter-spacing: -0.01em;
        color: var(--mist);
        display: inline-block;
      }
      .nav-close {
        position: absolute;
        top: 18px;
        right: 18px;
        width: 38px;
        height: 38px;
        border: 1px solid rgba(242, 242, 242, 0.25);
        border-radius: 999px;
        display: grid;
        place-items: center;
      }

      /* Sections */
      main {
        position: relative;
        z-index: 2;
      }
      section {
        padding: 72px 0;
      }
      .muted {
        opacity: 0.85;
      }

      /* Hero */
      .hero {
        position: relative;
        min-height: 86vh;
        display: flex;
        align-items: center;
        text-align: center;
        justify-content: center;
        padding: 16vh 0 10vh;
        overflow: hidden;
      
      }
      .hero::before {
        content: "";
        position: absolute;
        inset: -25vh -10vw 25% -10vw;
        z-index: -1;
        filter: blur(60px);
        opacity: 0.9;
        background: radial-gradient(
            40% 60% at 20% 30%,
            rgba(227, 5, 26, 0.22),
            transparent 60%
          ),
          radial-gradient(
            30% 40% at 80% 35%,
            rgba(255, 239, 204, 0.12),
            transparent 70%
          );
      }
    
      .hero-sub {
        font-size: clamp(16px, 2.6vw, 20px);
        letter-spacing: 0.22em;
        text-transform: uppercase;
        opacity: 0.85;
        margin-bottom: 10px;
      }
      .hero-title {
        font-size: clamp(46px, 9.5vw, 108px);
        line-height: 0.82;
        margin: 0;
      }
      .hero-intro {
        max-width: 60ch;
        margin: 18px auto 0;
        opacity: 0.92;
      }
      .actions {
        margin-top: 26px;
        display: flex;
        gap: 12px;
        justify-content: center;
        flex-wrap: wrap;
      }
      .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 22px;
        border-radius: 14px;
        border: 1px solid var(--bd);
        background: var(--bg);
        color: var(--fg);
        text-transform: uppercase;
        font-weight: 700;
        letter-spacing: 0.05em;
        transition: 0.25s transform, 0.25s background-color, 0.25s border-color;
      }
      .btn:hover {
        transform: translateY(-2px);
      }
      .btn.primary {
        --bg: var(--red);
        --bd: transparent;
        --fg: #fff;
      }
      .btn.line {
        --bg: transparent;
      }

      /* Avant-garde Modules (ohne Cards) */
      .module {
        padding: 18px 0;
        border-top: 1px solid var(--line);
        display: grid;
        grid-template-columns: 0.25fr 1fr;
        gap: 18px;
        align-items: start;
        position: relative;
        z-index: 1;
      }
      .module:last-child {
        border-bottom: 1px solid var(--line);
      }
      .module .no {
        font-family: var(--headline);
        font-weight: 800;
        font-size: clamp(22px, 5vw, 42px);
        line-height: 1;
        opacity: 0.9;
      }
      .module h3 {
        margin: 0.1em 0 0.2em;
        font-size: clamp(22px, 3vw, 28px);
      }
      @media (max-width: 720px) {
        .module {
          grid-template-columns: 1fr;
        }
        .module .no {
          order: -1;
        }
      }

      @media (max-width: 768px) {
     h1 {
      font-size: 32px !important;
     }
      }

      /* Steps */
      .steps-wrap {
        position: relative;
        z-index: 2;
        background: transparent;
      }
      .timeline {
        position: relative;
        margin-top: 12px;
      }
      .timeline::before {
        content: "";
        position: absolute;
        left: 16px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: var(--line-strong);
      }
      .tl-item {
        position: relative;
        padding: 18px 0 18px 52px;
      }
      .tl-item::before {
        content: "";
        position: absolute;
        left: 8px;
        top: 24px;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: radial-gradient(circle at 30% 30%, #fff, #ccc);
        box-shadow: 0 0 0 4px rgba(227, 5, 26, 0.18);
      }
      .tl-item h3 {
        margin: 0 0 6px 0;
      }

      /* GELBE SECTION (statisch) */
      .yellow {
        background: var(--cream);
        color: var(--ink);
        border-block: 1px solid rgba(0, 0, 0, 0.12);
      }
      .yellow h2,
      .yellow h3 {
        color: var(--ink);
      }
      .yellow .wrap {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 24px;
        align-items: end;
      }
      @media (max-width: 980px) {
        .yellow .wrap {
          grid-template-columns: 1fr;
        }
      }
      .yellow-copy {
        font-size: clamp(20px, 2.1vw, 32px);
        line-height: 1.3;
        margin: 0;
      }
      .yellow-copy b {
        color: var(--red);
      }
      .yellow-links {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 10px;
      }
      .yellow-links a {
        border: 1px solid rgba(0, 0, 0, 0.18);
        border-radius: 999px;
        padding: 10px 14px;
        color: var(--ink);
      }
      .yellow-links a:hover {
        background: rgba(0, 0, 0, 0.06);
      }

      /* Case */
      .case {
        margin-top: 18px;
        position: relative;
        overflow: hidden;
        border: 1px solid var(--line);
        border-radius: 16px;
      }
      .case figure {
        margin: 0;
        aspect-ratio: 16/9;
        background: #0c0c0c;
      }
      .case img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      .case .caption {
        position: absolute;
        left: 0;
        bottom: 0;
        background: linear-gradient(
          135deg,
          rgba(227, 5, 26, 0.9),
          rgba(227, 5, 26, 0.55)
        );
        padding: 10px 18px;
        color: #fff;
        font-weight: 700;
        letter-spacing: 0.02em;
        border-top-right-radius: 12px;
      }

      /* Region chips */
      .compass {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
        opacity: 0.85;
      }
      .compass svg {
        width: 18px;
        height: 18px;
      }
      .chips {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
      }
      .chip {
        border: 1px solid var(--line);
        border-radius: 999px;
        padding: 8px 12px;
        font-size: 14px;
        opacity: 0.95;
      }
      .chip:hover {
        border-color: var(--line-strong);
      }

      /* Testimonials (statisch, kein Marquee) */
      .testimonials {
        border-block: 1px solid var(--line);
        background: radial-gradient(
          80% 120% at 50% -10%,
          rgba(227, 5, 26, 0.08),
          transparent 60%
        );
      }
      .quotes {
        display: grid;
        gap: 14px;
      }
      .quote {
        opacity: 0.9;
        font-style: italic;
      }
      .dash {
        opacity: 0.35;
      }

      /* CTA Pass-Through (führt zur Startseite/#kontakt) */
      .pass-cta {
        border-top: 1px solid var(--line);
        background: radial-gradient(
            120% 100% at 50% -10%,
            rgba(227, 5, 26, 0.15),
            transparent 40%
          ),
          #0a0a0a;
        text-align: center;
      }
      .pass-cta .wrap {
        max-width: 820px;
      }
      .pass-cta .btn {
        margin-top: 8px;
      }
      .pass-cta p {
        opacity: 0.9;
      }

      footer {
        bottom: 0;
        z-index: 4;
        background-color: #ffefcc;
      }
      .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;
        color: var(--ink);
      }
      .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;
      }