:root {
    --ink: #0a0a0a;
    --ink-2: #5f5f5f;
    --ink-3: #8a8a8a;
    --line: #e6e6e6;
    --line-soft: #efece6;
    --bg: #ffffff;
    --bg-2: #f7f4ee;
    --bg-3: #efece6;
    --accent: #E85A1A;
    --accent-dark: #c84810;
    --sans: 'Inter Tight', -apple-system, 'SF Pro Display', system-ui, sans-serif;
    --serif: 'Fraunces', 'Editorial New', 'Times New Roman', serif;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; overflow-x: clip; }
  body { background: var(--bg); color: var(--ink); font-family: var(--sans); font-weight: 400; -webkit-font-smoothing: antialiased; font-size: 16px; line-height: 1.5; min-height: 100vh; overflow-x: clip; max-width: 100vw; }
  a { color: inherit; text-decoration: none; }
  img { display: block; max-width: 100%; }
  button { font: inherit; border: 0; background: transparent; cursor: pointer; color: inherit; }

  /* ============ NAV ============ */
  .nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 48px;
    background: rgba(10,10,10,0.55);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: #fff;
    transition: background .25s, color .25s, border-color .25s;
  }
  .nav.is-light {
    background: rgba(255,255,255,0.92);
    color: var(--ink);
    border-bottom-color: var(--line);
  }
  .brand { display: flex; align-items: center; gap: 10px; color: inherit; }
  .brand img { height: 28px; filter: brightness(0) invert(1); transition: filter .25s; }
  .nav.is-light .brand img { filter: none; }
  .brand-text { font-weight: 600; font-size: 17px; letter-spacing: -0.01em; }
  .brand-text sup { font-size: 10px; font-weight: 400; opacity: .65; margin-left: 2px; letter-spacing: 0.06em; text-transform: uppercase; }
  .nav-links { display: flex; gap: 32px; }
  .nav-links a { font-size: 14px; opacity: .7; transition: opacity .2s; color: inherit; }
  .nav-links a:hover { opacity: 1; }
  .nav-right { display: flex; align-items: center; gap: 18px; }
  .nav-lang { display: flex; gap: 10px; font-size: 12px; opacity: .65; letter-spacing: 0.06em; }
  .nav-lang a.active { opacity: 1; font-weight: 500; }
  .nav-contact {
    display: inline-flex; align-items: center; justify-content: center;
    color: inherit;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    transition: background .2s, border-color .2s, transform .2s;
  }
  .nav-contact:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.25); transform: translateY(-1px); }
  .nav-contact:active { transform: translateY(0); }
  .nav.is-light .nav-contact { background: rgba(0,0,0,.04); border-color: rgba(0,0,0,.08); }
  .nav.is-light .nav-contact:hover { background: rgba(0,0,0,.08); border-color: rgba(0,0,0,.18); }
  .nav-contact .ico { display: block; }
  .nav-contact .lbl { display: none; }

  /* ============ BUTTONS ============ */
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px; border-radius: 999px;
    background: var(--accent); color: #fff;
    font-size: 14px; font-weight: 500;
    transition: background .2s, transform .2s;
    white-space: nowrap;
  }
  .btn:hover { background: var(--accent-dark); }
  .btn-large { padding: 16px 30px; font-size: 15px; }
  .btn-white-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.4); }
  .btn-white-ghost:hover { background: #fff; color: var(--ink); }
  .btn-dark { background: var(--ink); color: #fff; }
  .btn-dark:hover { background: #1f1f1f; }
  .btn-ink-ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
  .btn-ink-ghost:hover { background: var(--ink); color: #fff; }

  /* ============ HERO SCROLL STAGE ============ */
  .scroll-stage {
    position: relative;
    height: 360vh;
    background: #000;
  }
  .hero-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
  }
  .hero-video, .hero-poster {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
  }
  .hero-poster { z-index: 1; transition: opacity .4s; }
  .hero-poster.is-hidden { opacity: 0; pointer-events: none; }
  .hero-video { z-index: 2; }
  .hero-vignette {
    position: absolute; inset: 0; z-index: 3; pointer-events: none;
    background: linear-gradient(180deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.15) 28%, rgba(0,0,0,.15) 60%, rgba(0,0,0,.85) 100%);
  }
  .hero-content {
    position: relative; z-index: 4;
    height: 100%;
    max-width: 1440px; margin: 0 auto;
    padding: 110px 48px 96px;
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 32px;
  }
  .hero-eyebrow {
    justify-self: start;
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
    color: #fff;
    padding: 6px 12px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px;
    backdrop-filter: blur(6px);
  }
  .hero-eyebrow::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }
  .step-text { align-self: end; max-width: 760px; }
  .step-h1 {
    font-size: clamp(48px, 6vw, 88px);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 0.96;
    color: #fff;
    margin: 0 0 22px;
    min-height: 2.88em;
  }
  .step-h1 .accent { color: var(--accent); }
  .step-p {
    font-size: 19px; color: rgba(255,255,255,.85);
    line-height: 1.55; max-width: 560px;
    margin: 0 0 28px;
    min-height: 4em;
  }
  .step-p a {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(232,90,26,0.4);
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: text-decoration-color .2s;
  }
  .step-p a:hover { text-decoration-color: var(--accent); }
  .split-card p a, .detail-card p a, .leistung p a, .gastro p a {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(232,90,26,0.35);
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: text-decoration-color .2s;
  }
  .split-card p a:hover, .detail-card p a:hover, .leistung p a:hover, .gastro p a:hover {
    text-decoration-color: var(--accent);
  }
  .step-cta { display: flex; gap: 16px; flex-wrap: wrap; }
  .step-cta.is-hidden { display: none; }
  .step-line { display: inline-block; opacity: 0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease; }
  .step-line.is-on { opacity: 1; transform: none; }
  .step-rail {
    position: absolute;
    left: 48px; bottom: 48px;
    z-index: 5;
    display: flex; gap: 10px;
  }
  .step-rail .dot {
    width: 28px; height: 2px; background: rgba(255,255,255,.18);
    transition: background .3s;
  }
  .step-rail .dot.active { background: var(--accent); }
  .scroll-hint {
    position: absolute; right: 48px; bottom: 48px; z-index: 5;
    color: rgba(255,255,255,.55);
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    display: flex; align-items: center; gap: 12px;
    transition: opacity .3s;
  }
  .scroll-hint.is-off { opacity: 0; }
  .scroll-hint::after { content:''; display:block; width:48px; height:1px; background: currentColor; }

  /* ============ SECTION COMMON ============ */
  section { position: relative; }
  .container { max-width: 1440px; margin: 0 auto; padding: 0 48px; }
  .section-eyebrow {
    font-size: 12px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 16px;
  }
  .section-head h2 {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.02;
    color: var(--ink);
  }
  .section-head h2 .light { font-weight: 300; color: var(--ink-2); display: block; }
  .section-head p { font-size: 18px; color: var(--ink-2); line-height: 1.55; }

  /* ============ DETAIL BAND ============ */
  .detail-band { padding: clamp(56px, 8vw, 112px) 0 clamp(48px, 7vw, 96px); }
  .detail-head {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    margin-bottom: 64px;
    align-items: end;
  }
  .detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .detail-card { background: var(--bg-2); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; }
  .detail-card .img { aspect-ratio: 4 / 3; background: #222; overflow: hidden; }
  .detail-card .img img { width: 100%; height: 100%; object-fit: cover; }
  .detail-card .body { padding: 24px 24px 28px; }
  .detail-card h3 { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 8px; }
  .detail-card p { font-size: 14px; color: var(--ink-2); line-height: 1.5; }
  .detail-card .num {
    font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 12px; font-weight: 500;
  }

  /* ============ LEISTUNGEN GRID ============ */
  .leistungen { padding: clamp(48px, 5vw, 64px) 0 clamp(56px, 8vw, 112px); background: var(--bg-2); }
  .leistungen-head {
    display: grid; grid-template-columns: 1fr 1.5fr;
    gap: 80px; margin-bottom: 56px; align-items: end;
  }
  .leistungen-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1px; background: var(--line-soft);
    border: 1px solid var(--line-soft); border-radius: 14px;
    overflow: hidden;
  }
  .leistung {
    background: var(--bg);
    padding: 36px 32px 32px;
    display: flex; flex-direction: column; gap: 16px;
    transition: background .2s;
    position: relative;
  }
  .leistung:hover { background: var(--bg-3); }
  .leistung-icon {
    width: 36px; height: 36px; border-radius: 8px;
    background: var(--ink); color: #fff;
    display: grid; place-items: center;
    font-size: 14px; font-weight: 600;
  }
  .leistung h3 {
    font-size: 22px; font-weight: 600; letter-spacing: -0.015em; line-height: 1.15;
  }
  .leistung p { font-size: 15px; color: var(--ink-2); line-height: 1.55; }
  .leistung .arrow {
    margin-top: auto;
    font-size: 13px; color: var(--accent); font-weight: 500;
    display: inline-flex; align-items: center; gap: 6px;
  }
  .leistung .arrow::after { content: '→'; transition: transform .2s; }
  .leistung:hover .arrow::after { transform: translateX(4px); }

  /* ============ PROZESS ============ */
  .prozess { padding: clamp(56px, 8vw, 112px) 0; }
  .prozess-head { text-align: center; margin-bottom: 72px; max-width: 760px; margin-left: auto; margin-right: auto; }
  .prozess-head .section-eyebrow { display: inline-block; }
  .prozess-steps {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 32px; counter-reset: pstep;
    position: relative;
  }
  .prozess-steps::before {
    content: ''; position: absolute;
    left: 8%; right: 8%; top: 24px;
    height: 1px; background: var(--line);
  }
  .pstep {
    text-align: center; position: relative;
    padding: 0 8px;
  }
  .pstep .n {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--bg); border: 1px solid var(--line);
    color: var(--ink); display: grid; place-items: center;
    margin: 0 auto 24px; position: relative;
    font-size: 16px; font-weight: 600; letter-spacing: -0.02em;
  }
  .pstep:nth-child(1) .n { background: var(--accent); border-color: var(--accent); color: #fff; }
  .pstep h4 { font-size: 17px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.01em; }
  .pstep p { font-size: 14px; color: var(--ink-2); line-height: 1.5; }

  /* ============ WERKSTATT / ABOUT ============ */
  .werkstatt {
    padding: clamp(64px, 9vw, 120px) 0;
    background: var(--ink); color: #fff;
  }
  .werkstatt-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
  }
  .werkstatt-img {
    aspect-ratio: 5 / 6;
    border-radius: 14px; overflow: hidden;
    background: #222;
  }
  .werkstatt-img img { width: 100%; height: 100%; object-fit: cover; }
  .werkstatt-text .section-eyebrow { color: var(--accent); }
  .werkstatt-text h2 {
    font-size: clamp(36px, 3.6vw, 52px);
    font-weight: 600; letter-spacing: -0.025em; line-height: 1.05;
    margin-bottom: 24px;
  }
  .werkstatt-text h2 .accent { color: var(--accent); }
  .werkstatt-text p {
    font-size: 17px; color: rgba(255,255,255,.78); line-height: 1.6;
    margin-bottom: 18px; max-width: 520px;
  }
  .werkstatt-stats {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 32px; margin-top: 40px;
    padding-top: 36px; border-top: 1px solid rgba(255,255,255,.12);
  }
  .werkstatt-stats .item .n {
    font-size: 36px; font-weight: 500; letter-spacing: -0.02em; color: #fff;
    line-height: 1; margin-bottom: 8px;
  }
  .werkstatt-stats .item .n span { color: var(--accent); }
  .werkstatt-stats .item .l { font-size: 12px; color: rgba(255,255,255,.55); letter-spacing: 0.08em; text-transform: uppercase; }

  /* ============ BRANDS STRIP ============ */
  .brands { padding: clamp(48px, 6vw, 80px) 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .brands-label {
    font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--ink-2); text-align: center; margin-bottom: 32px;
  }
  .brands-row {
    display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
    gap: 48px; font-size: 17px; font-weight: 500; letter-spacing: -0.01em;
    max-width: 1100px; margin: 0 auto;
  }
  .brands-row a {
    color: var(--ink);
    opacity: 0.65;
    text-decoration: none;
    transition: color .2s, opacity .2s;
  }
  .brands-row a:hover {
    opacity: 1;
    color: var(--accent);
  }

  /* ============ GASTRO NOTDIENST ============ */
  .gastro {
    padding: clamp(56px, 7vw, 96px) 0;
    background:
      radial-gradient(ellipse at 20% 0%, rgba(232,90,26,0.18), transparent 60%),
      linear-gradient(180deg, #1a0e08 0%, #0a0504 100%);
    color: #fff;
  }
  .gastro-inner {
    display: grid; grid-template-columns: 1.3fr 1fr;
    gap: 80px; align-items: center;
  }
  .gastro .badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 12px; border: 1px solid rgba(232,90,26,0.4); border-radius: 999px;
    color: var(--accent); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
    margin-bottom: 24px;
  }
  .gastro .badge::before {
    content: ''; width: 8px; height: 8px; background: var(--accent); border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(232,90,26,.7);
    animation: pulse 1.8s infinite;
  }
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(232,90,26,.6); }
    70% { box-shadow: 0 0 0 12px rgba(232,90,26,0); }
    100% { box-shadow: 0 0 0 0 rgba(232,90,26,0); }
  }
  .gastro h2 {
    font-size: clamp(36px, 4.4vw, 64px);
    font-weight: 600; letter-spacing: -0.025em; line-height: 1.02;
    margin-bottom: 24px;
  }
  .gastro h2 .accent { color: var(--accent); }
  .gastro p { font-size: 17px; color: rgba(255,255,255,.72); line-height: 1.55; margin-bottom: 28px; max-width: 540px; }
  .gastro-side {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 32px; border-radius: 16px;
  }
  .gastro-side .phone {
    display: block;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 600; letter-spacing: -0.02em;
    color: #fff; margin-bottom: 8px;
  }
  .gastro-side .phone-label {
    font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 16px; font-weight: 500;
  }
  .gastro-side .hint {
    margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08);
    font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.5;
  }

  /* ============ TESTIMONIALS ============ */
  .testimonials { padding: clamp(56px, 8vw, 112px) 0; }
  .testimonials-head { text-align: center; margin-bottom: 72px; max-width: 720px; margin-left: auto; margin-right: auto; }
  .testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  }
  .testimonial {
    background: var(--bg-2);
    padding: 36px 32px 32px;
    border-radius: 14px;
    display: flex; flex-direction: column;
  }
  .testimonial .stars {
    color: var(--accent); font-size: 14px; letter-spacing: 2px; margin-bottom: 18px;
  }
  .testimonial blockquote {
    font-size: 17px; color: var(--ink); line-height: 1.55;
    margin-bottom: 24px; flex: 1;
  }
  .testimonial .who {
    display: flex; align-items: center; gap: 14px;
    padding-top: 20px; border-top: 1px solid var(--line);
  }
  .testimonial .who .avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--ink); color: #fff;
    display: grid; place-items: center;
    font-size: 14px; font-weight: 500;
  }
  .testimonial .who .meta strong { font-size: 14px; font-weight: 600; display: block; }
  .testimonial .who .meta span { font-size: 13px; color: var(--ink-2); }

  /* ============ FAQ ============ */
  .faq { padding: clamp(56px, 8vw, 112px) 0; background: var(--bg-2); }
  .faq-inner {
    display: grid; grid-template-columns: 1fr 1.4fr;
    gap: 80px; align-items: start;
  }
  .faq-list { display: flex; flex-direction: column; gap: 1px; background: var(--line); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .faq-item { background: var(--bg-2); }
  .faq-item summary {
    padding: 24px 0;
    font-size: 17px; font-weight: 500; letter-spacing: -0.01em;
    cursor: pointer; list-style: none;
    display: flex; justify-content: space-between; align-items: center;
    gap: 24px;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after {
    content: '+'; font-size: 24px; font-weight: 300; color: var(--ink-3);
    transition: transform .25s;
  }
  .faq-item[open] summary::after { transform: rotate(45deg); }
  .faq-item .answer {
    padding: 0 0 24px;
    font-size: 15px; color: var(--ink-2); line-height: 1.6;
    max-width: 640px;
  }

  /* ============ QUOTE ============ */
  .quote { padding: clamp(64px, 9vw, 120px) clamp(24px, 4vw, 48px); max-width: 1200px; margin: 0 auto; text-align: center; }
  .quote blockquote {
    font-size: clamp(26px, 3.2vw, 44px);
    font-weight: 400; letter-spacing: -0.02em; line-height: 1.18;
    color: var(--ink);
  }
  .quote blockquote .accent { color: var(--accent); }
  .quote cite {
    display: block; margin-top: 32px; font-style: normal;
    font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--ink-2);
  }

  /* ============ CTA / CONTACT ============ */
  .cta { background: var(--ink); color: #fff; padding: clamp(56px, 8vw, 112px) 0; }
  .cta-inner {
    display: grid; grid-template-columns: 1.3fr 1fr;
    gap: 80px; align-items: start;
  }
  .cta-inner > *, .werkstatt-inner > *, .gastro-inner > *, .split-grid > *, .detail-grid > *, .leistungen-grid > *, .footer-grid > * {
    min-width: 0;
  }
  .cta-contacts a, .cta-text a, .prose a {
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .cta h2 {
    font-size: clamp(36px, 4.4vw, 60px);
    font-weight: 600; letter-spacing: -0.025em; line-height: 1.02;
    margin-bottom: 24px;
  }
  .cta h2 .accent { color: var(--accent); }
  .cta-text p { color: rgba(255,255,255,.72); font-size: 17px; line-height: 1.55; margin-bottom: 40px; max-width: 520px; }

  .cta-form { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 32px; }
  .cta-form label {
    display: block; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(255,255,255,.55); margin-bottom: 6px;
  }
  .cta-form input, .cta-form select, .cta-form textarea {
    width: 100%; background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.18);
    color: #fff; font: inherit; padding: 10px 0; margin-bottom: 20px;
    outline: none; transition: border-color .2s;
  }
  .cta-form input:focus, .cta-form select:focus, .cta-form textarea:focus { border-bottom-color: var(--accent); }
  .cta-form select option { color: var(--ink); }
  .cta-form textarea { resize: vertical; min-height: 80px; }
  .cta-form .btn { width: 100%; justify-content: center; margin-top: 8px; }

  .cta-contacts {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    padding-top: 40px; border-top: 1px solid rgba(255,255,255,.12);
  }
  .cta-contacts .item strong {
    display: block; color: rgba(255,255,255,.5); font-weight: 500;
    font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 6px;
  }
  .cta-contacts .item a, .cta-contacts .item span { color: #fff; font-size: 15px; }

  /* ============ FOOTER ============ */
  footer {
    background: var(--ink); color: rgba(255,255,255,.55);
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 48px 0 32px;
    font-size: 13px;
  }
  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    margin-bottom: 24px;
  }
  .footer-grid h4 {
    font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(255,255,255,.45); margin-bottom: 16px;
  }
  .footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-grid ul a { color: rgba(255,255,255,.78); }
  .footer-grid ul a:hover { color: var(--accent); }
  .footer-brand img { height: 32px; filter: brightness(0) invert(1); margin-bottom: 14px; }
  .footer-brand p { line-height: 1.55; max-width: 320px; color: rgba(255,255,255,.55); margin-bottom: 14px; }
  .footer-brand .partner { font-size: 12px; color: rgba(255,255,255,.4); }
  .footer-brand .partner a { color: var(--accent); }
  .footer-bottom {
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
    font-size: 12px; color: rgba(255,255,255,.4);
  }
  .footer-bottom a { color: rgba(255,255,255,.55); margin-left: 16px; }
  .footer-bottom a:first-child { margin-left: 0; }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 1024px) {
    .leistungen-grid { grid-template-columns: repeat(2, 1fr); }
    .prozess-steps { grid-template-columns: repeat(2, 1fr); gap: 48px; }
    .prozess-steps::before { display: none; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
    .faq-inner { grid-template-columns: 1fr; gap: 32px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  }
  @media (max-width: 960px) {
    .nav { padding: 10px 14px; gap: 8px; }
    .nav-links { display: none; }
    .nav-lang { display: none; }
    .nav-right { gap: 6px; }
    .brand img { height: 24px; }
    .brand-text { display: none; }
    .nav-contact { padding: 8px; }
    .nav-contact .lbl { display: none; }
    .nav-contact .ico { font-size: 18px; }
    .nav .btn { padding: 8px 14px; font-size: 13px; }
    .container { padding: 0 24px; }
    .scroll-stage { height: 220vh; }
    .hero-content { padding: 100px 24px 96px; }
    .step-rail { left: 24px; bottom: 32px; }
    .scroll-hint { display: none; }
    .detail-head, .leistungen-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
    .detail-grid { grid-template-columns: 1fr; }
    .werkstatt-inner, .gastro-inner, .cta-inner { grid-template-columns: 1fr; gap: 40px; }
    .werkstatt-stats { grid-template-columns: 1fr; gap: 16px; }
    .werkstatt-img { aspect-ratio: 4 / 3; }
    .leistungen-grid { grid-template-columns: 1fr; }
    .cta-contacts { grid-template-columns: 1fr; gap: 18px; }
  }
/* ============ SPOKE PAGE STYLES ============ */
.page-spoke { padding-top: 0; }

.spoke-hero {
  background: linear-gradient(180deg, #f7f4ee 0%, #ffffff 100%);
  padding: clamp(110px, 11vw, 140px) 0 clamp(48px, 6vw, 64px);
  border-bottom: 1px solid var(--line);
}
.spoke-hero .container { max-width: 1200px; }
.breadcrumb {
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 28px;
}
.breadcrumb a { color: var(--ink-2); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span[aria-current] { color: var(--ink); }
.spoke-hero .hero-eyebrow {
  color: var(--accent);
  background: transparent;
  border: 1px solid var(--accent);
  margin-bottom: 22px;
  backdrop-filter: none;
}
.spoke-hero h1 {
  font-size: clamp(40px, 5.6vw, 80px);
  font-weight: 600; letter-spacing: -0.03em;
  line-height: 1; color: var(--ink); margin: 0 0 24px;
  max-width: 860px;
}
.spoke-hero .hero-sub {
  font-size: 21px; color: var(--ink-2);
  line-height: 1.45; max-width: 720px; margin: 0;
}

.spoke-body { padding: clamp(48px, 6vw, 80px) 0 clamp(40px, 5vw, 64px); }
.spoke-body .container { max-width: 1200px; }
.prose { max-width: 760px; font-size: 17px; line-height: 1.7; color: var(--ink); }
.prose h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 600; letter-spacing: -0.022em;
  line-height: 1.12;
  margin: 56px 0 20px;
  color: var(--ink);
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-size: 22px; font-weight: 600; letter-spacing: -0.012em;
  line-height: 1.25; margin: 36px 0 12px; color: var(--ink);
}
.prose p { margin: 0 0 18px; }
.prose ul, .prose ol { margin: 0 0 22px 24px; padding: 0; }
.prose li { margin-bottom: 8px; }
.prose strong { font-weight: 600; }
.prose a { color: var(--accent); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.prose a:hover { text-decoration-thickness: 2px; }
.prose table {
  width: 100%; border-collapse: collapse; margin: 24px 0;
  font-size: 15px;
  display: block; overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  white-space: normal;
}
.prose th, .prose td {
  padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--line);
  vertical-align: top;
  word-break: break-word;
  hyphens: auto;
}
@media (min-width: 768px) {
  .prose table { display: table; overflow-x: visible; }
}
.prose th {
  background: var(--bg-2);
  font-weight: 600; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-2);
}
.prose blockquote {
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 20px; margin: 24px 0;
  color: var(--ink-2); font-style: italic;
}
.prose code {
  background: var(--bg-2);
  padding: 2px 6px; border-radius: 4px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.92em;
}

/* ============ RELATED LINKS BAND ============ */
.related-band {
  padding: clamp(48px, 5vw, 64px) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.related-band .container { max-width: 1200px; }
.related-band .section-eyebrow {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 24px;
}
.related-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.related-card {
  background: #fff; padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: flex; justify-content: space-between; align-items: center;
  transition: border-color .2s, transform .2s;
}
.related-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.related-name { font-size: 15px; font-weight: 500; color: var(--ink); }
.related-arrow { color: var(--accent); font-size: 18px; }

/* ============ HUB CARDS ============ */
.hub-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin: 32px 0 56px;
}
.hub-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; color: var(--ink);
  transition: background .2s, border-color .2s, transform .2s;
}
.hub-card:hover { background: #fff; border-color: var(--accent); transform: translateY(-2px); }
.hub-card-name { font-size: 18px; letter-spacing: -0.01em; }
.hub-arrow { color: var(--accent); font-size: 20px; }
.hub-secondary {
  margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--line);
  font-size: 15px; color: var(--ink-2); line-height: 1.6;
  max-width: 760px;
}
.hub-secondary p { margin: 0 0 14px; }
.hub-secondary a { color: var(--accent); }

@media (max-width: 1024px) {
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .hub-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .related-grid { grid-template-columns: 1fr; }
  .hub-grid { grid-template-columns: 1fr; }
}

/* Hub/Related cards live inside .prose -> kill underline */
.prose .hub-card, .prose .related-card { text-decoration: none; }
.prose .hub-card .hub-card-name, .prose .related-card .related-name { text-decoration: none; }

/* ============ LANDING PAGES (Privat / Gastro) ============ */
.page-landing { padding-top: 0; }

.landing-hero {
  padding: clamp(120px, 12vw, 160px) 0 clamp(56px, 7vw, 96px);
  position: relative;
}
.landing-hero .container { max-width: 1240px; }
.landing-hero .hero-eyebrow {
  position: static;
  display: inline-flex;
  margin-bottom: 32px;
}
.landing-hero h1 {
  font-size: clamp(54px, 7vw, 104px);
  font-weight: 600; letter-spacing: -0.035em;
  line-height: 0.94; margin: 0 0 28px;
}
.landing-hero h1 .accent { color: var(--accent); }
.landing-hero .lead {
  font-size: 21px; line-height: 1.5; max-width: 720px;
  margin: 0 0 40px;
}
.landing-hero .hero-cta {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 56px;
}
.landing-hero .hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid currentColor;
  border-top-color: rgba(0,0,0,.08);
  max-width: 880px;
}
.landing-hero .hero-stats > div { display: flex; flex-direction: column; gap: 6px; }
.landing-hero .hero-stats strong {
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 500; letter-spacing: -0.02em; line-height: 1;
}
.landing-hero .hero-stats span {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-2);
}

