/* ───── Reset / Base ───── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
/* Verhindert seitliches Verschieben durch versehentlichen Overflow,
   ohne sticky-Positionierung der Nav zu brechen. */
body { overflow-x: clip; }
@supports not (overflow-x: clip) {
  body { overflow-x: hidden; }
}
img, svg { display: block; max-width: 100%; height: auto; }
svg { flex-shrink: 0; }
.card__icon svg { width: 22px !important; height: 22px !important; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
ul, ol { list-style: none; }

:root {
  --ink:        #1a1814;
  --ink-soft:   #524a3f;
  --ink-mute:   #8a7d6e;
  --paper:      #fdfbf6;
  --paper-2:    #f6f1e7;
  --line:       #e8dfce;
  --accent:     #c8552a;       /* warm terracotta */
  --accent-d:   #a44322;
  --accent-l:   #fbe6dc;

  --r-sm: 6px; --r-md: 12px; --r-lg: 18px; --r-xl: 28px;
  --shadow-1: 0 1px 2px rgba(20,15,8,0.06), 0 2px 6px rgba(20,15,8,0.04);
  --shadow-2: 0 8px 30px rgba(20,15,8,0.07);

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;

  --container: 1120px;
}

html, body { background: var(--paper); color: var(--ink); }
body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container { width: min(100% - 32px, var(--container)); margin: 0 auto; }

/* ───── Nav ───── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
  /* Notch-Devices: Safe-Area-Inset oben mitnehmen, sonst sitzt die
     Browser-Safe-Area als leerer Streifen über der Nav */
  padding-top: env(safe-area-inset-top, 0);
}
@supports (backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px)) {
  .nav {
    background: rgba(253, 251, 246, 0.88);
    backdrop-filter: saturate(140%) blur(10px);
    -webkit-backdrop-filter: saturate(140%) blur(10px);
  }
}
.nav.is-scrolled { border-bottom-color: var(--line); }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 64px; padding: 12px 0;
}
.nav__logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; letter-spacing: -0.01em;
}
.nav__logo-mark {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  background: var(--ink); color: var(--paper);
  border-radius: 8px;
  font-family: var(--font-serif); font-size: 17px; font-weight: 600;
}
.nav__links { display: flex; align-items: center; gap: 24px; }
.nav__links a { font-size: 15px; color: var(--ink-soft); transition: color .15s; }
.nav__links a:hover { color: var(--ink); }
.nav__cta {
  background: var(--ink); color: var(--paper) !important;
  padding: 8px 14px; border-radius: 999px;
  font-weight: 500;
}
.nav__cta:hover { background: var(--accent); }

.nav__burger {
  display: none;
  width: 40px; height: 40px;
  padding: 10px;
  flex-direction: column; gap: 5px;
}
.nav__burger span {
  display: block; height: 2px; background: var(--ink);
  border-radius: 2px; transition: transform .25s, opacity .15s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 760px) {
  .nav__burger { display: flex; }
  .nav__links {
    position: fixed; inset: 64px 0 auto 0;
    flex-direction: column; gap: 0;
    background: var(--paper);
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-110%);
    transition: transform .3s cubic-bezier(.4,0,.2,1), visibility 0s linear .3s;
    box-shadow: var(--shadow-2);
    visibility: hidden;
  }
  .nav__links.is-open {
    transform: translateY(0);
    visibility: visible;
    transition: transform .3s cubic-bezier(.4,0,.2,1), visibility 0s linear;
  }
  .nav__links a {
    width: 100%; padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
  }
  .nav__links a:last-child { border-bottom: 0; }
  .nav__cta { margin-top: 8px; text-align: center; }
}

/* ───── Hero ───── */
.hero {
  position: relative;
  padding: clamp(56px, 12vw, 130px) 0 clamp(64px, 14vw, 140px);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 80% 0%, rgba(200, 85, 42, 0.10), transparent 70%),
    radial-gradient(50% 40% at 0% 30%, rgba(200, 85, 42, 0.07), transparent 70%);
  pointer-events: none;
}
.hero__inner { position: relative; }
.hero__eyebrow {
  display: inline-block;
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent-d); font-weight: 500;
  margin-bottom: 22px;
  padding: 6px 12px;
  border: 1px solid var(--accent-l);
  background: rgba(251, 230, 220, 0.5);
  border-radius: 999px;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 16ch;
  margin-bottom: 24px;
}
.hero__title em {
  font-style: italic; color: var(--accent-d);
}
.hero__sub {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 60ch;
  margin-bottom: 36px;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero__hint {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--ink-mute);
}
.hero__hint a { color: var(--ink-soft); border-bottom: 1px solid var(--line); }
.hero__hint a:hover { color: var(--accent-d); border-bottom-color: var(--accent-d); }
.hero__hint-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.06); }
}

/* ───── Buttons ───── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 500; font-size: 15px;
  transition: transform .15s, background .15s, color .15s, border-color .15s;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--ink); color: var(--paper);
}
.btn--primary:hover { background: var(--accent); }
.btn--ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--line);
}
.btn--ghost:hover { border-color: var(--ink); }

/* ───── Section base ───── */
.section { padding: clamp(72px, 12vw, 130px) 0; }
.section--alt { background: var(--paper-2); }
.section__head { max-width: 720px; margin-bottom: 56px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__eyebrow {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent-d); font-weight: 500;
  margin-bottom: 14px;
}
.section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 18px;
}
.section__lead {
  font-size: clamp(1rem, 1.4vw, 1.13rem);
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ───── Cards (Leistungen) ───── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
  border-color: var(--accent-l);
}
.card__icon {
  width: 44px; height: 44px;
  background: var(--accent-l); color: var(--accent-d);
  border-radius: var(--r-md);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.card__icon svg { width: 22px; height: 22px; }
.card__title {
  font-family: var(--font-serif);
  font-size: 1.32rem; font-weight: 600;
  margin-bottom: 8px; letter-spacing: -0.01em;
}
.card__text { color: var(--ink-soft); font-size: 15px; line-height: 1.6; }

/* ───── Case Study ───── */
.case {
  padding: clamp(72px, 12vw, 130px) 0;
  background: var(--ink); color: var(--paper);
  position: relative;
}
.case .section__eyebrow { color: var(--accent); }
.case .section__title, .case .section__lead { color: var(--paper); }
.case .section__lead { color: rgba(253, 251, 246, 0.7); }

.case__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-bottom: 64px;
}
@media (max-width: 760px) {
  .case__grid { grid-template-columns: 1fr; gap: 36px; }
}
.case__sub {
  font-family: var(--font-serif);
  font-size: 1.4rem; font-weight: 500;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
  color: var(--paper);
}
.case__list { display: flex; flex-direction: column; gap: 14px; }
.case__list li {
  position: relative;
  padding-left: 26px;
  color: rgba(253, 251, 246, 0.78);
  font-size: 15.5px; line-height: 1.6;
}
.case__list li::before {
  content: ""; position: absolute;
  left: 0; top: 11px;
  width: 14px; height: 1px;
  background: var(--ink-mute);
}
.case__list--check li::before {
  width: 16px; height: 16px;
  top: 4px; background: none;
  border: 2px solid var(--accent);
  border-radius: 50%;
}
.case__list--check li::after {
  content: ""; position: absolute;
  left: 4px; top: 8px;
  width: 8px; height: 4px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.case__impact-head {
  margin-bottom: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(253, 251, 246, 0.1);
}
.case__impact-line { margin-bottom: 56px; }

.case__quote {
  max-width: 720px; margin: 24px auto 0;
  text-align: center;
  padding: 48px 40px;
  background: rgba(253, 251, 246, 0.035);
  border: 1px solid rgba(253, 251, 246, 0.1);
  border-radius: var(--r-lg);
}
.case__quote blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--paper);
  margin-bottom: 20px;
}
.case__quote-author {
  font-size: 14px;
  color: rgba(253, 251, 246, 0.6);
  letter-spacing: 0.04em;
}

