/* ==========================================================================
   KalinaClean – Designsystem
   Markenfarben aus dem Logo: Tiefschwarz, Gold, Weiss
   Keine externen Requests (DSGVO-sicher, keine Google-Fonts-CDN)
   ========================================================================== */

:root {
  /* Marke */
  --ink:        #0A0A0C;
  --ink-2:      #131317;
  --ink-3:      #1D1D23;
  --gold:       #F5B301;
  --gold-hi:    #FFC93C;
  --gold-deep:  #C98A00;
  --white:      #FFFFFF;
  --paper:      #F7F7F4;
  --paper-2:    #EDEDE7;
  --text:       #15151A;
  --muted:      #63636D;
  --muted-dark: #9A9AA4;
  --line:       rgba(255, 255, 255, .10);
  --line-dark:  rgba(10, 10, 12, .10);
  --green:      #1E9E5A;

  /* Typo */
  --font: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;
  --h1: clamp(2.2rem, 6vw, 4.1rem);
  --h2: clamp(1.75rem, 3.6vw, 2.7rem);
  --h3: clamp(1.15rem, 2vw, 1.4rem);

  /* Layout */
  --wrap: 1180px;
  --gap: clamp(1rem, 3vw, 2rem);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px -20px rgba(0, 0, 0, .55);
  --shadow-gold: 0 14px 40px -14px rgba(245, 179, 1, .55);
  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--paper);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { line-height: 1.12; font-weight: 800; letter-spacing: -.02em; }
h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); letter-spacing: -.01em; }
p { text-wrap: pretty; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ---------- Layout-Helfer ---------- */
.wrap { width: min(100% - 2.4rem, var(--wrap)); margin-inline: auto; }
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section--dark { background: var(--ink); color: var(--white); }
.section--ink2 { background: var(--ink-2); color: var(--white); }
.section--paper2 { background: var(--paper-2); }
.center { text-align: center; }
.stack > * + * { margin-top: 1rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-deep);
}
.section--dark .eyebrow, .section--ink2 .eyebrow { color: var(--gold); }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; }

.lead { font-size: 1.1rem; color: var(--muted); max-width: 60ch; }
.section--dark .lead, .section--ink2 .lead { color: var(--muted-dark); }
.head { max-width: 68ch; }
.head--center { margin-inline: auto; text-align: center; }
.head--center .lead { margin-inline: auto; }
.head h2 { margin-top: .6rem; }
.head .lead { margin-top: 1rem; }