.landing-hero-privat {
  background:
    radial-gradient(ellipse at 70% 0%, rgba(232,90,26,.08), transparent 60%),
    linear-gradient(180deg, #faf7f1 0%, #ffffff 100%);
  color: var(--ink);
}
.landing-hero-privat .hero-eyebrow {
  background: transparent;
  color: var(--accent);
  border-color: rgba(232,90,26,.4);
  backdrop-filter: none;
}

.landing-hero-gastro {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(232,90,26,.22), transparent 55%),
    linear-gradient(180deg, #1a0e08 0%, #0a0504 100%);
  color: #fff;
}
.landing-hero-gastro .lead { color: rgba(255,255,255,.78); }
.landing-hero-gastro .hero-eyebrow {
  background: rgba(232,90,26,.12);
  color: var(--accent);
  border-color: rgba(232,90,26,.4);
}
.landing-hero-gastro .dot-pulse {
  display: inline-block; width: 8px; height: 8px;
  background: var(--accent); border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(232,90,26,.7);
  animation: pulse 1.8s infinite;
  margin-right: 8px;
}
.landing-hero-gastro .hero-stats {
  border-top-color: rgba(255,255,255,.12);
}
.landing-hero-gastro .hero-stats strong { color: #fff; }
.landing-hero-gastro .hero-stats span { color: rgba(255,255,255,.55); }

/* USP grid */
.usp-band { padding: clamp(48px, 6vw, 80px) 0; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.usp-band-dark {
  background: var(--ink); color: #fff;
  border-color: rgba(255,255,255,.08);
}
.usp-band .container { max-width: 1240px; }
.usp-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.usp-item h3 { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; margin: 12px 0 8px; }
.usp-item p { font-size: 14px; line-height: 1.55; color: var(--ink-2); }
.usp-band-dark .usp-item p { color: rgba(255,255,255,.65); }
.usp-icon { color: var(--accent); font-size: 12px; }

/* Pakete (Privat) */
.pakete-band { padding: clamp(56px, 8vw, 112px) 0; }
.pakete-band .container { max-width: 1240px; }
.section-head { margin-bottom: 56px; max-width: 760px; }
.pakete-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-bottom: 64px;
}
.paket-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 20px;
  transition: border-color .2s, transform .2s;
}
.paket-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.paket-card-featured {
  background: var(--ink); color: #fff;
  border-color: var(--ink);
}
.paket-card-featured .paket-tier { color: var(--accent); }
.paket-card-featured .paket-models { color: rgba(255,255,255,.6); }
.paket-card-featured .paket-includes li { color: rgba(255,255,255,.85); }
.paket-tier { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); font-weight: 500; }
.paket-card h3 { font-size: 28px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.05; }
.paket-price { display: flex; align-items: baseline; gap: 10px; }
.paket-price .amount { font-size: 36px; font-weight: 600; letter-spacing: -0.025em; }
.paket-price .unit { font-size: 13px; color: var(--ink-3); }
.paket-card-featured .paket-price .unit { color: rgba(255,255,255,.55); }
.paket-models { font-size: 14px; color: var(--ink-2); line-height: 1.5; }
.paket-includes { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.paket-includes li {
  font-size: 14px; line-height: 1.45; color: var(--ink);
  padding-left: 22px; position: relative;
}
.paket-includes li::before {
  content: '✓'; color: var(--accent);
  position: absolute; left: 0; top: 0; font-weight: 600;
}
.paket-card .btn { margin-top: auto; justify-content: center; }
.paket-card-featured .btn-ink-ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.paket-card-featured .btn-ink-ghost:hover { background: #fff; color: var(--ink); }

.pakete-extras {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 14px; padding: 28px 32px;
  max-width: 720px;
}
.pakete-extras h4 { font-size: 14px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 18px; }
.pakete-extras table { width: 100%; border-collapse: collapse; font-size: 14px; }
.pakete-extras td { padding: 8px 0; border-bottom: 1px solid var(--line); }
.pakete-extras tr:last-child td { border-bottom: 0; }
.pakete-extras td:last-child { text-align: right; font-weight: 500; }

/* Service-Tiles (Gastro) */
.services-band { padding: clamp(56px, 8vw, 112px) 0; }
.services-band .container { max-width: 1240px; }
.services-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.service-tile {
  background: var(--bg-2);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 14px;
}
.tile-num {
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); font-weight: 500; margin-bottom: 4px;
}
.service-tile h3 { font-size: 24px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; }
.service-tile p { font-size: 15px; line-height: 1.55; color: var(--ink-2); }
.tile-link {
  margin-top: auto;
  font-size: 14px; font-weight: 500; color: var(--accent);
  text-decoration: none;
  align-self: flex-start;
}
.tile-link:hover { text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 1024px) {
  .usp-grid { grid-template-columns: repeat(2,1fr); }
  .pakete-grid { grid-template-columns: 1fr; }
  .services-grid-2 { grid-template-columns: 1fr; }
  .landing-hero .hero-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .usp-grid { grid-template-columns: 1fr; }
  .landing-hero .hero-stats { grid-template-columns: 1fr 1fr; gap: 18px; }
}

/* ============ Landing-Hero with ambient video ============ */
.landing-hero { position: relative; overflow: hidden; }
.landing-hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.landing-hero-privat .landing-hero-video { opacity: 0.35; mix-blend-mode: multiply; }
.landing-hero-gastro .landing-hero-video { opacity: 0.55; }
.landing-hero .container { position: relative; z-index: 2; }
.landing-hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
}
.landing-hero-privat .landing-hero-overlay {
  background:
    radial-gradient(ellipse at 70% 0%, rgba(232,90,26,.12), transparent 60%),
    linear-gradient(180deg, rgba(250,247,241,.7) 0%, rgba(255,255,255,.95) 100%);
}
.landing-hero-gastro .landing-hero-overlay {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(232,90,26,.25), transparent 55%),
    linear-gradient(180deg, rgba(26,14,8,.55) 0%, rgba(10,5,4,.92) 100%);
}

