/* ==========================================================================
   Kassanova – kassanova.at
   Design-Tokens aus dem Markenkonzept „Die Münze" (Holzer Leibnitz)
   ========================================================================== */

@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/archivo-latin.woff2") format("woff2");
}

:root {
  --weinberg: #22513A;
  --keller: #163525;
  --keller-2: #0F261B;
  --messing: #A87A22;
  --messing-dunkel: #8A6318;
  --messing-hell: #D9B96E;
  --kalk: #E2E7DE;
  --tinte: #14201A;
  --papier: #F6F7F3;
  --weiss: #FFFFFF;
  --linie: #CDD6CF;
  --text: var(--tinte);
  --text-2: #4A5A50;
  --text-3: #6F7F75;
  --on-dark: #E2E7DE;
  --on-dark-2: #AEBBB2;

  --font: "Archivo", "Segoe UI", Arial, Helvetica, sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --shadow-1: 0 1px 2px rgba(20, 32, 26, .06), 0 4px 16px rgba(20, 32, 26, .06);
  --shadow-2: 0 2px 6px rgba(20, 32, 26, .08), 0 16px 40px rgba(20, 32, 26, .12);
  --container: 1200px;
  --gutter: 20px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --t: 180ms;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem; /* 17px */
  line-height: 1.6;
  color: var(--text);
  background: var(--papier);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
[hidden] { display: none !important; }
img { height: auto; }
a { color: var(--weinberg); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--keller); }
h1, h2, h3, h4 { margin: 0; line-height: 1.12; font-weight: 800; letter-spacing: -.01em; color: var(--keller); }
h1 { font-size: clamp(2.125rem, 5.2vw, 3.5rem); font-weight: 900; letter-spacing: -.02em; }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }
button { font: inherit; }
table { border-collapse: collapse; width: 100%; }
:focus-visible { outline: 3px solid var(--messing); outline-offset: 3px; border-radius: 4px; }
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 1000;
  background: var(--keller); color: #fff; padding: 10px 16px; border-radius: var(--radius-sm);
}
.skip-link:focus { top: 12px; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0; padding: 0; margin: -1px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0ms !important; animation-duration: 0ms !important; }
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 8vw, 104px); }
.section--tight { padding-block: clamp(40px, 5vw, 64px); }
.section--dark { background: var(--keller); color: var(--on-dark); }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: var(--on-dark); }
.section--green { background: var(--weinberg); color: var(--on-dark); }
.section--green h2, .section--green h3 { color: #fff; }
.section--kalk { background: var(--kalk); }
.section--white { background: var(--weiss); }
.section-head { max-width: 720px; margin-bottom: clamp(32px, 4vw, 48px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { margin: 14px 0 0; font-size: 1.125rem; color: var(--text-2); }
.section--dark .section-head p, .section--green .section-head p { color: var(--on-dark); }
.eyebrow {
  display: inline-block; margin-bottom: 14px;
  font-size: .8125rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--messing);
}
.section--dark .eyebrow, .section--green .eyebrow { color: var(--messing-hell); }
.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); }
@media (min-width: 900px) {
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 12px 24px;
  border-radius: var(--radius-pill); border: 2px solid transparent;
  font-weight: 700; font-size: 1.0625rem; line-height: 1.2; text-decoration: none; cursor: pointer;
  transition: background-color var(--t) var(--ease), color var(--t) var(--ease), transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
  touch-action: manipulation; white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; flex: none; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--messing); color: #fff; box-shadow: 0 6px 18px rgba(168, 122, 34, .28); }