/* ---------- Wortmarke (immer scharf, folgt der Logo-Optik) ---------- */
.wordmark {
  display: inline-flex; align-items: center; gap: .6rem;
  font-weight: 900; letter-spacing: -.035em; line-height: 1;
  font-style: italic; text-transform: none; white-space: nowrap;
}
.wordmark__text { font-size: 1.42rem; }
.wordmark__text b { color: var(--white); font-weight: 900; }
.wordmark__text i { color: var(--gold); font-style: italic; font-weight: 900; }
.wordmark__mark { width: 42px; height: 42px; flex: 0 0 42px; }
.wordmark__sub {
  display: block; font-style: normal; font-weight: 700; font-size: .53rem;
  letter-spacing: .22em; text-transform: uppercase; color: var(--muted-dark);
  margin-top: .28rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.6rem; border-radius: 999px; border: 2px solid transparent;
  font-weight: 800; font-size: 1rem; letter-spacing: -.01em; cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease, border-color .16s ease;
  text-align: center;
}
.btn svg { width: 19px; height: 19px; flex: 0 0 19px; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--gold { background: var(--gold); color: var(--ink); box-shadow: var(--shadow-gold); }
.btn--gold:hover { background: var(--gold-hi); }

.btn--ghost { border-color: rgba(255, 255, 255, .28); color: var(--white); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn--dark { background: var(--ink); color: var(--white); }
.btn--dark:hover { background: var(--ink-3); }

.btn--outline { border-color: rgba(10, 10, 12, .22); color: var(--ink); }
.btn--outline:hover { border-color: var(--ink); }

.btn--wa { background: #25D366; color: #06331A; }
.btn--wa:hover { background: #34E77A; }

.btn--lg { padding: 1.1rem 2rem; font-size: 1.06rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(10, 10, 12, .88);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
  color: var(--white);
}
.header__inner {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.nav { display: flex; align-items: center; gap: 1.75rem; }
.nav a {
  font-size: .95rem; font-weight: 600; color: rgba(255, 255, 255, .82);
  transition: color .15s ease; position: relative;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--gold); }
.nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--gold); border-radius: 2px;
}
.header__cta { display: flex; align-items: center; gap: .6rem; }
.header__tel {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 800; font-size: 1rem; color: var(--white);
}
.header__tel svg { width: 17px; height: 17px; color: var(--gold); }
.header__tel:hover { color: var(--gold); }

.burger {
  display: none; background: none; border: 1px solid var(--line);
  border-radius: 10px; width: 44px; height: 44px; cursor: pointer;
  align-items: center; justify-content: center;
}
.burger span { display: block; width: 20px; height: 2px; background: var(--white); position: relative; }
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--white);
  transition: transform .2s ease, top .2s ease;
}
.burger span::before { top: -6px; }
.burger span::after  { top: 6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.burger[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; background: var(--ink); color: var(--white);
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3.5rem, 8vw, 6rem);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: -30% -10% auto -10%; height: 90%;
  background: radial-gradient(60% 60% at 30% 40%, rgba(245, 179, 1, .16), transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 64px 64px; pointer-events: none;
  mask-image: radial-gradient(70% 70% at 50% 40%, #000, transparent 75%);
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.hero h1 { margin-top: .9rem; font-size: clamp(2.1rem, 4.7vw, 3.5rem); }
.hero h1 .gold { color: var(--gold); }
.hero__lead { margin-top: 1.2rem; font-size: 1.14rem; color: rgba(255, 255, 255, .78); max-width: 52ch; }
.hero .btn-row { margin-top: 2rem; }
.hero__note { margin-top: 1.1rem; font-size: .92rem; color: var(--muted-dark); }

.trustbar {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2.2rem;
  padding-top: 1.6rem; border-top: 1px solid var(--line);
}
.chip {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .42rem .85rem; border: 1px solid var(--line); border-radius: 999px;
  font-size: .84rem; font-weight: 600; color: rgba(255, 255, 255, .86);
  background: rgba(255, 255, 255, .03);
}
.chip svg { width: 15px; height: 15px; color: var(--gold); }

/* ---------- Vorher/Nachher-Slider ---------- */
.ba {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--line);
  aspect-ratio: 4 / 3; background: var(--ink-3); user-select: none; touch-action: pan-y;
}
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba__after { clip-path: inset(0 0 0 var(--pos, 50%)); }
.ba__handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 3px;
  background: var(--gold); transform: translateX(-50%); cursor: ew-resize; z-index: 3;
}
.ba__handle::after {
  content: ""; position: absolute; top: 50%; left: 50%; width: 46px; height: 46px;
  transform: translate(-50%, -50%); border-radius: 50%;
  background: var(--gold); box-shadow: 0 6px 20px rgba(0, 0, 0, .45);
}
.ba__handle::before {
  content: "‹ ›"; position: absolute; top: 50%; left: 50%; z-index: 1;
  transform: translate(-50%, -52%); color: var(--ink); font-weight: 900; font-size: 1.05rem;
  letter-spacing: .1em;
}
.ba__label {
  position: absolute; bottom: 14px; z-index: 2;
  padding: .3rem .7rem; border-radius: 999px; font-size: .72rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  background: rgba(10, 10, 12, .72); color: var(--white); backdrop-filter: blur(6px);
}
.ba__label--l { left: 14px; }
.ba__label--r { right: 14px; color: var(--gold); }
.ba__range {
  position: absolute; inset: 0; z-index: 4; width: 100%; height: 100%;
  opacity: 0; cursor: ew-resize; margin: 0;
}

/* ---------- Karten / Leistungen ---------- */
.grid { display: grid; gap: var(--gap); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid + .grid, .head + .grid, .head + .cards { margin-top: clamp(2rem, 4vw, 3.2rem); }

.card {
  background: var(--white); border: 1px solid var(--line-dark); border-radius: var(--radius);
  padding: 1.9rem; display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card--link:hover { transform: translateY(-4px); box-shadow: 0 20px 44px -22px rgba(0,0,0,.3); border-color: var(--gold); }
.section--dark .card, .section--ink2 .card {
  background: var(--ink-2); border-color: var(--line); color: var(--white);
}
.section--dark .card--link:hover, .section--ink2 .card--link:hover { border-color: var(--gold); }
.card h3 { margin-bottom: .55rem; }
.card p { color: var(--muted); font-size: .97rem; }
.section--dark .card p, .section--ink2 .card p { color: var(--muted-dark); }
.card__icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--gold), var(--gold-deep));
  color: var(--ink); margin-bottom: 1.15rem; flex: 0 0 auto;
}
.card__icon svg { width: 26px; height: 26px; }
.card__more {
  margin-top: auto; padding-top: 1.15rem; font-weight: 800; font-size: .93rem; color: var(--gold-deep);
  display: inline-flex; align-items: center; gap: .4rem;
}
.section--dark .card__more, .section--ink2 .card__more { color: var(--gold); }
.card--link:hover .card__more { gap: .7rem; }

