/* Landing (öffentliche Startseite) — Marken-Tokens, eigenes schlankes
   Layout-System (lp-*), Basis ohne JavaScript voll nutzbar. Typografie:
   Instrument Sans (Arbeitsschrift) + Fraunces (Brand/Emotion).
   Erlebnis-Schicht «Der ruhige Griff»: Papier wird gelegt, geblättert,
   gestempelt — nie geschleudert. */

* { box-sizing: border-box; }
body.lp {
    margin: 0; background: var(--bg); color: var(--ink);
    font-family: var(--font-sans); line-height: 1.55; font-kerning: normal;
    -webkit-font-smoothing: antialiased;
}
::selection { background: var(--gold-bg); color: var(--ink); }
:focus-visible { outline: 2px solid var(--gold-dark); outline-offset: 3px; border-radius: 2px; }
.lp-cta:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
.lp-final :focus-visible { outline-color: var(--gold); }
.skip-link {
    position: absolute; left: -999px; top: 0; background: var(--ink); color: var(--text-inverse);
    padding: .5rem 1rem; z-index: 100; border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }

/* ── Kopf (sticky, Anker-Navigation braucht Dauerzugriff) ─── */
.lp-topbar {
    position: sticky; top: 0; z-index: 50;
    background: color-mix(in srgb, var(--bg) 86%, transparent);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}
#main, #erlebnisse, #draht, #funktionen, #kollektion, #preis, #faq { scroll-margin-top: 4.5rem; }
.lp-top {
    display: flex; align-items: center; justify-content: space-between; gap: var(--s4);
    max-width: 72rem; margin: 0 auto; padding: .9rem var(--s5);
}
.lp-brand { display: inline-flex; align-items: center; }
.lp-brand-mark { display: block; height: 26px; width: auto; }
.lp-brand-sm .lp-brand-mark { height: 20px; }
.lp-topnav { display: flex; align-items: center; gap: 1.4rem; }
.lp-topnav a { color: var(--ink-soft); text-decoration: none; font-size: .92rem; font-weight: 550; }
.lp-topnav a:hover { color: var(--ink); }

.lp-cta {
    display: inline-block; background: var(--gold-hover); color: var(--text-inverse) !important;
    border-radius: var(--r-sm); padding: .55rem 1.1rem; font-weight: 650; letter-spacing: .01em;
    text-decoration: none; box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16), 0 1px 2px rgba(31, 28, 25, .15);
    transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.lp-cta:hover { background: var(--gold-dark); transform: translateY(-1px); }
/* AA: Basis dunkler als --gold (#A67C2E waere nur 3.79:1 auf Weiss-Text) */
.lp-cta:active { transform: none; box-shadow: inset 0 1px 2px rgba(31, 28, 25, .2); }
.lp-cta-lg { padding: .8rem 1.6rem; font-size: 1rem; }
.lp-ghost {
    display: inline-block; padding: .8rem .2rem; color: var(--ink); font-weight: 600;
    text-decoration: underline; text-decoration-color: var(--gold);
    text-decoration-thickness: 1.5px; text-underline-offset: 6px;
    transition: color var(--t-fast) var(--ease), text-decoration-color var(--t-fast) var(--ease);
}
.lp-ghost:hover { color: var(--gold-dark); text-decoration-color: var(--gold-dark); }

/* ── Hero ─────────────────────────────────────────────────── */
.lp-hero {
    display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: var(--s6);
    align-items: center; max-width: 72rem; margin: 0 auto; padding: 3.5rem var(--s5) 4.5rem;
}
.lp-eyebrow {
    font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
    font-feature-settings: "case" 1;
    color: var(--gold-dark); font-weight: 640; margin: 0 0 .9rem;
}
.lp-hero h1 {
    font-family: var(--font-serif); font-weight: 500;
    font-size: clamp(2.3rem, 1.9rem + 2.4vw, 3.4rem);
    line-height: 1.08; letter-spacing: -.012em; text-wrap: balance;
    /* opsz 28 = ruhige Textformen; hohe optische Groessen verziehen z.B. das f */
    font-variation-settings: "opsz" 28;
    margin: 0 0 1.1rem;
}
.lp-lead {
    font-size: clamp(1.05rem, 1rem + .25vw, 1.13rem); line-height: 1.6;
    color: var(--ink-soft); max-width: 34rem; margin: 0 0 1.6rem; text-wrap: pretty;
}
.lp-hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.lp-hero-note { margin: 1.2rem 0 0; font-size: .8rem; color: var(--muted); }

/* ── Signature I: der Schreibtisch — drei Papiere unter Studiolicht.
   Zeiger = Lampe (Tier 1), Tipp/Klick blättert (alle Geräte). ── */
.lp-desk { position: relative; min-height: 28rem; }
html.lp-js .lp-desk { cursor: pointer; }
.lp-sheet { position: absolute; perspective: 46rem; }
.lp-sheet-a { top: 0; left: 0; width: min(21.5rem, 94%); z-index: 1; }
.lp-sheet-b { top: 30%; right: 0; width: min(17.5rem, 74%); z-index: 2; }
.lp-sheet-c { bottom: -.25rem; left: 4%; width: min(15.5rem, 72%); z-index: 3; }
.lp-mock {
    position: relative; background: var(--card); border: 1px solid var(--line);
    border-radius: var(--r-md); padding: 1rem 1.1rem;
    box-shadow: 0 1px 2px rgba(31, 28, 25, .05), 0 10px 20px -10px rgba(31, 28, 25, .12),
        0 28px 56px -24px rgba(31, 28, 25, .30);
}
/* Blättern: das nach vorn geholte Papier hebt kurz an (translate/scale
   als Einzel-Properties, damit die rotate-Handschrift erhalten bleibt) */
.lp-sheet.is-lift .lp-mock { animation: lp-lift .5s var(--ease-out-quint); }
@keyframes lp-lift { 30% { translate: 0 -7px; scale: 1.015; } }
.lp-mock-title {
    margin: 0 0 .6rem; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
    font-feature-settings: "case" 1; color: var(--muted); font-weight: 650;
}
.lp-mock-cockpit { transform: rotate(-1.7deg); }
/* Zweizeilig per max-width: die Zeile endet VOR dem überlappenden Blatt B
   (gemessen: Blatt-B-Kante bei ~992px, Zeile endet so bei ~970px) */
.lp-mock-cockpit .lp-mock-kpis { max-width: 13rem; row-gap: .35rem; }
.lp-mock-kpis { display: flex; gap: .9rem; font-size: .68rem; color: var(--muted); flex-wrap: wrap; }
.lp-mock-kpis b { display: block; font-size: .95rem; color: var(--ink); font-variant-numeric: tabular-nums; }

/* Cockpit-Blatt: Mini-Wochenende mit Doppelbuchungs-Waechter */
.lp-cal { display: flex; flex-direction: column; gap: .4rem; margin: 0 0 .9rem; }
.lp-cal-day {
    display: flex; flex-wrap: wrap; align-items: center; gap: .3rem .45rem;
    padding: .32rem .5rem; border: 1px solid var(--line); border-radius: var(--r-sm);
    background: var(--input-bg);
}
.lp-cal-day.is-hot { border-color: color-mix(in srgb, var(--gold) 45%, var(--line)); background: var(--card); }
.lp-cal-date {
    flex: none; width: 3.7rem; font-size: .6rem; letter-spacing: .06em; text-transform: uppercase;
    font-feature-settings: "case" 1; color: var(--muted); font-weight: 650; font-variant-numeric: tabular-nums;
}
.lp-cal-evt {
    font-size: .64rem; font-weight: 600; padding: .12rem .5rem; border-radius: 999px;
    background: var(--evt-core-bg); color: var(--evt-core); white-space: nowrap;
}
.lp-cal-evt.is-a { background: var(--evt-milestone-bg); color: var(--gold-dark); }
.lp-cal-evt.is-b { background: var(--evt-image-bg); color: var(--evt-image); }
.lp-cal-evt.is-venue { background: var(--evt-venue-bg); color: var(--evt-venue); }
.lp-cal-evt.is-dim { opacity: .65; }
.lp-guard {
    flex-basis: 100%; display: inline-flex; align-items: center; margin-top: .15rem;
    font-size: .58rem; letter-spacing: .06em; text-transform: uppercase;
    font-feature-settings: "case" 1; font-weight: 650; color: var(--ok);
}
.lp-guard .lp-ic14 { width: .72rem; height: .72rem; margin-right: .32rem; }

.lp-mock-chat { transform: rotate(1.5deg); }
.lp-mock-q { margin: 0 0 .55rem; font-weight: 620; font-size: .9rem; }
.lp-mock-opt {
    display: flex; align-items: center; justify-content: space-between; gap: .6rem;
    border: 1px solid var(--line); border-radius: var(--r-sm); padding: .45rem .6rem;
    font-size: .78rem; margin-bottom: .45rem; color: var(--ink-soft);
}
.lp-mock-opt.ok { border-color: var(--ok); background: var(--ok-bg); color: var(--ok); font-weight: 600; }
.lp-mock-opt b { font-size: .7rem; }

/* Einladung: echte Papeterie — innerer Zierrahmen, Fraunces mit grosser opsz */
.lp-mock-invite {
    transform: rotate(-1.1deg);
    text-align: center;
    background: linear-gradient(160deg, var(--rsvp-hero-0), var(--rsvp-hero-1));
    border-color: color-mix(in srgb, var(--gold) 25%, var(--card));
}
.lp-mock-invite::before {
    content: ""; position: absolute; inset: 7px; border: 1px solid color-mix(in srgb, var(--gold) 35%, transparent);
    border-radius: calc(var(--r-md) - 5px); pointer-events: none;
}
.lp-mock-eyebrow {
    margin: .3rem 0 .2rem; font-size: .62rem; letter-spacing: .3em; text-transform: uppercase;
    font-feature-settings: "case" 1; color: var(--gold-dark);
}
.lp-mock-names {
    margin: 0; font-family: var(--font-serif); font-size: 1.55rem;
    white-space: nowrap; font-variation-settings: "opsz" 40;
}
.lp-mock-names em { font-style: italic; color: var(--gold-dark); }
.lp-mock-date { margin: .2rem 0 .7rem; font-size: .75rem; color: var(--muted); }
.lp-mock-rsvp {
    display: inline-block; background: var(--ink); color: var(--text-inverse);
    border-radius: 999px; padding: .35rem 1.1rem; font-size: .75rem; font-weight: 600; margin-bottom: .4rem;
}