.btn--primary:hover { background: var(--messing-dunkel); color: #fff; box-shadow: 0 8px 24px rgba(168, 122, 34, .36); }
.btn--dark { background: var(--keller); color: #fff; }
.btn--dark:hover { background: var(--keller-2); color: #fff; }
.btn--outline { background: transparent; color: var(--keller); border-color: var(--keller); }
.btn--outline:hover { background: var(--keller); color: #fff; }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(226, 231, 222, .55); }
.btn--outline-light:hover { background: rgba(255, 255, 255, .1); border-color: #fff; color: #fff; }
.btn--lg { min-height: 60px; padding: 14px 32px; font-size: 1.125rem; }
.btn--sm { min-height: 44px; padding: 8px 18px; font-size: .9375rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246, 247, 243, .92);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid rgba(20, 32, 26, .08);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 72px; }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { height: 40px; width: auto; }
.nav { display: none; align-items: center; gap: 4px; }
.nav a {
  display: inline-flex; align-items: center; min-height: 44px; padding: 8px 14px;
  border-radius: var(--radius-pill); color: var(--keller); font-weight: 600; text-decoration: none;
  transition: background-color var(--t) var(--ease);
}
.nav a:hover { background: rgba(34, 81, 58, .09); }
.nav a[aria-current="page"] { background: var(--kalk); color: var(--keller); }
.header-cta { display: none; }
.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border: 0; border-radius: var(--radius-sm); background: transparent; color: var(--keller); cursor: pointer;
}
.nav-toggle svg { width: 26px; height: 26px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }
.mobile-nav {
  display: none; border-top: 1px solid rgba(20, 32, 26, .08); background: var(--papier);
}
.mobile-nav.is-open { display: block; }
.mobile-nav ul { list-style: none; display: grid; gap: 4px; padding: 12px 0 16px; }
.mobile-nav a {
  display: flex; align-items: center; min-height: 48px; padding: 10px 14px; border-radius: var(--radius-sm);
  font-weight: 600; text-decoration: none; color: var(--keller); font-size: 1.125rem;
}
.mobile-nav a[aria-current="page"] { background: var(--kalk); }
.mobile-nav .btn { width: 100%; margin-top: 8px; }
@media (min-width: 900px) {
  .nav { display: flex; }
  .header-cta { display: inline-flex; }
  .nav-toggle, .mobile-nav { display: none !important; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--keller); color: var(--on-dark);
  background-image:
    radial-gradient(900px 600px at 85% 20%, rgba(34, 81, 58, .9), transparent 65%),
    radial-gradient(700px 500px at 10% 90%, rgba(34, 81, 58, .55), transparent 60%);
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 4px;
  background: linear-gradient(90deg, var(--messing), var(--messing-hell));
}
.hero__inner {
  display: grid; gap: 32px; align-items: center;
  padding-block: clamp(48px, 7vw, 96px);
}
.hero h1 { color: #fff; }
.hero h1 em { font-style: normal; color: var(--messing-hell); }
.hero__lead { font-size: clamp(1.125rem, 1.6vw, 1.3125rem); color: var(--on-dark); max-width: 560px; margin: 20px 0 28px; }
.hero__media { position: relative; }
.hero__media img { width: 100%; max-width: 620px; margin-inline: auto; filter: drop-shadow(0 30px 40px rgba(0, 0, 0, .45)); }
.hero__facts { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 28px; padding: 0; }
.hero__facts li { display: inline-flex; align-items: center; gap: 8px; font-size: .9375rem; font-weight: 600; color: var(--on-dark); }
.hero__facts svg { width: 18px; height: 18px; color: var(--messing-hell); }
@media (min-width: 900px) {
  .hero__inner { grid-template-columns: 1.05fr .95fr; gap: 48px; }
}
.hero--sub { background-image: radial-gradient(900px 500px at 80% 0%, rgba(34, 81, 58, .9), transparent 65%); }
.hero--sub .hero__inner { padding-block: clamp(40px, 5vw, 72px); grid-template-columns: 1fr; }
.hero--sub .hero__lead { max-width: 680px; }

/* ---------- Trust bar ---------- */
.trust { background: var(--kalk); border-bottom: 1px solid rgba(20, 32, 26, .06); }
.trust__list { list-style: none; display: grid; gap: 14px 24px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); padding-block: 22px; }
.trust__list li { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--keller); font-size: .9375rem; }
.trust__list svg { width: 22px; height: 22px; color: var(--messing); flex: none; }

/* ---------- Cards ---------- */
.card {
  background: var(--weiss); border: 1px solid var(--linie); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-1);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--text-2); margin: 0; }