/* Nummerierte Ablauf-Schritte */
.steps { counter-reset: s; }
.step { position: relative; padding-left: 4.2rem; }
.step::before {
  counter-increment: s; content: counter(s, decimal-leading-zero);
  position: absolute; left: 0; top: -.15rem;
  font-size: 1.85rem; font-weight: 900; font-style: italic; color: var(--gold);
  letter-spacing: -.04em;
}
.step h3 { margin-bottom: .4rem; }
.step p { color: var(--muted); font-size: .97rem; }
.section--dark .step p, .section--ink2 .step p { color: var(--muted-dark); }

/* ---------- Checkliste ---------- */
.checks { list-style: none; padding: 0; display: grid; gap: .7rem; }
.checks li { position: relative; padding-left: 2rem; font-size: 1rem; }
.checks li::before {
  content: ""; position: absolute; left: 0; top: .38em; width: 1.15rem; height: 1.15rem;
  border-radius: 50%; background: var(--gold);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a10 10 0 100 20 10 10 0 000-20zm-1.2 14.6l-4-4 1.4-1.4 2.6 2.6 5.6-5.6L17.8 9.6z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a10 10 0 100 20 10 10 0 000-20zm-1.2 14.6l-4-4 1.4-1.4 2.6 2.6 5.6-5.6L17.8 9.6z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ---------- Preistabelle ---------- */
.prices { display: grid; gap: var(--gap); grid-template-columns: repeat(3, 1fr); align-items: start; }
.price {
  background: var(--white); border: 1px solid var(--line-dark); border-radius: var(--radius);
  padding: 2rem 1.8rem; display: flex; flex-direction: column; position: relative;
}
.price--featured {
  border-color: var(--gold); border-width: 2px; box-shadow: var(--shadow-gold);
  transform: translateY(-8px);
}
.price__tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--ink); font-size: .72rem; font-weight: 900;
  letter-spacing: .12em; text-transform: uppercase; padding: .3rem .9rem; border-radius: 999px;
  white-space: nowrap;
}
.price__name { font-size: 1.3rem; font-weight: 800; letter-spacing: -.02em; }
.price__desc { color: var(--muted); font-size: .93rem; margin-top: .35rem; }
.price__amount {
  margin: 1.3rem 0 .2rem; font-size: 2.6rem; font-weight: 900; letter-spacing: -.04em; line-height: 1;
}
.price__amount small { font-size: .95rem; font-weight: 700; color: var(--muted); letter-spacing: 0; }
.price__meta { font-size: .86rem; color: var(--muted); }
.price ul { margin: 1.5rem 0; }
.price .btn { margin-top: auto; }