/* ============ Spoke-Hero with ambient video ============ */
.spoke-hero-video {
  position: relative;
  overflow: hidden;
  background: #0a0504;
  color: #fff;
  padding: clamp(120px, 12vw, 160px) 0 clamp(48px, 6vw, 80px);
}
.spoke-hero-video .container { position: relative; z-index: 2; }
.spoke-hero-video .breadcrumb,
.spoke-hero-video .breadcrumb a,
.spoke-hero-video .breadcrumb span { color: rgba(255,255,255,.65); }
.spoke-hero-video .breadcrumb a:hover { color: var(--accent); }
.spoke-hero-video .hero-eyebrow {
  background: rgba(232,90,26,.12);
  color: var(--accent);
  border-color: rgba(232,90,26,.4);
}
.spoke-hero-video h1 { color: #fff; }
.spoke-hero-video .hero-sub { color: rgba(255,255,255,.78); }
.spoke-hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.45;
  pointer-events: none;
}
.spoke-hero-video .spoke-hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(232,90,26,.18), transparent 55%),
    linear-gradient(180deg, rgba(10,5,4,.45) 0%, rgba(10,5,4,.85) 100%);
}

/* ============ Hersteller Landing ============ */
.landing-hero-hersteller {
  background:
    radial-gradient(ellipse at 70% 0%, rgba(232,90,26,.10), transparent 60%),
    linear-gradient(180deg, var(--bg-2) 0%, #fff 100%);
  color: var(--ink);
}
.landing-hero-hersteller .breadcrumb {
  margin-bottom: 32px;
  color: var(--ink-2);
}
.landing-hero-hersteller .hero-eyebrow {
  background: transparent;
  color: var(--accent);
  border-color: rgba(232,90,26,.4);
  backdrop-filter: none;
}

.brand-cat-band { padding: clamp(56px, 7vw, 96px) 0; }
.brand-cat-band .container { max-width: 1240px; }
.brand-cat { margin-bottom: 80px; }
.brand-cat:last-child { margin-bottom: 0; }
.cat-head { margin-bottom: 28px; max-width: 720px; }
.cat-head h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 600; letter-spacing: -0.022em; line-height: 1.05;
  margin-bottom: 8px;
}
.cat-head p { font-size: 16px; color: var(--ink-2); line-height: 1.55; }