/* ───── Prozess ───── */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.process__step {
  position: relative;
  padding: 28px 24px 32px;
  background: var(--paper);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
}
.process__num {
  font-family: var(--font-serif);
  font-size: 2.4rem; font-weight: 500;
  color: var(--accent);
  line-height: 1; letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.process__title {
  font-family: var(--font-serif);
  font-size: 1.25rem; font-weight: 600;
  margin-bottom: 8px;
}
.process__text {
  color: var(--ink-soft);
  font-size: 15px; line-height: 1.6;
}

/* ───── Impact-Block (eingebettet in Referenzprojekt) ───── */
.impact__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.impact__eyebrow {
  display: inline-block;
  font-size: 12px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent);
  font-weight: 500; margin-bottom: 14px;
}
.impact__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.8vw, 2.7rem);
  font-weight: 500;
  line-height: 1.15; letter-spacing: -0.015em;
  margin-bottom: 14px;
  color: var(--paper);
}
.impact__title em { font-style: italic; color: var(--accent); }
.impact__lead {
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  color: rgba(253, 251, 246, 0.7);
}
.impact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.impact__stat {
  padding: 32px 28px;
  background: rgba(253, 251, 246, 0.04);
  border-radius: var(--r-lg);
  border: 1px solid rgba(253, 251, 246, 0.1);
}
.impact__stat--accent {
  background: rgba(200, 85, 42, 0.12);
  border-color: rgba(200, 85, 42, 0.4);
}
.impact__stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 600;
  color: var(--accent);
  line-height: 1; letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.impact__stat-unit {
  font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(253, 251, 246, 0.65);
  font-weight: 500;
  margin-bottom: 14px;
}
.impact__stat-detail {
  font-size: 14.5px;
  color: rgba(253, 251, 246, 0.78);
  line-height: 1.55;
}
.impact__line {
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-style: italic;
  color: rgba(253, 251, 246, 0.85);
  max-width: 720px; margin: 0 auto;
  line-height: 1.55;
}
.impact__line strong {
  color: var(--accent);
  font-style: normal;
  font-weight: 600;
}