/* ── Sektionen: fluider Rhythmus + Kicker-System ──────────── */
.lp-section { max-width: 72rem; margin: 0 auto; padding: clamp(4rem, 3rem + 3vw, 5.75rem) var(--s5); }
.lp-section h2, .lp-final h2 {
    font-family: var(--font-serif); font-weight: 500; font-size: clamp(1.65rem, 3vw, 2.2rem);
    line-height: 1.18; letter-spacing: -.008em; text-wrap: balance; margin: 0 0 .6rem;
}
.lp-sub { color: var(--ink-soft); max-width: 44rem; margin: 0 0 2.6rem; text-wrap: pretty; }
.lp-tinted { max-width: none; background: var(--surface); border-block: 1px solid var(--line); }
.lp-inner { max-width: 72rem; margin: 0 auto; }
.lp-kicker {
    display: flex; align-items: center; gap: .6rem; margin: 0 0 1rem;
    font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
    font-feature-settings: "case" 1; font-weight: 650; color: var(--muted);
}
.lp-kicker::after { content: ""; width: 3.5rem; height: 1px; background: var(--line); }

/* ── Status-quo-Kontrast: gepaarte Gegenueberstellung ──────── */
.lp-versus-head, .lp-vrow { display: grid; grid-template-columns: 1fr auto 1.3fr; gap: 1rem; align-items: center; }
.lp-versus-head {
    padding: 0 1.2rem .7rem; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
    font-feature-settings: "case" 1; font-weight: 650; color: var(--muted);
}
.lp-vh-new { grid-column: 3; color: var(--gold-dark); }
.lp-versus-rows { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .4rem; }
.lp-vrow {
    padding: .9rem 1.2rem; border-radius: var(--r-md); border: 1px solid transparent;
    transition: background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease),
        box-shadow var(--t-fast) var(--ease);
}
.lp-vrow:hover { background: var(--card); border-color: var(--line); box-shadow: var(--shadow-sm); }
.lp-vlabel { display: none; }
.lp-vold { margin: 0; font-size: .9rem; line-height: 1.5; color: var(--muted); }
.lp-vrow:hover .lp-vold { text-decoration: line-through; text-decoration-color: color-mix(in srgb, var(--muted) 45%, transparent); }
.lp-varrow {
    flex: none; width: 1.6rem; height: 1.6rem; border-radius: 50%; place-items: center; display: grid;
    color: var(--muted-light); background: var(--surface);
    transition: color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.lp-varrow::before { content: "\2192"; font-size: 1rem; line-height: 1; }
.lp-vrow:hover .lp-varrow { color: var(--text-inverse); background: var(--gold-hover); }
.lp-vnew-t { margin: 0; font-size: .95rem; line-height: 1.35; font-weight: 650; color: var(--ink); }
.lp-vrow:hover .lp-vnew-t { color: var(--gold-dark); }
.lp-vnew-d { margin: .28rem 0 0; font-size: .82rem; line-height: 1.45; color: var(--muted); }
.lp-versus-close { margin: 2rem 0 0; font-family: var(--font-serif); font-size: 1.15rem; font-style: italic; color: var(--ink-soft); }

/* ── Karten-Sektionen ─────────────────────────────────────── */
.lp-triple { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s5); }
.lp-triple article, .lp-split article {
    background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md);
    padding: 1.4rem 1.5rem; box-shadow: var(--shadow-sm);
}
.lp-triple h3, .lp-grid h3, .lp-trust h3, .lp-split h3, .lp-steps h3 {
    margin: 0 0 .45rem; font-size: 1rem; font-weight: 620; line-height: 1.35;
}
.lp-triple p, .lp-grid p, .lp-trust p, .lp-split p, .lp-steps p {
    margin: 0; font-size: .92rem; line-height: 1.55; color: var(--ink-soft);
    -webkit-hyphens: auto; hyphens: auto; text-wrap: pretty;
}

.lp-split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s5); }

/* ── 03 · Der Draht: sekundaere Figuren (statisch voll lesbar,
   Tier 1 laesst sie sich nachtippen) ── */
.lp-chats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s5); align-items: start; max-width: 56rem; margin: 0 auto; }
.lp-chatwin { margin: 0; }
.lp-chat {
    background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden;
    box-shadow: 0 1px 2px rgba(31, 28, 25, .05), 0 10px 20px -10px rgba(31, 28, 25, .12),
        0 28px 56px -24px rgba(31, 28, 25, .30);
}
.lp-chat-head {
    display: flex; align-items: center; gap: .5rem; padding: .5rem .8rem;
    background: var(--surface-2); border-bottom: 1px solid var(--line);
    font-size: .66rem; letter-spacing: .1em; text-transform: uppercase;
    font-feature-settings: "case" 1; font-weight: 650; color: var(--muted);
}
.lp-chat-head::before { content: ""; flex: none; width: 7px; height: 7px; border-radius: 50%; background: var(--muted-light); }
.lp-chat-title { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lp-chat-tag {
    margin-left: auto; flex: none; border: 1px solid var(--line); border-radius: 999px;
    padding: .08rem .5rem; font-size: .58rem; letter-spacing: .08em; color: var(--muted); background: var(--card);
}
.lp-chat-body { display: flex; flex-direction: column; gap: .5rem; padding: .8rem .8rem .9rem; }
.lp-bub {
    align-self: flex-start; max-width: 88%; padding: .45rem .65rem;
    border-radius: var(--r-sm); border-bottom-left-radius: 2px;
    background: var(--surface); font-size: .78rem; line-height: 1.45; color: var(--ink-soft);
}
.lp-bub.lp-me {
    align-self: flex-end; background: var(--gold-bg); color: var(--ink);
    border-bottom-left-radius: var(--r-sm); border-bottom-right-radius: 2px;
}
.lp-poll { border: 1px solid var(--line); border-radius: var(--r-sm); padding: .6rem .65rem; background: var(--input-bg); }
.lp-poll-q { margin: 0 0 .5rem; font-size: .78rem; font-weight: 620; }
.lp-poll-row { display: grid; grid-template-columns: 1fr auto; gap: .12rem .5rem; align-items: center; margin-bottom: .5rem; font-size: .72rem; }
.lp-poll-row > span:first-child { grid-column: 1 / -1; color: var(--ink-soft); }
.lp-poll-bar { height: .45rem; border-radius: 999px; background: var(--surface-2); overflow: hidden; }
.lp-poll-bar i { display: block; height: 100%; border-radius: inherit; background: var(--gold); transform-origin: 0 50%; }
.lp-poll-pct { color: var(--muted); font-variant-numeric: tabular-nums; }
.lp-poll-meta { margin: .1rem 0 0; font-size: .68rem; color: var(--muted); }
.lp-chatwin figcaption { margin: .8rem .2rem 0; font-size: .8rem; line-height: 1.5; color: var(--ink-soft); text-wrap: pretty; }
.lp-reveal .lp-chatwin[data-mo] { --rv-y: 20px; }

/* ── Der Draht: gepinnte Buehne, die beim Scrollen in vier Schritten
   erzaehlt wird (IO in landing.js setzt is-step-N kumulativ waehrend
   die Schritt-Texte vorbeiscrollen). Basis-Zustand = Endzustand; die
   Versteck-Regeln greifen nur unter .is-js — ohne JS und auf Mobile
   (kein Pin dort) steht sofort das fertige Bild. ── */
.lp-wire { margin: 0 0 3.4rem; }
.lp-wire-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: 2.4rem; align-items: start; max-width: 74rem; margin-inline: auto; }
.lp-wire-pin { position: sticky; top: 6rem; }

