:root {
    --maxw: 1240px;
    --gut: clamp(20px, 5vw, 64px);
    --sec-y: clamp(80px, 11vh, 150px);
  }
  html { scroll-behavior: smooth; }
  body { margin: 0; background: var(--brand-deep); overflow-x: hidden; }

  /* ---- Fixed scroll-driven background ---- */
  #bg {
    position: fixed; inset: 0; z-index: -2;
    background: var(--brand);
    will-change: background-color;
  }
  #bg::after {
    content: ""; position: absolute; right: -8vw; top: 12vh;
    width: 60vw; height: 60vw; max-width: 760px; max-height: 760px;
    background: url("../../logos/Mave-Signet-farbe.svg") no-repeat center/contain;
    opacity: 0; transition: opacity .8s var(--ease-out);
  }
  #bg.paper::after { opacity: .04; }

  .wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
  .reveal.in { opacity: 1; transform: none; }
  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
  }

  .eyebrow { display: flex; align-items: center; gap: 14px; font-family: var(--font-sans);
    font-size: var(--text-overline); font-weight: 600; letter-spacing: var(--tracking-overline);
    text-transform: uppercase; color: var(--brand); margin: 0 0 22px; }
  .eyebrow::before { content: ""; width: 34px; height: 2px; background: currentColor; flex: none; }
  .on-dark .eyebrow { color: var(--offwhite); }

  h1, h2, h3 { font-family: var(--font-display); font-weight: 400; letter-spacing: var(--tracking-display);
    margin: 0; text-wrap: balance; }

  /* ---- Header ---- */
  header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px; padding: 18px var(--gut); color: var(--offwhite);
    transition: background-color .4s var(--ease-out), color .4s var(--ease-out),
                box-shadow .4s var(--ease-out), padding .4s var(--ease-out);
  }
  header.scrolled { background: rgba(249,249,246,0.92); backdrop-filter: blur(8px);
    color: var(--text-primary); box-shadow: 0 1px 0 var(--hairline); padding-block: 13px; }
  .brand { display: flex; align-items: center; text-decoration: none; color: inherit; }
  .brand svg { height: 34px; width: auto; display: block; }
  .brand .logo path { fill: var(--offwhite); transition: fill .4s var(--ease-out); }
  header.scrolled .brand .logo path { fill: var(--brand); }
  header.scrolled .brand .logo .consulting path { fill: var(--text-primary); }
  footer .brand .logo path { fill: var(--offwhite); }
  nav.main { display: flex; align-items: center; gap: clamp(16px, 2vw, 32px); }
  nav.main a { color: inherit; text-decoration: none; font-size: 15px; letter-spacing: .01em;
    opacity: .92; position: relative; padding: 4px 0; transition: opacity .2s; }
  nav.main a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1.5px;
    background: currentColor; transition: right .28s var(--ease-out); }
  nav.main a:hover { opacity: 1; }
  nav.main a:hover::after { right: 0; }
  nav.main a.cta {
    border: 1.5px solid currentColor; padding: 9px 20px; opacity: 1; font-weight: 600;
    transition: background-color .25s var(--ease-out), color .25s var(--ease-out);
  }
  nav.main a.cta::after { display: none; }
  header:not(.scrolled) nav.main a.cta:hover { background: var(--offwhite); color: var(--brand); }
  header.scrolled nav.main a.cta { border-color: var(--brand); color: var(--brand); }
  header.scrolled nav.main a.cta:hover { background: var(--brand); color: var(--offwhite); }
  .menu-btn { display: none; background: none; border: 0; color: inherit; cursor: pointer; padding: 6px; }

  /* ---- Buttons ---- */
  .btn { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-sans);
    font-size: 16px; font-weight: 600; letter-spacing: .01em; text-decoration: none;
    padding: 15px 30px; border: 1.5px solid transparent; cursor: pointer;
    transition: background-color .25s var(--ease-out), color .25s var(--ease-out), transform .12s var(--ease-out); }
  .btn:active { transform: translateY(1px); }
  .btn-primary { background: var(--brand); color: var(--offwhite); }
  .btn-primary:hover { background: var(--brand-strong); }
  .btn-ghost-light { border-color: rgba(249,249,246,.55); color: var(--offwhite); }
  .btn-ghost-light:hover { background: var(--offwhite); color: var(--brand); }
  .btn-ghost-dark { border-color: var(--brand); color: var(--brand); }
  .btn-ghost-dark:hover { background: var(--brand); color: var(--offwhite); }
  .btn .ar { width: 18px; height: 18px; transition: transform .25s var(--ease-out); }
  .btn:hover .ar { transform: translateX(4px); }

  /* ---- HERO — Startseite-style, full height ---- */
  .hero { min-height: 100svh; display: grid; grid-template-columns: 1.05fr .95fr;
    align-items: center; gap: var(--gut); color: var(--offwhite);
    padding: 150px var(--gut) 80px; max-width: var(--maxw); margin: 0 auto; }
  .hero h1 { font-size: clamp(38px, 5.2vw, 72px); line-height: 1.02; font-weight: 300; }
  .hero .lead { font-size: clamp(17px, 1.5vw, 21px); line-height: 1.55; max-width: 32ch;
    margin: 30px 0 38px; color: rgba(249,249,246,.86); }
  .hero-rule { width: 90px; height: 2px; background: rgba(249,249,246,.5); border: 0; margin: 0 0 30px; }
  .hero-figure { position: relative; align-self: stretch; min-height: 60vh; }
  .hero-figure img { position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; filter: saturate(.96) contrast(1.02); }
  .hero-figure::after { content: ""; position: absolute; inset: 0;
    box-shadow: inset 0 0 0 1px rgba(249,249,246,.18); }

  /* ---- Sections ---- */
  section.band { padding-block: var(--sec-y); position: relative; }
  .lede { font-size: clamp(17px, 1.4vw, 20px); line-height: 1.7; color: var(--text-secondary); max-width: 58ch; }
  .lede + .lede { margin-top: 1em; }
  .section-divider { border: 0; border-top: 1px solid var(--border-default); margin: 0; }

  /* ---- Statement split (Problem) ---- */
  .statement-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 90px); align-items: start; }
  .statement-split h2 { font-size: clamp(28px, 4vw, 52px); line-height: 1.06;
    font-weight: 300; color: var(--text-primary); }
  .statement-split h2 em { font-style: normal; color: var(--brand); }

  /* bg-dark: when scroll bg still bordeaux, flip text light */
  body.bg-dark .statement-split h2 { color: var(--offwhite); }
  body.bg-dark .statement-split h2 em { color: rgba(249,249,246,.6); }
  body.bg-dark .statement-split .lede { color: rgba(249,249,246,.72); }
  body.bg-dark .eyebrow:not(.cta-band .eyebrow) { color: var(--offwhite); }
  body.bg-dark .eyebrow:not(.cta-band .eyebrow)::before { background: var(--offwhite); }

  /* ---- Das System ---- */
  .system-intro { max-width: 660px; margin-bottom: clamp(44px, 6vh, 72px); }
  .system-intro h2 { font-size: clamp(28px, 4vw, 50px); color: var(--text-primary); margin-bottom: 16px; line-height: 1.05; }
  .system-intro p { color: var(--text-secondary); line-height: 1.65; font-size: clamp(16px, 1.3vw, 18px); }

  .steps { display: flex; flex-direction: column; }
  .step { display: grid; grid-template-columns: 96px 1fr; padding: 34px 0 42px;
    border-top: 1px solid var(--border-default); border-left: 3px solid var(--bordeaux-100); padding-left: 28px; }
  .step:first-child { border-top: 0; }
  .step .num { font-family: var(--font-display); font-size: clamp(36px, 4.2vw, 54px);
    font-weight: 500; line-height: .9; color: var(--brand); padding-top: 2px; }
  .step h3 { font-size: clamp(20px, 2.2vw, 28px); color: var(--text-primary); margin-bottom: 10px; }
  .step .step-lead { color: var(--text-secondary); line-height: 1.65; font-size: 16px; margin: 0 0 18px; }
  .step p { margin: 0 0 8px; color: var(--text-secondary); line-height: 1.6; font-size: 15px; }
  .step p:last-child { margin-bottom: 0; }
  .step p strong { color: var(--text-primary); font-weight: 600; }
  .step ul { list-style: none; margin: 6px 0 18px; padding: 0; display: flex; flex-direction: column; gap: 5px; }
  .step ul:last-child { margin-bottom: 0; }
  .step ul li { color: var(--text-secondary); font-size: 15px; line-height: 1.6; }
  .step ul li::before { content: "_ "; color: var(--brand); }
  .step ul li strong { color: var(--text-primary); font-weight: 600; }
  .step ul li em { color: var(--text-secondary); font-style: italic; }

  /* ---- Pakete ---- */
  .pakete-intro { max-width: 620px; margin-bottom: clamp(40px, 6vh, 60px); }
  .pakete-intro h2 { font-size: clamp(28px, 4vw, 50px); color: var(--text-primary); margin-bottom: 14px; }
  .pakete-intro p { color: var(--text-secondary); line-height: 1.65; }
  .pakete-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 44px; }
  .paket { background: var(--surface-card); border: 1px solid var(--border-default);
    border-top: 3px solid var(--brand); padding: clamp(24px, 2.6vw, 40px);
    display: flex; flex-direction: column; gap: 14px; }
  .paket-phase { font-family: var(--font-sans); font-size: 12px; letter-spacing: .1em;
    text-transform: uppercase; color: var(--text-secondary); font-weight: 600; }
  .paket h3 { font-size: clamp(15px, 1.4vw, 18px); color: var(--brand); line-height: 1.2; }
  .paket h3 strong { display: block; font-weight: 400; color: var(--text-primary); font-size: clamp(17px, 1.7vw, 22px); }
  .paket .tagline { color: var(--text-primary); font-weight: 600; font-size: 15px; line-height: 1.5;
    border-top: 1px solid var(--border-default); padding-top: 14px; }
  .paket .paket-body { color: var(--text-secondary); line-height: 1.65; font-size: 15px; }
  .paket .paket-meta { font-size: 14px; line-height: 1.6; color: var(--text-secondary); }
  .paket .paket-meta strong { color: var(--text-primary); font-weight: 600; display: block;
    font-size: 12px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 3px; }
  .paket .btn { margin-top: auto; align-self: flex-start; font-size: 14px; padding: 11px 20px; }
  .interim-note { border-top: 1px solid var(--border-default); padding-top: 36px; max-width: 660px; }
  .interim-note h3 { font-family: var(--font-sans); font-size: 13px; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase; color: var(--text-primary); margin-bottom: 14px; }
  .interim-note p { color: var(--text-secondary); line-height: 1.65; font-size: 16px; margin: 0 0 .7em; }

  /* ---- Profil ---- */
  .profile-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(40px, 6vw, 90px);
    align-items: start; margin-bottom: clamp(48px, 7vh, 80px); }
  .profile-grid h2 { font-size: clamp(26px, 3.6vw, 46px); color: var(--text-primary);
    margin-bottom: 22px; line-height: 1.05; }
  .profile-text p { color: var(--text-secondary); line-height: 1.72; margin: 0 0 1em;
    font-size: clamp(15px, 1.2vw, 17px); max-width: 52ch; }
  .profile-text p strong { color: var(--text-primary); }
  .profile-link { display: inline-flex; align-items: center; gap: 8px; color: var(--brand);
    font-weight: 600; font-size: 15px; text-decoration: none;
    border-bottom: 1.5px solid currentColor; padding-bottom: 2px; margin-top: 12px; }
  .profile-link .ar { width: 17px; height: 17px; transition: transform .25s var(--ease-out); }
  .profile-link:hover .ar { transform: translateX(4px); }
  .facts-col h4 { font-family: var(--font-sans); font-size: 12px; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase; color: var(--text-primary); margin: 0 0 20px; }
  .fact-item { padding: 18px 0; border-top: 1px solid var(--border-default); }
  .fact-item:last-child { border-bottom: 1px solid var(--border-default); }
  .fact-item strong { display: block; color: var(--text-primary); font-weight: 600;
    font-size: 15px; margin-bottom: 6px; }
  .fact-item p { color: var(--text-secondary); line-height: 1.6; margin: 0; font-size: 14px; }
  .profile-figure { position: relative; height: clamp(260px, 36vh, 440px); }
  .profile-figure img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
  .profile-figure::after { content: ""; position: absolute; inset: 0;
    box-shadow: inset 0 0 0 1px var(--hairline); }

  /* ---- FAQ ---- */
  .faq-head { max-width: 580px; margin-bottom: clamp(36px, 5vh, 56px); }
  .faq-head h2 { font-size: clamp(28px, 4vw, 50px); color: var(--text-primary); }
  .accordion { display: flex; flex-direction: column; max-width: 860px; }
  .acc-item { border-top: 1px solid var(--border-default); }
  .acc-item:last-child { border-bottom: 1px solid var(--border-default); }
  .acc-btn {
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
    width: 100%; background: none; border: 0; text-align: left; cursor: pointer;
    padding: 22px 0; color: var(--text-primary); font-family: var(--font-display);
    font-size: clamp(16px, 1.5vw, 20px); font-weight: 400; letter-spacing: var(--tracking-display);
    transition: color .2s;
  }
  .acc-btn:hover { color: var(--brand); }
  .acc-icon { flex: none; width: 20px; height: 20px; color: var(--brand);
    transition: transform .35s var(--ease-out); }
  .acc-item.open .acc-icon { transform: rotate(45deg); }
  .acc-body { max-height: 0; overflow: hidden; transition: max-height .42s var(--ease-out); }
  .acc-body-inner { padding-bottom: 26px; }
  .acc-body-inner p { color: var(--text-secondary); line-height: 1.72; margin: 0 0 .8em;
    max-width: 68ch; font-size: 16px; }
  .acc-body-inner p:last-child { margin-bottom: 0; }
  .acc-body-inner p strong { color: var(--text-primary); }
  .acc-body-inner p em { font-style: normal; color: var(--brand); }

  /* ---- Final CTA ---- */
  .cta-band { background: transparent; position: relative;
    color: var(--text-primary); transition: color .5s var(--ease-out); }
  .cta-band .wrap { position: relative; z-index: 1; max-width: 880px; text-align: center;
    padding-block: clamp(70px, 12vh, 130px); }
  .cta-band h2 { font-size: clamp(34px, 5vw, 64px); font-weight: 300; line-height: 1.04;
    color: var(--text-primary); transition: color .5s var(--ease-out); }
  .cta-band p { font-size: clamp(17px, 1.5vw, 20px); line-height: 1.6; color: var(--text-secondary);
    max-width: 52ch; margin: 26px auto 36px; transition: color .5s var(--ease-out); }
  .cta-band .eyebrow { justify-content: center; color: var(--brand); transition: color .5s var(--ease-out); }
  .cta-band .btn-ghost-light { border-color: var(--brand); color: var(--brand);
    transition: background-color .25s, color .5s, border-color .5s; }
  .cta-band .btn-ghost-light:hover { background: var(--brand); color: var(--offwhite); }
  .cta-band.lit { color: var(--offwhite); }
  .cta-band.lit h2 { color: var(--offwhite); }
  .cta-band.lit p { color: rgba(249,249,246,.85); }
  .cta-band.lit .eyebrow { color: var(--offwhite); }
  .cta-band.lit .btn-ghost-light { border-color: rgba(249,249,246,.55); color: var(--offwhite); }
  .cta-band.lit .btn-ghost-light:hover { background: var(--offwhite); color: var(--brand); }
  .cta-band .signet { position: absolute; left: 50%; top: 50%; width: 56vw; max-width: 600px;
    transform: translate(-50%, -50%); opacity: .07; pointer-events: none; }
  .cta-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

  /* ---- Footer ---- */
  footer { background: var(--ink-900); color: rgba(249,249,246,.78); padding: clamp(56px,8vh,84px) 0 34px; }
  footer .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; align-items: start; }
  footer .brand svg { height: 34px; }
  footer .blurb { margin: 22px 0 0; max-width: 34ch; line-height: 1.6; font-size: 15px; color: rgba(249,249,246,.6); }
  footer h4 { font-family: var(--font-sans); font-size: 12px; font-weight: 600; letter-spacing: .18em;
    text-transform: uppercase; color: rgba(249,249,246,.5); margin: 0 0 18px; }
  footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
  footer a { color: rgba(249,249,246,.78); text-decoration: none; font-size: 15px; transition: color .2s; }
  footer a:hover { color: var(--offwhite); }
  .foot-bottom { display: flex; flex-wrap: wrap; gap: 12px 26px; justify-content: space-between;
    align-items: center; margin-top: clamp(44px,7vh,72px); padding-top: 24px;
    border-top: 1px solid rgba(249,249,246,.12); font-size: 13px; color: rgba(249,249,246,.5); }
  .foot-bottom nav { display: flex; flex-wrap: wrap; gap: 8px 22px; }

  /* ---- Mobile nav ---- */
  #mobnav { position: fixed; inset: 0; z-index: 49; background: var(--brand-gradient); color: var(--offwhite);
    display: flex; flex-direction: column; justify-content: center; gap: 8px; padding: 0 var(--gut);
    transform: translateY(-100%); transition: transform .45s var(--ease-out); }
  #mobnav.open { transform: none; }
  #mobnav a { color: inherit; text-decoration: none; font-family: var(--font-display); font-size: 32px;
    font-weight: 300; padding: 12px 0; border-bottom: 1px solid rgba(249,249,246,.16); }
  #mobnav .close { position: absolute; top: 22px; right: var(--gut); background: none; border: 0;
    color: inherit; cursor: pointer; }

  @media (max-width: 960px) {
    .hero { grid-template-columns: 1fr; gap: 36px; padding-top: 120px; min-height: auto; }
    .hero-figure { min-height: 56vh; order: 2; }
    .statement-split, .profile-grid { grid-template-columns: 1fr; }
    .pakete-grid { grid-template-columns: 1fr; max-width: 520px; }
    footer .cols { grid-template-columns: 1fr; }
    nav.main { display: none; }
    .menu-btn { display: inline-flex; }
  }
  @media (max-width: 580px) {
    .step { grid-template-columns: 1fr; gap: 6px; }
    .step .num { margin-bottom: 4px; }
    .cta-btns { flex-direction: column; align-items: center; }
  }
