  :root {
    /* 45% Background */
    --color-bg:           #000000;
    --color-surface:      #0E0E0E;
    --color-surface-hover: #161616;

    /* 30% Text */
    --color-text:         #FAF7F2;
    --color-text-soft:    #B8B2A6;

    /* 15% Brand Anchor */
    --wine-500:           #A0202E;
    --wine-400:           #C2384A;
    --wine-700:           #7A1822;

    /* 10% Action */
    --blue-500:           #3D7A9C;
    --blue-400:           #5293B5;
    --blue-soft:          rgba(61, 122, 156, 0.12);

    /* Borders */
    --color-border:       rgba(250, 247, 242, 0.10);
    --color-border-soft:  rgba(250, 247, 242, 0.05);

    /* Atmosphere — decorative gradient layers, never semantic */
    --atmosphere-wine:    rgba(160, 32, 46, 0.20);
    --atmosphere-blur:    80px;

    /* Type */
    --font-serif: 'Fraunces', Georgia, serif;
    --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Type Scale */
    --fs-xs: 11px;
    --fs-sm: 14px;
    --fs-base: 16px;
    --fs-lg: 18px;
    --fs-xl: 20px;
    --fs-2xl: 24px;
    --fs-3xl: 36px;
    --fs-4xl: 56px;

    /* Spacing */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 24px;
    --space-6: 32px;
    --space-7: 48px;
    --space-8: 64px;
    --space-9: 96px;
    --space-10: 128px;

    /* Layout */
    --container-max: 1100px;
    --container-pad-x: 32px;
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;

    /* Motion */
    --duration-fast: 150ms;
    --duration-base: 240ms;
    --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-sans);
    font-size: var(--fs-base);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  a { color: var(--blue-500); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; transition: color var(--duration-fast) var(--ease-out); }
  a:hover { color: var(--blue-400); text-decoration-thickness: 2px; }

  h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; }
  h1 { font-size: var(--fs-4xl); line-height: 1.05; letter-spacing: -0.02em; }
  h2 { font-size: var(--fs-3xl); color: var(--wine-500); }
  h3 { font-size: var(--fs-2xl); }
  h4 { font-size: var(--fs-xl); }

  img { max-width: 100%; height: auto; display: block; }

  :focus-visible { outline: 2px solid var(--blue-500); outline-offset: 2px; border-radius: 2px; }

  svg { display: inline-block; vertical-align: middle; }
  svg.icon { width: 16px; height: 16px; flex-shrink: 0; }

  .container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-pad-x); }

  /* Button-Klassen */
  .btn {
    display: inline-flex; align-items: center; gap: var(--space-2);
    padding: 14px 22px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: var(--fs-sm);
    border-radius: var(--radius-md);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: background var(--duration-fast) var(--ease-out),
                border-color var(--duration-fast) var(--ease-out),
                color var(--duration-fast) var(--ease-out),
                transform var(--duration-fast) var(--ease-out);
    text-decoration: none;
  }
  .btn--primary { background: var(--blue-500); color: var(--color-text); }
  .btn--primary:hover { background: var(--blue-400); transform: translateY(-1px); }
  .btn--secondary { background: transparent; color: var(--wine-500); border-color: var(--wine-500); }
  .btn--secondary:hover { background: var(--wine-500); color: var(--color-text); }
  .btn--ghost { background: transparent; color: var(--color-text); border-color: var(--color-border); }
  .btn--ghost:hover { background: var(--color-surface-hover); border-color: var(--color-text-soft); }

  /* Eyebrow */
  .eyebrow { font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--wine-500); display: inline-flex; align-items: center; gap: var(--space-2); }
  .eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--wine-500); }

  /* ═══════════════════════════════════════════════════════════
     TOP-BAR
     ═══════════════════════════════════════════════════════════ */
  .topbar-meta {
    background: var(--wine-500);
    color: rgba(250, 247, 242, 0.75);
    font-size: var(--fs-xs);
  }
  .topbar-meta__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--space-2) var(--container-pad-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-5);
  }
  .topbar-meta__left {
    display: flex;
    align-items: center;
    gap: var(--space-5);
  }
  .topbar-meta__item {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: rgba(250, 247, 242, 0.75);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--duration-fast) var(--ease-out);
  }
  .topbar-meta__item:hover { color: var(--color-text); }
  .topbar-meta__item .icon { width: 14px; height: 14px; }
  .topbar-meta__right {
    display: flex;
    align-items: center;
    gap: var(--space-5);
    color: rgba(250, 247, 242, 0.75);
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .topbar-meta__right a {
    color: rgba(250, 247, 242, 0.75);
    text-decoration: none;
    transition: color var(--duration-fast) var(--ease-out);
  }
  .topbar-meta__right a:hover {
    color: var(--color-text);
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  @media (max-width: 720px) {
    .topbar-meta__right { display: none; }
    .topbar-meta__left { gap: var(--space-4); }
  }

  .topbar {
    position: sticky; top: 0; z-index: 50;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 -8px 24px -4px rgba(0, 0, 0, 0.45);
    transition: background var(--duration-base) var(--ease-out),
                box-shadow var(--duration-base) var(--ease-out);
  }
  .topbar.is-scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 -8px 24px -4px rgba(0, 0, 0, 0.45),
                0 4px 24px rgba(0, 0, 0, 0.5);
  }
  .topbar__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--space-4) var(--container-pad-x);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: var(--space-5);
  }
  .topbar__inner > .logo { justify-self: start; }
  .topbar__inner > .nav-pill { justify-self: center; }
  .topbar__inner > .nav-toggle { justify-self: end; }
  /* Mobile: Pill verschwindet → einfaches Flex mit Logo links, Hamburger ganz rechts. */
  @media (max-width: 720px) {
    .topbar__inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
  }

  .logo {
    display: inline-flex;
    align-items: stretch;
    gap: var(--space-3);
    text-decoration: none;
  }
  .logo__oj {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 38px;
    line-height: 0.85;
    letter-spacing: -0.04em;
    color: var(--wine-500);
    display: inline-block;
  }
  .logo__oj .j {
    font-style: italic;
    margin-left: -0.08em;
  }
  .logo__bar {
    width: 1px;
    background: rgba(250, 247, 242, 0.4);
    align-self: stretch;
    margin: 4px 0;
  }
  .logo__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: var(--fs-xs);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-text);
    line-height: 1.2;
  }
  @media (max-width: 600px) {
    .logo__oj { font-size: 32px; }
  }

  /* ─── Pill-Nav mit gleitendem Cursor ─────────────────────
     Dunkle Pille, heller Border. Animierter Hover-Cursor
     (helle Pille) gleitet zum gehoverten Item. mix-blend-
     difference invertiert den Text dort, wo der Cursor liegt. */
  .nav-pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 4px;
    margin: 0;
    list-style: none;
    background: rgba(14, 14, 14, 0.85);
    border: 1.5px solid rgba(250, 247, 242, 0.14);
    border-radius: 999px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .nav-pill__item {
    position: relative;
    z-index: 1;
    display: block;
  }
  .nav-pill__item a {
    display: block;
    padding: 8px 18px;
    font-family: var(--font-sans);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text);
    text-decoration: none;
    white-space: nowrap;
    border-radius: 999px;
    transition: color 240ms var(--ease-out);
  }
  /* Beim Hover: Text wird dunkel, gut sichtbar auf dem hellen Cursor */
  .nav-pill__item:hover a,
  .nav-pill__item:focus-within a {
    color: var(--color-bg);
  }
  /* Der gleitende Cursor — eigene Pill, die per JS positioniert wird */
  .nav-pill__cursor {
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 0;
    width: 0;
    background: var(--color-text);
    border-radius: 999px;
    z-index: 0;
    opacity: 0;
    transition:
      left 320ms cubic-bezier(0.4, 0, 0.2, 1),
      width 320ms cubic-bezier(0.4, 0, 0.2, 1),
      opacity 240ms ease;
    pointer-events: none;
    list-style: none;
  }
  @media (max-width: 720px) {
    .nav-pill { display: none; }
  }

  /* Hamburger-Toggle — nur im Handy-Modus sichtbar */
  .nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid rgba(250, 247, 242, 0.18);
    color: var(--color-text);
    padding: 0;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background var(--duration-fast) var(--ease-out),
                border-color var(--duration-fast) var(--ease-out),
                transform var(--duration-fast) var(--ease-out);
  }
  .nav-toggle:hover,
  .nav-toggle:focus-visible {
    background: var(--color-surface-hover);
    border-color: rgba(250, 247, 242, 0.30);
  }
  .nav-toggle:active { transform: scale(0.94); }
  .nav-toggle[aria-expanded="true"] {
    background: var(--color-surface-hover);
    border-color: rgba(250, 247, 242, 0.30);
  }
  @media (max-width: 720px) {
    .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  }
  /* Icon-Swap: X im offenen Zustand */
  .nav-toggle__close { display: none; }
  .nav-toggle[aria-expanded="true"] .nav-toggle__open { display: none; }
  .nav-toggle[aria-expanded="true"] .nav-toggle__close { display: block; }

  /* ─── Mobile-Drawer ────────────────────────────────────── */
  .nav-mobile {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 49;
    background: rgba(14, 14, 14, 0.98);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    padding: calc(var(--space-9) + 64px) var(--container-pad-x) var(--space-8);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    animation: nav-mobile-fade 0.28s cubic-bezier(0.25, 0.4, 0.25, 1);
  }
  .nav-mobile[hidden] { display: none; }
  @keyframes nav-mobile-fade {
    0%   { opacity: 0; transform: translateY(-8px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  .nav-mobile__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
  }
  .nav-mobile__list a,
  .nav-mobile__list a:link,
  .nav-mobile__list a:visited {
    display: block;
    padding: var(--space-4) var(--space-2);
    font-family: var(--font-serif);
    font-size: var(--fs-2xl);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-text);
    text-decoration: none;
    border-bottom: 1px solid rgba(250, 247, 242, 0.08);
    -webkit-tap-highlight-color: transparent;
    transition: color var(--duration-fast) var(--ease-out),
                padding-left var(--duration-fast) var(--ease-out);
  }
  /* Hover-Akzent nur auf Geräten mit echter Maus — keine kleben­den :hover-States auf Touch. */
  @media (hover: hover) {
    .nav-mobile__list a:hover {
      color: var(--wine-300);
      padding-left: var(--space-3);
    }
  }
  .nav-mobile__list a:focus-visible {
    outline: 2px solid var(--wine-500);
    outline-offset: 4px;
    border-radius: 4px;
  }
  /* Aktiver Tap-Feedback: kurz Wine-Glow, dann zurück */
  .nav-mobile__list a:active {
    color: var(--wine-300);
  }
  .nav-mobile__cta {
    margin-top: auto;
    padding-top: var(--space-7);
  }
  .nav-mobile__cta .btn {
    width: 100%;
    height: 56px;
    font-size: var(--fs-base);
  }
  /* Über 720px nie anzeigen */
  @media (min-width: 721px) {
    .nav-mobile { display: none !important; }
  }
  /* Body-Scroll sperren, wenn Drawer offen ist */
  body.nav-mobile-open { overflow: hidden; }

  /* ─── Generic Section Layout ──────────────────────────── */
  .section {
    padding: var(--space-9) 0 var(--space-8);
  }
  .section--alt { background: var(--color-surface-alt); }
  .section--surface { background: var(--color-surface); }
  .section__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad-x);
  }
  .section__header {
    max-width: 720px;
    margin-bottom: var(--space-7);
  }
  .section__title {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: clamp(var(--fs-3xl), 4.5vw, var(--fs-4xl));
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 var(--space-5);
    max-width: 22ch;
  }
  .section__title em {
    font-style: italic;
    color: var(--color-accent);
    font-weight: 500;
  }
  .section__lead {
    font-size: var(--fs-lg);
    line-height: 1.55;
    color: var(--color-text-muted);
    max-width: 56ch;
    margin: 0;
  }
  .eyebrow {
    display: inline-flex; align-items: center; gap: var(--space-2);
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--color-text-muted);
    letter-spacing: 0.04em;
    text-transform: none;
    margin: 0 0 var(--space-5);
  }
  .eyebrow .dot {
    width: 8px; height: 8px;
    background: var(--wine-500);
    border-radius: var(--radius-full);
    box-shadow: 0 0 0 4px rgba(160, 32, 46, 0.18);
  }

  @media (max-width: 720px) {
    .section { padding: var(--space-7) 0; }
  }

  /* ═════════════════════════════════════════════════
     Hero — BackgroundPaths-Stil nach kokonutd
     Fließende SVG-Kurven im Hintergrund, Letter-by-Letter
     Titel, Glassmorphism-CTA. OJ-Brand-Farben (Wine + Blue).
     ═════════════════════════════════════════════════ */
  .hero {
    position: relative;
    min-height: 100vh;
    padding: var(--space-10) 0 var(--space-9);
    overflow: hidden;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg);
  }

  /* Sanfter atmosphärischer Glow — sehr zurückhaltend, der Star
     sind die Pfade. */
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 70% 50% at 50% 100%, rgba(61, 122, 156, 0.10) 0%, transparent 60%),
      radial-gradient(ellipse 60% 40% at 50% 0%,   rgba(160, 32, 46, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
  }

  /* SVG-Pfade-Layer — füllt den Hero komplett, sitzt hinter dem
     Content, ignoriert Mausevents. */
  .hero__paths {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
  }
  .hero__paths svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    color: var(--color-text); /* currentColor für die Stroke-Linien */
  }
  .hero__paths path {
    fill: none;
    stroke: currentColor;
    /* Die Linien fließen an: pathLength von 0.3 → 1 wird via
       stroke-dasharray + dashoffset simuliert. */
    stroke-dasharray: 2000 2000;
    animation: path-flow var(--dur, 25s) linear infinite;
  }

  /* Pfad-Flow — Offset bewegt das Sichtbarkeitsfenster entlang
     des Pfades, Opacity pulsiert sanft. */
  @keyframes path-flow {
    0%   { stroke-dashoffset: 2000; opacity: 0.3; }
    50%  { stroke-dashoffset: 0;    opacity: 0.6; }
    100% { stroke-dashoffset: -2000; opacity: 0.3; }
  }

  /* Boden-Fade — sanfter Übergang zum nächsten Block */
  .hero__bottom-fade {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 180px;
    background: linear-gradient(to bottom, transparent, var(--color-bg) 90%);
    pointer-events: none;
    z-index: 2;
  }

  /* Content-Container — linksbündig, an Side-Accent angedockt
     (ab 1280px). Auf kleineren Screens bleibt er zentriert mit
     linksbündigem Inhalt. */
  .hero__inner {
    position: relative;
    z-index: 1;
    max-width: 920px;
    margin: 0 auto;
    padding: 0 var(--container-pad-x);
    text-align: left;
  }

  /* Eyebrow-Pill mit Glassmorphism */
  .hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 8px 16px;
    background: rgba(250, 247, 242, 0.06);
    border: 1px solid rgba(250, 247, 242, 0.14);
    border-radius: 999px;
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: var(--space-8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    animation: fade-in-up 1s cubic-bezier(0.25, 0.4, 0.25, 1) 0.2s forwards;
  }
  .hero__eyebrow .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--wine-400);
    box-shadow: 0 0 12px rgba(194, 56, 74, 0.7);
    animation: pulse 1.8s infinite ease-in-out;
  }
  /* Fallback-Pille: nur auf Tablets sichtbar.
     Auf Mobile (≤720px) verbirgt sie sich, weil sie sonst umbricht und nicht gut aussieht.
     Auf Desktop (≥1280px) übernimmt die vertikale Side-Accent diese Rolle. */
  .hero__eyebrow--fallback { display: none; }
  @media (min-width: 721px) and (max-width: 1279px) {
    .hero__eyebrow--fallback { display: inline-flex; }
  }

  /* Headline — Letter-by-Letter Spring-In via JS-erzeugte Spans */
  .hero__title {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: clamp(38px, 6vw, 76px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--color-text);
    margin-bottom: var(--space-7);
  }
  .hero__title .word {
    display: inline-block;
    margin-right: 0.25em;
    white-space: nowrap;
  }
  .hero__title .word:last-child { margin-right: 0; }
  .hero__title .letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(100px);
    color: #FFFFFF;
  }
  .hero__title .letter.is-in {
    animation: letter-spring 0.9s cubic-bezier(0.34, 1.4, 0.64, 1) forwards;
  }
  /* Em-Highlight innerhalb der Headline — pure Weinrot, italic */
  .hero__title em .letter {
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: var(--wine-500);
    color: var(--wine-500);
    font-style: italic;
  }

  @keyframes letter-spring {
    0%   { opacity: 0; transform: translateY(100px); }
    100% { opacity: 1; transform: translateY(0); }
  }

  /* Side accent — vertikales Label links außerhalb des zentrierten Content-
     Containers. Trägt jetzt den Eyebrow (Standort + Verfügbarkeit) statt
     der horizontalen Pille über der H1 — magazin-artige Spine-Beschriftung.
     Unter 1280px Viewport ausgeblendet (Eyebrow erscheint dann horizontal
     via fallback unter 1280px). */
  .hero__side-accent {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--space-5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: var(--font-sans);
    font-weight: 700;
    font-style: normal;
    font-size: clamp(13px, 1.05vw, 16px);
    line-height: 1;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--color-text);
    pointer-events: none;
    user-select: none;
    z-index: 1;
    opacity: 0;
    animation: fade-in-up 1.2s cubic-bezier(0.25, 0.4, 0.25, 1) 1.6s forwards;
  }
  .hero__side-accent__sep {
    display: inline-block;
    color: rgba(250, 247, 242, 0.35);
    font-weight: 400;
  }
  .hero__side-accent__scarcity {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--wine-400);
  }
  .hero__side-accent__scarcity .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--wine-400);
    box-shadow: 0 0 12px rgba(194, 56, 74, 0.7);
    animation: pulse 1.8s infinite ease-in-out;
    flex-shrink: 0;
  }
  @media (max-width: 1280px) {
    .hero__side-accent { display: none; }
  }

  .hero__subtitle {
    font-size: clamp(17px, 1.6vw, 20px);
    color: rgba(250, 247, 242, 0.85);
    line-height: 1.65;
    max-width: 58ch;
    margin: 0 0 var(--space-8);
    opacity: 0;
    animation: fade-in-up 1s cubic-bezier(0.25, 0.4, 0.25, 1) 1.4s forwards;
  }
  .hero__subtitle strong { color: var(--color-text); font-weight: 600; }

  .hero__ctas {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: var(--space-4);
    margin-bottom: var(--space-7);
    opacity: 0;
    animation: fade-in-up 1s cubic-bezier(0.25, 0.4, 0.25, 1) 1.6s forwards;
  }

  /* Glass-CTA — Glassmorphism-Look wie im kokonutd-Original. Wrapper
     hat den Gradient-Rand, innerer Button die Glass-Fill. */
  .btn-glass {
    display: inline-block;
    position: relative;
    padding: 1px;
    border-radius: 18px;
    background: linear-gradient(to bottom,
      rgba(250, 247, 242, 0.18),
      rgba(0, 0, 0, 0.18));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    transition: box-shadow 320ms var(--ease-out), transform 240ms var(--ease-out);
  }
  .btn-glass:hover {
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
  }
  .btn-glass__inner {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: 16px 26px;
    border-radius: 17px;
    background: rgba(14, 14, 14, 0.92);
    border: 1px solid rgba(250, 247, 242, 0.10);
    color: var(--color-text);
    font-family: var(--font-sans);
    font-size: var(--fs-base);
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background 240ms var(--ease-out);
  }
  .btn-glass:hover .btn-glass__inner {
    background: rgba(20, 20, 20, 0.98);
  }
  .btn-glass__arrow {
    display: inline-block;
    transition: transform 240ms var(--ease-out), opacity 240ms var(--ease-out);
    opacity: 0.7;
  }
  .btn-glass:hover .btn-glass__arrow {
    transform: translateX(6px);
    opacity: 1;
  }

  /* ─── Shiny-Button-Effekt (Modifier-Klasse) ─────────────────
     Additiver Shimmer-Border + sanfter Skalen-Puls.
     Auf jedem Button nutzbar: <a class="btn btn--primary btn-shiny">…
     Nutzt CSS @property, damit --shiny-x animierbar ist. */
  @property --shiny-x {
    syntax: '<percentage>';
    initial-value: 100%;
    inherits: true;
  }

  .btn-shiny {
    position: relative;
    isolation: isolate;
    --shiny-x: 100%;
    animation: btn-shiny-pulse 4.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    transition: filter 320ms var(--ease-out);
  }
  .btn-shiny:hover {
    filter: drop-shadow(0 0 24px rgba(250, 247, 242, 0.18));
  }

  /* Wandernder Shimmer-Rand — wird per mask-composite zur reinen
     Border-Linie reduziert, das innere Button-Layout bleibt unberührt. */
  .btn-shiny::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    border-radius: inherit;
    padding: 1.5px;
    background: linear-gradient(
      -75deg,
      rgba(250, 247, 242, 0.10) calc(var(--shiny-x) + 20%),
      rgba(250, 247, 242, 0.70) calc(var(--shiny-x) + 27%),
      rgba(250, 247, 242, 0.10) calc(var(--shiny-x) + 100%)
    );
    -webkit-mask:
      linear-gradient(#000 0 0) content-box,
      linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask:
      linear-gradient(#000 0 0) content-box,
      linear-gradient(#000 0 0);
            mask-composite: exclude;
  }

  /* Shimmer-Lauf: 60 % der Zeit gleitet die Linie durch, dann
     ~1.8s Pause (wie repeatDelay im Framer-Original). Skala pulst
     dezent dazu. */
  @keyframes btn-shiny-pulse {
    0%   { --shiny-x: 100%; transform: scale(1); }
    8%   { transform: scale(1.015); }
    60%  { --shiny-x: -100%; transform: scale(1); }
    100% { --shiny-x: -100%; transform: scale(1); }
  }

  @media (prefers-reduced-motion: reduce) {
    .btn-shiny { animation: none; }
    .btn-shiny::before {
      background: linear-gradient(-75deg,
        rgba(250, 247, 242, 0.10),
        rgba(250, 247, 242, 0.35),
        rgba(250, 247, 242, 0.10));
    }
  }

  /* ─── Feature-Pills (Shimmer-Tags unter Trust-Line) ─────── */
  .hero__feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-top: var(--space-6);
    opacity: 0;
    animation: fade-in-up 1s cubic-bezier(0.25, 0.4, 0.25, 1) 1.9s forwards;
  }
  .feature-pill {
    display: inline-flex;
    align-items: center;
    padding: 9px 20px;
    font-family: var(--font-sans);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(250, 247, 242, 0.92);
    background:
      radial-gradient(circle at 50% 0%, rgba(250, 247, 242, 0.05) 0%, transparent 70%),
      rgba(14, 14, 14, 0.75);
    border-radius: 999px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(250, 247, 242, 0.06);
    user-select: none;
    white-space: nowrap;
  }
  /* Versetzte Shimmer-Delays, damit die Pills nicht im Gleichschritt blinken */
  .hero__feature-pills .feature-pill:nth-child(2) { animation-delay: -1.5s; }
  .hero__feature-pills .feature-pill:nth-child(3) { animation-delay: -3s; }

  /* ─── Stat-Bar (3-Spalten-Box mit Kennzahlen) ──────────── */
  .hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: var(--space-6);
    padding: var(--space-6) var(--space-5);
    background: rgba(14, 14, 14, 0.68);
    border: 1px solid rgba(250, 247, 242, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    opacity: 0;
    animation: fade-in-up 1s cubic-bezier(0.25, 0.4, 0.25, 1) 2.1s forwards;
  }
  .hero__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 var(--space-4);
    position: relative;
  }
  /* Trennstrich zwischen den Spalten */
  .hero__stat:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 18%;
    bottom: 18%;
    width: 1px;
    background: rgba(250, 247, 242, 0.10);
  }
  .hero__stat__label {
    font-family: var(--font-sans);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-text-soft);
    margin-bottom: var(--space-3);
  }
  .hero__stat__value {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: clamp(26px, 3.2vw, 40px);
    line-height: 1;
    color: var(--color-text);
    margin: 0;
    letter-spacing: -0.01em;
  }
  /* "Mittelhessen" und andere Wort-Werte etwas kleiner, damit
     sie nicht aus der Spalte brechen */
  .hero__stat__value--word {
    font-size: clamp(20px, 2.4vw, 30px);
  }

  @media (max-width: 720px) {
    .hero__stats {
      grid-template-columns: 1fr;
      gap: var(--space-5);
      padding: var(--space-5);
    }
    .hero__stat:not(:last-child)::after {
      top: auto;
      right: 20%;
      left: 20%;
      bottom: calc(var(--space-5) * -0.5);
      width: auto;
      height: 1px;
    }
    .hero__feature-pills { justify-content: flex-start; }
  }

  /* ─── Hero-Phone (fertiges Mockup-Bild) ─────────────────────
     Desktop (≥1280px): absolut rechts neben dem Text positioniert.
     Mobile/Tablet (<1280px): unter dem Text gestapelt, kleiner + zentriert. */
  .hero__phone {
    display: block;
    margin: var(--space-7) auto 0;
    width: 100%;
    max-width: 280px;
    order: 2;            /* erscheint nach .hero__inner */
    opacity: 0;
    animation: fade-in-up 1.2s cubic-bezier(0.25, 0.4, 0.25, 1) 1.4s forwards;
    z-index: 1;
  }
  .hero__phone img {
    width: 100%;
    height: auto;
    display: block;
  }
  /* Auf Mobile stapeln: Hero wird Spalten-Flex, Inner kommt zuerst. */
  .hero { flex-direction: column; }
  .hero__inner { order: 1; }

  @media (min-width: 1280px) {
    /* Desktop: zurück zu absolutem Layout, Phone rechts neben Text. */
    .hero { flex-direction: row; }
    .hero__phone {
      position: absolute;
      right: clamp(20px, 2vw, 60px);
      top: 50%;
      transform: translateY(-50%);
      width: clamp(380px, 32vw, 560px);
      max-width: none;
      margin: 0;
      order: initial;
      animation: fade-in-up-centered 1.2s cubic-bezier(0.25, 0.4, 0.25, 1) 1.1s forwards;
    }
    /* Hero-Inner breit genug für die große Headline, aber so schmal,
       dass das Phone rechts noch Platz hat. */
    .hero__inner {
      max-width: 720px;
    }
  }

  .hero__trust {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--fs-sm);
    color: var(--color-text-soft);
    opacity: 0;
    animation: fade-in-up 1s cubic-bezier(0.25, 0.4, 0.25, 1) 1.9s forwards;
  }
  .hero__trust svg { width: 16px; height: 16px; color: var(--blue-500); }

  @keyframes fade-in-up {
    0%   { opacity: 0; transform: translateY(24px); }
    100% { opacity: 1; transform: translateY(0); }
  }

  /* Eintritts-Animation für vertikal zentrierte Elemente —
     bewahrt die translateY(-50%) Position. */
  @keyframes fade-in-up-centered {
    0%   { opacity: 0; transform: translateY(calc(-50% + 24px)); }
    100% { opacity: 1; transform: translateY(-50%); }
  }

  @media (prefers-reduced-motion: reduce) {
    .hero__paths path,
    .hero__title .letter,
    .hero__eyebrow,
    .hero__subtitle,
    .hero__ctas,
    .hero__trust {
      animation: none !important;
      opacity: 1 !important;
      transform: none !important;
    }
    .hero__side-accent {
      animation: none !important;
      opacity: 1 !important;
    }
    .hero__paths path { opacity: 0.4 !important; }
  }

  /* Ab 1280px: Side-Accent ist sichtbar → Content dockt links daran an.
     Hero-Container schaltet auf flex-start, Inner rückt mit padding-left
     so weit nach rechts, dass er nicht in die Side-Accent-Säule läuft. */
  @media (min-width: 1280px) {
    .hero { justify-content: flex-start; }
    .hero__inner {
      margin: 0;
      padding-left: clamp(56px, 6vw, 120px);
      padding-right: var(--container-pad-x);
    }
  }

  @media (max-width: 720px) {
    .hero { min-height: 88vh; padding: var(--space-8) 0; }
    .hero__title { font-size: clamp(36px, 12vw, 64px); }
    .hero__eyebrow { margin-bottom: var(--space-6); letter-spacing: 0.14em; }
    .btn-glass__inner { padding: 16px 24px; font-size: var(--fs-base); }
  }

  /* ─── Buttons ─────────────────────────────────────────── */
  .btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: var(--space-2);
    height: var(--btn-height);
    padding: 0 var(--btn-padding-x);
    border-radius: var(--btn-radius);
    font-family: inherit;
    font-size: var(--fs-base);
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background var(--duration-base) var(--ease-out),
                color var(--duration-base) var(--ease-out),
                transform var(--duration-fast) var(--ease-out),
                box-shadow var(--duration-base) var(--ease-out);
    will-change: transform;
  }
  .btn:active { transform: translateY(1px); }
  .btn--primary {
    background: var(--btn-primary-bg);
    color: var(--btn-primary-fg);
    box-shadow: var(--shadow-wine);
  }
  .btn--primary:hover {
    background: var(--btn-primary-bg-hover);
    box-shadow: 0 24px 60px rgba(194, 56, 74, 0.5);
  }
  .btn--secondary {
    background: var(--btn-secondary-bg);
    color: var(--btn-secondary-fg);
    border-color: var(--btn-secondary-border);
  }
  .btn--secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-text);
  }

  .btn__arrow { transition: transform var(--duration-base) var(--ease-out); }
  .btn--primary:hover .btn__arrow { transform: translateX(3px); }

  /* ════════════════════════════════════════════════
     Hero-Visual · Laptop + Phone Fan-Komposition
     ════════════════════════════════════════════════ */
  .hero__photo-stack {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3.2;
    isolation: isolate;
  }

  /* Atmospheric Glow im Hintergrund (warmer Spotlight zwischen den Geräten) */
  .hero__photo-stack::before {
    content: "";
    position: absolute;
    inset: -10%;
    background: radial-gradient(ellipse at 55% 60%,
                                rgba(61, 122, 156, 0.18) 0%,
                                rgba(160, 32, 46, 0.06) 35%,
                                transparent 70%);
    pointer-events: none;
    z-index: 0;
    filter: blur(20px);
  }

  .hero__photo-stack__device {
    position: absolute;
    display: block;
    text-decoration: none;
    transition: transform 0.6s var(--ease-out);
  }
  .hero__photo-stack__device img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* LAPTOP — Haupt-Anker, leicht nach oben-links gerückt */
  .hero__photo-stack__laptop {
    width: 88%;
    left: -8%;
    top: 0;
    transform: rotate(-5deg);
    z-index: 1;
  }
  .hero__photo-stack__laptop img {
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.7))
            drop-shadow(0 0 80px rgba(61, 122, 156, 0.18));
  }

  /* PHONE — Co-Star, deutlich größer, ragt unten rechts heraus */
  .hero__photo-stack__phone {
    width: 42%;
    right: -5%;
    bottom: -12%;
    transform: rotate(12deg);
    z-index: 3;
  }
  .hero__photo-stack__phone img {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.8))
            drop-shadow(0 0 60px rgba(160, 32, 46, 0.20));
  }

  /* Hover — beide Geräte gehen subtil auseinander */
  .hero__photo-stack:hover .hero__photo-stack__laptop {
    transform: rotate(-7deg) translate(-12px, -8px);
  }
  .hero__photo-stack:hover .hero__photo-stack__phone {
    transform: rotate(15deg) translate(12px, -8px);
  }

  /* Badge klebt am Phone (Phone-Link ist sein Container) */
  .hero__photo-stack__badge {
    position: absolute;
    top: 10%;
    left: -35%;
    background: var(--wine-500);
    color: var(--color-text);
    padding: 8px 14px;
    border-radius: 30px;
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    box-shadow: 0 12px 40px rgba(160, 32, 46, 0.4);
    pointer-events: none;
    white-space: nowrap;
    transform: rotate(-10deg);
  }
  .hero__photo-stack__badge::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--color-text);
    border-radius: 50%;
    animation: pulse 1.6s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
  }

  /* Mobile — Phone bleibt auch hier prominent */
  @media (max-width: 700px) {
    .hero__photo-stack { aspect-ratio: 4 / 3.5; }
    .hero__photo-stack__laptop { width: 90%; left: -10%; }
    .hero__photo-stack__phone {
      width: 48%;
      right: -10%;
      bottom: -15%;
    }
  }

  /* ═══════════════════════════════════════════════════════════
     FEATURE-BLOCK — Section direkt unter Hero
     2-Spalten-Layout: Glas-Box mit Laptop-Mockup links, Text rechts.
     Box-Style identisch zum Hero-CTA (Gradient-Border + Shimmer),
     nur größer.
     ═══════════════════════════════════════════════════════════ */
  .feature-block {
    position: relative;
    padding: var(--space-10) 0 var(--space-9);
    background: var(--color-bg);
    overflow: hidden;
  }
  .feature-block__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad-x);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-7);
    align-items: center;
  }
  @media (max-width: 900px) {
    .feature-block__inner {
      grid-template-columns: 1fr;
      gap: var(--space-7);
    }
  }

  /* Glas-Box — ohne Rand, ragt links über das Container-Padding hinaus */
  .glass-box {
    position: relative;
    display: block;
    padding: 0;
    margin-left: -140px;
    border-radius: 24px;
    background: transparent;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    isolation: isolate;
    transition: box-shadow 320ms var(--ease-out), transform 320ms var(--ease-out);
  }
  @media (max-width: 900px) {
    .glass-box { margin-left: 0; }
  }
  .glass-box:hover {
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.55);
    transform: translateY(-2px);
  }
  .glass-box__inner {
    position: relative;
    padding: 0;
    border-radius: 24px;
    background: transparent;
    border: none;
    overflow: hidden;
  }
  .glass-box__inner img,
  .glass-box__inner svg {
    width: 100%;
    height: auto;
    display: block;
  }

  /* Text-Spalte — eingefasst in animierter Glas-Box (gleicher
     Shimmer wie Hero-CTA via .btn-shiny). */
  .feature-block__text {
    position: relative;
    padding: var(--space-7) var(--space-6);
    border-radius: 24px;
    background: rgba(14, 14, 14, 0.65);
    border: 1px solid rgba(250, 247, 242, 0.10);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.40);
    isolation: isolate;
  }
  .feature-block__title {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: var(--color-text);
    margin: 0 0 var(--space-5);
  }
  .feature-block__title em {
    font-style: italic;
    color: var(--wine-500);
  }
  .feature-block__lead {
    font-size: clamp(17px, 1.5vw, 21px);
    color: var(--color-text-soft);
    line-height: 1.6;
    margin-bottom: var(--space-6);
  }
  .feature-block__lead strong {
    color: var(--color-text);
    font-weight: 600;
  }
  .feature-block__bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
  }
  .feature-block__bullets li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    color: var(--color-text);
    font-size: clamp(15px, 1.2vw, 18px);
    line-height: 1.5;
  }
  .feature-block__bullets .check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(160, 32, 46, 0.15);
    color: var(--wine-400);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
  }
  .feature-block__bullets .check svg {
    width: 12px;
    height: 12px;
  }

  /* ═══════════════════════════════════════════════════════════
     PHONES-FAN — Portfolio-Showcase mit Phone-Mockups
     Zwei stark rotierte Phone-Frames mit 3D-Perspektive,
     atmosphärischem Glow, Hover-Spread.
     ═══════════════════════════════════════════════════════════ */
  .phones-fan {
    position: relative;
    padding: var(--space-10) 0 var(--space-9);
    background: var(--color-bg);
    overflow: hidden;
    isolation: isolate;
  }
  .phones-fan__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad-x);
  }
  .phones-fan__header {
    text-align: center;
    margin: 0 auto var(--space-8);
    max-width: 720px;
  }
  .phones-fan__title {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: var(--space-3) 0 var(--space-4);
    color: var(--color-text);
  }
  .phones-fan__title em {
    font-style: italic;
    color: var(--wine-500);
  }
  .phones-fan__lead {
    color: var(--color-text-soft);
    font-size: var(--fs-lg);
    line-height: 1.55;
  }

  /* Stage — perspective + zentriertes Layout. Phones sind absolut
     positioniert relativ zur Stage-Mitte. */
  .phones-fan__stack {
    position: relative;
    perspective: 1400px;
    perspective-origin: 50% 40%;
    height: clamp(480px, 56vw, 720px);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Atmosphärischer Glow hinter den Phones */
  .phones-fan__stack::before {
    content: "";
    position: absolute;
    inset: 10% 10%;
    background:
      radial-gradient(ellipse at 50% 50%, rgba(160, 32, 46, 0.18) 0%, transparent 60%),
      radial-gradient(ellipse at 50% 50%, rgba(61, 122, 156, 0.12) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
  }

  /* Phone-Frame — Wrapper-Form mit dunklem Bezel-Look */
  .phone-frame {
    position: absolute;
    width: clamp(220px, 24vw, 300px);
    aspect-ratio: 9 / 19.5;
    background: linear-gradient(160deg, #2a2a2a 0%, #0a0a0a 100%);
    border-radius: 38px;
    padding: 9px;
    border: 1px solid rgba(250, 247, 242, 0.12);
    box-shadow:
      0 40px 80px rgba(0, 0, 0, 0.7),
      0 12px 32px rgba(0, 0, 0, 0.5),
      inset 0 0 0 1px rgba(0, 0, 0, 0.5);
    text-decoration: none;
    cursor: pointer;
    transform-style: preserve-3d;
    transition: transform 600ms cubic-bezier(0.23, 0.86, 0.39, 0.96),
                box-shadow 400ms var(--ease-out);
    z-index: 2;
  }
  .phone-frame:hover {
    box-shadow:
      0 50px 100px rgba(0, 0, 0, 0.75),
      0 14px 40px rgba(160, 32, 46, 0.20),
      inset 0 0 0 1px rgba(0, 0, 0, 0.5);
  }

  /* Dynamic Island / Notch */
  .phone-frame__notch {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 84px;
    height: 22px;
    background: #000;
    border-radius: 14px;
    z-index: 3;
  }

  /* Bildschirm — clipt das Bild auf Phone-Form */
  .phone-frame__screen {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    background: #0e0e0e;
    position: relative;
  }
  .phone-frame__screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
  }

  /* Phone 1 — links, zurückgekippt, hinten */
  .phone-frame--one {
    transform: translateX(-32%) translateY(28px) rotate(-14deg) rotateY(10deg);
    z-index: 1;
  }
  /* Phone 2 — rechts, leicht gekippt, vorne */
  .phone-frame--two {
    transform: translateX(32%) translateY(-28px) rotate(12deg) rotateY(-10deg);
    z-index: 2;
  }
  /* Hover-Spread: Phones gehen weiter auseinander */
  .phones-fan__stack:hover .phone-frame--one {
    transform: translateX(-38%) translateY(22px) rotate(-17deg) rotateY(12deg);
  }
  .phones-fan__stack:hover .phone-frame--two {
    transform: translateX(38%) translateY(-34px) rotate(15deg) rotateY(-12deg);
  }

  /* Live-Badge auf dem vorderen Phone */
  .phone-frame__badge {
    position: absolute;
    top: 12%;
    left: -14%;
    background: var(--wine-500);
    color: var(--color-text);
    padding: 8px 14px;
    border-radius: 30px;
    font-family: var(--font-sans);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    box-shadow: 0 14px 40px rgba(160, 32, 46, 0.50);
    pointer-events: none;
    white-space: nowrap;
    transform: rotate(-8deg);
    z-index: 4;
  }
  .phone-frame__badge::before {
    content: "";
    width: 8px; height: 8px;
    background: var(--color-text);
    border-radius: 50%;
    animation: pulse 1.6s infinite ease-in-out;
  }

  @media (max-width: 720px) {
    .phones-fan { padding: var(--space-9) 0 var(--space-8); }
    .phones-fan__stack { height: clamp(380px, 100vw, 520px); }
    .phone-frame { width: clamp(170px, 38vw, 220px); border-radius: 30px; padding: 7px; }
    .phone-frame__screen { border-radius: 23px; }
    .phone-frame__notch { top: 14px; width: 64px; height: 18px; }
    .phone-frame--one {
      transform: translateX(-25%) translateY(18px) rotate(-12deg);
    }
    .phone-frame--two {
      transform: translateX(25%) translateY(-18px) rotate(10deg);
    }
    .phones-fan__stack:hover .phone-frame--one { transform: translateX(-25%) translateY(18px) rotate(-12deg); }
    .phones-fan__stack:hover .phone-frame--two { transform: translateX(25%) translateY(-18px) rotate(10deg); }
    .phone-frame__badge { left: -8%; font-size: 10px; padding: 6px 10px; }
  }

  /* ═══════════════════════════════════════════════════════════
     ABLAUF-TRAIL — vertikales Zickzack mit verbindender Linie
     ═══════════════════════════════════════════════════════════ */
  .ablauf-trail {
    position: relative;
    padding: var(--space-10) 0 var(--space-10);
    background: var(--color-bg);
    overflow: hidden;
  }
  .ablauf-trail__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-pad-x);
  }
  .ablauf-trail__header {
    text-align: center;
    margin: 0 auto var(--space-9);
    max-width: 760px;
  }
  .ablauf-trail__title {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: clamp(32px, 4.5vw, 56px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: var(--color-text);
    margin: var(--space-3) 0 var(--space-4);
  }
  .ablauf-trail__title em {
    font-style: italic;
    color: var(--wine-500);
  }
  .ablauf-trail__lead {
    font-size: clamp(16px, 1.4vw, 19px);
    color: var(--color-text-soft);
    line-height: 1.6;
  }

  /* Track — vertikaler Container mit den Steps und der Verbindungslinie */
  .ablauf-trail__track {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-9);
  }

  /* Verbindungslinie — SVG mittig hinter den Steps, mit stroke-dash-Animation */
  .ablauf-trail__line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    color: rgba(250, 247, 242, 0.18);
    pointer-events: none;
    z-index: 0;
  }
  .ablauf-trail__line line {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: trail-draw 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }
  @keyframes trail-draw {
    to { stroke-dashoffset: 0; }
  }

  /* Einzelner Step im Trail */
  .ablauf-trail__step {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto;
    align-items: center;
    gap: var(--space-7);
    z-index: 1;
  }
  /* Linker Step: Card links, Nummer mittig — beide explicit in Row 1 */
  .ablauf-trail__step--left .ablauf-trail__card {
    grid-row: 1;
    grid-column: 1;
    align-self: center;
    text-align: right;
  }
  .ablauf-trail__step--left .ablauf-trail__num {
    grid-row: 1;
    grid-column: 2;
    align-self: center;
  }
  /* Rechter Step: Nummer mittig, Card rechts — beide explicit in Row 1 */
  .ablauf-trail__step--right .ablauf-trail__num {
    grid-row: 1;
    grid-column: 2;
    align-self: center;
  }
  .ablauf-trail__step--right .ablauf-trail__card {
    grid-row: 1;
    grid-column: 3;
    align-self: center;
    text-align: left;
  }

  /* Node auf der Linie — kleiner Kreis mittig */
  .ablauf-trail__node {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--color-bg);
    border: 2px solid var(--wine-500);
    transform: translate(-50%, -50%);
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.6);
  }

  /* Große Nummer — sitzt direkt neben dem Node, Brand-Gradient */
  .ablauf-trail__num {
    font-family: var(--font-serif);
    font-weight: 700;
    font-style: italic;
    font-size: clamp(48px, 5vw, 80px);
    line-height: 1;
    background: linear-gradient(120deg, var(--wine-400) 0%, var(--wine-700) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    padding: 0 var(--space-5);
    user-select: none;
  }

  /* Step-Card — Glas-Box mit Shimmer */
  .ablauf-trail__card {
    position: relative;
    padding: var(--space-6) var(--space-6);
    border-radius: 18px;
    background: rgba(14, 14, 14, 0.65);
    border: 1px solid rgba(250, 247, 242, 0.10);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    isolation: isolate;
    transition: transform 320ms var(--ease-out), box-shadow 320ms var(--ease-out);
    max-width: 460px;
  }
  .ablauf-trail__step--left .ablauf-trail__card {
    margin-left: auto;
  }
  .ablauf-trail__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5);
  }

  .ablauf-trail__pill {
    display: inline-block;
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-text-soft);
    margin: 0 0 var(--space-2);
  }
  .ablauf-trail__step-title {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--color-text);
    margin: 0 0 var(--space-3);
  }
  .ablauf-trail__desc {
    font-size: var(--fs-base);
    color: var(--color-text-soft);
    line-height: 1.6;
    margin: 0;
  }

  /* Mobile (< 900px): alles linksbündig untereinander, Linie links */
  @media (max-width: 900px) {
    .ablauf-trail__line {
      left: 32px;
      transform: none;
    }
    .ablauf-trail__step,
    .ablauf-trail__step--left,
    .ablauf-trail__step--right {
      grid-template-columns: 64px 1fr;
      gap: var(--space-4);
      text-align: left !important;
    }
    .ablauf-trail__step--left::after,
    .ablauf-trail__step--right::before { display: none; }
    .ablauf-trail__step--left .ablauf-trail__card,
    .ablauf-trail__step--right .ablauf-trail__card {
      grid-column: 2;
      text-align: left;
      margin-left: 0;
    }
    .ablauf-trail__step--left .ablauf-trail__num,
    .ablauf-trail__step--right .ablauf-trail__num {
      grid-column: 1;
      padding: 0;
      font-size: clamp(40px, 8vw, 56px);
    }
    .ablauf-trail__node {
      left: 32px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .ablauf-trail__line line {
      animation: none;
      stroke-dashoffset: 0;
    }
  }

  /* ═══════════════════════════════════════════════════════════
     REFERENCES-PREVIEW — Magazine-Layout mit hellem Hintergrund
     Header linksbündig, Carousel-Rail mit überhängenden Cards.
     ═══════════════════════════════════════════════════════════ */
  .references-preview {
    position: relative;
    padding: var(--space-10) 0 var(--space-9);
    background: var(--color-surface);
    color: var(--color-text);
    overflow: hidden;
  }
  .references-preview__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad-x);
  }
  .references-preview__header {
    max-width: 720px;
    margin: 0 0 var(--space-9);
  }
  .references-preview__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: 10px 20px;
    border-radius: 999px;
    background: rgba(160, 32, 46, 0.10);
    border: 1px solid rgba(194, 56, 74, 0.25);
    font-family: var(--font-sans);
    font-size: var(--fs-sm);
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--wine-400);
    margin: 0 0 var(--space-5);
  }
  .references-preview__eyebrow .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--wine-400);
    box-shadow: 0 0 0 4px rgba(194, 56, 74, 0.18);
    animation: pulse 1.8s infinite ease-in-out;
  }
  .references-preview__title {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.04;
    letter-spacing: -0.025em;
    color: var(--color-text);
    margin: 0 0 var(--space-4);
  }
  .references-preview__lead {
    font-size: clamp(16px, 1.3vw, 18px);
    color: var(--color-text-soft);
    line-height: 1.55;
    max-width: 560px;
    margin: 0;
  }

  /* Carousel-Rail — Cards in horizontaler Flex-Reihe, mittlere
     ist visuell prominent (etwas größer). Seitliche Cards
     ragen aus dem Viewport raus (overflow:hidden auf Section). */
  .references-rail {
    position: relative;
    padding: 0;
  }
  .references-rail__inner {
    display: flex;
    gap: 6px;
    justify-content: center;
    align-items: stretch;
    padding: 0;
  }
  @media (max-width: 1200px) {
    .references-rail__inner { gap: 6px; }
  }
  @media (max-width: 900px) {
    .references-rail__inner {
      flex-wrap: wrap;
      justify-content: flex-start;
    }
  }

  /* Einzelne Referenz-Karte — dunkler BG, heller Text, Bild unten.
     Alle drei Cards gleich breit. */
  .ref-card {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1 1 0;
    min-width: 0;
    padding: var(--space-5) var(--space-5) 0;
    border-radius: 24px;
    background: rgba(20, 20, 20, 0.92);
    border: 1px solid rgba(250, 247, 242, 0.08);
    color: var(--color-text);
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 320ms var(--ease-out), box-shadow 320ms var(--ease-out);
  }
  .ref-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.6);
  }
  /* Featured-Card war früher prominent — jetzt gleich wie die anderen */
  .ref-card--featured {
    flex: 1 1 0;
  }

  /* Mobile: Cards stacken voll breit */
  @media (max-width: 900px) {
    .ref-card,
    .ref-card--featured {
      flex: 1 1 100%;
    }
  }

  /* Oberer Bereich — Pill + Pfeil-Button */
  .ref-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-5);
  }
  .ref-card__cat {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(250, 247, 242, 0.08);
    color: var(--color-text-soft);
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
  }
  .ref-card__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(250, 247, 242, 0.10);
    color: var(--color-text);
    flex-shrink: 0;
    transition: background 240ms var(--ease-out), transform 240ms var(--ease-out), color 240ms var(--ease-out);
  }
  .ref-card:hover .ref-card__arrow {
    background: var(--color-text);
    color: var(--color-bg);
    transform: translateX(2px) translateY(-2px);
  }

  .ref-card__title {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: var(--color-text);
    margin: 0 0 var(--space-2);
  }
  .ref-card__sub {
    font-family: var(--font-sans);
    font-size: clamp(14px, 1vw, 16px);
    color: var(--color-text-soft);
    line-height: 1.4;
    margin: 0 0 var(--space-5);
  }

  /* Bild unten in der Card — Bild komplett sichtbar, kein Crop.
     Höhe richtet sich nach dem Bild-Aspect-Ratio. */
  .ref-card__media {
    position: relative;
    margin: auto -1px -1px;
    border-radius: 18px 18px 0 0;
    overflow: hidden;
    background: var(--color-surface-hover);
  }
  .ref-card__media img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 600ms var(--ease-out);
  }
  .ref-card:hover .ref-card__media img {
    transform: scale(1.03);
  }

  /* CTA-Link am Ende */
  .references-preview__cta {
    display: flex;
    justify-content: flex-end;
    margin-top: var(--space-7);
  }
  .references-preview__cta-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: 18px 32px;
    font-family: var(--font-sans);
    font-size: var(--fs-lg);
    font-weight: 600;
    color: var(--color-text);
    text-decoration: none;
    border: 1px solid rgba(250, 247, 242, 0.10);
    background:
      linear-gradient(rgba(14, 14, 14, 0.94), rgba(14, 14, 14, 0.94)) padding-box,
      linear-gradient(to bottom, rgba(250, 247, 242, 0.20), rgba(0, 0, 0, 0.20)) border-box;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    transition: box-shadow 320ms var(--ease-out),
                gap 240ms var(--ease-out),
                transform 240ms var(--ease-out);
  }
  .references-preview__cta-link:hover {
    color: var(--color-text);
    text-decoration: none;
    gap: 14px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.50);
    transform: translateY(-2px);
  }
  .references-preview__cta-link svg {
    transition: transform 240ms var(--ease-out);
  }
  .references-preview__cta-link:hover svg {
    transform: translateX(2px);
  }

  /* ═══════════════════════════════════════════════════════════
     REFERENCE-STRIP — eine ehrliche Referenz statt Fake-Logos
     ═══════════════════════════════════════════════════════════ */
  .reference-strip {
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background: var(--ink-950);
    padding: var(--space-7) 0;
  }
  .reference-strip__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad-x);
  }
  .reference-strip__label {
    font-size: var(--fs-xs);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-text-subtle);
    margin: 0 0 var(--space-4);
  }
  .reference-strip__card {
    position: relative;
    background: linear-gradient(135deg, var(--ink-850), var(--ink-900));
    border: 1px solid var(--color-border-strong);
    border-radius: var(--radius-lg);
    padding: var(--space-6) var(--space-7);
    overflow: hidden;
    box-shadow: var(--shadow-md);
  }
  .reference-strip__card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--wine-500), var(--wine-700));
    box-shadow: 0 0 24px var(--wine-glow);
  }
  .reference-strip__card::after {
    content: '';
    position: absolute;
    right: -120px; top: 50%;
    width: 320px; height: 320px;
    transform: translateY(-50%);
    background: radial-gradient(circle, var(--wine-glow-soft), transparent 65%);
    pointer-events: none;
    filter: blur(40px);
  }
  .reference-strip__text {
    position: relative;
    z-index: 1;
    max-width: 64ch;
  }
  .reference-strip__title {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: clamp(var(--fs-xl), 3vw, var(--fs-3xl));
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--color-text);
    margin: 0 0 var(--space-3);
  }
  .reference-strip__desc {
    font-size: var(--fs-base);
    line-height: 1.55;
    color: var(--color-text-muted);
    margin: 0 0 var(--space-5);
  }
  .reference-strip__tags {
    list-style: none;
    margin: 0 0 var(--space-5);
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
  }
  .reference-strip__tags li {
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    background: rgba(160, 32, 46, 0.08);
    border: 1px solid rgba(160, 32, 46, 0.25);
    color: var(--color-accent-hover);
    font-size: var(--fs-xs);
    font-weight: 500;
    letter-spacing: 0.02em;
  }
  .reference-strip__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-family: ui-monospace, SFMono-Regular, monospace;
    font-size: var(--fs-sm);
    color: var(--color-accent-hover);
    padding: var(--space-2) 0;
    min-height: 44px;
    border-bottom: 1px solid var(--color-border-strong);
    transition: color var(--duration-fast) var(--ease-out),
                border-color var(--duration-fast) var(--ease-out),
                gap var(--duration-base) var(--ease-out);
  }
  .reference-strip__link:hover {
    color: var(--color-text);
    border-bottom-color: var(--color-accent);
    gap: var(--space-3);
  }
  @media (max-width: 720px) {
    .reference-strip { padding: var(--space-6) 0; }
    .reference-strip__card { padding: var(--space-5); }
  }

  /* ─── Probleme Section ────────────────────────────────── */
  .probleme {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5);
  }
  @media (max-width: 720px) {
    .probleme { grid-template-columns: 1fr; }
  }

  .probleme__item {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-7) var(--space-6) var(--space-6);
    display: flex; flex-direction: column;
    transition: border-color var(--duration-base) var(--ease-out),
                box-shadow var(--duration-base) var(--ease-out),
                transform var(--duration-base) var(--ease-out);
  }
  .probleme__item:hover {
    border-color: var(--color-border-strong);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
  }
  .probleme__num {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
    font-size: var(--fs-3xl);
    color: var(--color-accent);
    line-height: 1;
    font-variant-numeric: tabular-nums;
    display: block;
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--color-border);
  }
  .probleme__title {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: var(--fs-xl);
    line-height: 1.25;
    color: var(--color-text);
    margin: 0 0 var(--space-3);
  }
  .probleme__body {
    font-size: var(--fs-base);
    line-height: 1.6;
    color: var(--color-text-muted);
    margin: 0;
  }

  .section__bridge {
    margin: var(--space-7) 0 0;
    text-align: left;
  }
  .link-arrow {
    display: inline-flex; align-items: center; gap: var(--space-3);
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: var(--fs-lg);
    color: var(--color-text);
    padding: var(--space-4) 0;
    min-height: 44px;
    border-bottom: 1px solid var(--color-border-strong);
    transition: color var(--duration-base) var(--ease-out),
                border-color var(--duration-base) var(--ease-out),
                gap var(--duration-base) var(--ease-out);
  }
  .link-arrow:hover {
    color: var(--color-accent-hover);
    border-color: var(--color-accent);
    gap: var(--space-4);
  }
  .link-arrow svg { transition: transform var(--duration-base) var(--ease-out); }
  .link-arrow:hover svg { transform: translateX(2px); }

  /* ─── Leistungen Section ──────────────────────────────── */
  .leistungen {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--card-feature-gap);
    align-items: stretch;
  }
  @media (min-width: 1024px) {
    .leistungen { grid-template-columns: repeat(3, 1fr); }
    /* Desktop: DOM-Reihenfolge entspricht Visual-Order — Tab-Order WCAG-konform */
  }
  @media (max-width: 1023px) {
    /* Mobile: Anchor zuerst via order — Conversion-Optimierung */
    .leistungen__card[data-rank="anchor"]  { order: 1; }
    .leistungen__card[data-rank="upgrade"] { order: 2; }
    .leistungen__card[data-rank="entry"]   { order: 3; }
  }

  .leistungen__card {
    position: relative;
    background: var(--card-feature-bg);
    border: var(--card-feature-border);
    border-radius: var(--card-feature-radius);
    padding: var(--card-feature-padding);
    box-shadow: var(--card-feature-shadow);
    display: flex; flex-direction: column;
    transition: transform var(--duration-base) var(--ease-out),
                box-shadow var(--duration-base) var(--ease-out);
  }
  .leistungen__card--anchor {
    border: var(--card-anchor-border);
    box-shadow: var(--card-anchor-shadow);
  }
  /* Lift nur auf Geräten mit echtem Hover (kein Mobile-Glitch) */
  @media (hover: hover) {
    .leistungen__card--anchor {
      transform: translateY(var(--card-anchor-lift-default));
    }
    .leistungen__card:hover {
      transform: translateY(var(--card-feature-lift-hover));
      box-shadow: var(--card-feature-shadow-hover);
    }
    .leistungen__card--anchor:hover {
      transform: translateY(var(--card-anchor-lift-hover));
    }
  }

  .badge-anchor {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--badge-anchor-bg);
    color: var(--badge-anchor-fg);
    padding: var(--badge-anchor-padding-y) var(--badge-anchor-padding-x);
    border-radius: var(--badge-anchor-radius);
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: var(--badge-anchor-fs);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
  }

  .leistungen__for {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    letter-spacing: 0.04em;
    margin: 0 0 var(--space-3);
    min-height: 2.4em;
  }
  .leistungen__name {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: var(--fs-2xl);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--color-text);
    margin: 0 0 var(--space-3);
  }
  .leistungen__price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: var(--space-2);
    margin: 0 0 var(--space-2);
  }
  .leistungen__price-num {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: var(--fs-3xl);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
    color: var(--color-text);
    line-height: 1.05;
  }
  .leistungen__price-unit,
  .leistungen__price-recurring {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: var(--fs-base);
    color: var(--color-text-muted);
    font-variant-numeric: tabular-nums;
  }
  .leistungen__price-recurring {
    width: 100%;
    font-weight: 500;
    color: var(--color-text);
    margin-top: var(--space-1);
  }

  .leistungen__delivery {
    align-self: flex-start;
    background: var(--color-surface-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    padding: var(--space-2) var(--space-4);
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: var(--fs-sm);
    color: var(--color-text);
    margin: 0 0 var(--space-5);
  }

  .leistungen__bullets {
    list-style: none;
    margin: 0;
    padding: var(--space-5) 0 0;
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    flex: 1;
  }
  .leistungen__bullets li {
    position: relative;
    padding-left: var(--space-5);
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: var(--fs-base);
    line-height: 1.55;
    color: var(--color-text);
  }
  .leistungen__bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 6px; height: 6px;
    border-radius: var(--radius-full);
    background: var(--color-accent);
  }

  .leistungen__cta {
    width: 100%;
    margin-top: var(--space-6);
  }

  .leistungen__reassure-top,
  .leistungen__reassure-bottom {
    margin: 0;
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    line-height: 1.55;
    text-align: center;
  }
  .leistungen__reassure-top { margin-top: var(--space-7); }
  .leistungen__cta-global {
    margin: var(--space-6) 0 var(--space-3);
    text-align: center;
  }

  @media (max-width: 720px) {
    .leistungen__card { padding: var(--space-6); }
    .leistungen__for { min-height: auto; }
    .leistungen__reassure-top { margin-top: var(--space-6); }
  }

  /* ─── Prozess Section ─────────────────────────────────── */
  .prozess {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 720px;
    display: flex;
    flex-direction: column;
    gap: var(--step-gap);
  }
  .prozess__step {
    position: relative;
    background: var(--step-bg);
    border: var(--step-border);
    border-radius: var(--step-radius);
    padding: var(--step-padding);
    box-shadow: var(--step-shadow);
  }
  .prozess__step::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: calc(-1 * var(--step-gap));
    width: var(--step-rail-width);
    height: var(--step-gap);
    background: var(--step-rail-color);
    transform: translateX(-50%);
    pointer-events: none;
  }
  .prozess__step:last-child::after { display: none; }

  .prozess__num {
    display: block;
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
    font-size: var(--step-num-fs);
    color: var(--step-num-color);
    line-height: 1;
    font-variant-numeric: tabular-nums;
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--color-border);
  }
  .prozess__title {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: var(--fs-xl);
    line-height: 1.25;
    color: var(--color-text);
    margin: 0 0 var(--space-3);
  }
  .prozess__pill {
    display: inline-block;
    background: var(--color-surface-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    padding: var(--space-2) var(--space-4);
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: var(--fs-sm);
    color: var(--color-text);
    margin: 0 0 var(--space-5);
  }
  .prozess__role {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: var(--fs-base);
    line-height: 1.55;
    color: var(--color-text);
    margin: 0 0 var(--space-3);
  }
  .prozess__role:last-of-type { margin-bottom: 0; }
  .prozess__role-label {
    font-weight: 500;
    margin-right: var(--space-1);
  }
  .prozess__time {
    font-size: var(--fs-xs);
    color: var(--color-text-subtle);
    margin-left: var(--space-1);
    white-space: nowrap;
  }
  .prozess__note {
    font-family: var(--font-sans);
    font-style: italic;
    font-weight: 400;
    font-size: var(--fs-sm);
    color: var(--color-text-subtle);
    line-height: 1.55;
    margin: var(--space-4) 0 0;
    padding-top: var(--space-4);
    border-top: 1px solid var(--color-border);
  }

  @media (max-width: 720px) {
    .prozess__step { padding: var(--space-5); }
  }

  /* ─── Über-mich Section ───────────────────────────────── */
  .ueber {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-7);
    align-items: start;
  }
  @media (min-width: 1024px) {
    .ueber {
      grid-template-columns: 5fr 7fr;
      gap: var(--space-9);
    }
  }

  .ueber__photo {
    aspect-ratio: var(--photo-aspect);
    border-radius: var(--photo-frame-radius);
    background: var(--monogram-bg);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
  }
  .ueber__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .ueber__monogram {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(72px, 12vw, 144px);
    color: var(--monogram-fg);
    line-height: 1;
    letter-spacing: -0.04em;
    user-select: none;
  }

  .ueber__story {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(var(--fs-lg), 2vw, var(--fs-xl));
    line-height: 1.55;
    color: var(--color-text);
    margin: 0 0 var(--space-7);
    max-width: 56ch;
  }

  .ueber__diffs {
    list-style: none;
    margin: 0 0 var(--space-7);
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
  }
  .ueber__diff {
    padding-left: var(--space-5);
    border-left: 2px solid var(--color-accent);
  }
  .ueber__diff-title {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: var(--fs-base);
    color: var(--color-text);
    margin: 0 0 var(--space-1);
    letter-spacing: -0.01em;
  }
  .ueber__diff p {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: var(--fs-base);
    line-height: 1.55;
    color: var(--color-text);
    margin: 0;
  }

  .ueber__detail {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    font-size: var(--fs-base);
    line-height: 1.55;
    color: var(--color-text-muted);
    margin: 0 0 var(--space-6);
    padding-top: var(--space-5);
    border-top: 1px solid var(--color-border);
    max-width: 56ch;
  }

  /* Dev-Marker für ungefüllte Platzhalter — vor Production entfernen */
  .todo {
    background: rgba(212, 165, 116, 0.12);
    color: var(--gold-400);
    padding: 0 var(--space-1);
    border-bottom: 1px dashed var(--color-accent);
  }

  /* ─── Kontaktformular Section ─────────────────────────── */
  .section__header--centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    max-width: 560px;
  }
  .section__header--centered .section__title {
    margin-left: auto;
    margin-right: auto;
  }
  .section__header--centered .section__lead {
    margin-left: auto;
    margin-right: auto;
  }

  .form-wrap {
    max-width: 560px;
    margin: 0 auto;
    position: relative;
  }
  .form {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
  }
  .form__honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
  }
  .form__field {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
  }
  .form__label {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: var(--fs-sm);
    color: var(--color-text);
  }
  .form__optional {
    font-weight: 400;
    color: var(--color-text-subtle);
    font-size: var(--fs-sm);
    margin-left: var(--space-1);
  }

  .form__field input[type="text"],
  .form__field input[type="email"],
  .form__field input[type="tel"],
  .form__field select,
  .form__field textarea {
    height: var(--field-height);
    padding: var(--field-padding-y) var(--field-padding-x);
    border: var(--field-border);
    border-radius: var(--field-radius);
    background: var(--field-bg);
    font-family: var(--font-sans);
    font-size: var(--field-fs);
    color: var(--color-text);
    line-height: 1.4;
    width: 100%;
    transition: border-color var(--duration-fast) var(--ease-out),
                box-shadow var(--duration-fast) var(--ease-out);
    -webkit-appearance: none;
    appearance: none;
  }
  .form__field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23A8A29E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--space-4) center;
    padding-right: calc(var(--space-4) * 2 + 16px);
  }
  .form__field textarea {
    height: auto;
    min-height: 140px;
    resize: vertical;
    line-height: 1.55;
    padding: var(--space-3) var(--field-padding-x);
  }
  .form__field input:focus,
  .form__field select:focus,
  .form__field textarea:focus {
    border: var(--field-border-focus);
    outline: none;
    box-shadow: 0 0 0 3px rgba(160, 32, 46, 0.25);
  }
  .form__field input::placeholder,
  .form__field textarea::placeholder {
    color: var(--color-text-subtle);
  }
  .form__field input[aria-invalid="true"],
  .form__field select[aria-invalid="true"],
  .form__field textarea[aria-invalid="true"] {
    border-color: var(--field-error-color);
  }

  .form__error {
    font-family: var(--font-sans);
    font-size: var(--fs-sm);
    color: var(--field-error-color);
    margin: 0;
    line-height: 1.4;
  }
  .form__error:empty { display: none; }

  .form__field--checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-3);
    margin-top: var(--space-2);
  }
  .form__field--checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--color-accent);
    cursor: pointer;
  }
  .form__label--inline {
    font-weight: 400;
    font-size: var(--fs-sm);
    line-height: 1.55;
    color: var(--color-text-muted);
    cursor: pointer;
  }
  .form__label--inline a {
    color: var(--color-text);
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .form__label--inline a:hover { color: var(--color-accent); }

  .form__submit {
    width: 100%;
    margin-top: var(--space-3);
  }
  .form__submit[aria-busy="true"] {
    opacity: 0.7;
    cursor: wait;
  }

  .form__error-banner {
    background: var(--field-error-bg);
    border: 1px solid var(--field-error-color);
    border-radius: var(--radius-md);
    padding: var(--space-4);
    font-size: var(--fs-sm);
    color: var(--field-error-color);
    line-height: 1.55;
    margin: 0;
  }
  .form__error-banner a { color: inherit; text-decoration: underline; }

  .form__success {
    text-align: center;
    padding: var(--space-9) var(--space-5);
  }
  .form__success-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-full);
    background: var(--color-success);
    color: var(--ink-950);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-5);
    box-shadow: 0 0 40px rgba(74, 222, 128, 0.35), var(--shadow-md);
  }
  .form__success-title {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: var(--fs-3xl);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--color-text);
    margin: 0 0 var(--space-3);
  }
  .form__success-body {
    font-size: var(--fs-lg);
    color: var(--color-text-muted);
    margin: 0 auto;
    max-width: 36ch;
    line-height: 1.55;
  }

  /* ─── Referenzen Section (Empty-State) ────────────────── */
  .referenzen {
    max-width: 720px;
    margin: 0 auto;
  }
  .pilot-card {
    background: var(--color-surface);
    border: var(--card-anchor-border);
    border-radius: var(--card-feature-radius);
    padding: var(--space-7);
    box-shadow: var(--card-anchor-shadow);
    display: flex;
    flex-direction: column;
  }
  @media (max-width: 720px) {
    .pilot-card { padding: var(--space-6); }
  }
  .pilot-card__tag {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: var(--fs-sm);
    color: var(--color-accent);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 var(--space-5);
  }
  .pilot-card__story {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(var(--fs-lg), 2vw, var(--fs-xl));
    line-height: 1.55;
    color: var(--color-text);
    margin: 0 0 var(--space-7);
    letter-spacing: -0.01em;
  }
  .pilot-card__story strong {
    font-weight: 600;
    color: var(--color-accent);
  }
  .pilot-card__cta {
    align-self: flex-start;
  }
  @media (max-width: 720px) {
    .pilot-card__cta { width: 100%; }
  }

  /* ─── FAQ Section ─────────────────────────────────────── */
  .faq {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 720px;
    display: flex;
    flex-direction: column;
  }
  .faq__item {
    border-bottom: 1px solid var(--color-border);
  }
  .faq__item:first-child {
    border-top: 1px solid var(--color-border);
  }
  .faq__question {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    padding: var(--space-5) 0;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: var(--fs-lg);
    line-height: 1.4;
    color: var(--color-text);
    min-height: 52px;
    list-style: none;
    transition: color var(--duration-fast) var(--ease-out);
  }
  .faq__question::-webkit-details-marker { display: none; }
  .faq__question::marker { content: ''; }
  .faq__question:hover { color: var(--color-accent); }
  .faq__question:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
    border-radius: var(--radius-sm);
  }
  .faq__icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    transition: transform var(--duration-base) var(--ease-out),
                color var(--duration-base) var(--ease-out);
    color: var(--color-text-muted);
  }
  .faq__item[open] .faq__icon {
    transform: rotate(180deg);
    color: var(--color-accent);
  }
  .faq__answer {
    padding: 0 0 var(--space-5);
    margin: 0;
    max-width: 56ch;
  }
  .faq__answer p {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: var(--fs-base);
    line-height: 1.6;
    color: var(--color-text-muted);
    margin: 0 0 var(--space-3);
  }
  .faq__answer p:last-child { margin: 0; }

  /* ─── Footer ──────────────────────────────────────────── */
  .footer {
    background: var(--wine-500);
    color: var(--color-text);
    padding: var(--space-9) 0 var(--space-7);
    margin-top: var(--space-10);
  }
  .footer__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad-x);
  }
  .footer__top {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-bottom: var(--space-7);
  }
  .footer__logo {
    display: inline-flex;
    align-items: stretch;
    gap: var(--space-3);
    text-decoration: none;
    color: var(--color-text);
  }
  .footer__logo .logo__oj {
    color: var(--color-text);   /* auf Weinrot wird OJ Cream, nicht Weinrot */
    font-size: 30px;
  }
  .footer__logo .logo__bar { background: rgba(250, 247, 242, 0.4); }
  .footer__logo .logo__text { font-size: 10px; color: var(--color-text); }
  .footer__tagline {
    font-size: var(--fs-base);
    line-height: 1.55;
    max-width: 56ch;
    opacity: 0.88;
  }
  .footer__contact {
    font-size: var(--fs-base);
    margin-bottom: var(--space-5);
  }
  .footer__contact a { color: var(--color-text); text-decoration: underline; text-underline-offset: 3px; }
  .footer__contact a:hover { opacity: 0.85; }
  .footer__cta {
    display: inline-flex; align-items: center; gap: var(--space-2);
    padding: 14px 22px;
    background: var(--color-bg);
    color: var(--color-text);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: var(--fs-sm);
    text-decoration: none;
    transition: background var(--duration-fast) var(--ease-out);
  }
  .footer__cta:hover { background: var(--color-surface-hover); }
  .footer__bottom {
    border-top: 1px solid rgba(250, 247, 242, 0.15);
    padding-top: var(--space-5);
    font-size: var(--fs-sm);
    opacity: 0.75;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-5);
  }
  .footer__bottom a { color: var(--color-text); }

  /* ─── Reveal Animation ────────────────────────────────── */
  .reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
  }
  .reveal.is-visible { opacity: 1; transform: none; }
  /* Stagger: nur direkte Kinder von definierten Containern bekommen Delays. */
  .probleme > .reveal:nth-child(1) { transition-delay: 0ms; }
  .probleme > .reveal:nth-child(2) { transition-delay: 80ms; }
  .probleme > .reveal:nth-child(3) { transition-delay: 160ms; }
  .probleme > .reveal:nth-child(4) { transition-delay: 240ms; }
  .leistungen > .reveal:nth-child(1) { transition-delay: 0ms; }
  .leistungen > .reveal:nth-child(2) { transition-delay: 80ms; }
  .leistungen > .reveal:nth-child(3) { transition-delay: 160ms; }
  .prozess > .reveal:nth-child(1) { transition-delay: 0ms; }
  .prozess > .reveal:nth-child(2) { transition-delay: 80ms; }
  .prozess > .reveal:nth-child(3) { transition-delay: 160ms; }
  .prozess > .reveal:nth-child(4) { transition-delay: 240ms; }
  .ueber__content > .reveal:nth-child(1) { transition-delay: 0ms; }
  .ueber__content > .reveal:nth-child(2) { transition-delay: 80ms; }
  .ueber__content > .reveal:nth-child(3) { transition-delay: 160ms; }
  .ueber__content > .reveal:nth-child(4) { transition-delay: 240ms; }
  .ueber__content > .reveal:nth-child(5) { transition-delay: 320ms; }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: .001ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: .001ms !important;
    }
    .reveal { opacity: 1; transform: none; }
  }

  /* ═══════════════════════════════════════════════════════════
     PREISE — Magazine-Look passend zu Hero/Feature/Referenzen
     ═══════════════════════════════════════════════════════════ */
  .preise {
    position: relative;
    padding: var(--space-10) 0;
    background: var(--color-bg);
    overflow: hidden;
  }
  .preise__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--container-pad-x);
  }
  .preise__header {
    text-align: center;
    margin: 0 auto var(--space-9);
    max-width: 760px;
  }
  .preise__title {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: clamp(34px, 4.8vw, 58px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: var(--color-text);
    margin: var(--space-3) 0 var(--space-4);
  }
  .preise__title em {
    font-style: italic;
    color: var(--wine-500);
  }
  .preise__lead {
    font-size: clamp(16px, 1.4vw, 19px);
    color: var(--color-text-soft);
    line-height: 1.6;
  }

  /* Grid mit 3 Cards */
  .preise-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: var(--space-5);
    align-items: stretch;
    margin: 0 0 var(--space-7);
  }
  @media (max-width: 1024px) {
    .preise-grid {
      grid-template-columns: 1fr;
      gap: var(--space-5);
    }
  }

  /* Einzelne Paket-Card — Style wie References-Cards */
  .preis-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: var(--space-6) var(--space-6) var(--space-6);
    border-radius: 28px;
    background: rgba(20, 20, 20, 0.92);
    border: 1px solid rgba(250, 247, 242, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
    isolation: isolate;
    transition: transform 320ms var(--ease-out), box-shadow 320ms var(--ease-out);
  }
  .preis-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.60);
  }

  /* Highlight-Card — Wein-Border, leicht intensiverer Shadow */
  .preis-card--featured {
    border: 1.5px solid rgba(194, 56, 74, 0.50);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55), 0 0 60px rgba(160, 32, 46, 0.15);
  }
  .preis-card--featured:hover {
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.65), 0 0 80px rgba(160, 32, 46, 0.25);
  }

  /* Top-Bereich — Category-Pill links + Pfeil-Button rechts */
  .preis-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-5);
  }
  .preis-card__cat {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(250, 247, 242, 0.08);
    color: var(--color-text-soft);
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
  }
  .preis-card__cat--featured {
    background: var(--wine-500);
    color: var(--color-text);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: var(--fs-xs);
    box-shadow: 0 6px 18px rgba(160, 32, 46, 0.40);
  }

  .preis-card__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(250, 247, 242, 0.10);
    color: var(--color-text);
    flex-shrink: 0;
    text-decoration: none;
    transition: background 240ms var(--ease-out), transform 240ms var(--ease-out), color 240ms var(--ease-out);
  }
  .preis-card__arrow:hover {
    background: var(--color-text);
    color: var(--color-bg);
    transform: translateX(2px) translateY(-2px);
  }

  /* Paketname als großer Titel */
  .preis-card__name {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: clamp(26px, 2.4vw, 34px);
    line-height: 1.1;
    letter-spacing: -0.015em;
    color: var(--color-text);
    margin: 0 0 var(--space-2);
  }
  /* Zielgruppe als kleiner Untertitel unter dem Namen */
  .preis-card__audience {
    font-family: var(--font-sans);
    font-size: var(--fs-sm);
    font-weight: 400;
    color: var(--color-text-soft);
    margin: 0 0 var(--space-5);
    line-height: 1.4;
  }

  /* Preis-Block — groß, Fraunces */
  .preis-card__price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-bottom: var(--space-3);
  }
  .preis-card__price-num {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--color-text);
  }
  .preis-card--featured .preis-card__price-num {
    background: linear-gradient(120deg, var(--wine-400) 0%, var(--wine-500) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
  .preis-card__price-unit {
    font-family: var(--font-sans);
    font-size: var(--fs-sm);
    color: var(--color-text-soft);
    font-weight: 500;
  }
  .preis-card__price-recurring {
    font-family: var(--font-sans);
    font-size: var(--fs-sm);
    color: var(--blue-400);
    font-weight: 600;
    width: 100%;
    margin-top: var(--space-1);
  }

  /* Delivery-Pill mit pulsierendem Dot */
  .preis-card__delivery {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    margin: 0 0 var(--space-6);
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(250, 247, 242, 0.04);
    border: 1px solid rgba(250, 247, 242, 0.10);
    font-family: var(--font-sans);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-soft);
    align-self: flex-start;
  }
  .preis-card__delivery-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--blue-400);
    box-shadow: 0 0 8px rgba(82, 147, 181, 0.6);
    animation: pulse 1.8s infinite ease-in-out;
  }

  /* Bullet-Liste mit Check-Icons */
  .preis-card__bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-7);
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    flex: 1;
  }
  .preis-card__bullets li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    font-size: var(--fs-sm);
    line-height: 1.5;
    color: var(--color-text);
  }
  .preis-card__bullets .check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--blue-soft);
    color: var(--blue-400);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
  }
  .preis-card__bullets .check svg {
    width: 11px;
    height: 11px;
  }
  .preis-card--featured .preis-card__bullets .check {
    background: rgba(194, 56, 74, 0.18);
    color: var(--wine-400);
  }

  /* CTA-Link in der Card — Hero-Glass-Style (gradient border + dark glass) */
  .preis-card__cta,
  .preis-card__cta--primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    padding: 16px 28px;
    border-radius: 16px;
    border: 1px solid rgba(250, 247, 242, 0.10);
    background:
      linear-gradient(rgba(14, 14, 14, 0.94), rgba(14, 14, 14, 0.94)) padding-box,
      linear-gradient(to bottom, rgba(250, 247, 242, 0.20), rgba(0, 0, 0, 0.20)) border-box;
    color: var(--color-text);
    font-family: var(--font-sans);
    font-size: var(--fs-base);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    transition: box-shadow 320ms var(--ease-out), gap 240ms var(--ease-out), transform 240ms var(--ease-out);
  }
  .preis-card__cta:hover,
  .preis-card__cta--primary:hover {
    color: var(--color-text);
    text-decoration: none;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.50);
    gap: 14px;
    transform: translateY(-2px);
  }

  /* Fußnote unter dem Grid */
  .preise__footnote {
    text-align: center;
    font-size: var(--fs-sm);
    color: var(--color-text-soft);
    line-height: 1.55;
    margin: 0 auto;
    max-width: 620px;
  }

  /* Mobile: Featured-Card bleibt visuell hervorgehoben */
  @media (max-width: 1024px) {
    .preis-card--featured {
      order: -1;
    }
  }

  /* ═══════════════════════════════════════════════════════════
     FAQ — Accordion mit Glas-Items
     ═══════════════════════════════════════════════════════════ */
  .faq-section {
    position: relative;
    padding: var(--space-10) 0;
    background: var(--color-bg);
    overflow: hidden;
  }
  .faq-section__inner {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 var(--container-pad-x);
  }
  .faq-section__header {
    text-align: center;
    margin: 0 auto var(--space-8);
    max-width: 680px;
  }
  .faq-section__title {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: clamp(32px, 4.5vw, 54px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: var(--color-text);
    margin: var(--space-3) 0 var(--space-4);
  }
  .faq-section__title em {
    font-style: italic;
    color: var(--wine-500);
  }
  .faq-section__lead {
    font-size: clamp(16px, 1.3vw, 18px);
    color: var(--color-text-soft);
    line-height: 1.6;
  }

  .faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
  }

  .faq-item {
    border-radius: 16px;
    background: rgba(14, 14, 14, 0.65);
    border: 1px solid rgba(250, 247, 242, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
    transition: border-color 240ms var(--ease-out);
  }
  .faq-item[open] {
    border-color: rgba(250, 247, 242, 0.18);
  }
  .faq-item__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    padding: var(--space-5) var(--space-6);
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: clamp(17px, 1.4vw, 20px);
    line-height: 1.3;
    color: var(--color-text);
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: background 240ms var(--ease-out);
  }
  .faq-item__q::-webkit-details-marker { display: none; }
  .faq-item__q:hover { background: rgba(250, 247, 242, 0.03); }

  .faq-item__icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(250, 247, 242, 0.06);
    color: var(--wine-400);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 320ms var(--ease-out), background 240ms var(--ease-out);
  }
  .faq-item__icon svg { width: 16px; height: 16px; }
  .faq-item[open] .faq-item__icon {
    transform: rotate(45deg);
    background: var(--wine-500);
    color: var(--color-text);
  }

  .faq-item__a {
    padding: 0 var(--space-6) var(--space-5);
    color: var(--color-text-soft);
    font-size: var(--fs-base);
    line-height: 1.6;
  }
  .faq-item__a p { margin: 0; }

  /* ═══════════════════════════════════════════════════════════
     KONTAKT-FORM — Glas-Container mit Shimmer
     ═══════════════════════════════════════════════════════════ */
  .kontakt-section {
    position: relative;
    padding: var(--space-10) 0 var(--space-9);
    background: var(--color-surface);
    overflow: hidden;
  }
  .kontakt-section__inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 var(--container-pad-x);
  }
  .kontakt-section__header {
    text-align: center;
    margin: 0 auto var(--space-8);
  }
  .kontakt-section__title {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: clamp(32px, 4.5vw, 54px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: var(--color-text);
    margin: var(--space-3) 0 var(--space-4);
  }
  .kontakt-section__title em {
    font-style: italic;
    color: var(--wine-500);
  }
  .kontakt-section__lead {
    font-size: clamp(16px, 1.3vw, 18px);
    color: var(--color-text-soft);
    line-height: 1.6;
  }

  .kontakt-card {
    position: relative;
    padding: var(--space-7) var(--space-7);
    border-radius: 24px;
    background: rgba(14, 14, 14, 0.75);
    border: 1px solid rgba(250, 247, 242, 0.10);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
    isolation: isolate;
  }
  @media (max-width: 600px) {
    .kontakt-card { padding: var(--space-5); }
  }

  .kontakt-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
  }
  .kontakt-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
  }
  @media (max-width: 600px) {
    .kontakt-form__row { grid-template-columns: 1fr; }
  }
  .kontakt-form__field {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
  }
  .kontakt-form__label {
    font-family: var(--font-sans);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--color-text);
    letter-spacing: 0.01em;
  }
  .kontakt-form__optional {
    font-weight: 400;
    color: var(--color-text-soft);
    font-size: var(--fs-xs);
  }
  .kontakt-form__input {
    font-family: var(--font-sans);
    font-size: var(--fs-base);
    color: var(--color-text);
    background: rgba(250, 247, 242, 0.04);
    border: 1px solid rgba(250, 247, 242, 0.12);
    border-radius: 12px;
    padding: 12px 16px;
    transition: border-color 240ms var(--ease-out), background 240ms var(--ease-out), box-shadow 240ms var(--ease-out);
    width: 100%;
  }
  .kontakt-form__input::placeholder {
    color: rgba(250, 247, 242, 0.40);
  }
  .kontakt-form__input:hover {
    border-color: rgba(250, 247, 242, 0.20);
  }
  .kontakt-form__input:focus {
    outline: none;
    border-color: var(--wine-400);
    background: rgba(250, 247, 242, 0.06);
    box-shadow: 0 0 0 4px rgba(194, 56, 74, 0.15);
  }
  textarea.kontakt-form__input {
    resize: vertical;
    min-height: 120px;
    font-family: var(--font-sans);
  }
  select.kontakt-form__input {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B8B2A6' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    padding-right: 42px;
    cursor: pointer;
  }
  select.kontakt-form__input option {
    background: var(--color-surface);
    color: var(--color-text);
  }

  .kontakt-form__honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
  }

  /* DSGVO-Checkbox */
  .kontakt-form__check {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-3) 0;
  }
  .kontakt-form__checkbox {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--wine-500);
    cursor: pointer;
  }
  .kontakt-form__check-label {
    font-family: var(--font-sans);
    font-size: var(--fs-sm);
    color: var(--color-text-soft);
    line-height: 1.5;
    cursor: pointer;
  }

  /* Submit-Button — Hero-Glass-Style */
  .kontakt-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    padding: 18px 32px;
    border-radius: 18px;
    border: 1px solid rgba(250, 247, 242, 0.10);
    background:
      linear-gradient(rgba(14, 14, 14, 0.94), rgba(14, 14, 14, 0.94)) padding-box,
      linear-gradient(to bottom, rgba(250, 247, 242, 0.20), rgba(0, 0, 0, 0.20)) border-box;
    color: var(--color-text);
    font-family: var(--font-sans);
    font-size: var(--fs-lg);
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    align-self: flex-start;
    transition: box-shadow 320ms var(--ease-out), gap 240ms var(--ease-out), transform 240ms var(--ease-out);
  }
  .kontakt-form__submit:hover {
    color: var(--color-text);
    text-decoration: none;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.50);
    gap: 14px;
    transform: translateY(-2px);
  }
  @media (max-width: 600px) {
    .kontakt-form__submit { width: 100%; align-self: stretch; }
  }

  .kontakt-form__banner {
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(194, 56, 74, 0.12);
    border: 1px solid rgba(194, 56, 74, 0.35);
    color: var(--wine-400);
    font-size: var(--fs-sm);
    margin: 0;
  }

  /* Success-State nach Submit — nur sichtbar wenn nicht [hidden] */
  .kontakt-form__success[hidden] {
    display: none !important;
  }
  .kontakt-form__success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-6) var(--space-5);
  }
  .kontakt-form__success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(82, 147, 181, 0.15);
    color: var(--blue-400);
    margin-bottom: var(--space-4);
  }
  .kontakt-form__success-title {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: clamp(24px, 2.4vw, 32px);
    color: var(--color-text);
    margin: 0 0 var(--space-2);
  }
  .kontakt-form__success-body {
    font-size: var(--fs-base);
    color: var(--color-text-soft);
    margin: 0;
  }

  /* ═══════════════════════════════════════════════════════════
     COOKIE-MODAL — DSGVO-konform mit 3 Tabs (Cookiebot-Stil)
     ═══════════════════════════════════════════════════════════ */

  html.cookie-locked,
  html.cookie-locked body {
    overflow: hidden;
    height: 100%;
  }

  .cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-5);
    animation: cookie-fade-in 280ms ease-out;
  }
  .cookie-modal[hidden] { display: none; }

  .cookie-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(14px) saturate(120%);
    -webkit-backdrop-filter: blur(14px) saturate(120%);
  }

  .cookie-modal__panel {
    position: relative;
    width: 100%;
    max-width: 880px;
    max-height: calc(100vh - var(--space-5) * 2);
    display: flex;
    flex-direction: column;
    background: rgba(14, 14, 14, 0.96);
    border: 1px solid rgba(250, 247, 242, 0.10);
    border-radius: 24px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.65);
    color: var(--color-text);
    animation: cookie-slide-up 360ms cubic-bezier(0.34, 1.3, 0.64, 1) backwards;
    overflow: hidden;
  }

  /* Tab-Navigation oben */
  .cookie-tabs {
    display: flex;
    flex-shrink: 0;
    border-bottom: 1px solid rgba(250, 247, 242, 0.10);
    padding: 0 var(--space-7);
    gap: var(--space-3);
  }
  @media (max-width: 600px) {
    .cookie-tabs { padding: 0 var(--space-4); }
  }
  .cookie-tab {
    flex: 1;
    background: transparent;
    border: none;
    padding: 22px 8px;
    font-family: var(--font-sans);
    font-size: var(--fs-base);
    font-weight: 600;
    color: var(--color-text-soft);
    cursor: pointer;
    position: relative;
    transition: color 240ms var(--ease-out);
    text-align: center;
  }
  .cookie-tab:hover { color: var(--color-text); }
  .cookie-tab.is-active { color: var(--color-text); }
  .cookie-tab.is-active::after {
    content: "";
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: -1px;
    height: 2px;
    background: var(--wine-500);
    border-radius: 2px 2px 0 0;
  }

  /* Tab-Panels */
  .cookie-panel {
    flex: 1;
    overflow-y: auto;
    padding: var(--space-7);
  }
  @media (max-width: 600px) {
    .cookie-panel { padding: var(--space-5) var(--space-4); }
  }
  .cookie-panel[hidden] { display: none; }

  .cookie-panel__title {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: clamp(19px, 1.8vw, 22px);
    line-height: 1.3;
    color: var(--color-text);
    margin: 0 0 var(--space-4);
  }
  .cookie-panel__text {
    font-size: var(--fs-base);
    color: var(--color-text-soft);
    line-height: 1.65;
    margin: 0;
  }
  .cookie-panel__text a,
  .cookie-panel__about a {
    color: var(--wine-400);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
  }
  .cookie-panel__text a:hover,
  .cookie-panel__about a:hover { color: var(--color-text); }

  .cookie-panel__about {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    font-size: var(--fs-sm);
    color: var(--color-text-soft);
    line-height: 1.6;
  }
  .cookie-panel__about p { margin: 0; }

  /* Kategorien-Liste im Details-Tab */
  .cookie-cats {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
  }
  .cookie-cat {
    padding: 0;
    border: none;
    background: transparent;
  }
  .cookie-cat__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
    margin-bottom: var(--space-2);
  }
  .cookie-cat__name {
    font-family: var(--font-sans);
    font-size: var(--fs-base);
    font-weight: 600;
    color: var(--color-text);
  }
  .cookie-cat__desc {
    font-size: var(--fs-sm);
    color: var(--color-text-soft);
    line-height: 1.55;
    margin: 0;
  }

  /* Toggle-Switch */
  .cookie-toggle {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
    cursor: pointer;
  }
  .cookie-toggle input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
  }
  .cookie-toggle__track {
    position: absolute;
    inset: 0;
    background: rgba(250, 247, 242, 0.15);
    border-radius: 999px;
    transition: background 240ms var(--ease-out);
  }
  .cookie-toggle__track::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--color-text);
    transition: transform 240ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  .cookie-toggle input:checked + .cookie-toggle__track {
    background: var(--wine-500);
  }
  .cookie-toggle input:checked + .cookie-toggle__track::before {
    transform: translateX(20px);
  }
  .cookie-toggle input:focus-visible + .cookie-toggle__track {
    box-shadow: 0 0 0 3px rgba(194, 56, 74, 0.30);
  }
  .cookie-toggle.is-disabled {
    cursor: not-allowed;
    opacity: 0.55;
  }
  .cookie-toggle.is-disabled .cookie-toggle__track::before {
    background: var(--color-text-soft);
  }

  /* Action-Buttons — beide gleichwertig (DSGVO-Pflicht) */
  .cookie-modal__actions {
    display: flex;
    flex-shrink: 0;
    gap: var(--space-3);
    padding: var(--space-6) var(--space-7);
    border-top: 1px solid rgba(250, 247, 242, 0.10);
    justify-content: flex-end;
    flex-direction: column-reverse;
  }
  @media (min-width: 600px) {
    .cookie-modal__actions {
      flex-direction: row;
    }
  }
  @media (max-width: 600px) {
    .cookie-modal__actions { padding: var(--space-4); }
  }

  .cookie-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 12px;
    font-family: var(--font-sans);
    font-size: var(--fs-base);
    font-weight: 600;
    cursor: pointer;
    min-width: 160px;
    transition: background 240ms var(--ease-out), border-color 240ms var(--ease-out), box-shadow 240ms var(--ease-out);
  }
  @media (max-width: 600px) {
    .cookie-btn { width: 100%; }
  }
  /* "Ablehnen" — Outline in Wein, gleich groß wie Accept */
  .cookie-btn--decline {
    background: transparent;
    border: 1.5px solid var(--wine-500);
    color: var(--color-text);
  }
  .cookie-btn--decline:hover {
    background: rgba(160, 32, 46, 0.10);
    border-color: var(--wine-400);
  }
  /* "Alle zulassen" — Wein-Solid */
  .cookie-btn--accept {
    background: var(--wine-500);
    border: 1.5px solid var(--wine-500);
    color: var(--color-text);
    box-shadow: 0 10px 28px rgba(160, 32, 46, 0.35);
  }
  .cookie-btn--accept:hover {
    background: var(--wine-400);
    border-color: var(--wine-400);
    box-shadow: 0 14px 36px rgba(194, 56, 74, 0.45);
  }

  @keyframes cookie-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
  @keyframes cookie-slide-up {
    from { opacity: 0; transform: translateY(20px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }

  @media (prefers-reduced-motion: reduce) {
    .cookie-modal,
    .cookie-modal__panel { animation: none; }
  }

  /* ═══════════════════════════════════════════════════════════
     FOOTER — 6-Spalten-Grid (Brand 2 cols + 4 Menü-Spalten)
     Dunkel mit Wein-Hover, passt zum Page-Look.
     ═══════════════════════════════════════════════════════════ */
  .footer-block {
    position: relative;
    padding: var(--space-10) 0 var(--space-7);
    background: var(--color-surface);
    border-top: 1px solid rgba(250, 247, 242, 0.08);
    color: var(--color-text);
  }
  .footer-block__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad-x);
  }

  /* 6-Spalten-Grid: Brand nimmt 2 Spalten, dann 4 Menü-Spalten */
  .footer-block__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: var(--space-8) var(--space-6);
    margin-bottom: var(--space-9);
  }
  @media (max-width: 1024px) {
    .footer-block__grid {
      grid-template-columns: 1fr 1fr;
      gap: var(--space-7) var(--space-5);
    }
    .footer-block__brand {
      grid-column: 1 / -1;
      margin-bottom: var(--space-4);
    }
  }
  @media (max-width: 600px) {
    .footer-block__grid {
      grid-template-columns: 1fr 1fr;
      gap: var(--space-6) var(--space-5);
    }
  }

  /* Brand-Spalte (Logo + Tagline) */
  .footer-block__brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    max-width: 380px;
  }
  .footer-block__logo {
    display: inline-flex;
    align-items: stretch;
    gap: var(--space-3);
    text-decoration: none;
    align-self: flex-start;
  }
  .footer-block__tagline {
    font-family: var(--font-sans);
    font-size: var(--fs-base);
    color: var(--color-text-soft);
    line-height: 1.6;
    margin: 0;
  }
  .footer-block__tagline strong {
    color: var(--color-text);
    font-weight: 600;
  }

  /* Menü-Spalten */
  .footer-block__col-title {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: var(--fs-sm);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text);
    margin: 0 0 var(--space-4);
  }
  .footer-block__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
  }
  .footer-block__list li {
    font-family: var(--font-sans);
    font-size: var(--fs-sm);
    color: var(--color-text-soft);
    line-height: 1.5;
  }
  .footer-block__list a {
    color: var(--color-text-soft);
    text-decoration: none;
    transition: color 200ms var(--ease-out);
  }
  .footer-block__list a:hover {
    color: var(--wine-400);
  }

  /* Bottom-Row */
  .footer-block__bottom {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--space-4);
    padding-top: var(--space-6);
    border-top: 1px solid rgba(250, 247, 242, 0.08);
    font-family: var(--font-sans);
    font-size: var(--fs-sm);
  }
  @media (min-width: 700px) {
    .footer-block__bottom {
      flex-direction: row;
      align-items: center;
    }
  }
  .footer-block__copyright {
    color: var(--color-text-soft);
    margin: 0;
  }
  .footer-block__legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: var(--space-5);
  }
  .footer-block__legal a {
    color: var(--color-text-soft);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: color 200ms var(--ease-out);
  }
  .footer-block__legal a:hover {
    color: var(--wine-400);
  }

  /* ═══════════════════════════════════════════════════════════
     HERO — Erweiterte SEO/Lead-Gen-Elemente
     Benefits-Liste, sekundärer CTA, Social-Proof
     ═══════════════════════════════════════════════════════════ */

  /* Benefits-Liste — kompakte Check-Liste zwischen Subline und CTAs */
  .hero__benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-6);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3) var(--space-5);
    max-width: 580px;
    opacity: 0;
    animation: fade-in-up 1s cubic-bezier(0.25, 0.4, 0.25, 1) 1.5s forwards;
  }
  @media (max-width: 700px) {
    .hero__benefits {
      grid-template-columns: 1fr;
      gap: var(--space-2);
    }
  }
  .hero__benefits li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    font-size: var(--fs-sm);
    color: var(--color-text);
    line-height: 1.4;
  }
  .hero__benefits li strong {
    color: var(--color-text);
    font-weight: 600;
  }
  .hero__benefits-check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(160, 32, 46, 0.15);
    color: var(--wine-400);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
  }
  .hero__benefits-check svg {
    width: 11px;
    height: 11px;
  }

  /* CTAs nebeneinander — primary glass + secondary ghost-link */
  .hero__ctas {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: var(--space-4);
  }
  /* Auf Mobile dürfen sie auf 2 Zeilen brechen */
  @media (max-width: 720px) {
    .hero__ctas { flex-wrap: wrap; }
  }

  /* Sekundärer CTA — gleiche Größe wie der Glass-Button daneben,
     aber Ghost/Outline-Look statt Wein-Glass. */
  .hero__cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: 18px 32px;
    border-radius: 18px;
    border: 1px solid rgba(250, 247, 242, 0.18);
    color: var(--color-text);
    font-family: var(--font-sans);
    font-size: var(--fs-lg);
    font-weight: 600;
    text-decoration: none;
    background: transparent;
    transition: background 240ms var(--ease-out),
                border-color 240ms var(--ease-out),
                gap 240ms var(--ease-out);
  }
  .hero__cta-secondary:hover {
    background: rgba(250, 247, 242, 0.05);
    border-color: rgba(250, 247, 242, 0.35);
    color: var(--color-text);
    text-decoration: none;
    gap: 14px;
  }
  .hero__cta-secondary svg {
    transition: transform 240ms var(--ease-out);
  }
  .hero__cta-secondary:hover svg {
    transform: translateX(2px);
  }

  /* Sozialer Beweis — Zeile unter den CTAs */
  .hero__social-proof {
    margin: var(--space-5) 0 var(--space-6);
    font-size: var(--fs-sm);
    color: var(--color-text-soft);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-2);
    line-height: 1.5;
    opacity: 0;
    animation: fade-in-up 1s cubic-bezier(0.25, 0.4, 0.25, 1) 1.9s forwards;
  }
  .hero__social-proof-label {
    font-weight: 600;
    color: var(--color-text);
  }
  .hero__social-proof a {
    color: var(--color-text);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: color 200ms var(--ease-out);
  }
  .hero__social-proof a:hover {
    color: var(--wine-400);
    text-decoration-thickness: 1px;
  }
  .hero__social-proof-sep {
    opacity: 0.4;
  }

  /* Feature-Block Section-Header — über dem Grid, ausgerichtet
     zum Bild (linke Spalte). Prominenter als reguläre Eyebrow. */
  .feature-block__header {
    max-width: var(--container-max);
    margin: 0 auto var(--space-6);
    padding: 0 var(--container-pad-x);
  }
  .feature-block__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: 10px 20px;
    border-radius: 999px;
    background: rgba(160, 32, 46, 0.10);
    border: 1px solid rgba(194, 56, 74, 0.25);
    font-family: var(--font-sans);
    font-size: var(--fs-sm);
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--wine-400);
    margin: 0 0 var(--space-5);
  }
  .feature-block__eyebrow .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--wine-400);
    box-shadow: 0 0 0 4px rgba(194, 56, 74, 0.18);
    animation: pulse 1.8s infinite ease-in-out;
  }

  /* ─── Add-Ons — Hosting + Pflege, zwei Blöcke nebeneinander ── */
  .preise-addons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    margin: var(--space-7) auto 0;
    max-width: 1100px;
  }
  @media (max-width: 900px) {
    .preise-addons {
      grid-template-columns: 1fr;
      gap: var(--space-4);
    }
  }
  .preise-addon {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-5) var(--space-5);
    border-radius: 18px;
    background: rgba(14, 14, 14, 0.55);
    border: 1px solid rgba(250, 247, 242, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  @media (max-width: 600px) {
    .preise-addon {
      flex-direction: column;
      gap: var(--space-3);
    }
  }
  .preise-addon__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(82, 147, 181, 0.15);
    color: var(--blue-400);
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .preise-addon__title {
    font-family: var(--font-sans);
    font-size: var(--fs-base);
    font-weight: 600;
    color: var(--color-text);
    margin: 0 0 var(--space-2);
  }
  .preise-addon__title strong {
    color: var(--blue-400);
  }
  .preise-addon__desc {
    font-size: var(--fs-sm);
    color: var(--color-text-soft);
    line-height: 1.55;
    margin: 0;
  }

  /* Wort-Preis (z. B. "Auf Anfrage") — etwas kleiner als Zahlen */
  .preis-card__price-num--word {
    font-size: clamp(24px, 2.6vw, 34px) !important;
  }

  /* ─── Kontakt-Optionen — Termin buchen vs Formular ───── */
  .kontakt-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    margin: 0 0 var(--space-6);
  }
  @media (max-width: 700px) {
    .kontakt-options { grid-template-columns: 1fr; }
  }
  .kontakt-option {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-5);
    border-radius: 18px;
    background: rgba(20, 20, 20, 0.92);
    border: 1px solid rgba(250, 247, 242, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--color-text);
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
    transition: transform 320ms var(--ease-out), box-shadow 320ms var(--ease-out), border-color 240ms var(--ease-out);
    isolation: isolate;
  }
  .kontakt-option:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.55);
    color: var(--color-text);
    text-decoration: none;
  }
  /* Primary-Variante (Termin buchen) — Wein-Akzent */
  .kontakt-option--primary {
    border-color: rgba(194, 56, 74, 0.40);
  }
  .kontakt-option--primary:hover {
    border-color: rgba(194, 56, 74, 0.65);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.55), 0 0 60px rgba(160, 32, 46, 0.18);
  }

  .kontakt-option__icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(250, 247, 242, 0.06);
    color: var(--color-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .kontakt-option--primary .kontakt-option__icon {
    background: rgba(160, 32, 46, 0.18);
    color: var(--wine-400);
  }

  .kontakt-option__text {
    flex: 1;
    min-width: 0;
  }
  .kontakt-option__title {
    font-family: var(--font-sans);
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 4px;
    line-height: 1.2;
  }
  .kontakt-option__desc {
    font-size: var(--fs-sm);
    color: var(--color-text-soft);
    line-height: 1.45;
    margin: 0;
  }

  .kontakt-option__arrow {
    flex-shrink: 0;
    color: var(--color-text-soft);
    transition: color 240ms var(--ease-out), transform 240ms var(--ease-out);
  }
  .kontakt-option:hover .kontakt-option__arrow {
    color: var(--color-text);
    transform: translateX(3px);
  }

  /* ─── Form-Verbesserungen — Gruppen + Helpers ─────────── */

  /* Fieldset für Gruppierung (Section 01/02/03) */
  .kontakt-form__group {
    border: none;
    padding: 0;
    margin: 0 0 var(--space-6);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
  }
  .kontakt-form__group + .kontakt-form__group {
    padding-top: var(--space-6);
    border-top: 1px solid rgba(250, 247, 242, 0.06);
  }

  /* Legend — Schritt-Nummer + Section-Titel */
  .kontakt-form__legend {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: clamp(18px, 1.5vw, 22px);
    color: var(--color-text);
    margin: 0 0 var(--space-2);
    padding: 0;
  }
  .kontakt-form__step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(160, 32, 46, 0.15);
    color: var(--wine-400);
    font-family: var(--font-serif);
    font-style: italic;
    font-size: var(--fs-sm);
    font-weight: 700;
    flex-shrink: 0;
  }

  /* Required-Marker — kleines Wein-Sternchen */
  .kontakt-form__required {
    color: var(--wine-400);
    font-weight: 600;
    margin-left: 2px;
  }

  /* Hint-Text — kleine Erklärung unter Inputs */
  .kontakt-form__hint {
    font-size: var(--fs-xs);
    color: var(--color-text-soft);
    line-height: 1.4;
    margin: var(--space-2) 0 0;
  }

  /* Assurance-Zeile — Trust-Signal unter Submit-Button */
  .kontakt-form__assurance {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--fs-sm);
    color: var(--color-text-soft);
    margin: var(--space-4) 0 0;
    line-height: 1.5;
  }
  .kontakt-form__assurance svg {
    flex-shrink: 0;
    color: var(--wine-400);
  }