.card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 14px; margin-bottom: 18px;
  background: rgba(168, 122, 34, .12); color: var(--messing-dunkel);
}
.card__icon svg { width: 26px; height: 26px; }
.card--dark { background: var(--keller); border-color: var(--keller); color: var(--on-dark); }
.card--dark h3 { color: #fff; }
.card--dark p { color: var(--on-dark); }
.card--dark .card__icon { background: rgba(217, 185, 110, .16); color: var(--messing-hell); }

/* Zielgruppen */
.audience { display: grid; gap: 20px; }
@media (min-width: 900px) { .audience { grid-template-columns: 1fr 1fr; } }
.audience__card {
  position: relative; overflow: hidden; border-radius: var(--radius); padding: 32px;
  display: grid; gap: 20px; min-height: 100%;
}
.audience__card--gastro { background: var(--keller); color: var(--on-dark); }
.audience__card--handel { background: var(--weiss); border: 1px solid var(--linie); }
.audience__card h3 { font-size: 1.5rem; }
.audience__card--gastro h3 { color: #fff; }
.audience__card p { margin: 0; }
.audience__card--gastro p { color: var(--on-dark); }
.audience__card--handel p { color: var(--text-2); }
.audience__card ul { list-style: none; display: grid; gap: 8px; }
.audience__card li { display: flex; gap: 10px; align-items: flex-start; font-size: .9875rem; }
.audience__card li svg { width: 18px; height: 18px; flex: none; margin-top: 4px; color: var(--messing); }
.audience__card--gastro li svg { color: var(--messing-hell); }
.audience__card img { width: min(100%, 300px); justify-self: end; }
.audience__card .btn { justify-self: start; }
@media (min-width: 640px) {
  .audience__card { grid-template-columns: 1fr auto; grid-template-rows: auto auto 1fr auto; }
  .audience__card h3, .audience__card p, .audience__card ul, .audience__card .btn { grid-column: 1; }
  .audience__card img { grid-column: 2; grid-row: 1 / span 4; align-self: center; width: 220px; }
}

/* Geräte */
.devices { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); }
.device {
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(226, 231, 222, .14); border-radius: var(--radius);
  padding: 24px; text-align: center;
  transition: background-color var(--t) var(--ease), border-color var(--t) var(--ease);
}
.device:hover { background: rgba(255, 255, 255, .1); border-color: rgba(217, 185, 110, .5); }
.device__media { display: flex; align-items: center; justify-content: center; height: 190px; margin-bottom: 16px; }
.device__media img { max-height: 100%; width: auto; filter: drop-shadow(0 18px 24px rgba(0, 0, 0, .4)); }
.device h3 { color: #fff; font-size: 1.125rem; margin-bottom: 4px; }
.device p { margin: 0; font-size: .9375rem; color: var(--on-dark-2); }
.device__tag { display: inline-block; margin-bottom: 10px; font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--messing-hell); }

/* Steps */
.steps { display: grid; gap: 20px; counter-reset: step; list-style: none; }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { position: relative; padding: 28px 28px 28px 92px; background: var(--weiss); border: 1px solid var(--linie); border-radius: var(--radius); }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 24px; top: 24px;
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--messing); color: #fff; font-weight: 900; font-size: 1.25rem;
}
.step h3 { margin-bottom: 6px; }
.step p { margin: 0; color: var(--text-2); }

/* Preis-Teaser */
.teaser { display: grid; gap: 20px; }
@media (min-width: 900px) { .teaser { grid-template-columns: 1fr 1fr; } }
.teaser__card { border-radius: var(--radius); padding: 32px; }
.teaser__card--flex { background: var(--keller); color: var(--on-dark); }
.teaser__card--kauf { background: var(--weiss); border: 1px solid var(--linie); }
.teaser__card h3 { font-size: 1.375rem; }
.teaser__card--flex h3 { color: #fff; }
.price { display: flex; align-items: baseline; gap: 8px; margin: 10px 0 4px; font-variant-numeric: tabular-nums; }
.price__amount { font-size: clamp(2.25rem, 4vw, 3rem); font-weight: 900; line-height: 1; letter-spacing: -.02em; color: var(--keller); }
.teaser__card--flex .price__amount { color: var(--messing-hell); }
.price__unit { font-weight: 600; color: var(--text-2); }
.teaser__card--flex .price__unit { color: var(--on-dark); }
.price__from { font-size: .875rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--messing); }
.teaser__card--flex .price__from { color: var(--messing-hell); }
.teaser__card p { color: var(--text-2); margin: 8px 0 20px; }
.teaser__card--flex p { color: var(--on-dark); }
.badge {
  display: inline-block; padding: 4px 12px; border-radius: var(--radius-pill);
  background: var(--messing); color: #fff; font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
}
.badge--light { background: var(--messing-hell); color: var(--tinte); }
.badge--outline { background: transparent; border: 1.5px solid var(--messing); color: var(--messing-hell); }

