/* ============================================================
   MEISTERWERK — Hausservice, Entrümpelung & Renovierung, Köln
   Design system v2 — minimal, typografie-getrieben, scroll-driven
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,400;14..32,500;14..32,600;14..32,700;14..32,800&display=swap');

:root{
  /* --- color tokens (light) --- */
  --bg:            #fbfbfd;
  --bg-raised:     #ffffff;
  --bg-sunken:     #f5f5f7;
  --ink:           #1d1d1f;
  --ink-soft:      #6e6e73;
  --ink-faint:     #86868b;
  --border:        #d2d2d7;
  --border-strong: #b8b8bd;

  --green-900:     #12271a;
  --green-700:     #1c4a2b;
  --green-600:     #2c6e3f;
  --green-500:     #3f8a52;
  --green-100:     #e4efe4;

  --gold-600:      #b3792f;
  --gold-500:      #c98a3a;
  --gold-100:      #f2e2c4;

  --danger:        #d0453c;

  --focus:         #2c6e3f;

  /* semantic */
  --accent:        var(--green-600);
  --accent-strong: var(--green-700);
  --accent-soft:   var(--green-100);
  --on-accent:     #f6f7ef;

  --ink-invert:    #ffffff;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.05), 0 1px 1px rgba(0,0,0,.03);
  --shadow-md: 0 12px 30px rgba(0,0,0,.08), 0 2px 8px rgba(0,0,0,.05);
  --shadow-lg: 0 30px 80px rgba(0,0,0,.16), 0 8px 20px rgba(0,0,0,.08);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --container: 1160px;
  --container-wide: 1320px;
}

@media (prefers-color-scheme: dark){
  :root:not([data-theme="light"]){
    --bg:            #000000;
    --bg-raised:     #121214;
    --bg-sunken:     #1c1c1e;
    --ink:           #f5f5f7;
    --ink-soft:      #a1a1a6;
    --ink-faint:     #6e6e73;
    --border:        #3a3a3c;
    --border-strong: #4c4c4e;

    --green-100:     #1a2b1f;
    --green-500:     #4fa763;
    --green-600:     #63bf76;
    --green-700:     #86d494;
    --green-900:     #d9ecce;

    --gold-100:      #3a2f18;
    --gold-500:      #d9a45a;
    --gold-600:      #e6b876;

    --accent:        var(--green-600);
    --accent-strong: var(--green-700);
    --accent-soft:   var(--green-100);
    --on-accent:     #06120a;

    --ink-invert:    #000000;

    --shadow-md: 0 12px 30px rgba(0,0,0,.55), 0 2px 8px rgba(0,0,0,.35);
    --shadow-lg: 0 30px 80px rgba(0,0,0,.7), 0 8px 20px rgba(0,0,0,.4);
  }
}
:root[data-theme="dark"]{
  --bg:            #000000;
  --bg-raised:     #121214;
  --bg-sunken:     #1c1c1e;
  --ink:           #f5f5f7;
  --ink-soft:      #a1a1a6;
  --ink-faint:     #6e6e73;
  --border:        #3a3a3c;
  --border-strong: #4c4c4e;

  --green-100:     #1a2b1f;
  --green-500:     #4fa763;
  --green-600:     #63bf76;
  --green-700:     #86d494;
  --green-900:     #d9ecce;

  --gold-100:      #3a2f18;
  --gold-500:      #d9a45a;
  --gold-600:      #e6b876;

  --accent:        var(--green-600);
  --accent-strong: var(--green-700);
  --accent-soft:   var(--green-100);
  --on-accent:     #06120a;

  --ink-invert:    #000000;
}

*,*::before,*::after{ box-sizing: border-box; }

html{ background: var(--bg); }
@media (prefers-reduced-motion: no-preference){
  html{ scroll-behavior: smooth; }
}

body.mw-body{
  margin:0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  padding-inline: 20px;
}

.mw-shell{ max-width: var(--container); margin-inline:auto; }
.mw-wide{ max-width: var(--container-wide); margin-inline:auto; }

