/* Café Mobil Events — Design A2 „Klar mit Pep · Koralle & Marker" */
@import url('fonts/fonts.css');

:root {
  --bg: #fbf6ec; --paper: #ffffff; --ink: #14201a; --muted: #3c4a43; --gray: #6b7570;
  --green: #0f5c3f; --green-dark: #0a3f2b; --green-soft: #e3f1ea; --green-mid: #d8e6dd;
  --yellow: #ffd84d; --coral: #ff6a3d; --coral-soft: #ffd9cc; --sand: #fde9c9; --line: #e6dfd0;
  --danger: #b23b2e; --ok: #0f5c3f;
  --font-h: "Bricolage Grotesque", "Arial Narrow", Arial, sans-serif;
  --font: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
  --r-xl: 22px; --r-lg: 18px; --r-md: 12px; --r-pill: 999px;
  --gutter: 16px; --maxw: 1296px;
  --shadow-card: 0 1px 0 rgba(20,32,26,.06);
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--font); font-size: 16px; line-height: 1.55; }
img, svg { max-width: 100%; display: block; }
a { color: var(--green); }
a:hover { color: var(--green-dark); }
h1, h2, h3, h4, .h { font-family: var(--font-h); letter-spacing: -0.025em; font-weight: 800; line-height: 1.05; margin: 0 0 .5em; }
h1 { font-size: clamp(2.35rem, 6.2vw, 4.85rem); line-height: .98; }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.75rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; font-weight: 700; }
p { margin: 0 0 1em; }
.lead { font-size: 1.2rem; color: var(--muted); max-width: 36em; }
.muted { color: var(--gray); }
.small { font-size: .875rem; }
.mark { background: linear-gradient(transparent 58%, var(--yellow) 58%, var(--yellow) 92%, transparent 92%); padding: 0 .1em; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: 40px 0; }
@media (min-width: 900px) { .container { padding: 0 40px; } .section { padding: 64px 0; } }
@media (min-width: 1200px) { .container { padding: 0 72px; } }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* Header */
.site-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 0; position: relative; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); font-family: var(--font-h); font-weight: 800; font-size: 1.35rem; letter-spacing: -0.02em; }
.brand-icon { width: 38px; height: 38px; border-radius: 12px; background: var(--green); display: grid; place-items: center; flex: none; }
.brand small { font-family: var(--font); font-weight: 600; font-size: .8rem; color: var(--green); margin-left: 2px; }
.nav { display: none; gap: 26px; font-weight: 600; font-size: .95rem; }
.nav a { color: var(--ink); text-decoration: none; }
.nav a:hover { color: var(--green); }
.header-actions { display: none; gap: 10px; align-items: center; }
.nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border: 2px solid var(--ink); background: var(--paper); border-radius: var(--r-md); cursor: pointer; }
.mobile-nav { display: none; flex-direction: column; gap: 4px; padding: 8px 0 16px; border-top: 2px solid var(--ink); }
.mobile-nav a { padding: 12px 4px; min-height: 44px; display: flex; align-items: center; text-decoration: none; color: var(--ink); font-weight: 600; }
.mobile-nav.open { display: flex; }
@media (min-width: 900px) { .nav, .header-actions { display: flex; } .nav-toggle, .mobile-nav { display: none !important; } }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 12px 22px; border-radius: var(--r-pill); font-weight: 700; font-size: 1rem; text-decoration: none; border: 2px solid transparent; cursor: pointer; font-family: var(--font); line-height: 1.2; transition: transform .12s ease, background .12s ease; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--coral); color: var(--ink); }
.btn-primary:hover { background: #ff7e57; color: var(--ink); }
.btn-dark { background: var(--ink); color: var(--bg); }
.btn-dark:hover { background: #0b1511; color: var(--bg); }
.btn-green { background: var(--green); color: var(--bg); }
.btn-green:hover { background: var(--green-dark); color: var(--bg); }
.btn-outline { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--paper); color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); padding-left: 10px; padding-right: 10px; }
.btn-sm { min-height: 40px; padding: 8px 16px; font-size: .9rem; }
.btn-block { width: 100%; }
.btn[disabled], .btn.is-disabled { opacity: .5; pointer-events: none; }

/* Chips / badges */
.chip { display: inline-flex; align-items: center; min-height: 40px; padding: 6px 14px; border: 2px solid var(--ink); border-radius: var(--r-pill); font-size: .875rem; font-weight: 600; color: var(--ink); text-decoration: none; background: transparent; cursor: pointer; font-family: var(--font); }
.chip:hover, .chip.is-on { background: var(--ink); color: var(--bg); }
.badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: var(--r-pill); font-size: .8rem; font-weight: 700; background: var(--green-soft); color: var(--green); }
.badge-dark { background: var(--ink); color: var(--bg); }
.badge-yellow { background: var(--yellow); color: var(--ink); }
.badge-coral { background: var(--coral); color: var(--ink); }
.badge-gray { background: #eee9dd; color: var(--muted); }
.badge-red { background: #fbecea; color: var(--danger); }
.badge .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--coral); }
.tilt { transform: rotate(-2deg); }