/* Checkliste */
.checklist { list-style: none; display: grid; gap: 10px; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; }
.checklist svg { width: 20px; height: 20px; flex: none; margin-top: 3px; color: var(--messing); }
.section--dark .checklist svg, .card--dark .checklist svg, .teaser__card--flex .checklist svg, .plan--flex .checklist svg { color: var(--messing-hell); }

/* Über Holzer */
.about { display: grid; gap: 32px; align-items: center; }
@media (min-width: 900px) { .about { grid-template-columns: 1.1fr .9fr; gap: 56px; } }
.about p { color: var(--text-2); font-size: 1.0625rem; }
.facts { display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); }
.fact { background: var(--weiss); border: 1px solid var(--linie); border-radius: var(--radius-sm); padding: 20px; }
.fact__num { display: block; font-size: 2rem; font-weight: 900; line-height: 1; color: var(--keller); letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.fact__label { display: block; margin-top: 6px; font-size: .9rem; color: var(--text-2); font-weight: 600; }

/* CTA-Band */
.cta-band { background: var(--weinberg); color: var(--on-dark); }
.cta-band__inner { display: grid; gap: 24px; align-items: center; padding-block: clamp(48px, 6vw, 72px); }
@media (min-width: 900px) { .cta-band__inner { grid-template-columns: 1.3fr auto; } }
.cta-band h2 { color: #fff; }
.cta-band p { margin: 10px 0 0; font-size: 1.125rem; }
.cta-band .btn-row { justify-content: flex-start; }
.phone-big { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 900; color: #fff; text-decoration: none; letter-spacing: -.01em; white-space: nowrap; }
.phone-big:hover { color: var(--messing-hell); }

/* ---------- Footer ---------- */
.site-footer { background: var(--keller-2); color: var(--on-dark-2); font-size: .9375rem; }
.site-footer a { color: var(--on-dark); text-decoration: none; }
.site-footer a:hover { color: var(--messing-hell); text-decoration: underline; }
.site-footer__grid { display: grid; gap: 32px; padding-block: 48px 32px; }
@media (min-width: 720px) { .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.site-footer h3 { color: #fff; font-size: .875rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.site-footer ul { list-style: none; display: grid; gap: 8px; }
.site-footer__brand img { height: 36px; width: auto; margin-bottom: 14px; }
.site-footer__brand p { margin: 0 0 6px; }
.site-footer__bottom {
  border-top: 1px solid rgba(226, 231, 222, .12); padding-block: 18px;
  display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; font-size: .875rem;
}
.site-footer__bottom ul { display: flex; flex-wrap: wrap; gap: 16px; }

/* ---------- Preise ---------- */
.switch {
  display: inline-flex; padding: 4px; border-radius: var(--radius-pill);
  background: var(--kalk); border: 1px solid var(--linie);
}
.switch label {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px; padding: 8px 22px; border-radius: var(--radius-pill);
  font-weight: 700; color: var(--text-2); cursor: pointer; user-select: none;
  transition: background-color var(--t) var(--ease), color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.switch label small { display: block; font-weight: 500; font-size: .75rem; margin-left: 6px; opacity: .8; }
.switch input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.switch input:checked + span { display: none; }
.switch label:has(input:checked) { background: var(--keller); color: #fff; box-shadow: var(--shadow-1); }
.switch label:has(input:focus-visible) { outline: 3px solid var(--messing); outline-offset: 2px; }
.pricing:has(#mode-kauf:checked) .only-flex { display: none !important; }
.pricing:has(#mode-flex:checked) .only-kauf { display: none !important; }
.pricing:has(#mode-kauf:checked) .plan--flex-style { background: var(--weiss); color: var(--text); }

.plans { display: grid; gap: 20px; margin-top: 36px; }
@media (min-width: 900px) { .plans { grid-template-columns: repeat(3, 1fr); align-items: stretch; } }
.plan {
  position: relative; display: flex; flex-direction: column; gap: 16px;
  background: var(--weiss); border: 1px solid var(--linie); border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow-1);
}
.plan--featured { border: 2px solid var(--messing); box-shadow: var(--shadow-2); }
.plan__badge { position: absolute; top: -14px; left: 24px; }
.plan__media { display: flex; align-items: flex-end; justify-content: center; height: 150px; }
.plan__media img { max-height: 100%; width: auto; }
.plan h3 { font-size: 1.375rem; }
.plan__sub { margin: -8px 0 0; color: var(--text-2); font-size: .9875rem; }
.plan .price { margin: 4px 0 0; }
.plan .price__amount { font-size: 2.5rem; }
.plan__note { font-size: .875rem; color: var(--text-3); margin: 0; }
.plan .checklist { font-size: .9875rem; }
.plan .btn { margin-top: auto; }
.plan__divider { height: 1px; background: var(--linie); }

.table-wrap { overflow-x: auto; border: 1px solid var(--linie); border-radius: var(--radius); background: var(--weiss); box-shadow: var(--shadow-1); }
.table th, .table td { padding: 14px 18px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--linie); }
.table th { background: var(--keller); color: var(--kalk); font-size: .8125rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.table tr:last-child td { border-bottom: 0; }
.table tbody th { background: transparent; color: var(--keller); font-size: 1rem; font-weight: 700; letter-spacing: 0; text-transform: none; }
.table tbody tr:nth-child(even) td, .table tbody tr:nth-child(even) th { background: #F2F5F1; }
.table td.num, .table th.num { text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; }
.table td.num { font-weight: 700; color: var(--keller); }
.table .sub { display: block; font-size: .875rem; color: var(--text-3); font-weight: 400; margin-top: 2px; }

.note {
  background: var(--kalk); border-left: 4px solid var(--messing); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px; color: var(--text-2); font-size: .9875rem;
}
.note strong { color: var(--keller); }
.note p:last-child { margin: 0; }

.downloads { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
.download {
  display: flex; align-items: center; gap: 14px; padding: 18px 20px;
  background: var(--weiss); border: 1px solid var(--linie); border-radius: var(--radius-sm); text-decoration: none; color: var(--keller);
  transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease), transform var(--t) var(--ease);
}
.download:hover { border-color: var(--messing); box-shadow: var(--shadow-1); transform: translateY(-1px); color: var(--keller); }
.download svg { width: 28px; height: 28px; color: var(--messing); flex: none; }
.download strong { display: block; }
.download span { display: block; font-size: .875rem; color: var(--text-3); }

/* FAQ */
.faq { display: grid; gap: 12px; max-width: 820px; }
.faq details { background: var(--weiss); border: 1px solid var(--linie); border-radius: var(--radius-sm); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 20px; cursor: pointer; font-weight: 700; color: var(--keller); list-style: none; font-size: 1.0625rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary svg { width: 22px; height: 22px; flex: none; color: var(--messing); transition: transform var(--t) var(--ease); }
.faq details[open] summary svg { transform: rotate(180deg); }
.faq details > div { padding: 0 20px 18px; color: var(--text-2); }
.faq details > div p:last-child { margin: 0; }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; gap: 20px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }
.contact-card { display: flex; flex-direction: column; gap: 10px; padding: 28px; border-radius: var(--radius); background: var(--weiss); border: 1px solid var(--linie); box-shadow: var(--shadow-1); }
.contact-card--primary { background: var(--keller); border-color: var(--keller); color: var(--on-dark); }
.contact-card h2, .contact-card h3 { font-size: 1.125rem; }
.contact-card--primary h2, .contact-card--primary h3 { color: #fff; }
.contact-card .card__icon { margin-bottom: 6px; }
.contact-card--primary .card__icon { background: rgba(217, 185, 110, .16); color: var(--messing-hell); }
.contact-card a.big { font-size: clamp(1.375rem, 2.4vw, 1.75rem); font-weight: 900; text-decoration: none; color: var(--keller); letter-spacing: -.01em; word-break: break-word; }
.contact-card--primary a.big { color: #fff; }
.contact-card--primary a.big:hover { color: var(--messing-hell); }
.contact-card p { margin: 0; color: var(--text-2); }
.contact-card--primary p { color: var(--on-dark); }
.contact-card address { font-style: normal; }
.hours { display: grid; grid-template-columns: auto 1fr; gap: 6px 16px; font-variant-numeric: tabular-nums; }
.hours dt { font-weight: 700; color: var(--keller); }
.hours dd { margin: 0; color: var(--text-2); }
.region { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; }
.region li { padding: 8px 14px; border-radius: var(--radius-pill); background: var(--weiss); border: 1px solid var(--linie); font-weight: 600; font-size: .9375rem; color: var(--keller); }

/* ---------- Rechtstexte ---------- */
.prose { max-width: 760px; }
.prose h2 { font-size: 1.5rem; margin: 40px 0 12px; }
.prose h3 { font-size: 1.125rem; margin: 24px 0 8px; }
.prose p, .prose li { color: var(--text-2); }
.prose ul { padding-left: 22px; display: grid; gap: 6px; }
.prose dl { display: grid; grid-template-columns: minmax(150px, auto) 1fr; gap: 8px 20px; }
.prose dt { font-weight: 700; color: var(--keller); }
.prose dd { margin: 0; color: var(--text-2); }
@media (max-width: 560px) { .prose dl { grid-template-columns: 1fr; gap: 2px; } .prose dd { margin-bottom: 10px; } }
.breadcrumb { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; font-size: .875rem; color: var(--on-dark-2); margin-bottom: 18px; }
.breadcrumb a { color: var(--on-dark); text-decoration: none; }
.breadcrumb a:hover { color: var(--messing-hell); }
.breadcrumb li + li::before { content: "›"; margin-right: 6px; opacity: .7; }

/* ---------- Mobile Anruf-Leiste ---------- */
.call-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
  background: rgba(246, 247, 243, .96); border-top: 1px solid var(--linie);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.call-bar .btn { width: 100%; }
body.has-call-bar { padding-bottom: 84px; }
@media (min-width: 900px) { .call-bar { display: none; } body.has-call-bar { padding-bottom: 0; } }

/* ---------- Hilfsklassen ---------- */
.mt-0 { margin-top: 0 !important; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-24 { margin-bottom: 24px; }
.text-center { text-align: center; }
.muted { color: var(--text-3); }
.small { font-size: .9375rem; }

/* ---------- Kleine Screens ---------- */
@media (max-width: 400px) {
  .eyebrow { font-size: .75rem; letter-spacing: .08em; }
  .hero__lead { font-size: 1.0625rem; }
}
.grid > *, .hero__inner > *, .audience__card > *, .teaser > *, .plans > *, .about > * { min-width: 0; }
@media (max-width: 400px) {
  h1 { font-size: 1.9rem; }
}

/* ---------- Zubehör-Tabelle mit Bildern ---------- */
.table .item { display: flex; align-items: center; gap: 16px; }
.table .item__media { flex: none; width: 72px; height: 72px; display: flex; align-items: center; justify-content: center; border-radius: 12px; background: var(--keller); }
.table .item__media img { max-width: 60px; max-height: 60px; width: auto; height: auto; }
.table .item__media svg { width: 30px; height: 30px; color: var(--messing-hell); }
.table .item__text { min-width: 0; }

/* ---------- Funktionen ---------- */
.segment-nav { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.features { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
@media (min-width: 1000px) { .features { grid-template-columns: repeat(3, 1fr); } }
.feature { background: var(--weiss); border: 1px solid var(--linie); border-radius: var(--radius); padding: 24px; }
.feature .card__icon { width: 44px; height: 44px; border-radius: 12px; margin-bottom: 14px; }
.feature .card__icon svg { width: 22px; height: 22px; }
.feature h3 { font-size: 1.125rem; margin-bottom: 6px; }
.feature p { margin: 0; color: var(--text-2); font-size: .9875rem; }
.feature ul { list-style: none; margin-top: 10px; display: grid; gap: 4px; font-size: .9375rem; color: var(--text-2); }
.feature li { padding-left: 18px; position: relative; }
.feature li::before { content: ""; position: absolute; left: 4px; top: .6em; width: 6px; height: 6px; border-radius: 50%; background: var(--messing); }
.section--kalk .feature { background: var(--weiss); }
.highlight { display: grid; gap: 24px; align-items: center; background: var(--keller); color: var(--on-dark); border-radius: var(--radius); padding: 32px; }
@media (min-width: 900px) { .highlight { grid-template-columns: 1fr auto; } }
.highlight h3 { color: #fff; font-size: 1.5rem; margin-bottom: 8px; }
.highlight p { color: var(--on-dark); margin: 0; }
.highlight img { width: min(100%, 260px); justify-self: center; filter: drop-shadow(0 18px 24px rgba(0, 0, 0, .4)); }
.quote { border-left: 4px solid var(--messing); padding: 8px 0 8px 20px; margin: 0; font-size: 1.25rem; font-weight: 700; color: var(--keller); line-height: 1.35; }
.quote small { display: block; margin-top: 6px; font-size: .9375rem; font-weight: 500; color: var(--text-2); }
.faq--wide { max-width: none; }
@media (min-width: 900px) { .faq--cols { grid-template-columns: 1fr 1fr; align-items: start; } }

/* ---------- Kartenzahlung ---------- */
.payflow { display: grid; gap: 20px; counter-reset: pay; list-style: none; }
@media (min-width: 900px) { .payflow { grid-template-columns: repeat(3, 1fr); } }
.payflow li { position: relative; padding: 24px 24px 24px 84px; background: var(--weiss); border: 1px solid var(--linie); border-radius: var(--radius); }
.payflow li::before { counter-increment: pay; content: counter(pay); position: absolute; left: 22px; top: 22px; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--keller); color: var(--messing-hell); font-weight: 900; font-size: 1.125rem; }
.payflow h3 { font-size: 1.0625rem; margin-bottom: 4px; }
.payflow p { margin: 0; color: var(--text-2); font-size: .9875rem; }
.providers { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.providers span { padding: 8px 16px; border-radius: var(--radius-pill); background: var(--weiss); border: 1px solid var(--linie); font-weight: 700; color: var(--keller); font-size: .9375rem; }
.providers .label { background: transparent; border: 0; padding: 0; color: var(--text-2); font-weight: 600; }

/* ---------- Chef-Weboberfläche ---------- */
.chef { display: grid; gap: 32px; align-items: center; }
@media (min-width: 1000px) { .chef { grid-template-columns: 1fr 1.05fr; gap: 48px; } }
.mock { background: var(--weiss); border: 1px solid var(--linie); border-radius: var(--radius); box-shadow: var(--shadow-2); overflow: hidden; font-size: .8125rem; }
.mock__bar { display: flex; align-items: center; gap: 8px; padding: 10px 14px; background: var(--kalk); border-bottom: 1px solid var(--linie); }
.mock__bar i { width: 10px; height: 10px; border-radius: 50%; background: #c8d2ca; display: block; }
.mock__url { flex: 1; margin-left: 8px; padding: 5px 10px; border-radius: 6px; background: var(--weiss); color: var(--text-3); font-size: .75rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mock__body { display: grid; grid-template-columns: 150px 1fr; min-height: 300px; }
@media (max-width: 480px) { .mock__body { grid-template-columns: 1fr; } .mock__nav { display: none; } }
.mock__nav { background: var(--keller); color: var(--on-dark-2); padding: 14px 0; }
.mock__nav b { display: block; padding: 6px 14px 4px; font-size: .6875rem; letter-spacing: .1em; text-transform: uppercase; color: var(--messing-hell); }
.mock__nav span { display: block; padding: 5px 14px; }
.mock__nav span.on { background: rgba(255, 255, 255, .1); color: #fff; font-weight: 700; }
.mock__main { padding: 18px; }
.mock__main h4 { margin: 0 0 2px; font-size: 1rem; color: var(--keller); }
.mock__main small { color: var(--text-3); }
.kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 14px 0; }
.kpi { background: var(--papier); border: 1px solid var(--linie); border-radius: 8px; padding: 10px; }
.kpi b { display: block; font-size: 1.125rem; color: var(--keller); font-variant-numeric: tabular-nums; }
.kpi span { color: var(--text-3); font-size: .75rem; }
.bars { display: flex; align-items: flex-end; gap: 6px; height: 110px; padding-top: 8px; border-bottom: 1px solid var(--linie); }
.bars i { flex: 1; display: block; background: var(--weinberg); border-radius: 4px 4px 0 0; min-width: 8px; }
.bars i.hi { background: var(--messing); }
.bars-x { display: flex; justify-content: space-between; color: var(--text-3); font-size: .6875rem; margin-top: 6px; }
.mock__note { display: block; margin-top: 10px; font-size: .8125rem; color: var(--text-3); text-align: right; }