h1,h2,h3,h4{
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0 0 .5em;
  font-weight: 700;
  text-wrap: balance;
  letter-spacing: -.03em;
}
h1{ font-size: clamp(2.6rem, 1.6rem + 4.6vw, 5.6rem); font-weight: 700; line-height: 1.02; }
h2{ font-size: clamp(2rem, 1.4rem + 2.8vw, 3.4rem); line-height: 1.06; }
h3{ font-size: 1.3rem; line-height: 1.3; letter-spacing:-.01em; }
p{ margin: 0 0 1em; color: var(--ink-soft); max-width: 65ch; }
.lead{ font-size: clamp(1.08rem, 1rem + .5vw, 1.35rem); color: var(--ink-soft); line-height:1.5; }
a{ color: var(--accent-strong); text-decoration-thickness: 1.5px; text-underline-offset: 2px; }
a:focus-visible, button:focus-visible, .btn:focus-visible, input:focus-visible, textarea:focus-visible{
  outline: 3px solid var(--focus); outline-offset: 2px; border-radius: 4px;
}
img{ max-width:100%; display:block; }

.eyebrow{
  display:inline-flex; align-items:center; gap:.5em;
  font-family: var(--font-body); font-weight:600; font-size:.8rem;
  letter-spacing:.08em; text-transform:uppercase; color: var(--ink-faint);
  margin: 0 0 .9em;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.55em;
  font-family: var(--font-body); font-weight:600; font-size:1rem;
  padding: .9em 1.7em; border-radius: 999px;
  border: 1.5px solid transparent; cursor:pointer; text-decoration:none;
  letter-spacing:-.005em; white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, border-color .15s ease, color .15s ease;
}
.btn-primary{ background: var(--accent-strong); color: var(--on-accent); box-shadow: var(--shadow-sm); }
.btn-primary:hover{ box-shadow: var(--shadow-md); transform: translateY(-1px); background: var(--accent); }
.btn-ghost{ background: transparent; border-color: var(--border-strong); color: var(--ink); }
.btn-ghost:hover{ border-color: var(--accent-strong); color: var(--accent-strong); }
.btn-ghost-light{ background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.5); color: #fff; backdrop-filter: blur(6px); }
.btn-ghost-light:hover{ background: rgba(255,255,255,.2); border-color:#fff; }
.btn-light{ background: var(--bg-raised); color: var(--ink); box-shadow: var(--shadow-sm); border-color: var(--border); }
.btn-light:hover{ box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn-block{ width:100%; }
.btn-sm{ padding:.6em 1.2em; font-size:.85rem; }

/* ---------- Header / Nav ---------- */
.mw-header{
  position: sticky; top: env(safe-area-inset-top, 0px); z-index: 80;
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  backdrop-filter: blur(16px) saturate(1.6);
  border-bottom: 1px solid var(--border);
}
.mw-nav{
  display:flex; align-items:center; justify-content:space-between;
  padding-block: 10px; gap: 20px;
  min-height: 52px;
}
.brand{ display:flex; align-items:center; gap:.6em; text-decoration:none; color:var(--ink); flex-shrink:0; }
.brand svg{ width:34px; height:34px; flex-shrink:0; }
.brand-text{ display:flex; flex-direction:column; line-height:1.05; }
.brand-name{ font-family: var(--font-display); font-weight:700; font-size:1.05rem; letter-spacing:-.01em; }
.brand-tag{ font-size:.6rem; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color: var(--ink-faint); }
.brand-logo{ height:46px; width:auto; display:block; }
.brand-logo-footer{ height:38px; }
@media (max-width:480px){ .brand-logo{ height:36px; } }

.nav-links{ display:flex; align-items:center; gap: 4px; list-style:none; margin:0; padding:0; }
.nav-links a{
  display:block; padding: .5em .8em; border-radius: 999px;
  color: var(--ink-soft); text-decoration:none; font-weight:500; font-size:.9rem;
  white-space:nowrap; transition: color .15s ease, background-color .15s ease;
}
.nav-links a:hover{ color: var(--accent-strong); background: var(--accent-soft); }
.nav-links a[aria-current="page"]{ color: var(--accent-strong); background: var(--accent-soft); }

.nav-right{ display:flex; align-items:center; gap:.6em; flex-shrink:0; }
.nav-right .btn-primary{ padding: .62em 1.25em; font-size:.85rem; }
.nav-phone{ display:flex; align-items:center; gap:.5em; font-weight:500; color:var(--ink-soft); text-decoration:none; font-size:.88rem; }
.nav-phone svg{ width:16px; height:16px; color: var(--ink); flex-shrink:0; }
.nav-phone:hover{ color:var(--ink); }

.nav-toggle{ display:none; }
.nav-toggle-label{
  display:none; cursor:pointer; padding:8px; border-radius: var(--radius-sm);
  border:1.5px solid var(--border-strong); background: var(--bg-raised);
}
.nav-toggle-label svg{ width:20px; height:20px; display:block; }

@media (max-width: 860px){
  .nav-links{
    position:absolute; top: 100%; left:0; right:0;
    flex-direction:column; align-items:stretch; gap:2px;
    background: var(--bg-raised); border-bottom:1px solid var(--border);
    padding: 10px 20px 18px; box-shadow: var(--shadow-md);
    max-height:0; overflow:hidden; opacity:0;
    transition: max-height .25s ease, opacity .2s ease;
  }
  .nav-links a{ padding:.85em 1em; border-radius: var(--radius-sm); }
  .nav-toggle:checked ~ .nav-links{ max-height: 420px; opacity:1; }
  .nav-toggle-label{ display:inline-flex; }
  .nav-phone-text{ display:none; }
}
@media (max-width: 480px){
  .brand-tag{ display:none; }
  .nav-right .btn-primary{ padding:.7em 1.1em; font-size:.8rem; }
}

/* ---------- Legacy full-bleed hero (kept for potential reuse) ---------- */
@keyframes heroUp{ from{ opacity:0; transform: translateY(14px); } to{ opacity:1; transform:none; } }

.hero-full{
  position:relative;
  width:100vw; margin-left:calc(50% - 50vw); margin-right:calc(50% - 50vw);
  overflow:hidden; isolation:isolate;
  color:#f5f6f0;
}
.hero-full .bg{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; object-position: center 38%;
  transform: scale(1.02);
}
.hero-full::before{
  content:""; position:absolute; inset:0; z-index:1;
  background:
    linear-gradient(270deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.72) 26%, rgba(0,0,0,.28) 52%, transparent 66%),
    linear-gradient(0deg, rgba(0,0,0,.4) 0%, transparent 34%);
}
.hero-full-inner{
  position:relative; z-index:2; max-width: var(--container); margin-inline:auto;
  padding: 108px 20px 96px;
  display:flex; justify-content:flex-end;
}
@media (max-width:860px){
  .hero-full-inner{ padding: 180px 20px 40px; }
  .hero-text{ max-width:100%; }
  .hero-full .bg{ object-position: 28% 35%; }
}
.hero-text{ max-width: 460px; text-align:left; }
.hero-full h1{ color:#fdfdfd; max-width: 15ch; }
.hero-full p.lead{ color: rgba(255,255,255,.86); }
.hero-text > *{ animation: heroUp .6s ease both; }
.hero-text > *:nth-child(2){ animation-delay:.06s; }
.hero-text > *:nth-child(3){ animation-delay:.12s; }
.hero-text > *:nth-child(4){ animation-delay:.18s; }

.hero-actions{ display:flex; flex-wrap:wrap; gap:12px; margin-top: 1.7em; align-items:center; }
.hero-actions.center{ justify-content:center; }

/* ---------- Stage hero (Text steht ÜBER dem Foto, damit das Bild – inkl. Kölner Dom –
   auf jedem Gerät vollständig sichtbar bleibt, ohne Overlay oder Abdunkelung) ---------- */
.stage-hero{ padding-top: 8px; }

.stage-hero-head{
  max-width: 760px; margin: 0 auto 40px; padding-inline: 20px;
  text-align:center;
}
.stage-hero-logo{
  height: 72px; width:auto; margin: 0 auto 22px;
}
@media (max-width:700px){
  .stage-hero-logo{ height: 54px; margin-bottom:16px; }
}
.stage-hero-head .eyebrow{
  color: var(--accent-strong); font-size: clamp(.95rem, .85rem + .4vw, 1.15rem);
  font-weight:700; letter-spacing:.06em; margin-bottom:.15em;
}
.stage-hero-head h1{ letter-spacing:-.035em; margin-bottom:.32em; text-wrap:balance; }
.stage-hero-head .lead{ margin-inline:auto; max-width:56ch; }
.stage-hero-head .hero-actions{ justify-content:center; margin-top:1.7em; }
@media (max-width:700px){
  .stage-hero-head{ margin-bottom:28px; }
}

.stage-media{
  width:100vw; margin-left:calc(50% - 50vw); margin-right:calc(50% - 50vw);
  padding-inline: 16px; margin-bottom: 8px;
}
.stage-media-inner{
  position: relative;
  max-width: 1400px; margin-inline:auto; overflow:hidden;
  border-radius: var(--stage-radius, 44px);
  transform: scale(var(--stage-scale, .92));
  box-shadow: var(--shadow-lg);
  transition: border-radius .05s linear;
  will-change: transform, border-radius;
}
.stage-media-inner img{
  width:100%; height: clamp(320px, 46vw, 620px); object-fit: cover; object-position: center 42%;
  display:block;
}
@media (max-width:700px){
  .stage-media-inner img{ height: clamp(240px, 78vw, 420px); object-position: 34% 40%; }
}

/* ---------- Big stat row ---------- */
.stat-row{
  display:grid; grid-template-columns: repeat(4,1fr); gap: 24px;
  padding: 56px 0; border-top:1px solid var(--border); border-bottom:1px solid var(--border);
}
@media (max-width:860px){ .stat-row{ grid-template-columns: repeat(2,1fr); row-gap:36px; } }
.stat{ text-align:center; }
.stat-num{
  font-family: var(--font-display); font-weight:700; letter-spacing:-.03em;
  font-size: clamp(2.2rem, 1.6rem + 2vw, 3.4rem); line-height:1; color: var(--ink);
  display:block; margin-bottom:.3em;
}
.stat-label{ font-size:.85rem; color: var(--ink-soft); max-width:18ch; margin-inline:auto; }

/* ---------- Full-bleed feature sections ---------- */
.feature{
  width:100vw; margin-left:calc(50% - 50vw); margin-right:calc(50% - 50vw);
  padding: 108px 20px;
}
.feature.is-light{ background: var(--accent-soft); }
.feature.is-dark{ background: #000; color: #f5f5f7; }
.feature.is-dark .eyebrow{ color: rgba(245,245,247,.55); }
.feature.is-dark h2{ color:#fff; }
.feature.is-dark p{ color: rgba(245,245,247,.72); }
.feature.is-dark .feature-icon{ background: rgba(79,167,99,.16); color: var(--green-500); }
.feature.is-dark .btn-primary{ background: var(--green-500); color:#06120a; }
.feature.is-dark .btn-primary:hover{ background: var(--green-600); }
.feature.is-dark .btn-ghost{ border-color: rgba(255,255,255,.4); color:#fff; }
.feature.is-dark .btn-ghost:hover{ border-color:#fff; }

.feature-inner{ max-width: 640px; margin-inline:auto; text-align:center; }
.feature-icon{
  width:88px; height:88px; margin:0 auto 30px; border-radius: 26px;
  background: var(--bg-raised); color: var(--accent-strong);
  display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow-sm);
}
.feature-icon svg{ width:42px; height:42px; }
.feature-icon img{ width:50px; height:50px; object-fit:contain; }
.feature h2{ margin-bottom:.4em; }
.feature .lead{ margin-inline:auto; }
.feature .btn{ margin-top: 1.4em; }

/* ---------- Sections ---------- */
.section{ padding-block: 100px; }
.section-tight{ padding-block: 64px; }
.section-head{ max-width: 62ch; margin-bottom: 40px; }
.section-head.center{ margin-inline:auto; text-align:center; }
.section-split{ display:grid; grid-template-columns: .9fr 1.1fr; gap:56px; align-items:start; }
@media (max-width:860px){ .section-split{ grid-template-columns:1fr; } }
.bg-sunken{ background: var(--bg-sunken); border-radius: var(--radius-lg); }
.bg-raised{ background: var(--bg-raised); }

/* ---------- Cards / grids ---------- */
.card-grid{ display:grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
@media (max-width: 560px){ .card-grid{ grid-template-columns: 1fr; } }

.services-grid-5{
  display:grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
@media (max-width: 1080px){ .services-grid-5{ grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px){ .services-grid-5{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px){ .services-grid-5{ grid-template-columns: 1fr; } }

.service-card{
  display:flex; flex-direction:column; gap: .9em;
  background: var(--bg-raised); border:1px solid var(--border);
  border-radius: var(--radius-md); padding: 26px 22px;
  text-decoration:none; color:inherit;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .15s ease, transform .15s ease, border-color .15s ease;
}
.service-card:hover{ box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--border-strong); }
.service-card .icon{
  width:46px; height:46px; border-radius: 13px;
  background: var(--bg-sunken); color: var(--accent-strong);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.service-card .icon svg{ width:24px; height:24px; }
.service-card h3{ margin:0; font-size: 1.06rem; letter-spacing:-.01em; }
.service-card p{ margin:0; font-size:.92rem; }
.service-card .go{ margin-top:auto; font-weight:600; font-size:.85rem; color: var(--ink); display:flex; align-items:center; gap:.3em; }

/* ---------- Steps ---------- */
.steps{ display:grid; grid-template-columns: repeat(4,1fr); gap: 22px; counter-reset: step; }
@media (max-width: 860px){ .steps{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .steps{ grid-template-columns: 1fr; } }
.step{ position:relative; padding-top: 6px; }
.step-num{
  font-family: var(--font-display); font-weight:700; font-size:1.5rem;
  color: var(--ink-faint); display:block; margin-bottom:.35em; letter-spacing:-.02em;
}
.step h3{ font-size:1.02rem; margin-bottom:.3em; }
.step p{ font-size:.9rem; margin:0; }

/* ---------- Feature list ---------- */
.check-list{ list-style:none; margin:0 0 1.2em; padding:0; display:flex; flex-direction:column; gap:.6em; }
.check-list li{ display:flex; gap:.65em; align-items:flex-start; color: var(--ink-soft); font-size:.97rem; }
.check-list svg{ width:19px; height:19px; color: var(--accent-strong); flex-shrink:0; margin-top:.16em; }

/* ---------- Callout / CTA band ---------- */
.cta-band{
  background: linear-gradient(135deg, var(--green-700), var(--green-600)); color: #f6f7ef; border-radius: var(--radius-lg);
  padding: 56px 48px; display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap;
}
.cta-band h2, .cta-band p{ color: #f6f7ef; }
.cta-band p{ opacity:.82; margin:0; }
.cta-band .btn-primary{ background: #fff; color: var(--green-700); }
.cta-band .btn-primary:hover{ opacity:.9; background:#fff; }

/* ---------- Contact ---------- */
.contact-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 700px){ .contact-grid{ grid-template-columns: 1fr; } }
.contact-card{
  background: var(--bg-raised); border:1px solid var(--border); border-radius: var(--radius-md);
  padding: 26px; display:flex; flex-direction:column; gap: .5em;
}
.contact-card .icon{ width:40px;height:40px;border-radius:12px; background: var(--bg-sunken); color: var(--accent-strong); display:flex;align-items:center;justify-content:center; margin-bottom:.4em; }
.contact-card .icon svg{ width:22px;height:22px; }
.contact-card a.big{ font-family: var(--font-display); font-size:1.3rem; font-weight:700; color: var(--ink); text-decoration:none; letter-spacing:-.02em; }
.contact-card a.big:hover{ color: var(--accent-strong); }

.hours-table{ width:100%; border-collapse: collapse; font-size:.94rem; }
.hours-table td{ padding: .5em 0; border-bottom: 1px solid var(--border); color: var(--ink-soft); }
.hours-table td:last-child{ text-align:right; font-weight:600; color: var(--ink); }
.hours-table tr:last-child td{ border-bottom:none; }

.placeholder{ color: var(--gold-600); font-style: italic; }

/* ---------- Contact form ---------- */
.form-card{
  background: var(--bg-raised); border:1px solid var(--border); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-sm);
}
@media (max-width:600px){ .form-card{ padding: 26px 20px; } }

.form-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 20px 24px; }
@media (max-width:700px){ .form-grid{ grid-template-columns: 1fr; } }
.field{ display:flex; flex-direction:column; gap: .5em; }
.field.span-2{ grid-column: 1 / -1; }
.field label{ font-size:.85rem; font-weight:600; color: var(--ink); }
.field .opt{ font-weight:400; color: var(--ink-faint); }

.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field select,
.field textarea{
  width:100%; font-family: var(--font-body); font-size:.98rem; color: var(--ink);
  background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: .85em 1em; transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea{ resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color: var(--accent-strong);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.field select{ appearance:none; -webkit-appearance:none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236e6e73' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position: right 1em center; background-size:16px;
  padding-right: 2.6em;
}

.file-drop{
  display:flex; align-items:center; gap:14px; flex-wrap:wrap;
  border: 1.5px dashed var(--border-strong); border-radius: var(--radius-sm);
  padding: 1.1em 1.2em; cursor:pointer; background: var(--bg-sunken);
  transition: border-color .15s ease, background-color .15s ease;
}
.file-drop:hover{ border-color: var(--accent-strong); background: var(--accent-soft); }
.file-drop input[type="file"]{ position:absolute; width:1px; height:1px; opacity:0; overflow:hidden; }
.file-drop .file-drop-icon{
  width:38px; height:38px; border-radius:11px; flex-shrink:0;
  background: var(--bg-raised); color: var(--accent-strong);
  display:flex; align-items:center; justify-content:center; box-shadow: var(--shadow-sm);
}
.file-drop .file-drop-icon svg{ width:19px; height:19px; }
.file-drop-text{ font-size:.92rem; color: var(--ink-soft); }
.file-drop-text strong{ color: var(--ink); font-weight:600; }
.file-list{ list-style:none; margin:.7em 0 0; padding:0; display:flex; flex-direction:column; gap:.35em; }
.file-list li{
  display:flex; align-items:center; justify-content:space-between; gap:1em;
  font-size:.85rem; color: var(--ink-soft);
  background: var(--bg-sunken); border-radius: 8px; padding: .45em .8em;
}
.file-list .fsize{ color: var(--ink-faint); flex-shrink:0; }

/* Honeypot: für Menschen unsichtbar, Bots füllen es trotzdem oft aus */
.hp-field{ position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }

.form-consent{ display:flex; align-items:flex-start; gap:.7em; font-size:.86rem; color: var(--ink-soft); }
.form-consent input{ margin-top:.3em; flex-shrink:0; width:17px; height:17px; accent-color: var(--accent-strong); }
.form-consent a{ color: var(--accent-strong); }

.form-alert{
  display:none; align-items:flex-start; gap:.7em;
  background: color-mix(in srgb, var(--danger) 10%, var(--bg-raised));
  border:1px solid color-mix(in srgb, var(--danger) 35%, var(--border));
  color: var(--danger); border-radius: var(--radius-sm);
  padding: .9em 1.1em; font-size:.9rem; margin-bottom: 24px;
}
.form-alert.is-visible{ display:flex; }
.form-note{ font-size:.82rem; color: var(--ink-faint); margin-top:6px; }

/* ---------- Footer ---------- */
.mw-footer{ border-top:1px solid var(--border); margin-top: 60px; padding-block: 44px 30px; }
.footer-grid{ display:grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 30px; }
@media (max-width: 780px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px){ .footer-grid{ grid-template-columns: 1fr; } }
.footer-grid h4{ font-family: var(--font-body); font-size:.72rem; letter-spacing:.08em; text-transform:uppercase; color: var(--ink-faint); margin-bottom: .9em; font-weight:600; }
.footer-links{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:.55em; }
.footer-links a{ color: var(--ink-soft); text-decoration:none; font-size:.87rem; }
.footer-links a:hover{ color: var(--ink); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; gap:16px; flex-wrap:wrap; padding-top:22px; border-top:1px solid var(--border); font-size:.78rem; color: var(--ink-faint); }
.footer-bottom a{ color: var(--ink-faint); }

.legal-note{
  background: var(--bg-sunken); border:1px solid var(--border); border-radius: var(--radius-md);
  padding: 16px 20px; font-size:.9rem; color: var(--ink-soft); margin-bottom: 34px;
}
.legal-note strong{ color: var(--ink); }

.prose h3{ margin-top: 1.6em; }
.prose{ max-width: 72ch; }

/* ---------- Scroll reveal ---------- */
/* Hidden-until-revealed state only applies once JS has confirmed it can
   reveal it again (html.js-reveal, set by an inline script). This way,
   content stays fully visible if JavaScript is blocked or fails. */
html.js-reveal .reveal{
  opacity:0; transform: translateY(30px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1);
}
html.js-reveal .reveal.is-visible{ opacity:1; transform:none; }

html.js-reveal .reveal-stagger > *{
  opacity:0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.16,1,.3,1);
}
html.js-reveal .reveal-stagger.is-visible > *{ opacity:1; transform:none; }
html.js-reveal .reveal-stagger.is-visible > *:nth-child(1){ transition-delay: .02s; }
html.js-reveal .reveal-stagger.is-visible > *:nth-child(2){ transition-delay: .09s; }
html.js-reveal .reveal-stagger.is-visible > *:nth-child(3){ transition-delay: .16s; }
html.js-reveal .reveal-stagger.is-visible > *:nth-child(4){ transition-delay: .23s; }
html.js-reveal .reveal-stagger.is-visible > *:nth-child(5){ transition-delay: .30s; }

html.js-reveal .stat-num{
  opacity:0; transform: translateY(14px);
  transition: opacity .5s ease, transform .5s ease;
}
html.js-reveal .stat-row.is-visible .stat-num{ opacity:1; transform:none; }
html.js-reveal .stat-row.is-visible .stat:nth-child(1) .stat-num{ transition-delay:.02s; }
html.js-reveal .stat-row.is-visible .stat:nth-child(2) .stat-num{ transition-delay:.08s; }
html.js-reveal .stat-row.is-visible .stat:nth-child(3) .stat-num{ transition-delay:.14s; }
html.js-reveal .stat-row.is-visible .stat:nth-child(4) .stat-num{ transition-delay:.20s; }

/* Thin top scroll-progress line (subtle, no mascot) */
.scroll-progress{
  position: fixed; top:0; left:0; right:0; height:2px; z-index: 90;
  background: transparent; pointer-events:none;
}
.scroll-progress-bar{
  height:100%; width:0%; background: var(--accent-strong);
  transition: width .05s linear;
}

/* ---------- Kundengruppen / Menschen ---------- */
.audience-grid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg); overflow:hidden;
}
@media (max-width: 780px){ .audience-grid{ grid-template-columns: 1fr; } }
.audience-card{
  background: var(--bg-raised);
  padding: 40px 30px; display:flex; flex-direction:column; gap:1em;
}
.audience-card .avatar{
  width:48px; height:48px; border-radius:50%;
  background: var(--accent-soft); color: var(--accent-strong);
  display:flex; align-items:center; justify-content:center;
}
.audience-card .avatar svg{ width:24px; height:24px; }
.audience-card h3{ margin:0; font-size:1.15rem; }
.audience-card p{ margin:0; font-size:.93rem; color: var(--ink-soft); }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal, .reveal-stagger > *, .stat-num{ opacity:1 !important; transform:none !important; transition:none !important; }
  .stage-media-inner{ transform:none !important; }
}