/* Realistisches iPhone: der Gaeste-Chat als echter Messenger (1:1 Mockup). */
.lp-msgr-eyebrow { margin: 0 0 1rem; text-align: center; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; font-feature-settings: "case" 1; font-weight: 650; color: var(--gold-dark); }
.lp-iphone {
    max-width: 22rem; margin-inline: auto; position: relative; background: var(--ink); border-radius: 2.6rem; padding: .5rem;
    box-shadow: 0 2px 6px rgba(31, 28, 25, .12), 0 30px 60px -24px rgba(31, 28, 25, .42);
}
.lp-iphone-island { position: absolute; top: .95rem; left: 50%; transform: translateX(-50%); width: 5rem; height: 1.1rem; border-radius: 999px; background: #05040a; z-index: 3; }
.lp-iphone-bar { display: flex; justify-content: space-between; align-items: center; padding: .55rem 1.35rem .35rem; background: var(--card); border-radius: 2.1rem 2.1rem 0 0; color: var(--ink); font-size: .72rem; font-weight: 650; font-variant-numeric: tabular-nums; }
.lp-iphone-sig { display: flex; align-items: center; gap: .28rem; }
.lp-msgr { background: var(--card); border-radius: 0 0 2.1rem 2.1rem; overflow: hidden; }
.lp-msgr-head { display: grid; grid-template-columns: auto auto 1fr auto; align-items: center; gap: .55rem; padding: .45rem .95rem .55rem; border-bottom: 1px solid var(--line); }
.lp-msgr-back, .lp-msgr-cam, .lp-msgr-mic { color: var(--gold-dark); display: inline-flex; }
.lp-msgr-av { display: grid; place-items: center; width: 2rem; height: 2rem; border-radius: 50%; background: var(--gold); color: var(--text-inverse); font-weight: 650; font-size: .85rem; }
.lp-msgr-id { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.lp-msgr-id b { font-size: .82rem; color: var(--ink); }
.lp-msgr-id span { font-size: .66rem; color: var(--muted); }
.lp-msgr-body { display: flex; flex-direction: column; gap: .6rem; padding: .9rem .85rem 1rem; }
.lp-day { align-self: center; margin: 0; font-size: .62rem; font-weight: 650; letter-spacing: .04em; color: var(--muted-light); }
.lp-mb { max-width: 84%; padding: .55rem .75rem; font-size: .82rem; line-height: 1.4; border-radius: 1.1rem; }
.lp-mb.in { align-self: flex-start; background: var(--surface-2); color: var(--ink); border-bottom-left-radius: .35rem; }
.lp-mb.out { align-self: flex-end; background: var(--gold-bg); color: var(--ink); border-bottom-right-radius: .35rem; }
/* Auswahl-Karte im Chat */
.lp-pick { align-self: flex-start; width: 92%; padding: .7rem .75rem; border-radius: 1rem; background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.lp-pick-t { margin: 0; font-size: .8rem; font-weight: 650; color: var(--ink); }
.lp-pick-q { margin: .1rem 0 .6rem; font-family: var(--font-serif); font-style: italic; font-size: .84rem; color: var(--gold-dark); }
.lp-pick-opts { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.lp-pick-opt { position: relative; display: flex; flex-direction: column; gap: .12rem; padding: .55rem .6rem; border-radius: .7rem; border: 1.5px solid var(--line); }
.lp-pick-opt.chosen { border-color: var(--ok); }
.lp-pick-when { font-weight: 650; font-size: .82rem; color: var(--ink); }
.lp-pick-opt.chosen .lp-pick-when { color: var(--ok); }
.lp-pick-who, .lp-pick-cost { font-size: .72rem; color: var(--muted); }
.lp-pick-opt.dim { opacity: .62; }
.lp-pick-badge {
    position: absolute; top: -.6rem; right: -.3rem; padding: .12rem .45rem; border-radius: 999px;
    background: var(--ok); color: var(--text-inverse); font-size: .54rem; font-weight: 650;
    letter-spacing: .05em; text-transform: uppercase; font-feature-settings: "case" 1;
}
/* Hochzeitsplan-Karte im Chat */
.lp-hplan { align-self: stretch; padding: .55rem .7rem; border-radius: .9rem; background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.lp-hplan-label { margin: 0 0 .35rem; font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; font-feature-settings: "case" 1; font-weight: 650; color: var(--gold-dark); }
.lp-hplan-row { display: flex; align-items: center; gap: .5rem; }
.lp-hplan-check { flex: none; position: relative; width: 1.1rem; height: 1.1rem; border-radius: 5px; background: var(--ok); }
.lp-hplan-check::after { content: ""; position: absolute; inset: 2px; background: var(--text-inverse); -webkit-mask: var(--tick) center/contain no-repeat; mask: var(--tick) center/contain no-repeat; }
.lp-hplan-main { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.lp-hplan-main b { font-size: .76rem; color: var(--ink); }
.lp-hplan-loc { font-size: .68rem; color: var(--muted); }
.lp-hplan-cost { margin-left: auto; font-weight: 650; font-size: .76rem; color: var(--ink); font-variant-numeric: tabular-nums; }
/* Buchungsmail-Karte im Chat (LOC-001-Auszahlung) */
.lp-hmail { align-self: stretch; padding: .55rem .7rem; border-radius: .9rem; background: var(--surface); border: 1px dashed color-mix(in srgb, var(--gold) 45%, var(--line)); }
.lp-hmail-head { display: flex; align-items: center; gap: .4rem; font-size: .74rem; }
.lp-hmail-ico { display: inline-flex; color: var(--gold-dark); }
.lp-hmail-to { font-weight: 650; color: var(--ink); }
.lp-hmail-ready { margin-left: auto; font-size: .56rem; font-weight: 650; letter-spacing: .06em; text-transform: uppercase; font-feature-settings: "case" 1; color: var(--ok); }
.lp-hmail-snip { margin: .3rem 0 .45rem; font-size: .68rem; line-height: 1.4; font-style: italic; color: var(--muted); }
.lp-hmail-send { display: inline-block; padding: .22rem .8rem; border-radius: 999px; background: var(--gold); color: var(--text-inverse); font-size: .68rem; font-weight: 650; }
/* Eingabeleiste */
.lp-msgr-input { display: flex; align-items: center; gap: .5rem; padding: .5rem .85rem .85rem; }
.lp-msgr-plus { display: grid; place-items: center; width: 1.5rem; height: 1.5rem; border-radius: 50%; border: 1px solid var(--gold); color: var(--gold-dark); font-size: 1rem; line-height: 1; }
.lp-msgr-field { flex: 1; padding: .42rem .85rem; border-radius: 999px; background: var(--surface-2); color: var(--muted); font-size: .76rem; }
.lp-msgr-cap { max-width: 24rem; margin: 1.5rem auto 0; text-align: center; font-family: var(--font-serif); font-style: italic; font-size: 1.05rem; line-height: 1.5; color: var(--ink-soft); }

/* Die Schritt-Spalte: Text scrollt an der gepinnten Buehne vorbei. */
.lp-wire-steps { display: flex; flex-direction: column; }
.lp-wire-step { display: flex; gap: .9rem; align-items: flex-start; min-height: 62vh; padding-top: 6vh; opacity: .4; transition: opacity .4s var(--ease); }
.lp-wire-step:first-child { padding-top: 1vh; }
.lp-wire-step.is-active { opacity: 1; }
.lp-wire-step b {
    flex: none; width: 1.9rem; height: 1.9rem; margin-top: .1rem; border-radius: 50%; border: 1px solid var(--line);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--gold-dark);
    transition: background-color .3s var(--ease), border-color .3s var(--ease);
}
.lp-wire-step.is-active b { background: var(--gold-bg); border-color: var(--gold); }
.lp-wire-step p { margin: .3rem 0 0; font-size: 1.05rem; line-height: 1.5; text-wrap: pretty; }

/* Erzaehl-Zustaende: kumulativ per is-step-N, gesetzt von landing.js beim Scrollen.
   Jede Chat-Einheit steigt beim zugehoerigen Schritt ein; ohne .is-js (kein JS /
   reduced-motion / mobil) steht der ganze Chat sofort da. */
.lp-wire.is-js .lpm-1, .lp-wire.is-js .lpm-2, .lp-wire.is-js .lpm-3,
.lp-wire.is-js .lpm-4, .lp-wire.is-js .lpm-5 {
    opacity: 0; transform: translateY(10px); transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.lp-wire.is-js .lp-pick-badge { opacity: 0; transform: scale(.6); transition: opacity .4s var(--ease), transform .4s var(--ease); }
.lp-wire.is-js .lp-pick-opt.chosen { border-color: var(--line); transition: border-color .35s var(--ease); }
.lp-wire.is-js .lp-pick-opt.chosen .lp-pick-when { color: var(--ink); transition: color .35s var(--ease); }
.lp-wire.is-step-1 .lpm-1 { opacity: 1; transform: none; }
.lp-wire.is-step-2 .lpm-2 { opacity: 1; transform: none; }
.lp-wire.is-step-3 .lpm-3 { opacity: 1; transform: none; }
.lp-wire.is-step-3 .lp-pick-badge { opacity: 1; transform: none; }
.lp-wire.is-step-3 .lp-pick-opt.chosen { border-color: var(--ok); }
.lp-wire.is-step-3 .lp-pick-opt.chosen .lp-pick-when { color: var(--ok); }
.lp-wire.is-step-4 .lpm-4 { opacity: 1; transform: none; }
.lp-wire.is-step-5 .lpm-5 { opacity: 1; transform: none; }

/* Feature-Raster: Hairline + kurzer Brass-Tick */
.lp-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s5) var(--s6); }
.lp-grid > div { border-top: 1px solid var(--line); padding-top: 1rem; position: relative; }
.lp-grid > div::before { content: ""; position: absolute; top: -1px; left: 0; width: 2.25rem; height: 2px; background: var(--gold); }

/* Kanäle als schlanke Chip-Zeile */
.lp-channels-line { display: flex; flex-wrap: wrap; gap: .6rem; margin: 2.4rem 0 0; }
.lp-chip {
    font-size: .78rem; font-weight: 600; color: var(--muted);
    border: 1px dashed var(--muted-light); border-radius: 999px; padding: .35rem .9rem;
}
.lp-chip-live { color: color-mix(in srgb, var(--ok) 85%, var(--ink)); border: 1px solid var(--ok); background: var(--ok-bg); }

/* Vertrauen: Hairline-System, Tick in Ink (Gold-Disziplin) */
.lp-trust { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s5) var(--s6); }
.lp-trust > div { border-top: 1px solid var(--line); padding-top: 1rem; position: relative; }
.lp-trust > div::before { content: ""; position: absolute; top: -1px; left: 0; width: 2.25rem; height: 2px; background: var(--ink); }

/* ── Icon-System «Feine Linie»: 14 Stroke-Masken (24-Grid, 1.6/2.0) ── */
.lp-ic, .lp-ic14 {
    display: inline-block; flex: none; background: currentColor;
    -webkit-mask: var(--ic) center / contain no-repeat;
    mask: var(--ic) center / contain no-repeat;
}
.lp-ic { width: 1.25rem; height: 1.25rem; }
.lp-ic14 { width: .875rem; height: .875rem; vertical-align: -.12em; margin-right: .4rem; }
.lp-grid .lp-ic, .lp-trust .lp-ic { position: absolute; top: 1.05rem; right: .1rem; }
.lp-grid .lp-ic { color: var(--gold-dark); }
.lp-trust .lp-ic { color: var(--ink); }
.lp-grid h3, .lp-trust h3 { padding-right: 2.2rem; }
.lp-split .lp-ic { display: block; width: 1.375rem; height: 1.375rem; margin-bottom: .8rem; color: var(--gold-dark); }

.lp-ic-cal { --ic: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"><rect x="3.5" y="5" width="17" height="15.5" rx="2"/><path d="M8 3v4M16 3v4M3.5 9.5h17"/><path d="M12 11.6l3 3-3 3-3-3z"/></svg>'); }
.lp-ic-guests { --ic: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="6" width="18" height="13" rx="2"/><path d="M3.6 7.6l6.6 4.7M20.4 7.6l-6.6 4.7"/><circle cx="12" cy="13.2" r="1.9"/></svg>'); }
.lp-ic-chat { --ic: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"><path d="M20.5 11.2c0 3.9-3.8 6.8-8.5 6.8-1 0-2-.1-2.9-.4L4.4 19l1-3.3c-1.2-1.2-1.9-2.7-1.9-4.5 0-3.9 3.8-6.7 8.5-6.7s8.5 2.8 8.5 6.7z"/><circle cx="12" cy="10.3" r="1.7"/><path d="M12 12v2.4"/></svg>'); }
.lp-ic-feed { --ic: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"><rect x="4" y="7.5" width="13" height="11" rx="1.8"/><path d="M8.5 5h9.3A2.2 2.2 0 0120 7.2v9.3"/><path d="M6.6 15.4l2.7-2.6 2 1.9 3.1-3"/></svg>'); }
.lp-ic-budget { --ic: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"><rect x="2.5" y="7" width="19" height="10.5" rx="1.8"/><circle cx="12" cy="12.25" r="2.7"/><path d="M5.6 12.25h.05M18.35 12.25h.05"/></svg>'); }
.lp-ic-library { --ic: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"><rect x="4" y="5" width="3.9" height="15.5" rx="1"/><rect x="7.9" y="5" width="3.9" height="15.5" rx="1"/><rect x="13.6" y="5" width="3.9" height="15.5" rx="1" transform="rotate(12 15.55 12.75)"/></svg>'); }
.lp-ic-shield { --ic: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"><path d="M12 3.5l7 2.6v5.3c0 4.5-2.9 7.6-7 9.1-4.1-1.5-7-4.6-7-9.1V6.1z"/><path d="M12 8.6v4.4M9.8 10.8h4.4"/></svg>'); }
.lp-ic-noeye { --ic: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"><path d="M3.5 12.2c2.2-3.9 5-5.8 8.5-5.8s6.3 1.9 8.5 5.8c-2.2 3.9-5 5.8-8.5 5.8s-6.3-1.9-8.5-5.8z"/><circle cx="12" cy="12.2" r="2.6"/><path d="M4.8 19.2L19.2 4.8"/></svg>'); }
.lp-ic-export { --ic: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"><path d="M4.5 14.5v3.2a2.3 2.3 0 002.3 2.3h10.4a2.3 2.3 0 002.3-2.3v-3.2"/><path d="M12 15V4M12 4L8.2 7.8M12 4l3.8 3.8"/></svg>'); }
.lp-ic-nib { --ic: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"><path d="M7.8 5h8.4v3.9c0 3.3-1.5 6.6-4.2 11.6-2.7-5-4.2-8.3-4.2-11.6z"/><circle cx="12" cy="10.9" r="1.4"/><path d="M12 12.3v4.4"/></svg>'); }
.lp-ic-house { --ic: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"><path d="M5.5 20.5V8.6a2.1 2.1 0 012.1-2.1h8.8a2.1 2.1 0 012.1 2.1v11.9"/><path d="M3.5 20.5h17"/><path d="M9.6 20.5v-3.1a2.4 2.4 0 014.8 0v3.1"/><path d="M9 10.7h2.2M12.8 10.7H15M9 14h2.2M12.8 14H15"/></svg>'); }
.lp-ic-globe { --ic: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="8.5"/><path d="M3.5 12h17"/><path d="M12 3.5c3.1 2.5 4.7 5.3 4.7 8.5s-1.6 6-4.7 8.5c-3.1-2.5-4.7-5.3-4.7-8.5s1.6-6 4.7-8.5z"/></svg>'); }
.lp-ic-phone { --ic: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="6.5" y="2.5" width="11" height="19" rx="2.6"/><path d="M10.4 18.3h3.2"/></svg>'); }
.lp-ic-play { --ic: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M8.5 6.2v11.6c0 1 1.1 1.6 2 1.1l9.6-5.8c.8-.5.8-1.7 0-2.2L10.5 5.1c-.9-.5-2 .1-2 1.1z"/></svg>'); }
.lp-ic-turn { --ic: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"><path d="M4 12a8 8 0 0114-5.3M20 12a8 8 0 01-14 5.3"/><path d="M18 3v4h-4M6 21v-4h4"/></svg>'); }

/* Ticks setzen sich, Icons treten auf (erbt data-mo-Timing) */
.lp-reveal .lp-grid [data-mo] .lp-ic, .lp-reveal .lp-trust [data-mo] .lp-ic {
    opacity: 0; transform: scale(.55);
    transition: opacity .45s var(--ease-out-quint) .22s, transform .45s var(--ease-out-quint) .22s;
}
.lp-reveal .lp-grid [data-mo].in .lp-ic, .lp-reveal .lp-trust [data-mo].in .lp-ic { opacity: 1; transform: none; }

/* .lp-bench-reset: generischer Pill-Button, auch von der Kollektion-Karte
   (data-kol-close) mitverwendet — Name ist Altlast, bleibt bewusst stehen. */
.lp-bench-reset {
    border: 1px solid var(--line); background: var(--surface-2); color: var(--ink-soft);
    border-radius: 999px; padding: .32rem .9rem; font: inherit; font-size: .78rem; font-weight: 600;
    cursor: pointer; transition: border-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.lp-bench-reset:hover { border-color: var(--gold); color: var(--ink); }

/* ── Signature II: die Sitzplan-Buehne — 1:1 die Zeichenflaeche des echten
   Editors (Tisch/Sitz-Rendering + Kategorie-Tinten exakt aus seating-
   editor.js: F.card/F.ink/F.borderSoft, KAT_TINTE = --evt-*, --info als
   einziger "voll"-Akzent). Gepinnt + Schritt-Spalte wie .lp-wire. ── */
.lp-seatstage { margin: 0 0 3.6rem; }
.lp-seatstage-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 2.4rem; align-items: start; max-width: 74rem; margin-inline: auto; }
.lp-seatstage-pin { position: sticky; top: 6rem; }
.lp-seatstage-canvas {
    max-width: 20rem; margin-inline: auto; background: var(--bg); border: 1px solid var(--line);
    border-radius: var(--r-md); padding: 1.1rem; box-shadow: var(--shadow-sm);
}
.lp-seatstage-svg { width: 100%; height: auto; display: block; }
.lpst-tisch { fill: var(--card); stroke: var(--ink); stroke-width: 3; }
.lpst-tisch-ring { fill: none; stroke: var(--border-soft); stroke-width: 1.5; }
.lpst-tisch-label { text-anchor: middle; fill: var(--ink); font-size: 15px; font-weight: 700; }
.lpst-cap { text-anchor: middle; fill: var(--muted); font-family: var(--font-mono); font-size: 11px; transition: opacity .3s var(--ease); }
/* Basis = geloester Endzustand: 5 / 6 (Ruedi hat abgesagt); 0/3/6 nur waehrend der Erzaehlung. */
.lpst-cap-0, .lpst-cap-3, .lpst-cap-6 { opacity: 0; }
.lpst-cap-6 { fill: var(--info); font-weight: 700; }
.lpst-seat circle {
    fill: var(--card); stroke: var(--muted); stroke-width: 2; stroke-dasharray: 4 3;
    transition: fill .4s var(--ease), stroke .4s var(--ease), stroke-dasharray .4s var(--ease);
}
/* is-js vor den Step-Farbregeln (gleiche Spezifitaet, sonst gewinnt es auch in is-step-N). */
.lp-seatstage.is-js .lp-seatstage-guest { opacity: 0; transform: translateY(8px); border-left-color: transparent; }
.lp-seatstage.is-js .lpst-seat circle { fill: var(--card); stroke: var(--muted); stroke-dasharray: 4 3; }
.lp-seatstage.is-js .lpst-ini { opacity: 0; }
.lp-seatstage.is-js .lpst-num { opacity: 1; }
.lp-seatstage.is-js .lpst-cap-5 { opacity: 0; }
.lp-seatstage.is-js .lpst-cap-0 { opacity: 1; }
.lp-seatstage.is-js .lp-seatstage-abgesagt { opacity: 0; }

.lpst-seat-1 circle, .lp-seatstage.is-step-2 .lpst-seat-1 circle { fill: var(--evt-core); stroke: color-mix(in srgb, var(--evt-core) 70%, black); stroke-dasharray: none; }
.lpst-seat-2 circle, .lp-seatstage.is-step-2 .lpst-seat-2 circle { fill: var(--evt-venue); stroke: color-mix(in srgb, var(--evt-venue) 70%, black); stroke-dasharray: none; }
.lpst-seat-3 circle, .lp-seatstage.is-step-2 .lpst-seat-3 circle,
.lpst-seat-5 circle, .lp-seatstage.is-step-3 .lpst-seat-5 circle { fill: var(--evt-floral); stroke: color-mix(in srgb, var(--evt-floral) 70%, black); stroke-dasharray: none; }
.lpst-seat-4 circle, .lp-seatstage.is-step-3 .lpst-seat-4 circle { fill: var(--evt-image); stroke: color-mix(in srgb, var(--evt-image) 70%, black); stroke-dasharray: none; }
.lp-seatstage.is-step-3 .lpst-seat-6 circle { fill: var(--evt-sound); stroke: color-mix(in srgb, var(--evt-sound) 70%, black); stroke-dasharray: none; }
.lpst-num, .lpst-ini { text-anchor: middle; font-size: 13px; font-weight: 700; transition: opacity .3s var(--ease); }
.lpst-num { fill: var(--muted-light); }
.lpst-ini { fill: var(--text-inverse); opacity: 0; }
.lpst-seat:not(.lpst-seat-6) .lpst-ini, .lp-seatstage.is-step-3 .lpst-seat-6 .lpst-ini { opacity: 1; }
.lpst-seat:not(.lpst-seat-6) .lpst-num, .lp-seatstage.is-step-3 .lpst-seat-6 .lpst-num { opacity: 0; }
.lp-seatstage-guests { list-style: none; margin: 1rem 0 0; padding: 0; display: flex; flex-direction: column; gap: .4rem; }
.lp-seatstage-guest {
    display: flex; align-items: center; gap: .5rem; padding: .4rem .6rem; border: 1px solid var(--line);
    border-left: 3px solid transparent; border-radius: var(--r-sm); background: var(--card);
    font-size: .8rem; font-weight: 600; color: var(--ink);
    transition: border-left-color .35s var(--ease), opacity .4s var(--ease), transform .4s var(--ease);
}
.lp-seatstage-dot { width: .8rem; height: .8rem; border-radius: 50%; flex: none; }
.lp-seatstage-dot[data-cat="familie_a"] { background: var(--evt-core); }
.lp-seatstage-dot[data-cat="familie_b"] { background: var(--evt-venue); }
.lp-seatstage-dot[data-cat="freunde"] { background: var(--evt-floral); }
.lp-seatstage-dot[data-cat="arbeit"] { background: var(--evt-image); }
.lp-seatstage-dot[data-cat="sonstiges"] { background: var(--evt-sound); }
.lp-seatstage-cat { margin-left: auto; font-size: .68rem; font-weight: 500; color: var(--muted); }
.lp-seatstage-abgesagt {
    margin-left: auto; font-size: .58rem; font-weight: 650; letter-spacing: .05em; text-transform: uppercase;
    color: var(--err); background: var(--err-bg); border-radius: 999px; padding: .1rem .5rem;
    transition: opacity .4s var(--ease);
}
/* Basis: die ersten 5 sitzen (Info-Rand), Ruedi hat abgesagt (Fehler-Rand). */
.lp-seatstage-guests li:nth-child(-n+5) { border-left-color: var(--info); }
.lp-seatstage-guests li:last-child { border-left-color: var(--err); }

/* Kumulativ per is-step-N: 1 Gaesteliste · 2 Sitze 1-3 · 3 Rest + voll · 4 Absage-Luecke. */
.lp-seatstage.is-step-1 .lp-seatstage-guest { opacity: 1; transform: none; }
.lp-seatstage.is-step-2 .lpst-cap-0 { opacity: 0; }
.lp-seatstage.is-step-2 .lpst-cap-3 { opacity: 1; }
.lp-seatstage.is-step-2 .lp-seatstage-guests li:nth-child(-n+3) { border-left-color: var(--info); }

.lp-seatstage.is-step-3 .lpst-cap-3 { opacity: 0; }
.lp-seatstage.is-step-3 .lpst-cap-6 { opacity: 1; }
.lp-seatstage.is-step-3 .lp-seatstage-guests li:nth-child(n+4) { border-left-color: var(--info); }

.lp-seatstage.is-step-4 .lpst-cap-6 { opacity: 0; }
.lp-seatstage.is-step-4 .lpst-cap-5 { opacity: 1; }
.lp-seatstage.is-step-4 .lpst-seat-6 circle { fill: var(--card); stroke: var(--muted); stroke-dasharray: 4 3; }
.lp-seatstage.is-step-4 .lpst-seat-6 .lpst-ini { opacity: 0; }
.lp-seatstage.is-step-4 .lpst-seat-6 .lpst-num { opacity: 1; }
.lp-seatstage.is-step-4 .lp-seatstage-guests li:last-child { border-left-color: var(--err); }
.lp-seatstage.is-step-4 .lp-seatstage-abgesagt { opacity: 1; }

/* ── Signature III: die grosse Probe — echter Sitzplan-Editor im
   Browser-Fenster-Mockup. Neutrale Kopfleiste (keine macOS-Ampel-Farben,
   Gold-Disziplin), iframe laedt erst nach Klick (Click-to-Load, Budget). ── */
.lp-sitzshow { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: var(--s6); align-items: start; margin: 3.6rem 0 0; }
.lp-sitzshow-side { position: sticky; top: calc(var(--topbar-h) + 1.5rem); }
.lp-sitzshow-eyebrow {
    margin: 0 0 .5rem; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
    font-feature-settings: "case" 1; font-weight: 650; color: var(--gold-dark);
}
.lp-sitzshow-side h3 {
    font-family: var(--font-serif); font-weight: 500; margin: 0 0 .7rem;
    font-size: clamp(1.35rem, 1.15rem + 1vw, 1.7rem); line-height: 1.2; text-wrap: balance;
}
.lp-sitzshow-lead { margin: 0 0 1.5rem; color: var(--ink-soft); text-wrap: pretty; }
.lp-sitzshow-feats { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1rem; }
.lp-sitzshow-feats li { position: relative; padding-left: 2.4rem; font-size: .92rem; line-height: 1.5; color: var(--ink-soft); }
/* Ruhiger Messing-Strich statt Ziffernkreis (Gestaltungssprache Brass-Tick) */
.lp-sitzshow-feats li::before {
    content: ""; position: absolute; left: 0; top: .62rem;
    width: 1.4rem; height: 2px; background: var(--gold);
}
.lp-sitzshow-feats b { color: var(--ink); }

.lp-sitzshow-win {
    background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
    box-shadow: 0 1px 2px rgba(31, 28, 25, .05), 0 10px 20px -10px rgba(31, 28, 25, .12),
        0 28px 56px -24px rgba(31, 28, 25, .30);
}
.lp-sitzshow-bar { display: flex; align-items: center; gap: .7rem; padding: .6rem .8rem; background: var(--surface-2); border-bottom: 1px solid var(--line); }
.lp-sitzshow-dots { display: flex; flex: none; gap: .3rem; }
.lp-sitzshow-dots span { width: .45rem; height: .45rem; border-radius: 50%; background: var(--muted-light); }
.lp-sitzshow-url {
    flex: 1; min-width: 0; text-align: center; background: var(--input-bg); border: 1px solid var(--line);
    border-radius: 999px; padding: .3rem .9rem; font-size: .74rem; color: var(--muted);
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-variant-numeric: tabular-nums;
}
.lp-sitzshow-body { position: relative; height: 34rem; background: var(--surface); }
.lp-sitzshow-body iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.lp-sitzshow-cover {
    position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 1.2rem; padding: 1.5rem; text-align: center;
    background: linear-gradient(165deg, var(--hero-0), var(--surface));
}
.lp-sitzshow-cover-art { position: relative; width: min(20rem, 82%); height: 8rem; }
.lp-sitzshow-shape {
    position: absolute; border: 1.5px dashed color-mix(in srgb, var(--gold) 55%, var(--line));
    border-radius: 50%; background: var(--card);
}
.lp-sitzshow-shape-a { width: 4.4rem; height: 4.4rem; left: 0; top: .4rem; }
.lp-sitzshow-shape-b { width: 3.5rem; height: 3.5rem; left: 5.4rem; top: 2.7rem; }
.lp-sitzshow-shape-c { width: 3.1rem; height: 3.1rem; right: .2rem; top: 0; }
.lp-sitzshow-shape-rect {
    width: 5.4rem; height: 1.8rem; left: 50%; bottom: 0; transform: translateX(-50%);
    border-radius: var(--r-sm); border-style: solid; background: var(--gold-bg);
    border-color: color-mix(in srgb, var(--gold) 40%, var(--line));
}
.lp-sitzshow-hint { margin: 0; font-size: .78rem; color: var(--muted); }

/* ── Die Kollektion: sechs Vorlagen-Karten (echte Links, ohne JS neuer Tab)
   + EINE Buehne fuer alle. Teaser-Motive rein aus CSS-Gradients — die
   GPU-hungrigen Vorlagen laden erst als iframe beim Klick. ── */
.lp-kol-group {
    display: flex; align-items: center; gap: .7rem; margin: 0 0 1rem;
    font-size: .66rem; letter-spacing: .12em; text-transform: uppercase;
    font-feature-settings: "case" 1; font-weight: 650; color: var(--muted);
}
.lp-kol-group::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.lp-kol-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s5); margin: 0 0 2.2rem; }
.lp-kolcard {
    display: flex; flex-direction: column; gap: .3rem; padding: 1.05rem 1.15rem 1rem;
    background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md);
    text-decoration: none; color: var(--ink); box-shadow: var(--shadow-sm);
    transition: border-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease),
        box-shadow var(--t-fast) var(--ease);
}
.lp-kolcard:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow); }
.lp-kolcard.is-open { border-color: var(--gold-dark); }
.lp-kolcard-name { font-family: var(--font-serif); font-size: 1.12rem; line-height: 1.25; }
.lp-kolcard-desc { font-size: .84rem; line-height: 1.5; color: var(--ink-soft); text-wrap: pretty; margin-bottom: .5rem; }
.lp-kolcard-sig {
    margin-top: auto; padding-top: .55rem; border-top: 1px solid var(--line);
    font-size: .62rem; letter-spacing: .12em; text-transform: uppercase;
    font-feature-settings: "case" 1; font-weight: 650; color: var(--gold-dark);
}
.lp-kolart {
    display: block; height: 5.25rem; border-radius: var(--r-sm);
    margin-bottom: .55rem; border: 1px solid var(--line);
}
/* Champagner: Pegel + drei Perlen */
.lp-kolart-sekt {
    background:
        radial-gradient(2.5px at 36% 78%, #FFF6DC 98%, transparent),
        radial-gradient(2px at 52% 64%, #FFF6DC 98%, transparent),
        radial-gradient(3px at 66% 84%, #FFF6DC 98%, transparent),
        linear-gradient(180deg, var(--hero-0) 48%, #EFD79B 48%, #DDB86A);
}
/* Lichterkette: Daemmerung, vier gluehende Birnen */
.lp-kolart-licht {
    background:
        radial-gradient(circle at 20% 40%, #FFE7AE 2px, rgba(255, 217, 138, .3) 5px, transparent 11px),
        radial-gradient(circle at 44% 56%, #FFE7AE 2px, rgba(255, 217, 138, .3) 5px, transparent 11px),
        radial-gradient(circle at 68% 42%, #FFE7AE 2px, rgba(255, 217, 138, .3) 5px, transparent 11px),
        radial-gradient(circle at 88% 58%, #FFE7AE 2px, rgba(255, 217, 138, .3) 5px, transparent 11px),
        linear-gradient(180deg, #B99A72, #2E2517 78%);
}
/* Galaxienreise: Sternfeld + Spiralglut */
.lp-kolart-galaxie {
    background:
        radial-gradient(1.5px at 18% 30%, #FFF 98%, transparent),
        radial-gradient(1px at 34% 68%, #FFF 98%, transparent),
        radial-gradient(1.5px at 58% 22%, #FFF 98%, transparent),
        radial-gradient(1px at 76% 60%, #FFF 98%, transparent),
        radial-gradient(1.5px at 88% 34%, #FFF 98%, transparent),
        radial-gradient(56% 42% at 50% 52%, rgba(217, 179, 106, .55), transparent 72%),
        #12100C;
}
/* Menü Céleste: Goldpartikel-Titel auf Nachtgrund */
.lp-kolart-celeste {
    display: grid; place-content: center;
    background:
        radial-gradient(1.5px at 24% 32%, #D9B36A 98%, transparent),
        radial-gradient(1px at 40% 72%, #D9B36A 98%, transparent),
        radial-gradient(1.5px at 68% 26%, #D9B36A 98%, transparent),
        radial-gradient(1px at 82% 64%, #D9B36A 98%, transparent),
        #14110B;
}
.lp-kolart-celeste i {
    font-family: var(--font-serif); font-style: italic; font-size: 1.45rem;
    color: #D9B36A; letter-spacing: .06em;
}
/* Kerzenschein: ein Lichtkegel im dunklen Saal */
.lp-kolart-kerze {
    background:
        radial-gradient(2px at 50% 38%, #FFEBB8 98%, transparent),
        radial-gradient(3.4rem at 50% 44%, rgba(240, 214, 150, .8), rgba(240, 214, 150, .1) 62%, transparent 78%),
        #0B0906;
}
/* Goldrand: Folie mit freigerubbeltem Streifen */
.lp-kolart-gold {
    background:
        linear-gradient(115deg, transparent 40%, var(--card) 41%, var(--card) 59%, transparent 60%),
        linear-gradient(120deg, #C9A24B, #E8CE8D 38%, #B98F3B 70%, #DDBC72);
}
.lp-kolstage { margin-top: .4rem; }
.lp-kolstage-tab { flex: none; font-size: .74rem; font-weight: 600; color: var(--ink-soft); }
.lp-kolstage-tab:hover { color: var(--gold-dark); }

/* ── Preis: das Wertdokument — jetzt eine wendbare Karte (Signature IV).
   Wie eine Einladung, die man umdreht: Vorderseite Preis, Rückseite vier
   Zusagen. Flip = Tier 0 (immer nutzbar; reduced-motion snapt ohne Drehung,
   siehe unten). Schein folgt dem Zeiger nur bei Maus — @property macht
   --mx/--my selbst weich, kein GSAP noetig. ── */
@property --mx { syntax: '<percentage>'; inherits: true; initial-value: 50%; }
@property --my { syntax: '<percentage>'; inherits: true; initial-value: 38%; }
.lp-price, .lp-wire { --tick: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2.6" stroke-linecap="round" stroke-linejoin="round"><path d="M4 12.5l5 5L20 6.5"/></svg>'); }
.lp-price { max-width: 26rem; margin: 0 auto; position: relative; }
.lp-price-flip { perspective: 90rem; }
.lp-price-flip-inner {
    position: relative; display: grid; transform-style: preserve-3d;
    transition: transform .75s cubic-bezier(.34, .01, .16, 1);
}
html.lp-js .lp-price-flip-inner.is-flipped { transform: rotateY(180deg); }
.lp-price-face {
    grid-area: 1 / 1; position: relative; overflow: hidden;
    backface-visibility: hidden; -webkit-backface-visibility: hidden;
    background: var(--card); border: 1px solid var(--gold); border-radius: var(--r-lg);
    padding: 2.4rem 2.4rem 2.2rem; text-align: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9), 0 8px 20px -12px rgba(31, 28, 25, .18),
        0 32px 64px -32px rgba(31, 28, 25, .28);
}
.lp-price-face::before {
    content: ""; position: absolute; inset: 8px; pointer-events: none;
    border: 1px solid color-mix(in srgb, var(--gold) 28%, transparent);
    border-radius: calc(var(--r-lg) - 6px);
}
.lp-price-face--back { display: none; transform: rotateY(180deg); flex-direction: column; }
html.lp-js .lp-price-face--back { display: flex; }
.lp-price-sheen {
    position: absolute; inset: 0; pointer-events: none; opacity: 0;
    background: radial-gradient(18rem circle at var(--mx) var(--my),
        color-mix(in srgb, var(--gold) 30%, transparent), transparent 66%);
    transition: opacity .35s var(--ease);
}
html.lp-js .lp-price-face--front:hover .lp-price-sheen,
html.lp-js .lp-price-face--front:focus-within .lp-price-sheen { opacity: 1; }
html.lp-js .lp-price-face--front { cursor: pointer; }
.lp-price-name {
    margin: 0; font-size: .78rem; letter-spacing: .15em; text-transform: uppercase;
    font-feature-settings: "case" 1; color: var(--gold-dark); font-weight: 650;
}
.lp-price-name::after { content: ""; display: block; width: 2.5rem; height: 1px; background: var(--gold); margin: .9rem auto 0; }
.lp-price-tag { margin: .9rem 0 .4rem; font-variant-numeric: tabular-nums; }
.lp-price-chf { font-size: 1rem; font-weight: 600; letter-spacing: .02em; color: var(--muted); vertical-align: 1.6em; margin-right: .2rem; }
.lp-price-num {
    font-family: var(--font-serif); font-size: 4.25rem; line-height: 1;
    letter-spacing: -.02em; font-variation-settings: "opsz" 72;
}
.lp-price-per { font-size: .95rem; color: var(--muted); }
.lp-price-roi { margin: 0 0 1.2rem; font-size: .82rem; color: var(--ink-soft); }
.lp-price ul { list-style: none; margin: 0 0 1.6rem; padding: 0; text-align: left; }
.lp-price li { padding: .5rem 0 .5rem 1.7rem; position: relative; font-size: .92rem; line-height: 1.5; border-bottom: 1px solid var(--line); }
.lp-price li:last-child { border-bottom: 0; }
.lp-price li::before {
    content: ""; position: absolute; top: .78rem; left: 0; width: .8rem; height: .8rem;
    background: var(--gold-dark); -webkit-mask: var(--tick) center/contain no-repeat; mask: var(--tick) center/contain no-repeat;
}
.lp-price-note { margin: 1rem 0 0; font-size: .78rem; color: var(--muted); text-wrap: pretty; }
.lp-price-turn {
    display: inline-flex; align-items: center; gap: .35rem; margin-top: 1.1rem;
    border: 0; background: none; padding: 0; font: inherit; font-size: .82rem; font-weight: 620;
    color: var(--muted); cursor: pointer; transition: color var(--t-fast) var(--ease);
}
.lp-price-turn:hover, .lp-price-turn:focus-visible { color: var(--gold-dark); }
.lp-price-turn .lp-ic14 { color: var(--gold-dark); margin-right: 0; }
html:not(.lp-js) .lp-price-turn { display: none; }
.lp-price-back-lead { margin: .6rem 0 1.3rem; font-size: .92rem; color: var(--ink-soft); }
.lp-price-back-list { text-align: left; display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.6rem; }
.lp-price-back-list > div { position: relative; padding-left: 1.7rem; font-size: .88rem; line-height: 1.5; color: var(--ink-soft); }
.lp-price-back-list b { display: block; color: var(--ink); font-weight: 650; margin-bottom: .1rem; }
.lp-price-back-list > div::before {
    content: ""; position: absolute; top: .2rem; left: 0; width: .8rem; height: .8rem;
    background: var(--gold-dark); -webkit-mask: var(--tick) center/contain no-repeat; mask: var(--tick) center/contain no-repeat;
}
.lp-price-face--back .lp-cta { margin-top: auto; }

/* Der V2-«Teiler» (.lp-divide, Jahrespreis durch Hochzeiten geteilt) ist
   geloescht — kein View nutzt ihn mehr; die V3-Fassung entsteht neu in
   landing-v3.css (WOW-001, Preisquelle Plan::TIERS statt hart). */

/* ── So starten Sie: drei Schritte, Messing-Raute statt Ziffer ── */
.lp-steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s5) var(--s6); }
.lp-steps li { position: relative; padding-top: 1.8rem; }
.lp-steps li::before {
    content: ""; position: absolute; top: .25rem; left: 0;
    width: 7px; height: 7px; transform: rotate(45deg); background: var(--gold);
}
.lp-steps li::after { content: ""; position: absolute; top: .55rem; left: 1.3rem; right: 0; height: 1px; background: var(--line); }

/* ── FAQ (native details, 0 JS) ───────────────────────────── */
.lp-faq { max-width: 46rem; margin-top: 1.6rem; }
.lp-faq details { border-bottom: 1px solid var(--line); }
.lp-faq summary {
    cursor: pointer; list-style: none; padding: 1.05rem 2rem 1.05rem 0;
    font-weight: 620; font-size: .98rem; position: relative;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after {
    content: "+"; position: absolute; right: .2rem; top: 50%; transform: translateY(-50%);
    font-size: 1.3rem; font-weight: 400; color: var(--gold-dark); transition: transform var(--t-fast) var(--ease);
}
.lp-faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.lp-faq details p { margin: 0 0 1.2rem; font-size: .92rem; line-height: 1.6; color: var(--ink-soft); max-width: 42rem; }

/* ── Abschluss: das Finale mit Brass-Schein ───────────────── */
.lp-final {
    position: relative; overflow: hidden; text-align: center;
    padding: 6rem var(--s5) 6.5rem; background: linear-gradient(180deg, #242019, var(--ink));
    color: var(--text-inverse);
}
.lp-final > * { position: relative; }
.lp-final h2 { color: var(--text-inverse); margin-bottom: .8rem; font-variation-settings: "opsz" 28; }
.lp-final-sub { color: rgba(255, 255, 255, .65); margin: 0 0 2rem; font-size: .95rem; }

.lp-foot {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--s3);
    max-width: 72rem; margin: 0 auto; padding: 2rem var(--s5) 2.4rem;
    font-size: .82rem; color: var(--muted); border-top: 1px solid var(--line);
}
.lp-foot a { color: var(--ink-soft); }

/* ── Eröffnung + Responsive + reduced-motion ──────────────── */
@supports (transition-behavior: allow-discrete) {
    .rise { transition: opacity .7s var(--ease) .9s, transform .7s var(--ease) .9s; }
    .r2 { transition-delay: 1.02s; }
    @starting-style {
        .rise { opacity: 0; transform: translateY(14px); }
    }
}

@media (max-width: 75rem) {
    .lp-sitzshow { grid-template-columns: 1fr; }
    .lp-sitzshow-side { position: static; }
}
@media (max-width: 56rem) {
    .lp-hero { grid-template-columns: 1fr; padding-top: 2.2rem; }
    .lp-desk { min-height: 24rem; margin-top: 1rem; max-width: 34rem; margin-inline: auto; }
    .lp-triple, .lp-grid, .lp-trust, .lp-versus, .lp-split, .lp-steps, .lp-kol-row { grid-template-columns: 1fr; }
    .lp-chats { grid-template-columns: 1fr; max-width: 26rem; margin-inline: auto; }
    .lp-wire-grid, .lp-seatstage-grid { grid-template-columns: 1fr; max-width: 26rem; margin-inline: auto; }
    .lp-wire-pin, .lp-seatstage-pin { position: static; }
    .lp-wire-step { min-height: 0; padding-top: 0; opacity: 1; }
    .lp-wire-steps { gap: 1.2rem; margin-top: 1.6rem; }
    .lp-iphone { max-width: 24rem; }
    .lp-topnav a[href^="#"] { display: none; }
    .lp-bench-stage { grid-template-columns: 1fr; gap: 1.2rem; }
    .lp-bench-list { min-height: 0; }
}
@media (max-width: 40rem) {
    .lp-desk { min-height: 21rem; }
    .lp-sheet-a { width: min(19rem, 96%); }
    .lp-sheet-b { top: 34%; width: min(15rem, 68%); }
    .lp-sheet-c { width: min(14rem, 66%); left: 2%; bottom: .25rem; }
    .lp-bench { padding: 1.3rem 1.1rem 1.2rem; }
    .lp-bench-floor { grid-template-columns: 1fr; }
    .lp-sitzshow-body { height: 28rem; }
    .lp-price-face { padding: 1.9rem 1.5rem 1.8rem; }
}

@media (prefers-reduced-motion: reduce) {
    .rise, .lp-cta, .lp-mock, .lp-faq summary::after,
    .lp-guest, .lp-guest.is-fly, .lp-bench-reset, .lp-kolcard { transition: none; }
    .lp-seat.is-gap, .lp-sheet.is-lift .lp-mock { animation: none; }
    /* Draht: Schritt-Uebergaenge ohne Transition, Sprung auf den Zielzustand */
    .lp-wire *, .lp-wire *::before, .lp-wire *::after { transition: none !important; }
    .lp-price-flip-inner, .lp-price-sheen { transition: none; }
    html.lp-js .lp-price-face--front:hover .lp-price-sheen,
    html.lp-js .lp-price-face--front:focus-within .lp-price-sheen { opacity: 0; }
}

/* Rechtsseiten */
.lp-legal { max-width: 46rem; }
.lp-legal h1 { font-family: var(--font-serif); font-weight: 500; font-size: clamp(1.9rem, 3vw, 2.4rem); margin: 0 0 1.6rem; }
.lp-legal-body h2 { font-size: 1rem; font-weight: 650; margin: 1.8rem 0 .4rem; }
.lp-legal-body h3 { font-size: .92rem; font-weight: 650; margin: 1.2rem 0 .3rem; }
.lp-legal-body p { margin: 0 0 .8rem; font-size: .95rem; line-height: 1.65; color: var(--ink-soft); }
.lp-legal-body ul, .lp-legal-body ol { margin: 0 0 .8rem 1.25rem; padding: 0; font-size: .95rem; line-height: 1.6; color: var(--ink-soft); }
.lp-legal-body li { margin: 0 0 .35rem; }
.lp-legal-body table { width: 100%; border-collapse: collapse; margin: 0 0 1rem; font-size: .88rem; }
.lp-legal-body th, .lp-legal-body td { text-align: left; padding: .45rem .55rem .45rem 0; border-bottom: 1px solid var(--line); vertical-align: top; color: var(--ink-soft); }
.lp-legal-body th { font-weight: 650; color: inherit; }
.lp-legal-meta { font-size: .85rem; color: var(--ink-soft); margin: -.8rem 0 1.4rem; }
.lp-legal-kasten { border: 1px solid var(--line); border-radius: 8px; padding: 1rem 1.2rem; margin: 1.4rem 0; }
.lp-legal-kasten h2 { margin-top: 0; }

.lp-legal-founder {
    display: flex; gap: 1.6rem; align-items: center; margin: 0 0 2.2rem;
    padding: 1.6rem 1.7rem; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
    box-shadow: 0 1px 2px rgba(31, 28, 25, .05), 0 10px 20px -10px rgba(31, 28, 25, .12),
        0 28px 56px -24px rgba(31, 28, 25, .30);
}
.lp-legal-founder-photo {
    flex: none; width: 7rem; height: 7rem; border-radius: 50%; object-fit: cover; object-position: center 22%;
    border: 3px solid var(--gold); box-shadow: 0 8px 22px -4px color-mix(in srgb, var(--gold) 45%, transparent),
        inset 0 0 0 3px var(--card);
}
.lp-legal-founder-eyebrow {
    display: block; margin: 0 0 .3rem; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
    font-feature-settings: "case" 1; font-weight: 650; color: var(--gold-dark);
}
.lp-legal-founder h2 { margin: 0 0 .1rem; font-family: var(--font-serif); font-weight: 500; font-size: 1.25rem; }
.lp-legal-founder-meta { margin: 0 0 .7rem; font-size: .78rem; color: var(--muted); }
.lp-legal-founder p { margin: 0 0 .6rem; font-size: .92rem; line-height: 1.6; color: var(--ink-soft); }
.lp-legal-founder p:last-child { margin-bottom: 0; }
@media (max-width: 32rem) {
    .lp-legal-founder { flex-direction: column; align-items: center; text-align: center; }
    .lp-legal-founder-photo { width: 6rem; height: 6rem; }
}

/* ════════════════════════════════════════════════════════════
   Erlebnis-Schicht «Der ruhige Griff» (2026-07-03)
   Tier 0 = .lp-reveal (IO), Tier 1 = .lp-motion (GSAP) — beide
   nur JS-gesetzt: ohne JS ist nichts versteckt.
   ════════════════════════════════════════════════════════════ */
:root { --ease-out-quint: cubic-bezier(.22, 1, .36, 1); interpolate-size: allow-keywords; }

/* Lenis (aus lenis.css uebernommen, eigene Datei gespart) */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

/* ── Tier 0: Reveal-Engine ── */
.lp-reveal [data-mo] {
    opacity: 0; transform: translateY(var(--rv-y, 16px));
    transition: opacity .65s var(--ease-out-quint), transform .65s var(--ease-out-quint), rotate .65s var(--ease-out-quint);
}
.lp-reveal [data-mo].in { opacity: 1; transform: none; }
.lp-reveal [data-mo="2"] { transition-delay: .08s; }
.lp-reveal [data-mo="3"] { transition-delay: .16s; }
.lp-reveal [data-mo="4"] { transition-delay: .22s; }
.lp-reveal [data-mo="5"] { transition-delay: .30s; }
.lp-reveal [data-mo="6"] { transition-delay: .38s; }
.lp-reveal [data-mo="7"] { transition-delay: .46s; }
.lp-reveal [data-mo="8"] { transition-delay: .54s; }
.lp-reveal [data-mo="9"] { transition-delay: .62s; }
.lp-reveal [data-mo="10"] { transition-delay: .70s; }
.lp-reveal .lp-faq details[data-mo] { --rv-y: 10px; }
.lp-reveal .lp-bench[data-mo] { --rv-y: 24px; }
.lp-reveal .lp-triple article[data-mo] { --rv-y: 20px; }
.lp-reveal .lp-triple article[data-mo]:nth-child(1) { rotate: .5deg; }
.lp-reveal .lp-triple article[data-mo]:nth-child(2) { rotate: -.4deg; }
.lp-reveal .lp-triple article[data-mo]:nth-child(3) { rotate: .45deg; }
.lp-reveal .lp-triple article[data-mo].in { rotate: 0deg; }

/* Linien ziehen sich, Ticks setzen sich (Feature-Raster + Vertrauen) */
.lp-reveal .lp-grid > div[data-mo], .lp-reveal .lp-trust > div[data-mo] { border-top-color: transparent; }
.lp-reveal .lp-grid > div[data-mo]::after, .lp-reveal .lp-trust > div[data-mo]::after {
    content: ""; position: absolute; top: -1px; left: 0; right: 0; height: 1px;
    background: var(--line); transform: scaleX(0); transform-origin: 0 50%;
    transition: transform .6s var(--ease-out-quint);
}
.lp-reveal .lp-grid > div[data-mo]::before, .lp-reveal .lp-trust > div[data-mo]::before {
    transform: scaleX(0); transform-origin: 0 50%;
    transition: transform .4s var(--ease-out-quint) .18s;
}
.lp-reveal .lp-grid > div[data-mo].in::after, .lp-reveal .lp-grid > div[data-mo].in::before,
.lp-reveal .lp-trust > div[data-mo].in::after, .lp-reveal .lp-trust > div[data-mo].in::before { transform: scaleX(1); }

/* ── Tier 1: GSAP-eigene Zustaende (nur unter .lp-motion versteckt) ── */
html.lp-motion .lp-price-name::after { transform: scaleX(0); transition: transform .5s var(--ease-out-quint); }
html.lp-motion .lp-price.is-drawn .lp-price-name::after { transform: scaleX(1); }
html.lp-motion .lp-price li::before { transform: scale(0); }
html.lp-motion .lp-price.is-checked li::before {
    transform: scale(1);
    transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
}
html.lp-motion .lp-price.is-checked li:nth-child(2)::before { transition-delay: .07s; }
html.lp-motion .lp-price.is-checked li:nth-child(3)::before { transition-delay: .14s; }
html.lp-motion .lp-price.is-checked li:nth-child(4)::before { transition-delay: .21s; }
html.lp-motion .lp-price.is-checked li:nth-child(5)::before { transition-delay: .28s; }
html.lp-motion .lp-price.is-checked li:nth-child(6)::before { transition-delay: .35s; }
.lp-price-num { display: inline-block; min-width: 3ch; }
.lp-mock-kpis b { display: inline-block; }
.lp-mock-kpis span:nth-child(1) b { min-width: 2ch; }
.lp-mock-kpis span:nth-child(2) b { min-width: 6ch; }
html.lp-motion .lp-steps li::after { transform: scaleX(0); transform-origin: 0 50%; }
html.lp-motion .lp-steps.is-linked li::after { transform: scaleX(1); transition: transform .55s var(--ease-out-quint); }
html.lp-motion .lp-steps.is-linked li:nth-child(2)::after { transition-delay: .16s; }
html.lp-motion .lp-steps.is-linked li:nth-child(3)::after { transition-delay: .32s; }
/* Kontrast-Zeilen: auf schmalen Schirmen Problem oben, Vorteil darunter */
@media (max-width: 56rem) {
    .lp-versus-head { display: none; }
    .lp-vrow { grid-template-columns: auto 1fr; gap: .55rem .8rem; padding: 1rem 1.1rem; }
    .lp-vold { grid-column: 1 / -1; font-size: .82rem; }
    .lp-vlabel { display: inline; font-weight: 650; color: var(--muted); }
    .lp-varrow { grid-column: 1; transform: rotate(90deg); }
    .lp-vnew { grid-column: 2; }
}

/* Topnav: Underline-Draw */
.lp-topnav a:not(.lp-cta) {
    background: linear-gradient(currentColor, currentColor) 0 100% / 0 1px no-repeat;
    transition: color var(--t-fast) var(--ease), background-size .22s var(--ease-out-quint);
}
.lp-topnav a:not(.lp-cta):hover { background-size: 100% 1px; }

/* FAQ: modernes Auf/Zu (Chrome/Edge animieren, Rest oeffnet instantan) */
.lp-faq details::details-content {
    block-size: 0; overflow: clip;
    transition: block-size .32s var(--ease), content-visibility .32s allow-discrete;
}
.lp-faq details[open]::details-content { block-size: auto; }
.lp-faq summary:hover::after { color: var(--gold); }

/* ── Visual V1: Papierkorn + Hero-Buehne (Aura + Blindpraegungs-&) ── */
.lp-grain {
    position: fixed; inset: 0; z-index: 90; pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
    background-size: 160px 160px;
    opacity: .035; mix-blend-mode: multiply;
}
.lp-hero-stage { position: relative; overflow-x: clip; }
.lp-hero-stage::before {
    content: ""; position: absolute; top: -10rem; right: -14rem;
    width: min(58rem, 95vw); height: 42rem; pointer-events: none;
    background: radial-gradient(closest-side, color-mix(in srgb, var(--gold) 9%, transparent), transparent 72%);
    z-index: 0;
}
.lp-hero-stage::after {
    content: "&"; position: absolute; top: 46%; right: 2%;
    transform: translateY(-50%);
    font-family: var(--font-serif); font-style: italic; font-weight: 400;
    font-size: clamp(18rem, 28vw, 32rem); line-height: 1;
    color: color-mix(in srgb, var(--gold) 8%, transparent);
    pointer-events: none; user-select: none; z-index: 0;
}
.lp-hero { position: relative; z-index: 1; }

/* ── Visual V2: Sektionen kapseln Overflow (Spotlight-Buehnen) ── */
.lp-section { position: relative; z-index: 0; overflow-x: clip; }
.lp-tinted .lp-inner { position: relative; z-index: 0; }

/* ── Visual V3: Preis-Buehne (Spotlight, Passe-partout, Sockel) ── */
.lp-stage { position: relative; padding: 1.5rem 0 2.25rem; }
.lp-stage::before {
    content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
    width: min(58rem, 100vw); height: 115%; pointer-events: none;
    background: radial-gradient(closest-side, color-mix(in srgb, var(--gold) 10%, transparent), transparent 74%);
}
.lp-stage::after {
    content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
    width: min(42rem, 86%); height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-soft) 18%, var(--border-soft) 82%, transparent);
}

/* ── Visual V4: raeumliche Uebergaenge (nur Desktop) ── */
@media (min-width: 56.01rem) {
    .lp-triple article:nth-child(2) { margin-top: 1.5rem; }
    .lp-triple article:nth-child(3) { margin-top: 3rem; }
    .lp-chatwin:nth-child(2) { margin-top: 2rem; }
}
.lp-tinted {
    background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 16%, var(--surface) 84%, var(--surface-2) 100%);
}

/* ── Visual V5: Detail-Schicht ── */
.lp-kicker::after {
    content: ""; width: 3.5rem; height: 5px;
    background:
        linear-gradient(var(--line), var(--line)) 0 50% / 100% 1px no-repeat,
        linear-gradient(var(--ink), var(--ink)) 100% 50% / 1px 5px no-repeat;
}
.lp-orn { display: flex; align-items: center; gap: 1rem; max-width: 16rem; margin: 2.4rem auto 0; }
.lp-orn::before, .lp-orn::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.lp-orn span { width: 6px; height: 6px; transform: rotate(45deg); background: var(--gold); flex: none; }
.lp-foot { position: relative; }
.lp-foot::before { content: ""; position: absolute; top: 3px; left: 0; right: 0; height: 1px; background: var(--line); }
.lp-final { border-top: 1px solid color-mix(in srgb, var(--gold) 30%, transparent); }

/* ── Final: Glow als Element (Compositor) + Dust-Canvas ── */
.lp-final-glow {
    position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(56rem 22rem at 50% 130%, color-mix(in srgb, var(--gold) 18%, transparent), transparent 70%);
}
.lp-final .lp-dust { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.lp-final .lp-cta:hover { box-shadow: 0 0 0 1px color-mix(in srgb, var(--gold) 45%, transparent); }

@media (max-width: 56rem) {
    .lp-hero-stage::after { display: none; }
    .lp-hero-stage::before { top: -6rem; right: -10rem; height: 30rem; }
}

@media (prefers-reduced-motion: reduce) {
    .lp-reveal [data-mo] { opacity: 1; transform: none; rotate: 0deg; transition: none; }
    .lp-reveal .lp-ic { opacity: 1; transform: none; transition: none; }
    .lp-faq details::details-content { transition: none; }
    .lp-topnav a:not(.lp-cta) { transition: none; }
}

/* ── Marken-Vorhang: zwei Ringe, ein Bund (Preloader) ──────
   Sichtbarkeit rein per CSS (kein blocking JS). Drei Abgänge:
   1) landing.js setzt .is-done (frühestens 1.15s),
   2) CSS-Failsafe blendet nach 1.7s+.5s selbst aus,
   3) noscript/reduced-motion zeigen ihn nie. */
.lp-veil {
    position: fixed; inset: 0; z-index: 80;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem;
    background: var(--bg);
    animation: lp-veil-out .5s var(--ease) 1.7s forwards;
}
.lp-veil.is-done {
    animation: none; opacity: 0; visibility: hidden;
    transition: opacity .45s var(--ease), visibility 0s linear .45s;
}
.lp-veil-rings { display: block; animation: lp-veil-fade .35s ease-out both; }
.lp-veil-rings circle {
    fill: none; stroke: var(--gold);
    transform-box: fill-box; transform-origin: center;
}
.lp-ring-a { stroke-width: 2; animation: lp-ring-a 1.25s both; }
.lp-ring-b { stroke-width: 2.75; animation: lp-ring-b 1.25s both; }
.lp-ring-glow { stroke-width: 7; opacity: 0; animation: lp-ring-glow 1.25s linear both; }
.lp-veil-word {
    margin: 0; font-family: var(--font-serif); font-size: 1.3rem; letter-spacing: .01em;
    animation: lp-veil-fade .6s var(--ease-out-quint) .4s both;
}
.lp-veil-word em { font-style: normal; color: var(--gold-dark); }
.lp-veil.is-done .lp-veil-rings, .lp-veil.is-done .lp-veil-word {
    transform: translateY(-8px); transition: transform .45s var(--ease-out-quint);
}
@keyframes lp-veil-out { to { opacity: 0; visibility: hidden; } }
@keyframes lp-veil-fade { from { opacity: 0; } }
@keyframes lp-ring-a {
    0% { transform: translateX(-46px); animation-timing-function: cubic-bezier(.22, 1, .36, 1); }
    54%, 68% { transform: translateX(-16px); animation-timing-function: cubic-bezier(.45, 0, .2, 1); }
    100% { transform: translateX(0); }
}
@keyframes lp-ring-b {
    0% { transform: translateX(46px); animation-timing-function: cubic-bezier(.22, 1, .36, 1); }
    54%, 68% { transform: translateX(16px); animation-timing-function: cubic-bezier(.45, 0, .2, 1); }
    100% { transform: translateX(0); }
}
@keyframes lp-ring-glow {
    0%, 46% { opacity: 0; transform: scale(1); }
    60% { opacity: .3; }
    78%, 100% { opacity: 0; transform: scale(1.14); }
}
/* Nach dem .lp-veil-Block, sonst verliert display:none den Kaskaden-Tie gegen display:flex */
@media (prefers-reduced-motion: reduce) {
    .lp-veil { display: none; }
}