/* ───── Pricing Plans ───── */
.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
  margin-bottom: 36px;
}
.plan {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  display: flex; flex-direction: column;
  position: relative;
}
.plan--accent {
  border-color: var(--accent);
  border-width: 2px;
  box-shadow: 0 20px 40px -16px rgba(200, 85, 42, 0.25);
  transform: translateY(-4px);
}
@media (max-width: 760px) {
  .plan--accent { transform: none; }
}
.plan--custom {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
}
.plan__badge {
  position: absolute;
  top: -10px; left: 22px;
  display: inline-block;
  padding: 4px 10px;
  background: var(--ink); color: var(--paper);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 999px;
}
.plan__badge--accent { background: var(--accent); }
.plan__title {
  font-family: var(--font-serif);
  font-size: 1.2rem; font-weight: 600;
  letter-spacing: -0.01em;
  margin: 6px 0 18px;
  color: var(--ink);
}
.plan__price {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 6px;
  margin-bottom: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.plan__price-num {
  font-family: var(--font-serif);
  font-size: 2rem; font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.plan__price-num--small {
  font-size: 1.3rem;
  color: var(--accent-d);
}
.plan__price-unit {
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 500;
}
.plan__price-detail {
  flex: 1 1 100%;
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 8px;
  font-style: italic;
}
.plan__intro {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 16px;
}
.plan__list {
  flex: 1;
  display: flex; flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 14px;
}
.plan__list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
}
.plan__list li strong { color: var(--ink); font-weight: 600; }
.plan__list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--accent);
  font-weight: 600;
}
.plan__for {
  font-size: 13px;
  color: var(--ink-mute);
  font-style: italic;
  line-height: 1.5;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.plans__note {
  text-align: center;
  font-size: 14px;
  color: var(--ink-soft);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.55;
}
.plans__note--small {
  font-size: 13px;
  color: var(--ink-mute);
  margin-top: 32px;
}

/* Alles inklusive */
.inclusive {
  margin: 56px auto 0;
  max-width: 920px;
  padding: 32px 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.inclusive__title {
  font-family: var(--font-serif);
  font-size: 1.3rem; font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  text-align: center;
  color: var(--ink);
}
.inclusive__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px 24px;
}
.inclusive__item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
  padding: 6px 0;
}
.inclusive__check {
  color: #16a34a;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

/* ───── Modell (alte Klassen, falls noch referenziert) ───── */
.modell-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}
.modell-block {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px 28px;
  display: flex; flex-direction: column;
}
.modell-block--accent {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.modell-block__title {
  font-family: var(--font-serif);
  font-size: 1.5rem; font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 4px;
}
.modell-block__sub {
  font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent-d);
  font-weight: 500; margin-bottom: 18px;
}
.modell-block--accent .modell-block__sub { color: var(--accent); }
.modell-block__list {
  flex: 1;
  display: flex; flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 15px;
  color: var(--ink-soft);
}
.modell-block--accent .modell-block__list { color: rgba(253, 251, 246, 0.78); }
.modell-block__list li {
  position: relative;
  padding-left: 22px;
}
.modell-block__list li::before {
  content: "";
  position: absolute; left: 0; top: 8px;
  width: 12px; height: 1px;
  background: var(--accent);
}
.modell-block__price {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--ink);
  padding-top: 18px;
  border-top: 0.5pt solid var(--line);
}
.modell-block--accent .modell-block__price {
  color: var(--paper);
  border-top-color: rgba(253, 251, 246, 0.18);
}
.modell-note {
  text-align: center;
  max-width: 720px; margin: 0 auto;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ═══════════════════ INTERAKTIVE DEMO (Reservierungs-Workflow) ═══════════════════ */
.demoapp-section { background: var(--paper-2); }

.demoapp {
  max-width: 980px;
  margin: 0 auto;
  background: var(--paper);
  border-radius: var(--r-lg);
  box-shadow: 0 30px 60px -20px rgba(20, 15, 8, 0.25), 0 10px 30px -8px rgba(20, 15, 8, 0.12);
  overflow: hidden;
  position: relative;
}

.demoapp__chrome {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 18px;
  background: #ebe5d6;
  border-bottom: 1px solid var(--line);
}
.demoapp__dots { display: flex; gap: 6px; flex-shrink: 0; }
.demoapp__dots span { width: 11px; height: 11px; border-radius: 50%; background: rgba(20, 15, 8, 0.14); }
.demoapp__dots span:nth-child(1) { background: #ef4444; }
.demoapp__dots span:nth-child(2) { background: #eab308; }
.demoapp__dots span:nth-child(3) { background: #22c55e; }
.demoapp__url {
  flex: 1;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  background: var(--paper);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-soft);
  font-family: -apple-system, sans-serif;
  border: 1px solid rgba(20, 15, 8, 0.06);
}
.demoapp__url svg { color: #22c55e; flex-shrink: 0; }
.demoapp__reset {
  font-size: 12px; color: var(--ink-soft);
  padding: 6px 12px; border-radius: 999px;
  background: transparent; border: 1px solid transparent;
  cursor: pointer; flex-shrink: 0; transition: all .15s;
  font-family: inherit;
}
.demoapp__reset:hover { background: var(--paper); border-color: var(--line); color: var(--ink); }

.demoapp__body { display: grid; grid-template-columns: 220px 1fr; min-height: 520px; }
@media (max-width: 760px) { .demoapp__body { grid-template-columns: 1fr; } }

.demoapp__nav {
  background: #f8f3e7; padding: 18px 14px;
  display: flex; flex-direction: column; gap: 4px;
  border-right: 1px solid var(--line);
}
@media (max-width: 760px) {
  .demoapp__nav { flex-direction: row; padding: 12px; overflow-x: auto; border-right: 0; border-bottom: 1px solid var(--line); }
}
.demoapp__nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  background: transparent; border: 0;
  border-radius: var(--r-md);
  font-size: 14px; font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer; text-align: left;
  font-family: inherit; transition: all .15s;
  white-space: nowrap;
}
.demoapp__nav-item:hover { background: var(--paper); color: var(--ink); }
.demoapp__nav-item.is-active { background: var(--ink); color: var(--paper); }
.demoapp__nav-item.is-active .demoapp__nav-badge { background: var(--accent); color: var(--paper); }
.demoapp__nav-icon { display: inline-flex; flex-shrink: 0; }
.demoapp__nav-label { flex: 1; }
.demoapp__nav-badge {
  min-width: 22px; height: 22px; padding: 0 7px;
  border-radius: 999px;
  background: var(--accent); color: var(--paper);
  font-size: 11px; font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center;
  font-variant-numeric: tabular-nums;
}
.demoapp__nav-badge--neutral { background: rgba(20, 15, 8, 0.10); color: var(--ink-soft); }

.demoapp__main { padding: 28px 32px; position: relative; overflow: hidden; }
@media (max-width: 760px) { .demoapp__main { padding: 20px; } }
.demoview { display: none; }
.demoview.is-active { display: block; }
.demoview__head { margin-bottom: 22px; }
.demoview__title {
  font-family: var(--font-serif);
  font-size: 1.45rem; font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.demoview__sub { font-size: 14px; color: var(--ink-soft); }
.demoview__body { display: flex; flex-direction: column; gap: 14px; }
.demoview__empty {
  padding: 48px 24px; text-align: center;
  color: var(--ink-mute); font-style: italic;
  background: var(--paper-2); border-radius: var(--r-md);
  border: 1px dashed var(--line);
}

.req {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.req--new {
  border-color: var(--accent-l);
  box-shadow: 0 0 0 3px rgba(200, 85, 42, 0.08);
}
@keyframes cardIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@keyframes cardOut { to { opacity: 0; transform: translateX(40px); max-height: 0; padding-top: 0; padding-bottom: 0; margin: 0; border-width: 0; } }
.req.is-removing { animation: cardOut .35s ease forwards; pointer-events: none; max-height: 600px; }

.req__head {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fffdf8 0%, transparent 100%);
}
.req__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent-l); color: var(--accent-d);
  display: grid; place-items: center;
  font-family: var(--font-serif); font-weight: 600; font-size: 16px;
  flex-shrink: 0;
}
.req__who { flex: 1; min-width: 0; }
.req__name { font-weight: 600; font-size: 15px; }
.req__src {
  font-size: 11px; color: var(--ink-mute);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-top: 2px;
  display: inline-flex; align-items: center; gap: 6px;
}
.req__when { text-align: right; font-size: 13px; color: var(--ink-soft); flex-shrink: 0; }
.req__when strong { color: var(--ink); display: block; }

.req__body {
  padding: 16px 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 14px;
}
.req__field-label {
  font-size: 10px; color: var(--ink-mute);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 2px;
}
.req__field-value { font-size: 14px; color: var(--ink); font-weight: 500; }
.req__note {
  padding: 12px 18px;
  background: var(--paper-2); font-style: italic;
  font-size: 13px; color: var(--ink-soft);
  border-top: 1px solid var(--line);
}
.req__note::before {
  content: "„"; font-family: var(--font-serif);
  font-size: 22px; color: var(--accent);
  margin-right: 2px; line-height: 0; vertical-align: -6px;
}

.req__actions {
  display: flex; gap: 10px;
  padding: 14px 18px;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
}
.req__btn {
  flex: 1; padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px; font-weight: 500;
  cursor: pointer; border: 0;
  font-family: inherit; transition: all .15s;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
}
.req__btn--accept { background: #16a34a; color: white; }
.req__btn--accept:hover { background: #15803d; transform: translateY(-1px); }
.req__btn--reject { background: var(--paper); color: var(--ink-soft); border: 1px solid var(--line); }
.req__btn--reject:hover { background: #fef2f2; color: #b91c1c; border-color: #fecaca; }

.conf {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 16px 18px;
  display: flex; align-items: center; gap: 14px;
}
.conf__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: #dcfce7; color: #166534;
  display: grid; place-items: center;
  font-family: var(--font-serif); font-weight: 600;
  flex-shrink: 0;
}
.conf__main { flex: 1; min-width: 0; }
.conf__name { font-weight: 600; font-size: 15px; }
.conf__meta { font-size: 13px; color: var(--ink-soft); margin-top: 2px; }
.conf__table {
  background: var(--paper-2); padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px; font-weight: 500; color: var(--ink-soft);
  flex-shrink: 0;
}
.conf__check { font-size: 18px; color: #16a34a; }

.dcal { background: var(--paper); }
.dcal__weekdays { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; margin-bottom: 8px; }
.dcal__weekdays > div {
  font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-mute);
  text-align: center; padding: 4px 0;
}
.dcal__days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.dcal__day {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--paper-2);
  border-radius: 8px;
  font-size: 13px;
  display: flex; align-items: flex-start; justify-content: flex-end;
  padding: 6px 8px;
  color: var(--ink);
}
.dcal__day--other { color: var(--ink-mute); opacity: 0.5; }
.dcal__day--today { outline: 1.5px solid var(--ink); }
.dcal__day--has { background: #fff; border: 1px solid var(--line); }
.dcal__day--new { background: #dcfce7; border: 1px solid #86efac; animation: cellPulse 1.4s ease; }
@keyframes cellPulse {
  0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45); }
  100% { box-shadow: 0 0 0 12px rgba(34, 197, 94, 0); }
}
.dcal__pill {
  position: absolute;
  left: 4px; right: 4px; bottom: 4px;
  font-size: 9.5px;
  background: var(--accent-l); color: var(--accent-d);
  padding: 2px 4px; border-radius: 4px;
  text-align: center; font-weight: 500;
  line-height: 1.2;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.dcal__day--new .dcal__pill { background: #16a34a; color: white; }

.demoapp__toasts {
  position: absolute;
  bottom: 20px; right: 20px;
  display: flex; flex-direction: column; gap: 10px;
  pointer-events: none; z-index: 20;
  max-width: 360px;
}
.toast {
  background: var(--ink); color: var(--paper);
  padding: 14px 18px;
  border-radius: var(--r-md);
  box-shadow: 0 12px 30px -8px rgba(20, 15, 8, 0.5);
  font-size: 14px; line-height: 1.45;
  display: flex; align-items: flex-start; gap: 12px;
  pointer-events: auto;
  animation: toastIn .35s ease both;
}
.toast--green  { border-left: 4px solid #22c55e; }
.toast--accent { border-left: 4px solid var(--accent); }
.toast--info   { border-left: 4px solid #3b82f6; }
.toast__icon { font-size: 18px; flex-shrink: 0; line-height: 1.2; }
.toast__body { flex: 1; }
.toast__title { font-weight: 600; margin-bottom: 2px; font-size: 14.5px; }
.toast__text { color: rgba(253, 251, 246, 0.75); font-size: 13px; }
.toast.is-leaving { animation: toastOut .25s ease forwards; }
@keyframes toastIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes toastOut { to { opacity: 0; transform: translateX(20px); } }

.demoapp__modal { position: absolute; inset: 0; z-index: 30; display: flex; align-items: center; justify-content: center; padding: 20px; }
.demoapp__modal[hidden] { display: none; }
.demoapp__modal-bg {
  position: absolute; inset: 0;
  background: rgba(20, 15, 8, 0.45);
  backdrop-filter: blur(2px);
  animation: fadeIn .2s ease both;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.demoapp__modal-box {
  position: relative;
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 28px;
  max-width: 440px; width: 100%;
  box-shadow: 0 30px 60px -10px rgba(0,0,0,0.4);
  animation: modalIn .25s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes modalIn { from { opacity: 0; transform: scale(0.92) translateY(8px); } to { opacity: 1; transform: none; } }
.demoapp__modal-title {
  font-family: var(--font-serif);
  font-size: 1.3rem; font-weight: 600;
  margin-bottom: 8px; letter-spacing: -0.01em;
}
.demoapp__modal-text { color: var(--ink-soft); font-size: 14px; margin-bottom: 18px; line-height: 1.55; }
.demoapp__modal-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.demoapp__radio {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px 14px;
  background: var(--paper-2);
  border-radius: 8px; cursor: pointer; font-size: 14px;
  transition: all .15s;
  border: 1px solid transparent;
}
.demoapp__radio:hover { border-color: var(--line); }
.demoapp__radio input { margin-top: 3px; accent-color: var(--accent); }
.demoapp__radio:has(input:checked) { background: var(--accent-l); border-color: var(--accent); }
.demoapp__modal-actions { display: flex; justify-content: flex-end; gap: 10px; }
.btn--sm { padding: 9px 18px; font-size: 14px; }

.demoapp__hint {
  max-width: 980px; margin: 24px auto 0;
  padding: 14px 20px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: 14px; color: var(--ink-soft);
  display: flex; align-items: center; gap: 14px;
  line-height: 1.5;
}
.demoapp__hint strong { color: var(--ink); }
.demoapp__hint-text { flex: 1; }
.demoapp__hint-pulse {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0; position: relative;
  animation: hintPulse 2s ease-out infinite;
}
@keyframes hintPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 85, 42, 0.4); }
  50%      { box-shadow: 0 0 0 8px rgba(200, 85, 42, 0); }
}

@media (max-width: 760px) {
  .demoapp__toasts { left: 12px; right: 12px; bottom: 12px; max-width: none; }
}

/* ═══════════════════ CATERING-KONFIGURATOR ═══════════════════ */
.demoapp__nav-item[disabled] { opacity: 0.45; cursor: not-allowed; }
.demoapp__nav-item[disabled]:hover { background: transparent; color: var(--ink-soft); }

.cfg {
  display: flex; flex-direction: column; gap: 24px;
}
.cfg__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 14px;
  padding: 18px 20px;
  background: var(--paper-2);
  border-radius: var(--r-md);
}
.cfg__field label {
  display: block;
  font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-mute);
  font-weight: 500; margin-bottom: 4px;
}
.cfg__input {
  font-size: 15px; font-weight: 500; color: var(--ink);
}
.cfg__stepper {
  display: inline-flex; align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.cfg__stepper button {
  width: 30px; height: 30px;
  background: transparent;
  font-size: 18px; color: var(--ink-soft);
  cursor: pointer; transition: all .15s;
  font-family: inherit;
}
.cfg__stepper button:hover { background: var(--accent-l); color: var(--accent-d); }
.cfg__stepper span {
  min-width: 38px; text-align: center;
  font-weight: 600; font-size: 15px;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.cfg__menu {
  display: flex; flex-direction: column; gap: 18px;
}
.cfg__menu-group {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 16px 18px;
}
.cfg__group-title {
  font-family: var(--font-serif);
  font-size: 1rem; font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.cfg__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 8px;
}
.cfg__item {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
  background: var(--paper-2);
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
  transition: all .15s;
  font-family: inherit;
  text-align: left;
}
.cfg__item:hover {
  border-color: var(--line);
  background: var(--paper);
}
.cfg__item.is-selected {
  background: var(--accent-l);
  border-color: var(--accent);
  color: var(--accent-d);
  font-weight: 500;
}
.cfg__item.is-selected::before {
  content: "✓";
  font-weight: 700;
  margin-right: 2px;
  color: var(--accent-d);
}
.cfg__item-name { flex: 1; min-width: 0; }
.cfg__item-price {
  font-size: 12px;
  color: var(--ink-mute);
  font-variant-numeric: tabular-nums;
}
.cfg__item.is-selected .cfg__item-price { color: var(--accent-d); }

.cfg__total {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-md);
  flex-wrap: wrap;
}
.cfg__total-lbl {
  font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(253, 251, 246, 0.7);
  margin-bottom: 4px;
}
.cfg__total-sum {
  font-family: var(--font-serif);
  font-size: 2rem; font-weight: 600;
  color: var(--accent);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.cfg__total-detail {
  font-size: 12px;
  color: rgba(253, 251, 246, 0.6);
  margin-top: 6px;
}
.cfg__submit {
  padding: 14px 22px;
  background: var(--accent);
  color: var(--paper);
  border: 0; border-radius: 999px;
  font-size: 14px; font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all .15s;
}
.cfg__submit:hover:not(:disabled) {
  background: var(--accent-d);
  transform: translateY(-1px);
}
.cfg__submit:disabled {
  background: rgba(253, 251, 246, 0.15);
  cursor: not-allowed;
}

/* PDF / Angebot-Mockup */
.offer-mock {
  background: var(--paper-2);
  border-radius: var(--r-md);
  padding: 24px;
  display: grid;
  gap: 18px;
}
.offer-mock__page {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 24px 26px;
  box-shadow: 0 4px 16px -4px rgba(20, 15, 8, 0.1);
}
.offer-mock__logo {
  font-family: var(--font-serif);
  font-size: 13px; letter-spacing: 3px;
  text-align: center;
  padding-bottom: 14px;
  border-bottom: 0.5pt solid var(--line);
  margin-bottom: 14px;
}
.offer-mock__addr {
  font-size: 11px; color: var(--ink-mute);
  margin-bottom: 14px;
}
.offer-mock__title {
  font-family: var(--font-serif);
  font-size: 18px; font-weight: 600;
  margin-bottom: 4px;
}
.offer-mock__nr {
  font-size: 11px; color: var(--ink-soft);
  letter-spacing: 1pt;
  margin-bottom: 18px;
}
.offer-mock__table {
  width: 100%; font-size: 11px;
  border-collapse: collapse;
  margin-bottom: 14px;
}
.offer-mock__table td {
  padding: 5px 0;
  border-bottom: 0.5pt solid var(--line);
}
.offer-mock__table td:first-child { color: var(--ink-mute); width: 36px; }
.offer-mock__table td:last-child { text-align: right; font-variant-numeric: tabular-nums; }
.offer-mock__sum {
  text-align: right;
  font-family: var(--font-serif);
  font-size: 14px; font-weight: 600;
  padding-top: 8px;
  border-top: 1pt solid var(--ink);
}
.offer-mock__actions { display: flex; justify-content: flex-end; }

/* ═══════════════════ SLIDESHOW ═══════════════════ */
.slideshow {
  max-width: 980px; margin: 0 auto;
  background: var(--paper);
  border-radius: var(--r-lg);
  box-shadow: 0 30px 60px -20px rgba(20, 15, 8, 0.25), 0 10px 30px -8px rgba(20, 15, 8, 0.12);
  overflow: hidden;
  /* Vertikales Scrollen darf, horizontale Swipes fängt JS ab */
  touch-action: pan-y;
}
.slideshow__stage {
  position: relative;
  min-height: 460px;
  background: var(--paper-2);
  overflow: hidden;
}
.slide {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 40px;
  opacity: 0;
  transform: translateX(28px) scale(0.985);
  pointer-events: none;
  transition:
    opacity .55s cubic-bezier(.4, 0, .2, 1),
    transform .55s cubic-bezier(.4, 0, .2, 1);
  align-items: center;
  will-change: opacity, transform;
}
.slide.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  z-index: 1;
}
.slide.is-leaving {
  opacity: 0;
  transform: translateX(-28px) scale(0.985);
  z-index: 0;
}
@media (max-width: 760px) {
  .slideshow__stage { min-height: 540px; }
  .slide { grid-template-columns: 1fr; gap: 20px; padding: 24px; }
}
@media (prefers-reduced-motion: reduce) {
  .slide { transition: opacity .25s linear; transform: none !important; }
}
.slide__visual {
  display: flex; justify-content: center; align-items: center;
}
.slide__text { padding: 12px 0; }
.slide__num {
  font-family: var(--font-serif);
  font-size: 2.4rem; font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 12px;
}
.slide__title {
  font-family: var(--font-serif);
  font-size: 1.4rem; font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  line-height: 1.2;
}
.slide__text p {
  color: var(--ink-soft);
  font-size: 15px; line-height: 1.6;
}

/* Mock-Frames für Slides */
.mock-frame {
  background: var(--ink);
  border-radius: 18px;
  padding: 6px;
  box-shadow: 0 18px 36px -10px rgba(20,15,8,0.3);
}
.mock-frame--phone { width: 240px; }
.mock-frame--desk  { width: 100%; max-width: 420px; border-radius: 10px; padding: 5px; }
.mock-frame__top {
  padding: 6px 12px 10px;
  font-size: 10px;
  color: rgba(253,251,246,0.5);
  text-align: center;
  font-family: -apple-system, sans-serif;
}
.mock-frame__body {
  background: var(--paper);
  border-radius: 14px;
  padding: 16px 14px;
  min-height: 280px;
  font-size: 12px;
}
.mock-frame--desk .mock-frame__body { border-radius: 8px; min-height: 220px; }
.mock-frame__body--form .m-pill { background: var(--accent-l); color: var(--accent-d); padding: 8px 10px; border-radius: 6px; font-size: 11px; text-align: center; margin-top: 8px; font-weight: 500; }

.m-h3 {
  font-family: var(--font-serif);
  font-size: 1rem; font-weight: 600;
  margin-bottom: 10px;
}
.m-field {
  display: flex; justify-content: space-between;
  padding: 8px 10px;
  background: var(--paper-2);
  border-radius: 6px;
  margin-bottom: 6px;
  font-size: 11px;
}
.m-field span { color: var(--ink-mute); }
.m-field b { font-weight: 600; }
.m-card {
  padding: 8px 10px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  margin-bottom: 5px;
  font-size: 11px;
  color: var(--ink-soft);
}
.m-card--on {
  background: var(--accent-l);
  border-color: var(--accent);
  color: var(--accent-d);
  font-weight: 500;
}
.m-card--on::before { content: "✓ "; font-weight: 700; }
.m-card--full {
  border: 1px solid var(--accent-l);
  background: #fffdf8;
  padding: 12px;
  font-size: 11px;
  color: var(--ink);
  line-height: 1.4;
}
.m-card--full em { font-size: 10px; color: var(--ink-mute); font-style: italic; }
.m-total {
  margin-top: 10px;
  padding: 8px 10px;
  background: var(--ink); color: var(--paper);
  border-radius: 6px;
  text-align: right;
  font-size: 11px;
  font-weight: 500;
}
.m-row {
  display: flex; justify-content: space-between;
  padding: 5px 0;
  border-bottom: 0.5pt solid var(--line);
  font-size: 11px;
}
.m-row--sum {
  border-top: 1pt solid var(--ink);
  border-bottom: 0;
  margin-top: 6px;
  padding-top: 6px;
  font-weight: 600;
  font-family: var(--font-serif);
  font-size: 13px;
}
.m-btn {
  display: block;
  margin-top: 12px;
  padding: 9px 14px;
  border-radius: 6px;
  text-align: center;
  font-size: 12px; font-weight: 500;
}
.m-btn--accent { background: var(--accent); color: var(--paper); }
.m-btn--ink    { background: var(--ink); color: var(--paper); }
.m-btn--green  { background: #16a34a; color: var(--paper); }
.m-nav {
  display: flex; gap: 4px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
  margin-bottom: 12px;
}
.m-nav span {
  padding: 4px 8px;
  font-size: 10px;
  color: var(--ink-mute);
  border-radius: 4px;
}
.m-nav .m-nav-on {
  background: var(--accent-l);
  color: var(--accent-d);
  font-weight: 500;
}
.m-nav i {
  font-style: normal;
  background: var(--accent);
  color: var(--paper);
  font-size: 9px;
  padding: 1px 5px;
  border-radius: 999px;
  margin-left: 3px;
}
.pdf-mini {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px;
  font-size: 10px;
}
.pdf-mini__logo {
  font-family: var(--font-serif);
  font-size: 11px; letter-spacing: 2pt;
  text-align: center;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 0.5pt solid var(--line);
}
.pdf-mini__title {
  font-family: var(--font-serif);
  font-size: 12px; font-weight: 600;
  margin-bottom: 8px;
}
.pdf-mini__line {
  height: 4px;
  background: var(--paper-2);
  border-radius: 999px;
  margin-bottom: 4px;
}
.pdf-mini__sum {
  text-align: right;
  font-family: var(--font-serif);
  font-size: 11px; font-weight: 600;
  margin-top: 8px;
  padding-top: 4px;
  border-top: 1pt solid var(--ink);
}
.m-mail {
  font-size: 11px;
}
.m-mail-from { font-size: 10px; color: var(--ink-mute); }
.m-mail-sub { font-weight: 600; margin: 2px 0 8px; font-size: 12px; }
.m-attach { padding: 6px 8px; background: var(--paper-2); border-radius: 4px; margin-bottom: 8px; font-size: 11px; }
.m-mail-reply {
  padding: 8px;
  background: var(--accent-l);
  border-left: 2px solid var(--accent);
  color: var(--accent-d);
  font-style: italic;
  font-size: 10px;
}

.slideshow__controls {
  display: flex; align-items: center; justify-content: center;
  gap: 18px;
  padding: 18px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.slideshow__btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--paper-2);
  font-size: 20px; color: var(--ink-soft);
  display: grid; place-items: center;
  cursor: pointer;
  border: 0;
  font-family: inherit;
  transition: all .15s;
}
.slideshow__btn:hover { background: var(--accent-l); color: var(--accent-d); }
.slideshow__dots { display: flex; gap: 8px; }
.slideshow__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--line);
  border: 0;
  cursor: pointer;
  transition: all .25s;
  padding: 0;
}
.slideshow__dot:hover { background: var(--ink-mute); }
.slideshow__dot.is-active {
  width: 28px;
  border-radius: 999px;
  background: var(--accent);
}

/* ═══════════════════ EXAMPLES-NOTE ═══════════════════ */
.examples-note {
  max-width: 980px; margin: 56px auto 0;
  padding: 24px 28px;
  background: linear-gradient(135deg, var(--accent-l) 0%, #fffdf8 100%);
  border-radius: var(--r-lg);
  border: 1px solid var(--accent-l);
  display: flex; align-items: flex-start; gap: 18px;
}
@media (max-width: 760px) {
  .examples-note { flex-direction: column; gap: 12px; }
}
.examples-note__icon { font-size: 28px; flex-shrink: 0; }
.examples-note__title {
  font-family: var(--font-serif);
  font-size: 1.2rem; font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.examples-note__body p {
  color: var(--ink-soft);
  font-size: 14.5px; line-height: 1.6;
}
.examples-note__body strong { color: var(--ink); font-weight: 600; }

/* ───── Stack ───── */
.stack {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px 12px;
  max-width: 800px; margin: 0 auto;
}
.stack__item {
  padding: 10px 18px;
  background: var(--paper-2);
  border-radius: 999px;
  font-size: 14px; font-weight: 500;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  transition: all .15s;
  cursor: pointer;
  font-family: inherit;
}
.stack__item:hover,
.stack__item.is-active {
  background: var(--accent-l);
  color: var(--accent-d);
  border-color: var(--accent);
}

.tip {
  max-width: 680px; margin: 24px auto 0;
  padding: 18px 22px;
  background: var(--paper-2);
  border-radius: var(--r-md);
  border-left: 3px solid var(--accent);
  min-height: 84px;
  transition: opacity .2s;
}
.tip__hint {
  color: var(--ink-mute);
  font-style: italic;
  font-size: 14px;
  text-align: center;
}
.tip__title {
  font-family: var(--font-serif);
  font-size: 1.15rem; font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.tip__text {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ───── Über mich ───── */
.about {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 760px) {
  .about { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .about__facts { text-align: left; }
}
.about__photo-frame {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--paper-2);
  border: 1px solid var(--line);
}
.about__photo-frame img {
  position: relative;
  z-index: 2;
  width: 100%; height: 100%;
  object-fit: cover;
}
.about__photo-frame img.is-missing { display: none; }
.about__photo-fallback {
  position: absolute; inset: 0;
  z-index: 1;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 4rem; font-weight: 500;
  color: var(--ink-mute);
  letter-spacing: -0.02em;
}
.about__text p { color: var(--ink-soft); margin-bottom: 16px; line-height: 1.7; }
.about__text p:last-of-type { margin-bottom: 24px; }
.about__facts {
  display: flex; flex-direction: column;
  gap: 8px;
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--ink-soft);
}
.about__facts strong { color: var(--ink); font-weight: 500; margin-right: 4px; }


/* ───── Kontakt ───── */
.contact {
  background: var(--paper-2);
  padding: clamp(72px, 12vw, 130px) 0;
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 760px) {
  .contact__inner { grid-template-columns: 1fr; gap: 36px; }
}
.contact__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin-bottom: 18px;
}
.contact__text {
  color: var(--ink-soft); font-size: 1.05rem; line-height: 1.65;
}
.contact__channels {
  display: flex; flex-direction: column; gap: 16px;
}
.contact__channel {
  display: block;
  padding: 22px 26px;
  background: var(--paper);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  transition: all .15s;
}
.contact__channel:not(.contact__channel--static):hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}
.contact__channel-lbl {
  display: block;
  font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent-d);
  font-weight: 500; margin-bottom: 6px;
}
.contact__channel-val {
  font-size: 1.05rem; font-weight: 500; color: var(--ink);
}

/* ───── Footer ───── */
.footer {
  padding: 36px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.footer__inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  font-size: 14px; color: var(--ink-mute);
}
.footer__brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--ink-soft); font-weight: 500;
}
.footer__meta { display: inline-flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.footer__meta a { color: var(--ink-mute); transition: color .15s; }
.footer__meta a:hover { color: var(--accent-d); }

/* ───── Reveal-Animation (Progressive Enhancement) ─────
   Default: alles sichtbar, damit Site auch ohne JS funktioniert / Print sauber rendert.
   Nur wenn .has-js am <html>: opacity 0 + Animation, dann triggert IntersectionObserver. */
.reveal { transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.has-js .reveal {
  opacity: 0;
  transform: translateY(20px);
}
.has-js .reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce), print {
  .has-js .reveal { opacity: 1; transform: none; transition: none; }
  .hero__hint-dot { animation: none; }
}

/* ═══════════════════ MOBILE OVERHAUL (≤ 760px) ═══════════════════ */
@media (max-width: 760px) {
  /* Container: schmaleres Padding für mehr Inhaltsbreite */
  .container { width: min(100% - 28px, var(--container)); }

  /* Lange Wörter / URLs / E-Mails dürfen umbrechen, sonst sprengen
     sie auf Mobile den Container und erzeugen Horizontal-Scroll */
  body { overflow-wrap: anywhere; word-break: break-word; }

  /* Sektionen: weniger vertikales Padding, sonst wird die Seite endlos */
  .section { padding: clamp(52px, 12vw, 80px) 0; }
  .case   { padding: clamp(52px, 12vw, 80px) 0; }
  .contact { padding: clamp(52px, 12vw, 80px) 0; }

  /* Hero: kompakter, h1 fluider, CTAs vollbreite */
  .hero { padding: clamp(40px, 12vw, 80px) 0 clamp(48px, 13vw, 88px); }
  .hero__eyebrow { font-size: 11px; padding: 5px 11px; margin-bottom: 18px; }
  .hero__title { font-size: clamp(1.95rem, 8.5vw, 2.6rem); max-width: 22ch; margin-bottom: 18px; line-height: 1.1; }
  .hero__sub { font-size: 1rem; margin-bottom: 28px; }
  .hero__cta { flex-direction: column; gap: 10px; margin-bottom: 28px; }
  .hero__cta .btn { width: 100%; }
  .hero__hint {
    display: flex; flex-wrap: wrap;
    align-items: flex-start; gap: 8px;
    font-size: 13px; line-height: 1.5;
  }

  /* Section-Headers: kompakter */
  .section__head { margin-bottom: 36px; }
  .section__title { font-size: clamp(1.65rem, 6vw, 2.15rem); margin-bottom: 14px; }
  .section__lead { font-size: 1rem; }

  /* Leistungs-Cards: weniger Padding, etwas mehr Atem */
  .cards { gap: 12px; }
  .card { padding: 22px 20px; }
  .card__title { font-size: 1.15rem; }

  /* Impact: kompakter */
  .impact__head { margin-bottom: 32px; }
  .impact__title { font-size: clamp(1.55rem, 6.5vw, 2.1rem); }
  .impact__lead { font-size: 0.97rem; }
  .impact__grid { gap: 12px; margin-bottom: 28px; }
  .impact__stat { padding: 22px 20px; }
  .impact__stat-num { font-size: clamp(2rem, 9vw, 2.8rem); }
  .impact__stat-detail { font-size: 13.5px; }
  .impact__line { font-size: 1rem; line-height: 1.55; }

  /* Case Study */
  .case__sub { font-size: 1.15rem; margin-bottom: 14px; }
  .case__list li { font-size: 14.5px; padding-left: 22px; }
  .case__impact-head { margin-bottom: 28px; padding-top: 20px; }
  .case__impact-line { margin-bottom: 36px; }
  .case__quote { padding: 32px 22px; margin-top: 16px; }

  /* Prozess */
  .process { gap: 14px; }
  .process__step { padding: 22px 20px 24px; }
  .process__num { font-size: 2rem; margin-bottom: 10px; }
  .process__title { font-size: 1.15rem; }

  /* Pricing-Plans */
  .plans { gap: 14px; margin-bottom: 28px; }
  .plan { padding: 24px 22px; }
  .plan__price-num { font-size: 1.75rem; }
  .plan__title { font-size: 1.15rem; }
  .plan__intro { font-size: 14.5px; }
  .plan__list { font-size: 14px; }
  .plans__note { font-size: 13.5px; line-height: 1.55; }

  /* Inclusive-Box: 1 Spalte, kompakt */
  .inclusive { padding: 22px 20px; margin-top: 28px; }
  .inclusive__title { font-size: 1.1rem; margin-bottom: 14px; }
  .inclusive__grid { grid-template-columns: 1fr; gap: 0; }
  .inclusive__item { font-size: 13.5px; padding: 4px 0; }

  /* Demo-App: kleinere Chrome, schmalerer Innenraum */
  .demoapp { border-radius: 12px; }
  .demoapp__chrome { padding: 8px 10px; gap: 8px; }
  .demoapp__url { font-size: 11px; padding: 5px 10px; }
  .demoapp__reset {
    /* Auf sehr kleinem Screen: nur Icon, kein Text */
    font-size: 0; padding: 6px 8px; flex-shrink: 0;
  }
  .demoapp__reset::after { content: "↻"; font-size: 15px; color: var(--ink-soft); }
  .demoapp__body { min-height: 0; }
  .demoapp__nav { padding: 10px 8px; gap: 4px; }
  .demoapp__nav-item { padding: 9px 12px; font-size: 13px; }
  .demoapp__nav-badge { min-width: 20px; height: 20px; font-size: 10px; padding: 0 6px; }
  .demoapp__main { padding: 18px 16px; }
  .demoview__title { font-size: 1.2rem; }
  .demoview__sub { font-size: 13px; line-height: 1.5; }

  /* Reservierungs-Karten in Demo */
  .req__head { padding: 14px 14px; gap: 11px; flex-wrap: wrap; }
  .req__who { flex: 1 1 60%; }
  .req__avatar { width: 36px; height: 36px; font-size: 14px; }
  .req__name { font-size: 14.5px; }
  .req__when { font-size: 12px; text-align: right; }
  .req__body { padding: 14px; gap: 10px; grid-template-columns: 1fr 1fr; }
  .req__field-value { font-size: 13.5px; }
  .req__note { padding: 10px 14px; font-size: 12.5px; }
  .req__actions { padding: 12px 14px; gap: 8px; }
  .req__btn { padding: 10px 12px; font-size: 13.5px; }
  .conf { padding: 14px; gap: 11px; }
  .conf__avatar { width: 36px; height: 36px; }
  .conf__name { font-size: 14.5px; }
  .conf__meta { font-size: 12.5px; }
  .conf__table { font-size: 11px; padding: 5px 10px; }

  /* Mini-Kalender: kleinere Zellen, kleinere Pills */
  .dcal__weekdays > div { font-size: 10px; padding: 2px 0; }
  .dcal__days { gap: 4px; }
  .dcal__day { font-size: 11px; padding: 4px 5px; border-radius: 6px; }
  .dcal__pill { font-size: 8px; left: 2px; right: 2px; bottom: 2px; padding: 1px 3px; }

  /* Modal mobile-friendly */
  .demoapp__modal { padding: 14px; }
  .demoapp__modal-box { padding: 22px 20px; max-width: 100%; }
  .demoapp__modal-title { font-size: 1.15rem; }
  .demoapp__modal-text { font-size: 13.5px; }
  .demoapp__radio { font-size: 13px; padding: 10px 12px; }
  .demoapp__modal-actions { flex-direction: column-reverse; gap: 8px; }
  .demoapp__modal-actions .btn { width: 100%; }

  /* Hint unter Demo */
  .demoapp__hint { padding: 12px 16px; font-size: 13px; gap: 10px; }

  /* Slideshow: höher, da 1-spaltig gestapelt + mehr Inhalt;
     Visual oben, Text unten, ohne Vertical-Centering, sonst klebt
     der Text am Phone-Mockup */
  .slideshow__stage { min-height: 700px; }
  .slide {
    padding: 22px 20px; gap: 16px;
    align-items: start;
    grid-template-rows: auto 1fr;
  }
  .slide__visual { align-self: start; }
  .slide__num { font-size: 1.9rem; margin-bottom: 6px; }
  .slide__title { font-size: 1.2rem; margin-bottom: 8px; }
  .slide__text p { font-size: 14px; line-height: 1.55; }
  .slideshow__controls { padding: 14px; gap: 14px; }
  .slideshow__btn { width: 32px; height: 32px; font-size: 18px; }
  .slideshow__dots { gap: 6px; flex-wrap: wrap; justify-content: center; }
  .slideshow__dot { width: 8px; height: 8px; }
  .slideshow__dot.is-active { width: 22px; }

  /* Phone-Mockup in Slides nicht überlaufen */
  .mock-frame--phone { width: 100%; max-width: 220px; }
  .mock-frame--desk  { width: 100%; max-width: 100%; }

  /* Swipe-Hint für Mobile sichtbar */
  .slideshow__stage::after {
    content: "← Wischen oder Pfeile nutzen →";
    position: absolute;
    bottom: 8px; left: 0; right: 0;
    text-align: center;
    font-size: 10.5px;
    color: var(--ink-mute);
    letter-spacing: 0.04em;
    pointer-events: none;
    opacity: 0.7;
    z-index: 2;
  }

  /* Examples-Note kompakter */
  .examples-note { padding: 20px 22px; margin-top: 40px; gap: 10px; }
  .examples-note__icon { font-size: 22px; }
  .examples-note__title { font-size: 1.1rem; margin-bottom: 4px; }
  .examples-note__body p { font-size: 13.5px; }

  /* Tech-Stack: kleinere Pills, fitter Tip */
  .stack { gap: 8px 8px; }
  .stack__item { padding: 8px 14px; font-size: 13px; }
  .tip { padding: 16px 18px; min-height: 0; }
  .tip__title { font-size: 1.05rem; }
  .tip__text { font-size: 13.5px; }

  /* Über mich: Foto nicht riesig */
  .about__photo { max-width: 200px; margin: 0 auto; }
  .about__photo-fallback { font-size: 3rem; }
  .about__text p { font-size: 0.97rem; line-height: 1.65; }
  .about__facts { font-size: 13.5px; }

  /* Kontakt */
  .contact__title { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .contact__text { font-size: 1rem; }
  .contact__channel { padding: 18px 22px; }
  .contact__channel-val { font-size: 1rem; }
}

/* ───── Mobile fine tuning (≤ 520px) ───── */
@media (max-width: 520px) {
  body { font-size: 16px; }
  .nav__logo-text { display: none; }
  .hero__cta .btn { flex: 1 1 100%; }
  .case__grid { gap: 28px; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  /* Demo-App noch knapper */
  .demoapp__main { padding: 16px 14px; }
  .req__body { grid-template-columns: 1fr; }
  /* Slideshow Stage: noch etwas mehr Höhe für lange Slide-Texte */
  .slideshow__stage { min-height: 660px; }
}