.pricenote {
  margin-top: 2rem; padding: 1.2rem 1.4rem; border-left: 3px solid var(--gold);
  background: rgba(245, 179, 1, .09); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: .95rem; color: var(--muted);
}

/* ---------- Bewertungen ---------- */
.quote {
  background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.9rem; color: var(--white);
}
.quote__stars { color: var(--gold); letter-spacing: .18em; font-size: 1rem; }
.quote p { margin: .9rem 0 1.2rem; font-size: 1.05rem; }
.quote footer { font-size: .88rem; color: var(--muted-dark); font-weight: 600; }

/* ---------- Einzugsgebiet ---------- */
.areas { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.8rem; }
.area {
  padding: .5rem 1rem; border-radius: 999px; font-size: .92rem; font-weight: 600;
  border: 1px solid var(--line); background: rgba(255, 255, 255, .04); color: rgba(255,255,255,.88);
}
.area--main { background: var(--gold); color: var(--ink); border-color: var(--gold); font-weight: 800; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line-dark); }
.faq details { border-bottom: 1px solid var(--line-dark); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.35rem 3rem 1.35rem 0; position: relative;
  font-weight: 700; font-size: 1.06rem; letter-spacing: -.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: .4rem; top: 50%; width: 13px; height: 13px;
  transform: translateY(-60%) rotate(45deg); border-right: 2.5px solid var(--gold);
  border-bottom: 2.5px solid var(--gold); transition: transform .2s ease;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(225deg); }
.faq details p { padding: 0 2.5rem 1.5rem 0; color: var(--muted); }

/* ---------- Formular ---------- */
.formcard {
  background: var(--white); border-radius: var(--radius); padding: clamp(1.6rem, 3.5vw, 2.6rem);
  box-shadow: var(--shadow); color: var(--text); border: 1px solid var(--line-dark);
}
.field { display: block; margin-bottom: 1.05rem; }
.field > span {
  display: block; font-size: .84rem; font-weight: 700; letter-spacing: .02em;
  margin-bottom: .38rem; color: var(--text);
}
.field .req { color: var(--gold-deep); }
.field input, .field select, .field textarea {
  width: 100%; padding: .82rem 1rem; border: 1.5px solid rgba(10, 10, 12, .16);
  border-radius: var(--radius-sm); background: var(--paper);
  transition: border-color .15s ease, background .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold); background: var(--white); outline: none;
}
.field textarea { resize: vertical; min-height: 110px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.05rem; }
.field--row .field { margin-bottom: 0; }
.consent { display: flex; gap: .7rem; align-items: flex-start; font-size: .88rem; color: var(--muted); margin: 1.2rem 0 1.5rem; }
.consent input { width: 20px; height: 20px; flex: 0 0 20px; margin-top: .15rem; accent-color: var(--gold-deep); }
.consent a { text-decoration: underline; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.formnote { margin-top: 1rem; font-size: .84rem; color: var(--muted); text-align: center; }
.alert {
  padding: .9rem 1.1rem; border-radius: var(--radius-sm); font-size: .93rem;
  margin-bottom: 1.4rem; border-left: 3px solid;
}
.alert--err { background: #FDECEC; border-color: #D8342B; color: #8A1A14; }
.alert--ok  { background: #E7F6EE; border-color: var(--green); color: #0F5B33; }

/* ---------- Kontakt-Kacheln ---------- */
.contacts { display: grid; gap: 1rem; }
.contactrow {
  display: flex; align-items: center; gap: 1rem; padding: 1.1rem 1.3rem;
  border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.03);
  transition: border-color .16s ease, background .16s ease;
}
.contactrow:hover { border-color: var(--gold); background: rgba(245, 179, 1, .07); }
.contactrow__ico {
  width: 44px; height: 44px; flex: 0 0 44px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(245, 179, 1, .14); color: var(--gold);
}
.contactrow__ico svg { width: 21px; height: 21px; }
.contactrow b { display: block; font-size: 1.02rem; }
.contactrow span { font-size: .87rem; color: var(--muted-dark); }

/* ---------- CTA-Band ---------- */
.cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--ink); text-align: center;
  padding: clamp(3rem, 7vw, 5rem) 0;
}
.cta h2 { max-width: 22ch; margin-inline: auto; }
.cta p { margin: 1rem auto 2rem; max-width: 54ch; font-weight: 600; color: rgba(10, 10, 12, .78); }
.cta .btn-row { justify-content: center; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--white); padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.4rem; }
.footer h4 {
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.1rem; font-weight: 800;
}
.footer ul { list-style: none; padding: 0; display: grid; gap: .55rem; }
.footer a { color: rgba(255, 255, 255, .74); font-size: .95rem; }
.footer a:hover { color: var(--gold); }
.footer p { color: rgba(255, 255, 255, .62); font-size: .95rem; }
.footer__bottom {
  margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: .87rem; color: rgba(255, 255, 255, .5);
}