.brand-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.brand-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 500; color: var(--ink);
  transition: border-color .2s, transform .2s, background .2s;
}
.brand-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  background: var(--bg-2);
}
.brand-card-name { font-size: 16px; letter-spacing: -0.01em; }
.brand-card-arrow { color: var(--accent); font-size: 18px; }
@media (max-width: 1024px) {
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .brand-grid { grid-template-columns: 1fr; }
}

/* ============ FÜR-WEN-SPLIT (Home) ============ */
.split-band { padding: clamp(56px, 7vw, 96px) 0; background: var(--bg-2); border-bottom: 1px solid var(--line); }
.split-band .container { max-width: 1280px; padding: 0 clamp(24px, 4vw, 48px); margin: 0 auto; }
.split-head { margin-bottom: 48px; max-width: 720px; }
.split-head .section-eyebrow {
  font-size: 12px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.split-head h2 {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600; letter-spacing: -0.025em; line-height: 1.02;
  color: var(--ink);
}
.split-head h2 .light { font-weight: 300; color: var(--ink-2); }
.split-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.split-card {
  position: relative;
  padding: 48px 40px 40px;
  border-radius: 18px;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .2s, box-shadow .2s;
  overflow: hidden;
  text-decoration: none;
}
.split-card:hover { transform: translateY(-3px); }
.split-card-privat {
  background:
    radial-gradient(ellipse at 70% 20%, rgba(232,90,26,.08), transparent 70%),
    linear-gradient(180deg, #ffffff 0%, #faf7f1 100%);
  color: var(--ink);
  border: 1px solid var(--line);
}
.split-card-privat:hover { border-color: var(--accent); }
.split-card-gastro {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(232,90,26,.22), transparent 60%),
    linear-gradient(180deg, #1a0e08 0%, #0a0504 100%);
  color: #fff;
  border: 1px solid rgba(255,255,255,.06);
}
.split-card-gastro:hover { border-color: var(--accent); }
.split-icon {
  color: var(--accent); font-size: 12px; line-height: 1;
}
.split-tag {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 500;
}
.split-card-privat .split-tag { color: var(--accent); }
.split-card-gastro .split-tag { color: var(--accent); }
.split-card h3 {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600; letter-spacing: -0.025em; line-height: 1;
  margin: 0;
}
.split-card p {
  font-size: 17px; line-height: 1.5;
  margin: 0; max-width: 460px;
}
.split-card-privat p { color: var(--ink-2); }
.split-card-gastro p { color: rgba(255,255,255,.75); }
.split-arrow {
  margin-top: auto;
  padding-top: 16px;
  font-size: 14px; font-weight: 500; color: var(--accent);
  display: inline-flex; align-items: center; gap: 6px;
}
@media (max-width: 880px) {
  .split-grid { grid-template-columns: 1fr; }
  .split-card { padding: 36px 28px 32px; }
}

/* ============ Prozess Dark (Gastro) ============ */
.prozess-dark {
  background: linear-gradient(180deg, #1a0e08 0%, #0a0504 100%);
  color: #fff;
  padding: clamp(56px, 7vw, 96px) 0;
}
.prozess-dark .container { max-width: 1240px; }
.prozess-dark .section-eyebrow { color: var(--accent); }
.prozess-dark .prozess-head h2 { color: #fff; }
.prozess-dark .prozess-head h2 .light { color: rgba(255,255,255,.5); }
.prozess-dark .prozess-steps::before { background: rgba(255,255,255,.12); }
.prozess-dark .pstep .n {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.15);
  color: #fff;
}
.prozess-dark .pstep:nth-child(1) .n {
  background: var(--accent);
  border-color: var(--accent);
}
.prozess-dark .pstep h4 { color: #fff; }
.prozess-dark .pstep p { color: rgba(255,255,255,.65); }

/* ============ Wartungsverträge ============ */
.vertrag-band {
  padding: clamp(56px, 8vw, 112px) 0;
  background: var(--bg-2);
}
.vertrag-band .container { max-width: 1240px; }
.vertrag-band .section-head h2 {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600; letter-spacing: -0.025em; line-height: 1.02;
  color: var(--ink);
}
.vertrag-band .section-head h2 .light { font-weight: 300; color: var(--ink-2); }
.vertrag-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vertrag-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .2s, border-color .2s;
}
.vertrag-card:hover { transform: translateY(-2px); border-color: var(--accent); }
.vertrag-card-featured {
  background: var(--ink); color: #fff; border-color: var(--ink);
}
.vertrag-card-featured .vertrag-tier { color: var(--accent); }
.vertrag-card-featured .vertrag-desc { color: rgba(255,255,255,.78); }
.vertrag-card-featured .vertrag-includes li { color: rgba(255,255,255,.85); }
.vertrag-tier {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); font-weight: 500;
}
.vertrag-card h3 {
  font-size: 26px; font-weight: 600; letter-spacing: -0.018em; line-height: 1.1;
  margin: 0;
}
.vertrag-desc { font-size: 14px; line-height: 1.55; color: var(--ink-2); margin: 0; }
.vertrag-includes {
  list-style: none; padding: 0; margin: 4px 0 0;
  display: flex; flex-direction: column; gap: 10px;
}
.vertrag-includes li {
  font-size: 14px; line-height: 1.45;
  padding-left: 22px; position: relative;
}
.vertrag-includes li::before {
  content: '✓'; color: var(--accent);
  position: absolute; left: 0; top: 0; font-weight: 600;
}
.vertrag-card .btn { margin-top: auto; justify-content: center; }
.vertrag-card-featured .btn-ink-ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.vertrag-card-featured .btn-ink-ghost:hover { background: #fff; color: var(--ink); }

@media (max-width: 1024px) {
  .vertrag-grid { grid-template-columns: 1fr; }
}

/* ============ Optional Add-On Pills ============ */
.addon-strip { max-width: 1080px; margin: 0 auto; }
.addon-strip-head { text-align: center; margin-bottom: 32px; }
.addon-strip-head .section-eyebrow {
  font-size: 12px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 8px;
}
.addon-strip-head h3 {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500; letter-spacing: -0.015em; color: var(--ink-2);
}
.addon-grid {
  display: flex; flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.addon-pill {
  background: rgba(232,90,26,0.06);
  border: 1px solid rgba(232,90,26,0.15);
  border-radius: 999px;
  padding: 8px 18px;
  display: inline-flex; justify-content: space-between; align-items: center;
  gap: 14px;
  transition: background .2s, border-color .2s;
  white-space: nowrap;
}
.addon-pill:hover { background: rgba(232,90,26,0.12); border-color: rgba(232,90,26,0.35); }
.addon-label {
  font-size: 13px; font-weight: 500; color: var(--ink); letter-spacing: -0.005em;
}
.addon-price {
  font-size: 13px; font-weight: 600; color: var(--accent);
  display: flex; align-items: baseline; gap: 4px; white-space: nowrap;
}
.addon-price span { font-size: 9px; color: var(--ink-3); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500; }

/* ============ Booking-Form Polish ============ */
.booking-form .form-tabs {
  display: flex; gap: 4px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 24px;
}
.booking-form .tab {
  flex: 1; cursor: pointer;
  position: relative;
}
.booking-form .tab input { position: absolute; opacity: 0; pointer-events: none; }
.booking-form .tab span {
  display: block; text-align: center;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,.6);
  letter-spacing: 0.01em;
  transition: background .2s, color .2s;
}
.booking-form .tab:hover span { color: rgba(255,255,255,.85); }
.booking-form .tab input:checked + span {
  background: var(--accent); color: #fff;
}
.booking-form .form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-bottom: 6px;
}
.booking-form .form-field { margin-bottom: 0; }
.booking-form .opt {
  font-size: 11px; color: rgba(255,255,255,.4);
  text-transform: none; letter-spacing: 0;
  font-weight: 400;
}
.booking-form .form-status {
  margin-top: 14px;
  font-size: 13px; line-height: 1.4;
  color: rgba(255,255,255,.7);
  min-height: 18px;
}
.booking-form .form-status.is-ok { color: #6dd58f; }
.booking-form .form-status.is-info { color: var(--accent); }
@media (max-width: 640px) {
  .booking-form .form-row { grid-template-columns: 1fr; }
}

/* ============ GetRoast Embed Band ============ */
.getroast-band { padding: clamp(56px, 7vw, 96px) 0; background: var(--bg-2); }
.getroast-band .container { max-width: 1080px; }
.getroast-head { text-align: center; margin-bottom: 48px; max-width: 720px; margin-left: auto; margin-right: auto; }
.getroast-head .section-eyebrow {
  font-size: 12px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.getroast-head h2 {
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 600; letter-spacing: -0.025em; line-height: 1.05;
  color: var(--ink); margin-bottom: 14px;
}
.getroast-head h2 .light { font-weight: 300; color: var(--ink-2); }
.getroast-head p { font-size: 16px; color: var(--ink-2); line-height: 1.55; }
.getroast-frame-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px -10px rgba(0,0,0,.08);
}
.getroast-frame {
  width: 100%; height: 680px; border: 0; display: block;
  background: #fff;
}
.cta .getroast-frame-wrap { box-shadow: 0 10px 40px -10px rgba(0,0,0,.5); }
.getroast-fallback {
  padding: 20px 24px;
  border-top: 1px solid var(--line);
  text-align: center;
  background: var(--bg-2);
}
.getroast-fallback p {
  font-size: 13px; color: var(--ink-2); margin-bottom: 12px;
}
.getroast-fallback .btn { display: inline-flex; }
@media (max-width: 640px) {
  .getroast-frame { height: 760px; }
}