/* Cards */
.card { background: var(--paper); border: 2px solid var(--ink); border-radius: var(--r-xl); padding: 22px; }
.card-soft { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 20px; }
.card-lift { position: relative; }
.card-lift::before { content: ""; position: absolute; inset: 12px -10px -10px 10px; background: var(--green); border-radius: var(--r-xl); z-index: 0; }
.card-lift > .card { position: relative; z-index: 1; }
.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr 1fr; }
@media (min-width: 720px) { .grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); } .grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); } .grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); } }

/* Hero */
.hero { position: relative; display: grid; gap: 28px; padding: 24px 0 40px; align-items: center; }
.hero-blob { position: absolute; left: -30px; top: -10px; width: 180px; height: 180px; border-radius: 999px; background: var(--yellow); opacity: .5; filter: blur(2px); pointer-events: none; }
.hero-copy { position: relative; display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.hero-chips { display: flex; gap: 10px; flex-wrap: wrap; }
@media (min-width: 900px) { .hero { grid-template-columns: 1.15fr 1fr; gap: 56px; padding: 48px 0 64px; } .hero-blob { width: 220px; height: 220px; left: -30px; top: -30px; } }

/* Steps (Vollfarb-Kacheln) */
.steps { display: grid; gap: 16px; }
.step { border-radius: var(--r-xl); padding: 26px; display: flex; flex-direction: column; gap: 10px; min-height: 180px; }
.step .step-num { font-family: var(--font-h); font-size: 3.6rem; font-weight: 800; line-height: 1; }
.step h3 { margin: 0; font-size: 1.35rem; }
.step p { margin: 0; font-size: .95rem; }
.step-1 { background: var(--green); color: var(--bg); } .step-1 .num { color: var(--yellow); } .step-1 p { color: #d6e6dd; }
.step-2 { background: var(--yellow); color: var(--ink); } .step-2 .num { color: var(--green); } .step-2 p { color: #4a4a2a; }
.step-3 { background: var(--coral); color: var(--ink); } .step-3 .num { color: var(--bg); } .step-3 p { color: #4a2a20; }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; } .step { min-height: 220px; padding: 30px; } .step .step-num { font-size: 4rem; } }

/* Provider cards */
.pcard { background: var(--paper); border: 2px solid var(--ink); border-radius: 20px; overflow: hidden; display: flex; flex-direction: column; color: var(--ink); text-decoration: none; }
.pcard:hover { color: var(--ink); }
.pcard-media { height: 150px; background: var(--green-mid); position: relative; display: grid; place-items: center; }
.pcard-media img { width: 100%; height: 100%; object-fit: cover; }
.pcard-media .badge { position: absolute; left: 14px; top: 14px; }
.pcard-body { padding: 18px; display: flex; flex-direction: column; gap: 6px; }
.pcard-body h3 { margin: 0; font-size: 1.3rem; }
.pcard-media.tone-2 { background: var(--sand); } .pcard-media.tone-3 { background: var(--coral-soft); }

/* Pricing block */
.pricing { background: var(--ink); color: var(--bg); border-radius: 28px; padding: 32px 24px; display: grid; gap: 28px; }
.pricing .eyebrow { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--yellow); font-weight: 700; }
.pricing h2 { color: var(--bg); }
.pricing p { color: #b9c8c0; }
.plans { display: grid; gap: 14px; }
.plan { border: 2px solid #3a4a42; border-radius: var(--r-lg); padding: 22px; display: flex; flex-direction: column; gap: 6px; }
.plan .price { font-family: var(--font-h); font-size: 2.2rem; font-weight: 800; line-height: 1; }
.plan .sub { font-size: .875rem; color: #b9c8c0; }
.plan.is-hot { background: var(--coral); color: var(--ink); border-color: var(--coral); }
.plan.is-hot .sub, .plan.is-hot .label { color: var(--ink); }
.plan .label { font-size: .8rem; color: #b9c8c0; font-weight: 600; }
@media (min-width: 900px) { .pricing { grid-template-columns: 1.1fr 2fr; padding: 48px 56px; align-items: center; } .plans { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; } .plan.is-hot { transform: translateY(-8px); } }

/* Forms */
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field label, .label { font-size: .85rem; font-weight: 600; color: var(--muted); }
.input, select, textarea, input[type=text], input[type=email], input[type=tel], input[type=password], input[type=number], input[type=date], input[type=url] {
  width: 100%; min-height: 48px; border: 2px solid var(--ink); border-radius: var(--r-md); padding: 12px 14px; font: inherit; font-weight: 500; background: var(--paper); color: var(--ink); }
textarea { min-height: 110px; resize: vertical; }
input:focus, select:focus, textarea:focus, .btn:focus-visible, .chip:focus-visible { outline: 3px solid var(--yellow); outline-offset: 1px; }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; min-height: 44px; }
.check input { width: 22px; height: 22px; margin-top: 2px; flex: none; accent-color: var(--green); }
.form-row { display: grid; gap: 0 14px; }
@media (min-width: 600px) { .form-row { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.help { font-size: .8rem; color: var(--gray); }
.error { color: var(--danger); font-size: .9rem; font-weight: 600; }
.choice-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
.choice { border: 2px solid var(--ink); border-radius: var(--r-md); padding: 14px; min-height: 56px; display: flex; align-items: center; gap: 10px; cursor: pointer; background: var(--paper); font-weight: 600; }
.choice input { position: absolute; opacity: 0; }
.choice.is-on { background: var(--ink); color: var(--bg); }
.honey { position: absolute; left: -9999px; }

/* Anfrage-Stepper */
.stepper { display: flex; gap: 6px; margin-bottom: 18px; }
.stepper span { flex: 1; height: 6px; border-radius: 999px; background: var(--line); }
.stepper span.done { background: var(--green); }
.stepper span.cur { background: var(--coral); }
.fstep { display: none; }
.fstep.active { display: block; }
.fstep h2 { font-size: 1.6rem; }
.step-nav { display: flex; justify-content: space-between; gap: 10px; margin-top: 18px; }

/* Flash / alerts */
.flash { padding: 14px 18px; border-radius: var(--r-md); margin: 12px 0; font-weight: 500; border: 2px solid var(--ink); background: var(--paper); }
.flash-success { background: var(--green-soft); border-color: var(--green); color: var(--green-dark); }
.flash-error { background: #fbecea; border-color: var(--danger); color: var(--danger); }
.flash-info { background: var(--sand); }

/* Tables */
.table { width: 100%; border-collapse: collapse; font-size: .95rem; background: var(--paper); border: 2px solid var(--ink); border-radius: var(--r-md); overflow: hidden; }
.table th, .table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.table th { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gray); background: #f3ede0; }
.table tr:last-child td { border-bottom: 0; }
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.num { text-align: right; font-variant-numeric: tabular-nums; }

/* Lists */
.list-plain { list-style: none; padding: 0; margin: 0; }
.list-plain li { padding: 12px 0; border-bottom: 1px solid var(--line); }
.list-check { list-style: none; padding: 0; margin: 0 0 1em; }
.list-check li { padding-left: 30px; position: relative; margin-bottom: 8px; }
.list-check li::before { content: ""; position: absolute; left: 0; top: 4px; width: 18px; height: 18px; border-radius: 999px; background: var(--green); mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'><path d='M5 12l5 5L20 7'/></svg>") center/14px no-repeat, linear-gradient(#000 0 0); -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'><path d='M5 12l5 5L20 7'/></svg>") center/14px no-repeat, linear-gradient(#000 0 0); }
.split { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.stack { display: flex; flex-direction: column; gap: 12px; }
.row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.faq details { border-bottom: 1px solid var(--line); padding: 8px 0; }
.faq summary { cursor: pointer; font-weight: 700; padding: 10px 0; min-height: 44px; display: flex; align-items: center; }
.faq details p { color: var(--muted); }
.prose { max-width: 46em; }
.prose h2 { font-size: 1.5rem; margin-top: 1.6em; }
.prose h3 { font-size: 1.15rem; margin-top: 1.4em; }
.legal-marker { background: var(--yellow); padding: 0 6px; font-weight: 700; }
.meter { height: 10px; background: var(--line); border-radius: 999px; overflow: hidden; }
.meter i { display: block; height: 100%; background: var(--green); }
.kpi { display: flex; flex-direction: column; gap: 2px; }
.kpi b { font-family: var(--font-h); font-size: 2rem; font-weight: 800; line-height: 1; }
.kpi span { font-size: .8rem; color: var(--gray); }
.cost-tag { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 999px; background: var(--yellow); font-weight: 700; font-size: .8rem; }
.cost-tag.hot { background: var(--coral); }

/* Footer */
.site-footer { margin-top: 48px; padding: 32px 0; border-top: 2px solid var(--ink); font-size: .9rem; color: var(--muted); }
.site-footer .cols { display: grid; gap: 20px; }
.site-footer a { color: var(--ink); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { padding: 4px 0; }
@media (min-width: 720px) { .site-footer .cols { grid-template-columns: 2fr 1fr 1fr 1fr; } }

/* Dashboard / Innenseiten: ruhig, keine Marker-Effekte */
.page-head { padding: 20px 0 10px; }
.page-head h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
.tabs { display: flex; gap: 4px; flex-wrap: wrap; border-bottom: 2px solid var(--ink); margin-bottom: 20px; }
.tabs a { padding: 12px 14px; min-height: 44px; display: inline-flex; align-items: center; text-decoration: none; color: var(--muted); font-weight: 600; border-bottom: 3px solid transparent; margin-bottom: -2px; }
.tabs a.is-on, .tabs a:hover { color: var(--ink); border-bottom-color: var(--coral); }
.notice { padding: 12px 14px; border-radius: var(--r-md); background: var(--sand); font-size: .9rem; }
.hr { border: 0; border-top: 1px solid var(--line); margin: 20px 0; }
.illu { width: 100%; height: auto; }