/* ---------- Sticky Mobile-CTA ---------- */
.mobilebar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; display: none;
  grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line);
  border-top: 1px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobilebar a {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  padding: 1rem .5rem; font-weight: 800; font-size: .98rem;
}
.mobilebar a svg { width: 18px; height: 18px; }
.mobilebar__call { background: var(--gold); color: var(--ink); }
.mobilebar__wa { background: #25D366; color: #06331A; }

/* ---------- Breadcrumb ---------- */
.crumbs { font-size: .85rem; color: var(--muted-dark); padding-top: 1.4rem; }
.crumbs a:hover { color: var(--gold); }
.crumbs span { opacity: .5; margin: 0 .4rem; }

/* ---------- Prosa (Impressum / Datenschutz) ---------- */
.prose { max-width: 78ch; }
.prose h2 { font-size: 1.5rem; margin-top: 2.6rem; }
.prose h3 { font-size: 1.12rem; margin-top: 1.8rem; }
.prose p, .prose ul, .prose ol { margin-top: .9rem; color: var(--muted); }
.prose ul, .prose ol { padding-left: 1.3rem; }
.prose li { margin-top: .35rem; }
.prose a { color: var(--gold-deep); text-decoration: underline; }
.prose strong { color: var(--text); }

/* ---------- Media Queries ---------- */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero .ba { max-width: 560px; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .prices { grid-template-columns: 1fr; }
  .price--featured { transform: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .burger { display: inline-flex; }
  /* Anrufen liegt mobil in der fixierten Leiste unten – im Header waere es nur Enge */
  .header__cta .btn, .header__tel { display: none; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch;
    gap: 0; background: var(--ink); border-bottom: 1px solid var(--line);
    padding: .5rem 1.2rem 1.4rem; transform: translateY(-130%);
    transition: transform .28s cubic-bezier(.4, 0, .2, 1); max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
  }
  .nav[data-open="true"] { transform: translateY(0); }
  .nav a { padding: .95rem 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav a[aria-current="page"]::after { display: none; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .field--row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .mobilebar { display: grid; }
  body { padding-bottom: 60px; }
  .step { padding-left: 3.4rem; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
  .header__cta .btn, .cta .btn, .hero .btn { width: auto; }
  .cta .btn-row, .hero .btn-row { flex-direction: row; }
}

@media (max-width: 420px) {
  .cta .btn-row, .hero .btn-row { flex-direction: column; }
  .cta .btn, .hero .btn { width: 100%; }
  .wordmark__text { font-size: 1.22rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

@media print {
  .header, .mobilebar, .cta, .footer { display: none; }
  body { background: #fff; color: #000; }
}
