/* =========================================================
   Nordframe – Design System
   Helles Layout mit kräftigen Grün-Akzenten aus dem Logo
   (Olive + Tannengrün). Keine externen Schriften/Skripte.
   ========================================================= */

:root {
  /* Farben (abgeleitet aus dem Logo) */
  --bg:        #ffffff;
  --bg-soft:   #f1f5ea;
  --bg-mute:   #e6ecd8;
  --ink:       #16241a;   /* fast-schwarzes Grün, Texte/Headings */
  --muted:     #56624f;   /* Sekundärtext */
  --brand:     #355e34;   /* Primärgrün, Buttons/Links */
  --brand-dk:  #244526;   /* Hover */
  --olive:     #7c8a55;   /* Akzent aus dem Logo */
  --olive-dk:  #5f6d3c;
  --forest:    #142111;   /* dunkle Sektionen / Footer */
  --forest-2:  #1d3018;   /* zweiter Grünton für Verläufe */
  --cream:     #f4f1e8;
  --line:      #dde3cf;   /* Trennlinien, Rahmen */
  --white:     #ffffff;

  /* Maße */
  --maxw: 1140px;
  --radius: 0px;          /* eckige Variante: keine Rundungen */
  --radius-sm: 0px;
  --shadow: 0 14px 30px rgba(20, 33, 17, .16);
  --shadow-sm: 0 4px 12px rgba(20, 33, 17, .10);

  /* Z-Index */
  --z-header: 130;
  --z-overlay: 120;
  --z-intro: 300;

  /* Typo */
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
          "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
}

/* ---------- Reset / Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
body.no-scroll { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-dk); }
h1, h2, h3, h4 { line-height: 1.18; color: var(--ink); margin: 0 0 .5em; font-weight: 700; letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.65rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1rem; }
ul { margin: 0 0 1rem; padding-left: 1.2rem; }
li { margin-bottom: .4rem; }

/* ---------- Layout-Helfer ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }
.section { padding: 88px 0; }
.section--soft { background: var(--bg-soft); }
.section--forest {
  background:
    radial-gradient(900px 420px at 8% 0%, rgba(124,138,85,.28), transparent 60%),
    radial-gradient(700px 380px at 100% 100%, rgba(124,138,85,.18), transparent 55%),
    linear-gradient(160deg, var(--forest-2), var(--forest));
  color: var(--cream);
}
.section--forest h2, .section--forest h3 { color: #fff; }
.section--tight { padding: 56px 0; }
.center { text-align: center; }
.lead { font-size: 1.18rem; color: var(--muted); max-width: 60ch; }
.center .lead { margin-inline: auto; }
.section--forest .lead, .section--forest p { color: #d2dac4; }
.eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--brand); margin-bottom: .8rem;
}
.eyebrow--light { color: var(--olive); }
.muted { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: 15px 30px; border-radius: 0; font-weight: 700; font-size: .92rem;
  text-transform: uppercase; letter-spacing: .07em;
  border: 2px solid transparent; cursor: pointer; transition: .18s ease;
  text-decoration: none; line-height: 1;
}
.btn--primary { background: var(--brand); color: #fff; box-shadow: 0 8px 20px rgba(53,94,52,.28); }
.btn--primary:hover { background: var(--brand-dk); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(53,94,52,.34); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); background: var(--bg-soft); }
.btn--light { background: var(--cream); color: var(--forest); }
.btn--light:hover { background: #fff; color: var(--forest); transform: translateY(-2px); }
.btn--olive { background: var(--olive); color: #fff; }
.btn--olive:hover { background: var(--olive-dk); color: #fff; transform: translateY(-2px); }
.btn--block { width: 100%; justify-content: center; }
.btn--lg { padding: 18px 38px; font-size: 1rem; }

/* =========================================================
   Intro-Animation (Logo + Schriftzug beim Laden)
   ========================================================= */
.intro {
  position: fixed; inset: 0; z-index: var(--z-intro);
  display: grid; place-items: center; text-align: center;
  background:
    radial-gradient(circle at 50% 38%, #21331b 0%, #11190c 65%);
  animation: introHide .7s ease 2.15s forwards;
}
.intro.gone { opacity: 0; visibility: hidden; transition: opacity .45s ease, visibility .45s; }
html.intro-seen .intro { display: none; }
@keyframes introHide { to { opacity: 0; visibility: hidden; } }

.intro-inner { transform: translateY(-2%); }
.intro-logo {
  width: clamp(96px, 22vw, 132px); height: clamp(96px, 22vw, 132px);
  margin: 0 auto; border-radius: 0; object-fit: cover;
  box-shadow: 0 26px 70px rgba(0,0,0,.5);
  opacity: 0; transform: scale(.7) translateY(14px);
  animation: introLogo 1s cubic-bezier(.2,.85,.25,1) .12s forwards;
}
@keyframes introLogo { to { opacity: 1; transform: scale(1) translateY(0); } }

.intro-word {
  margin-top: 26px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .34em; font-size: clamp(1.4rem, 5vw, 2.5rem);
  display: inline-flex; padding-left: .34em; overflow: hidden;
}
.intro-word span { display: inline-block; opacity: 0; transform: translateY(115%); }
.intro-word .i-nord  { color: var(--cream); animation: introWord .75s cubic-bezier(.2,.85,.25,1) .55s forwards; }
.intro-word .i-frame { color: var(--olive); animation: introWord .75s cubic-bezier(.2,.85,.25,1) .7s forwards; }
@keyframes introWord { to { opacity: 1; transform: translateY(0); } }

.intro-line {
  width: 0; height: 2px; margin: 20px auto 0;
  background: linear-gradient(90deg, transparent, var(--olive), transparent);
  animation: introLine .9s ease 1.05s forwards;
}
@keyframes introLine { to { width: min(260px, 60vw); } }

@media (prefers-reduced-motion: reduce) {
  .intro { animation-delay: .25s; }
  .intro-logo, .intro-word span, .intro-line { animation-duration: .01s !important; animation-delay: 0s !important; }
}

/* =========================================================
   Header / Nav  (Logo + Schriftzug + Drei-Striche-Menü)
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: rgba(255,255,255,.88); backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: background .3s ease, border-color .3s ease;
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; }

.brand { display: flex; align-items: center; gap: 14px; }
.brand img { height: 44px; width: 44px; border-radius: 0; object-fit: cover; box-shadow: var(--shadow-sm); }
.wordmark {
  font-weight: 800; text-transform: uppercase; letter-spacing: .18em;
  font-size: 1.18rem; line-height: 1; transition: color .3s ease;
}
.wordmark .wm-1 { color: var(--ink); }
.wordmark .wm-2 { color: var(--olive); }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-cta-btn { transition: opacity .25s ease; }

/* Drei-Striche-Button */
.nav-toggle {
  position: relative; width: 50px; height: 50px; border: 0; cursor: pointer;
  background: var(--bg-soft); border-radius: 0; padding: 0;
  transition: background .2s ease; z-index: calc(var(--z-header) + 1);
}
.nav-toggle:hover { background: var(--bg-mute); }
.nav-toggle span {
  position: absolute; left: 13px; right: 13px; height: 2.5px; border-radius: 0;
  background: var(--ink); transition: transform .35s cubic-bezier(.6,0,.2,1), opacity .2s ease, background .3s ease;
}
.nav-toggle span:nth-child(1) { top: 18px; }
.nav-toggle span:nth-child(2) { top: 24px; }
.nav-toggle span:nth-child(3) { top: 30px; }
.nav-toggle.open span { background: var(--cream); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Wenn Overlay offen: Header transparent, Schrift hell */
body.menu-open .site-header { background: transparent; border-color: transparent; }
body.menu-open .wordmark .wm-1 { color: #fff; }
body.menu-open .wordmark .wm-2 { color: var(--olive); }
body.menu-open .nav-cta-btn { opacity: 0; pointer-events: none; }

/* Vollbild-Overlay-Menü */
.overlay-menu {
  position: fixed; inset: 0; z-index: var(--z-overlay);
  background:
    radial-gradient(800px 500px at 90% 8%, rgba(124,138,85,.30), transparent 60%),
    linear-gradient(160deg, var(--forest-2), var(--forest));
  clip-path: circle(0% at calc(100% - 49px) 53px);
  transition: clip-path .6s cubic-bezier(.76,0,.24,1);
  visibility: hidden;
}
.overlay-menu.open { clip-path: circle(160% at calc(100% - 49px) 53px); visibility: visible; }
.overlay-nav { height: 100%; display: flex; flex-direction: column; justify-content: center; }
.overlay-nav ul { list-style: none; margin: 0; padding: 0; }
.overlay-nav li { overflow: hidden; margin: 4px 0; }
.overlay-nav li a {
  display: inline-block; color: var(--cream); font-weight: 800; text-transform: uppercase;
  letter-spacing: .04em; font-size: clamp(2.1rem, 8vw, 4.2rem); line-height: 1.18;
  transform: translateY(110%); transition: color .2s ease, padding-left .25s ease;
}
.overlay-menu.open li a { animation: menuItem .6s cubic-bezier(.2,.85,.25,1) forwards; }
.overlay-menu.open li:nth-child(1) a { animation-delay: .12s; }
.overlay-menu.open li:nth-child(2) a { animation-delay: .19s; }
.overlay-menu.open li:nth-child(3) a { animation-delay: .26s; }
.overlay-menu.open li:nth-child(4) a { animation-delay: .33s; }
.overlay-menu.open li:nth-child(5) a { animation-delay: .40s; }
.overlay-menu.open li:nth-child(6) a { animation-delay: .47s; }
.overlay-nav li a:hover { color: var(--olive); padding-left: 16px; }
@keyframes menuItem { to { transform: translateY(0); } }
.overlay-foot {
  margin-top: 44px; display: flex; gap: 26px; flex-wrap: wrap;
  opacity: 0; transition: opacity .4s ease .45s;
}
.overlay-menu.open .overlay-foot { opacity: 1; }
.overlay-foot a { color: #9aa589; font-size: .95rem; }
.overlay-foot a:hover { color: #fff; }
@media (prefers-reduced-motion: reduce) {
  .overlay-menu { transition: none; }
  .overlay-nav li a { transition: color .2s ease; }
  .overlay-menu.open li a { animation: none; transform: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 520px at 88% -12%, rgba(124,138,85,.34), transparent 58%),
    radial-gradient(700px 420px at 0% 110%, rgba(53,94,52,.16), transparent 55%),
    linear-gradient(180deg, var(--bg-soft), var(--bg));
  padding: 100px 0 84px;
}
.hero h1 { max-width: 16ch; }
.hero h1 .accent { color: var(--brand); }
.hero .lead { margin-top: 1.2rem; }
/* Präsentes Logo auf der Startseite (zusätzlich zum Header-Logo) */
.hero-logo {
  display: block; width: clamp(112px, 16vw, 160px); height: auto;
  margin: 0 0 26px; box-shadow: var(--shadow);
  border-left: 4px solid var(--olive);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 2rem; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.hero-card {
  position: relative; color: #e9ece1; border-radius: var(--radius); padding: 34px;
  background:
    radial-gradient(500px 280px at 100% 0%, rgba(124,138,85,.4), transparent 60%),
    linear-gradient(155deg, var(--forest-2), var(--forest));
  box-shadow: var(--shadow);
  border: 1px solid rgba(124,138,85,.3);
  /* schnittiger Eckschnitt unten rechts */
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%);
}
.hero-card h3 { color: #fff; }
.hero-card ul { list-style: none; padding: 0; margin: 0; }
.hero-card li { display: flex; gap: 12px; align-items: flex-start; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.hero-card li:last-child { border-bottom: 0; }
.hero-card .tick { color: var(--olive); font-weight: 900; }

/* ---------- Grids / Cards ---------- */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform .32s cubic-bezier(.2,.7,.2,1), box-shadow .32s ease, background .32s ease, border-color .32s ease;
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%;
  background: linear-gradient(90deg, var(--brand), var(--olive));
  transform: scaleX(1); transform-origin: left; transition: transform .3s ease;
}
.card:hover { transform: translateY(-9px) scale(1.03); z-index: 2; background: #f2f7ea; border-color: var(--olive); box-shadow: 0 24px 48px rgba(53,94,52,.26); }
.card .ico {
  width: 54px; height: 54px; border-radius: 0; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--brand), var(--forest-2));
  color: var(--cream); margin-bottom: 18px; font-size: 1.5rem;
  box-shadow: 0 8px 18px rgba(20,33,17,.22);
}
.card:nth-child(3n+2) .ico { background: linear-gradient(150deg, var(--olive), var(--olive-dk)); }
.card:nth-child(3n) .ico   { background: linear-gradient(150deg, var(--forest-2), var(--brand)); }
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--muted); margin-bottom: 0; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; }
.step { display: flex; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.step:last-child { border-bottom: 0; }
.step .num {
  counter-increment: step; flex: 0 0 auto; width: 44px; height: 44px; border-radius: 0;
  background: linear-gradient(150deg, var(--brand), var(--olive)); color: #fff; font-weight: 800;
  display: grid; place-items: center; box-shadow: 0 8px 16px rgba(53,94,52,.28);
}
.step .num::before { content: counter(step); }
.step h3 { margin-bottom: .2rem; }
.step p { margin: 0; color: var(--muted); }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); transition: .2s ease;
}
.price:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.price--featured {
  border-color: transparent; box-shadow: var(--shadow); position: relative; color: var(--cream);
  background:
    radial-gradient(500px 280px at 100% 0%, rgba(124,138,85,.35), transparent 60%),
    linear-gradient(155deg, var(--forest-2), var(--forest));
}
.price--featured h3, .price--featured .amount { color: #fff; }
.price--featured .muted, .price--featured .from { color: #c3cdb2 !important; }
.price--featured li { color: #e6ebda; border-color: rgba(255,255,255,.12); }
.price--featured li .tick { color: var(--olive); }
.price--featured .badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--olive); color: #fff; font-size: .72rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px;
}
.price h3 { font-size: 1.3rem; }
.price .amount { font-size: 2.4rem; font-weight: 800; color: var(--ink); margin: 6px 0 2px; }
.price .amount small { font-size: .95rem; font-weight: 500; color: var(--muted); }
.price .from { font-size: .85rem; color: var(--muted); }
.price ul { list-style: none; padding: 0; margin: 18px 0 24px; }
.price li { display: flex; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--line); color: var(--ink); }
.price li:last-child { border-bottom: 0; }
.price li .tick { color: var(--brand); font-weight: 900; }
.price .btn { margin-top: auto; }

/* ---------- CTA band ---------- */
.cta {
  background:
    radial-gradient(700px 320px at 12% 0%, rgba(124,138,85,.32), transparent 60%),
    linear-gradient(160deg, var(--forest-2), var(--forest));
  color: #eef1e8; border-radius: var(--radius); padding: 60px; text-align: center;
  border: 1px solid rgba(124,138,85,.2);
}
.cta h2 { color: #fff; }
.cta p { color: #cfd6c4; max-width: 56ch; margin-inline: auto; }

/* ---------- FAQ (Aufklapp-Liste) ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq details {
  border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff;
  margin-bottom: 14px; box-shadow: var(--shadow-sm); overflow: hidden; transition: border-color .2s ease;
}
.faq details[open] { border-color: #c7d0ac; }
.faq summary {
  cursor: pointer; list-style: none; padding: 20px 24px; font-weight: 700; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; color: var(--brand); font-size: 1.6rem; font-weight: 700; line-height: 1;
  transition: transform .25s ease;
}
.faq details[open] summary { color: var(--brand); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-body { padding: 0 24px 22px; color: var(--muted); }
.faq .faq-body p { margin: 0; }

/* ---------- Kontakt auf Startseite ---------- */
.contact-cta { display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px; align-items: center; }
.contact-cta__list { list-style: none; padding: 0; margin: 18px 0 0; display: flex; flex-wrap: wrap; gap: 10px 22px; }
.contact-cta__list li { display: flex; align-items: center; gap: 8px; color: #dfe6d2; font-weight: 600; }
.contact-cta__list .tick { color: var(--olive); font-weight: 900; }
.contact-card {
  background: #fff; border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow);
  border: 1px solid rgba(124,138,85,.2); color: var(--ink);
}
.contact-card h3 { margin-top: 0; color: var(--ink); }
.contact-card .field label { color: var(--ink); }
.contact-card .consent label { color: var(--muted); }

/* ---------- Contact (Kontaktseite) ---------- */
.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: start; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .95rem; margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font: inherit; color: var(--ink); background: #fcfdfa; transition: .15s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--brand); background: #fff; box-shadow: 0 0 0 3px rgba(53,94,52,.14);
}
.field textarea { min-height: 140px; resize: vertical; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; color: var(--muted); }
.consent input { width: auto; margin-top: 4px; flex: 0 0 auto; }
.contact-aside { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.contact-aside h3 { margin-top: 0; }
.contact-aside dl { margin: 0; }
.contact-aside dt { font-weight: 700; margin-top: 14px; }
.contact-aside dd { margin: 2px 0 0; color: var(--muted); }

/* ---------- Legal pages ---------- */
.legal { max-width: 800px; }
.legal h2 { margin-top: 2em; font-size: 1.4rem; }
.legal h3 { margin-top: 1.4em; }
.legal p, .legal li { color: var(--ink); }
.note {
  background: var(--bg-mute); border-left: 4px solid var(--olive); border-radius: 8px;
  padding: 14px 18px; color: var(--muted); font-size: .92rem; margin: 1.4em 0;
}
.placeholder { background: #fff7d6; padding: 1px 6px; border-radius: 4px; font-weight: 600; color: #6b5a00; }

/* ---------- Footer ---------- */
.site-footer {
  background:
    radial-gradient(700px 360px at 95% 0%, rgba(124,138,85,.16), transparent 60%),
    var(--forest);
  color: #c8cfbd; padding: 60px 0 28px;
}
.site-footer a { color: #dfe5d4; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; margin-bottom: 36px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.footer-brand img { height: 40px; width: 40px; border-radius: 0; }
.footer-brand span { color: #fff; font-weight: 800; font-size: 1.1rem; text-transform: uppercase; letter-spacing: .14em; }
.footer-brand span .wm-2 { color: var(--olive); }
.footer-col h4 { color: #fff; font-size: .95rem; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 20px;
  display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between;
  font-size: .88rem; color: #9aa589;
}
.footer-bottom a { color: #9aa589; }

/* ---------- Page hero (Unterseiten) ---------- */
.page-hero {
  background:
    radial-gradient(700px 360px at 92% -20%, rgba(124,138,85,.28), transparent 58%),
    var(--bg-soft);
  border-bottom: 1px solid var(--line); padding: 68px 0 58px;
}
.page-hero .lead { margin-top: .6rem; }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; }
.stack > * + * { margin-top: 1rem; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid, .contact-grid, .contact-cta { grid-template-columns: 1fr; }
  .grid--3, .pricing { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 62px 0; }
  .nav { height: 70px; }
  .nav-cta-btn { display: none; }      /* CTA wandert ins Overlay-Menü */
  .grid--3, .grid--2, .pricing { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta { padding: 42px 24px; }
  .wordmark { font-size: 1.05rem; letter-spacing: .14em; }
}

/* =========================================================
   Variante „Schnitt" – Layout v2 + Effekte
   ========================================================= */

/* Scroll-Fortschrittsbalken */
.progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 400;
  background: linear-gradient(90deg, var(--brand), var(--olive));
}

/* Scroll-Reveal */
.reveal { opacity: 0; transform: translateY(30px);
  transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; } }

/* ---------- Dunkler Hero (Layout v2) ---------- */
.hero-alt {
  position: relative; overflow: hidden; color: var(--cream);
  padding: 124px 0 96px;
  background:
    radial-gradient(900px 480px at 85% -10%, rgba(124,138,85,.30), transparent 60%),
    radial-gradient(700px 420px at 0% 120%, rgba(53,94,52,.28), transparent 55%),
    linear-gradient(160deg, #1b2c16, var(--forest));
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 56px), 0 100%);
}
.hero-alt .eyebrow { color: var(--olive); }
.hero-alt__inner { display: grid; grid-template-columns: auto 1fr; gap: 38px; align-items: center; }
.hero-logo-xl {
  width: clamp(120px, 17vw, 188px); height: auto;
  box-shadow: 0 30px 70px rgba(0,0,0,.45); border-left: 5px solid var(--olive);
  animation: heroLogoIn 1s cubic-bezier(.2,.85,.25,1) both;
}
@keyframes heroLogoIn { from { opacity: 0; transform: translateX(-30px) scale(.92); } to { opacity: 1; transform: none; } }
.hero-alt h1 { color: #fff; font-size: clamp(2.4rem, 6.4vw, 4.8rem); line-height: 1.03; letter-spacing: -.02em; max-width: 20ch; }
.hero-alt h1 .accent { color: var(--olive); }
.hero-alt .lead { color: #d2dac4; max-width: 60ch; margin-top: 1.1rem; }
.hero-alt .hero-actions { margin-top: 1.9rem; }
.hero-alt .btn--ghost { color: #fff; border-color: rgba(255,255,255,.35); }
.hero-alt .btn--ghost:hover { border-color: var(--olive); color: var(--olive); background: transparent; }

/* Kinetische Headline (Wörter fahren hoch) */
.kin { display: inline-block; overflow: hidden; vertical-align: top; }
.kin > span { display: inline-block; transform: translateY(110%); animation: kinUp .7s cubic-bezier(.2,.85,.25,1) both; }
@keyframes kinUp { to { transform: none; } }
@media (prefers-reduced-motion: reduce) { .kin > span { transform: none; animation: none; } .hero-logo-xl { animation: none; } }

/* Lauftext-Band */
.marquee {
  margin-top: 56px; overflow: hidden; white-space: nowrap;
  border-top: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16);
}
.marquee__track { display: inline-flex; animation: marquee 24s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  display: inline-flex; align-items: center; padding: 16px 0; color: #e9ece1;
  font-weight: 800; text-transform: uppercase; letter-spacing: .12em; font-size: 1.02rem;
}
.marquee__track span::after { content: "◆"; color: var(--olive); margin: 0 30px; font-size: .62em; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ---------- Leistungen: nummerierte Editorial-Liste ---------- */
.svc-list { border-top: 1px solid var(--line); margin-top: 8px; }
.svc-item {
  display: grid; grid-template-columns: 86px 1fr; gap: 24px; align-items: center;
  padding: 30px 6px; border-bottom: 1px solid var(--line);
  transition: background .25s ease, padding .25s ease;
}
.svc-item:hover { background: var(--bg-soft); padding-left: 22px; }
.svc-num { font-size: 1.45rem; font-weight: 800; color: var(--olive); font-variant-numeric: tabular-nums; }
.svc-item h3 { margin: 0 0 .15em; font-size: 1.4rem; }
.svc-item p { margin: 0; color: var(--muted); max-width: 62ch; }
.svc-arrow { display: none; }

/* ---------- Ablauf als Zeitstrahl ---------- */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 12px; counter-reset: tl; }
.tl-step { position: relative; padding: 30px 24px; border-left: 1px solid var(--line); }
.tl-step:first-child { border-left: 0; padding-left: 6px; }
.tl-step::before {
  counter-increment: tl; content: "0" counter(tl);
  display: block; font-weight: 800; color: var(--olive); font-size: 1.6rem; margin-bottom: 12px;
}
.tl-step h3 { margin: 0 0 .3em; font-size: 1.12rem; }
.tl-step p { margin: 0; color: var(--muted); font-size: .96rem; }

@media (max-width: 760px) {
  .hero-alt__inner { grid-template-columns: 1fr; gap: 26px; }
  .svc-item { grid-template-columns: 54px 1fr; }
  .svc-arrow { display: none; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .tl-step { border-left: 0; border-top: 1px solid var(--line); padding-left: 6px; }
}

/* ---------- Kontakt-Karte aufgewertet (mehr Grün, lebendiger) ---------- */
.contact-card {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f2f7ea 100%);
  border: 1px solid rgba(124,138,85,.40);
  padding: 36px 32px 32px;
}
.contact-card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 6px; width: 100%;
  background: linear-gradient(90deg, var(--brand), var(--olive));
}
.contact-card__eyebrow {
  display: inline-block; font-size: .74rem; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--brand); margin-bottom: 6px;
}
.contact-card h3 { font-size: 1.5rem; margin: 0 0 6px; }
.contact-card__hint {
  display: flex; align-items: center; gap: 9px; margin: 0 0 22px;
  color: var(--olive-dk); font-weight: 600; font-size: .92rem;
}
.contact-card__hint::before {
  content: "✓"; flex: 0 0 auto; width: 20px; height: 20px; display: grid; place-items: center;
  background: var(--brand); color: #fff; font-size: .72rem; font-weight: 900;
}
.contact-card .field label { color: var(--brand-dk); font-weight: 700; }
.contact-card .field input,
.contact-card .field textarea,
.contact-card .field select {
  background: #f4f8ee; border-color: rgba(124,138,85,.38);
}
.contact-card .field input:focus,
.contact-card .field textarea:focus,
.contact-card .field select:focus {
  background: #fff; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(53,94,52,.16);
}
.contact-card .consent { color: var(--muted); }

/* =========================================================
   Leistungs-Karten im Referenz-Stil (eckig, Nordframe-Grün)
   ========================================================= */
.lcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.lcard {
  position: relative; overflow: hidden; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-bottom: 4px solid transparent;
  padding: 28px 28px 26px; box-shadow: var(--shadow-sm);
  transition: transform .32s cubic-bezier(.2,.7,.2,1), box-shadow .32s ease,
              border-color .32s ease, background .32s ease, color .32s ease;
}
.lcard__top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 22px; }
.lcard__ico {
  width: 58px; height: 58px; display: grid; place-items: center; font-size: 1.6rem;
  background: linear-gradient(150deg, var(--forest-2), var(--brand)); color: var(--olive);
  box-shadow: 0 10px 22px rgba(20,33,17,.22); transition: background .32s ease, color .32s ease;
}
.lcard__num {
  font-size: 3.6rem; font-weight: 800; line-height: .85; letter-spacing: -.03em;
  color: rgba(22,36,26,.09); font-variant-numeric: tabular-nums; transition: color .32s ease;
}
.lcard h3 { font-size: 1.3rem; margin: 0 0 .4em; transition: color .32s ease; }
.lcard p { color: var(--muted); margin: 0 0 22px; transition: color .32s ease; }
.lcard__link {
  margin-top: auto; align-self: flex-start; font-weight: 800; color: var(--brand);
  text-transform: uppercase; letter-spacing: .07em; font-size: .82rem; transition: color .32s ease;
}

/* Alle Karten gleich – das Grün erscheint erst beim Hover */
.lcard:hover {
  transform: translateY(-9px); z-index: 2; color: var(--cream);
  border-color: transparent; border-bottom-color: var(--olive);
  background:
    radial-gradient(440px 240px at 100% 0%, rgba(124,138,85,.32), transparent 60%),
    linear-gradient(155deg, var(--forest-2), var(--forest));
  box-shadow: 0 26px 50px rgba(20,33,17,.34);
}
.lcard:hover h3 { color: #fff; }
.lcard:hover p { color: #d2dac4; }
.lcard:hover .lcard__ico { background: linear-gradient(150deg, var(--olive), var(--olive-dk)); color: var(--forest); }
.lcard:hover .lcard__num { color: rgba(255,255,255,.16); }
.lcard:hover .lcard__link { color: var(--olive); }

@media (max-width: 900px) { .lcards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .lcards { grid-template-columns: 1fr; } .lcard--featured { transform: none; } }

/* =========================================================
   Über uns: kompaktes Foto + kreative Werte-Kacheln
   ========================================================= */
.about-grid { display: grid; grid-template-columns: 280px 1fr; gap: 48px; align-items: center; }
.about-photo {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block;
  border-left: 5px solid var(--olive); box-shadow: var(--shadow);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 26px), calc(100% - 26px) 100%, 0 100%);
}
@media (max-width: 720px) {
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-photo { max-width: 260px; }
}

/* Werte als eckige „Manifest"-Kacheln (dunkel, mit Umriss-Nummer) */
.vgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.vtile {
  position: relative; overflow: hidden; padding: 34px 30px 30px; color: var(--cream);
  background:
    radial-gradient(360px 200px at 100% 0%, rgba(124,138,85,.28), transparent 60%),
    linear-gradient(155deg, var(--forest-2), var(--forest));
  border: 1px solid rgba(124,138,85,.28);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%);
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease;
}
.vtile:hover { transform: translateY(-6px); box-shadow: 0 24px 46px rgba(20,33,17,.36); }
.vtile__num {
  position: absolute; top: 14px; right: 22px; font-size: 3.4rem; font-weight: 800; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px rgba(124,138,85,.55);
}
.vtile__label {
  display: inline-block; font-size: .72rem; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--olive); margin-bottom: 10px;
}
.vtile h3 { color: #fff; margin: 0 0 .4em; font-size: 1.22rem; }
.vtile p { color: #d2dac4; margin: 0; }
.vtile::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 4px; width: 0;
  background: var(--olive); transition: width .35s ease;
}
.vtile:hover::after { width: 100%; }
@media (max-width: 700px) { .vgrid { grid-template-columns: 1fr; } }

/* =========================================================
   Leistungs-Detailblöcke (Leistungen-Seite)
   ========================================================= */
.svc-block { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: start; }
.svc-block + .svc-block { margin-top: 72px; padding-top: 72px; border-top: 1px solid var(--line); }
.svc-block__head { position: sticky; top: 110px; }
.svc-block__num {
  display: block; font-size: 3.2rem; font-weight: 800; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px rgba(124,138,85,.7); margin-bottom: 14px;
}
.section--forest .svc-block + .svc-block { border-color: rgba(255,255,255,.14); }
@media (max-width: 860px) {
  .svc-block { grid-template-columns: 1fr; gap: 22px; }
  .svc-block__head { position: static; }
  .svc-block + .svc-block { margin-top: 48px; padding-top: 48px; }
}

/* ---------- Häkchen-Liste ---------- */
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 2px; }
.checklist li {
  display: flex; gap: 12px; align-items: flex-start; padding: 12px 0;
  border-bottom: 1px solid var(--line); color: var(--ink); margin: 0;
}
.checklist li:last-child { border-bottom: 0; }
.checklist li::before {
  content: "✓"; flex: 0 0 auto; width: 22px; height: 22px; margin-top: 2px;
  display: grid; place-items: center; background: var(--brand); color: #fff;
  font-size: .74rem; font-weight: 900;
}
.section--forest .checklist li { color: #dfe6d2; border-color: rgba(255,255,255,.14); }
.section--forest .checklist li::before { background: var(--olive); color: var(--forest); }

/* ---------- Vergleich: vorher / nachher ---------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.compare__col { border: 1px solid var(--line); background: #fff; padding: 28px 26px; }
.compare__col--bad { background: var(--bg-soft); }
.compare__col h3 { font-size: 1.1rem; margin-bottom: .8em; }
.compare__col ul { list-style: none; padding: 0; margin: 0; }
.compare__col li { display: flex; gap: 10px; padding: 9px 0; color: var(--muted); }
.compare__col li span { flex: 0 0 auto; font-weight: 900; }
.compare__col--bad li span { color: #a24a3c; }
.compare__col--good li span { color: var(--brand); }
@media (max-width: 700px) { .compare { grid-template-columns: 1fr; } }

/* ---------- Referenzen ---------- */
.refs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ref {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease, border-color .3s ease;
}
.ref:hover { transform: translateY(-8px); border-color: var(--olive); box-shadow: 0 24px 48px rgba(53,94,52,.24); }
.ref img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-bottom: 4px solid var(--olive); }
.ref__body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.ref__tag {
  font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--olive-dk); margin-bottom: 8px;
}
.ref h3 { font-size: 1.15rem; margin-bottom: .35em; }
.ref p { color: var(--muted); margin: 0 0 18px; }
.ref__link { margin-top: auto; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; font-size: .8rem; }
@media (max-width: 900px) { .refs { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .refs { grid-template-columns: 1fr; } }

/* =========================================================
   Mobil-Feinschliff (durchgehend responsiv)
   ========================================================= */
/* Lange Wörter/Links nie überlaufen lassen */
h1, h2, h3, p, li, a, summary { overflow-wrap: break-word; }
.legal a, .contact-aside a, .footer-bottom { overflow-wrap: anywhere; }
.hero-alt__inner > * { min-width: 0; }
.contact-cta > *, .contact-grid > * { min-width: 0; }

@media (max-width: 760px) {
  .hero-alt { padding: 104px 0 76px; }
  .hero-alt__inner { gap: 26px; }
  .hero-alt h1 { font-size: clamp(2rem, 8vw, 2.9rem); }
}

@media (max-width: 560px) {
  .container { padding-inline: 18px; }
  .section { padding: 54px 0; }
  .page-hero { padding: 52px 0 44px; }
  .hero-alt { padding: 92px 0 60px; }
  .hero-alt h1 { font-size: clamp(1.85rem, 9vw, 2.5rem); }
  .marquee { margin-top: 40px; }

  /* Ablauf-Zeitstrahl untereinander */
  .timeline { grid-template-columns: 1fr; }
  .tl-step { border-left: 0; border-top: 1px solid var(--line); padding: 22px 4px; }

  /* Buttons im Hero voll breit & sauber gestapelt */
  .hero-actions { width: 100%; gap: 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .btn--lg { padding: 16px 22px; font-size: .95rem; }

  /* Karten/Kacheln etwas kompakter */
  .card { padding: 26px 22px; }
  .vtile { padding: 28px 22px 26px; }
  .contact-card { padding: 28px 22px; }
  .cta { padding: 38px 20px; }

  /* Foto auf „Über Nordframe" zentriert */
  .about-photo { margin-inline: auto; }
}

@media (max-width: 380px) {
  .hero-alt h1 { font-size: 1.7rem; }
  h1 { font-size: 1.8rem; }
}

/* =========================================================
   Vorher/Nachher-Vergleich (fiktive Beispielseiten)
   ========================================================= */
.ba { max-width: 1000px; margin-inline: auto; }

/* Reiter für die Beispiele */
.ba__tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 24px; }
.ba__tab {
  font: inherit; font-size: .8rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase;
  padding: 11px 20px; border: 1px solid rgba(255,255,255,.26); background: transparent; color: #d2dac4;
  cursor: pointer; transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.ba__tab:hover { border-color: var(--olive); color: #fff; }
.ba__tab.is-active { background: var(--olive); border-color: var(--olive); color: var(--forest); }

.ba__stage { display: none; }
.ba__stage.is-active { display: block; }

/* Browserrahmen */
.ba__browser {
  position: relative; background: #fff; border: 1px solid rgba(124,138,85,.35);
  box-shadow: 0 30px 64px rgba(0,0,0,.42);
}
.ba__bar { display: flex; align-items: center; gap: 7px; padding: 10px 14px; background: #e9ecdf; border-bottom: 1px solid #cfd6c0; }
.ba__dot { width: 10px; height: 10px; border-radius: 50%; background: #c3c9b4; flex: 0 0 auto; }
.ba__url {
  margin-left: 8px; flex: 1; min-width: 0; background: #fff; border: 1px solid #d8ddcc;
  padding: 4px 12px; font-size: .72rem; color: #6d7563;
  overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
}

/* Die eigentliche Vergleichsfläche */
.ba__viewport { position: relative; height: 470px; overflow: hidden; --pos: 50%; }
.ba__layer { position: absolute; inset: 0; overflow: hidden; }
.ba__layer--new { z-index: 1; }
.ba__layer--old { z-index: 2; clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba__handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos); width: 3px;
  background: var(--olive); z-index: 4; transform: translateX(-50%); pointer-events: none;
}
.ba__handle::after {
  content: "◀ ▶"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  display: grid; place-items: center; width: 62px; height: 40px; font-size: .68rem; letter-spacing: .04em;
  background: var(--olive); color: var(--forest); font-weight: 900;
  box-shadow: 0 8px 20px rgba(0,0,0,.4);
}
.ba__range {
  position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; padding: 0;
  z-index: 5; opacity: 0; cursor: ew-resize; background: transparent;
  -webkit-appearance: none; appearance: none;
}
.ba__range::-webkit-slider-thumb { -webkit-appearance: none; width: 56px; height: 470px; }
.ba__range::-moz-range-thumb { width: 56px; height: 470px; border: 0; border-radius: 0; }
.ba__range:focus-visible ~ .ba__handle::after { outline: 3px solid #fff; outline-offset: 3px; }

.ba__badge {
  position: absolute; bottom: 13px; z-index: 3; padding: 6px 13px;
  font-family: var(--font); font-size: .66rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
}
.ba__badge--old { left: 16px; background: #8d3a29; color: #fff; }
.ba__badge--new { right: 16px; background: var(--brand); color: #fff; }

.ba__hint { text-align: center; margin: 18px 0 0; color: #d2dac4; font-size: .92rem; }
.ba__note { text-align: center; margin: 8px 0 0; color: #9aa589; font-size: .82rem; }

/* =========================================================
   Attrappen der Beispielseiten
   Sechs eigenständige Entwürfe. Die alten Seiten sind schlichte
   Vorlagen mit einer einzigen Grundfarbe (rot / blau / gelb),
   die neuen greifen dieselbe Farbe modern und hell auf.
   ========================================================= */

/* Farben der dunklen Sektion abschirmen. Gleiche Spezifität wie
   `.section--forest p`, steht aber später – die Regeln der einzelnen
   Attrappen weiter unten schlagen diese hier. */
.mk h1, .mk h2, .mk h3, .mk h4, .mk p { color: inherit; }
.mk { position: absolute; inset: 0; overflow: hidden; font-family: var(--font); }
/* Platz für die Vorher/Nachher-Etiketten in den Fußzeilen */
.eo-foot, .do-foot, .po-foot { padding-left: 108px; }
.en-foot, .dn-foot, .pn-foot { padding-right: 112px; }

/* =========================================================
   1a · ELEKTRO — vorher: schlichte Vorlage in Rot
   Aufbau: Farbband mit Textmenü, Brotkrume, Fotostreifen,
   links Infokästen, rechts Fließtext.
   ========================================================= */
.mk-eo { background: #fff; color: #444; font-size: 12px; line-height: 1.55; }
.eo-band { background: #9d2f26; padding: 12px 18px; display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; }
.eo-logo { color: #fff; font-size: 19px; font-weight: 400; letter-spacing: .02em; }
.eo-logo b { font-weight: 700; }
.eo-logo small { display: block; font-size: 9.5px; color: #f0c9c5; letter-spacing: .04em; }
.eo-menu { display: flex; gap: 15px; font-size: 11.5px; color: #f6dedb; padding-bottom: 3px; }
.eo-menu .is-on { color: #fff; text-decoration: underline; }
.eo-crumb { background: #f0efed; border-bottom: 1px solid #e0dedb; padding: 4px 18px; font-size: 10px; color: #8a8580; }
.eo-photo {
  height: 118px; position: relative; overflow: hidden; border-bottom: 1px solid #d8d5d1;
  background:
    radial-gradient(60px 60px at 82% 22%, rgba(255,250,225,.9), transparent 70%),
    linear-gradient(#9fc2dd 0 58%, #86a86d 58% 100%);
}
/* Dach der Halle */
.eo-photo::before {
  content: ""; position: absolute; left: 20%; right: 22%; bottom: 38px; height: 34px;
  background: #7d5a49; clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
/* Halle darunter */
.eo-photo::after {
  content: ""; position: absolute; left: 26%; right: 28%; bottom: 0; height: 38px;
  background: linear-gradient(#d6d0c3, #c2bbac);
}
.eo-cols { display: grid; grid-template-columns: 196px 1fr; gap: 20px; padding: 18px; align-items: start; }
.eo-box { border: 1px solid #dcd9d5; margin-bottom: 12px; font-size: 11px; line-height: 1.5; color: #55514d; }
.eo-box b { display: block; background: #9d2f26; color: #fff; font-weight: 600; padding: 5px 9px; font-size: 11.5px; }
.eo-box span { display: block; padding: 8px 9px; }
.mk-eo h3 { font-size: 16px; color: #9d2f26; font-weight: 600; margin: 0 0 6px; }
.mk-eo p { font-size: 11.5px; margin: 0 0 8px; color: #4c4845; }
.eo-lead { font-size: 12.5px !important; color: #6b6763 !important; }
.eo-foot { position: absolute; left: 0; right: 0; bottom: 0; background: #f0efed; border-top: 1px solid #dcd9d5; padding: 8px 18px; font-size: 10px; color: #8a8580; }

/* =========================================================
   1b · ELEKTRO — nachher: Teamfoto als ganzflächiger Hintergrund,
   heller Creme-Schleier darüber, rechts ein Terminbuchungs-Widget
   ========================================================= */
.mk-en {
  color: #241d19; font-size: 12px;
  background:
    linear-gradient(97deg, rgba(250,246,242,.975) 0%, rgba(250,246,242,.94) 30%, rgba(250,246,242,.62) 58%, rgba(250,246,242,.14) 100%),
    url("../img/beispiel-elektro.jpg") 64% 56% / cover no-repeat,
    #faf6f2;
}
.en-nav {
  display: flex; align-items: center; gap: 18px; margin: 14px 20px 0; padding: 9px 10px 9px 18px;
  background: rgba(255,255,255,.94); border-radius: 999px; box-shadow: 0 10px 26px rgba(60,35,20,.14);
  backdrop-filter: blur(8px); font-size: 11px; color: #6b5d55;
}
.en-logo { font-size: 13px; font-weight: 700; color: #241d19; letter-spacing: -.01em; margin-right: auto; }
.en-logo i { color: #c2542d; font-style: normal; }
.en-cta { background: #c2542d; color: #fff; border-radius: 999px; padding: 8px 15px; font-size: 10.5px; font-weight: 700; }
.en-hero { display: grid; grid-template-columns: 1.02fr .98fr; gap: 22px; align-items: center; padding: 20px 24px 0; }
.en-rating {
  display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,.92); border: 1px solid #eadfd6;
  border-radius: 999px; padding: 6px 13px; font-size: 10px; color: #6b5d55; margin-bottom: 13px;
  box-shadow: 0 4px 12px rgba(60,35,20,.08);
}
.en-rating em { color: #e0a52e; font-style: normal; letter-spacing: -1px; }
.en-rating b { color: #241d19; }
.mk-en h3 { font-size: 29px; line-height: 1.1; margin: 0 0 10px; color: #201814; }
.mk-en h3 em { font-style: normal; color: #c2542d; }
.mk-en p { font-size: 12px; color: #5f5149; margin: 0 0 15px; max-width: 30ch; }
.en-row { display: flex; align-items: center; gap: 14px; }
.en-btn { background: #c2542d; color: #fff; border-radius: 999px; padding: 12px 20px; font-size: 11.5px; font-weight: 700; box-shadow: 0 12px 24px rgba(194,84,45,.3); }
.en-link { font-size: 11.5px; font-weight: 600; color: #241d19; border-bottom: 1px solid #cdb8a9; padding-bottom: 2px; }

/* Terminbuchung in zwei Schritten – das Alleinstellungsmerkmal dieser Seite */
.en-book {
  background: rgba(255,255,255,.96); border: 1px solid #f1e3d9; border-radius: 20px;
  padding: 14px 16px 15px; box-shadow: 0 24px 46px rgba(70,38,20,.24); backdrop-filter: blur(8px);
}
.en-book__head { display: flex; align-items: center; gap: 7px; font-size: 10px; color: #6b5d55; margin-bottom: 12px; }
.en-book__head b { color: #241d19; }
.en-live {
  width: 7px; height: 7px; border-radius: 50%; background: #2fa76a; flex: 0 0 auto;
  box-shadow: 0 0 0 3px rgba(47,167,106,.20); animation: enPuls 2.6s ease-in-out infinite;
}
@keyframes enPuls { 50% { box-shadow: 0 0 0 7px rgba(47,167,106,0); } }
.en-book__step {
  display: flex; align-items: center; gap: 7px; font-size: 9.5px; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase; color: #96837a; margin: 0 0 7px;
}
.en-book__step i {
  width: 16px; height: 16px; border-radius: 50%; background: #c2542d; color: #fff;
  font-style: normal; font-size: 9px; font-weight: 800; display: grid; place-items: center; flex: 0 0 auto;
}
.en-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 13px; }
.en-tags span { background: #fff; border: 1px solid #ead9cd; border-radius: 999px; padding: 5px 11px; font-size: 10px; color: #6b5d55; }
.en-tags .is-on { background: #241d19; border-color: #241d19; color: #fff; }
.en-days { display: grid; grid-template-columns: repeat(5, 1fr); gap: 5px; margin-bottom: 8px; }
.en-days span { background: #fff; border: 1px solid #ead9cd; border-radius: 11px; padding: 6px 0 5px; text-align: center; font-size: 11px; font-weight: 700; color: #241d19; }
.en-days em { display: block; font-style: normal; font-size: 8.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: #a89384; }
.en-days .is-on { background: #c2542d; border-color: #c2542d; color: #fff; box-shadow: 0 8px 16px rgba(194,84,45,.28); }
.en-days .is-on em { color: #f8dccd; }
.en-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-bottom: 12px; }
.en-slots span { background: #fff; border: 1px solid #ead9cd; border-radius: 999px; padding: 6px 0; text-align: center; font-size: 10.5px; color: #5f5149; }
.en-slots .is-on { background: #fbeee6; border-color: #c2542d; color: #a4441f; font-weight: 700; }
.en-book__go {
  display: block; text-align: center; background: #c2542d; color: #fff; border-radius: 999px;
  padding: 10px; font-size: 11px; font-weight: 800; box-shadow: 0 12px 22px rgba(194,84,45,.3);
}
.mk-en .en-book__note { font-size: 9.5px; color: #96837a; text-align: center; margin: 8px 0 0; max-width: none; }
.en-foot {
  position: absolute; left: 0; right: 0; bottom: 0; display: flex; justify-content: space-between; gap: 12px;
  padding: 12px 24px; font-size: 10.5px; color: #6b5d55;
  background: linear-gradient(180deg, rgba(250,246,242,0), rgba(250,246,242,.92) 45%);
}

/* =========================================================
   2a · DACHDECKEREI — vorher: schlichte Vorlage in Blau
   Aufbau: weißer Kopf, blauer Menübalken, Brotkrume,
   Leistungsliste mit „mehr“-Links, rechts Foto + Aktuelles.
   ========================================================= */
.mk-do { background: #fff; color: #4a4a4a; font-size: 12px; line-height: 1.55; }
.do-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 13px 18px 11px; border-bottom: 3px solid #1f4e79; }
.do-logo { font-size: 18px; font-weight: 700; color: #1f4e79; letter-spacing: -.01em; }
.do-logo small { display: block; font-size: 10px; font-weight: 400; color: #7d8894; letter-spacing: .03em; }
.do-tel { font-size: 12px; color: #1f4e79; font-weight: 600; text-align: right; }
.do-tel small { display: block; font-size: 9.5px; color: #8b96a1; font-weight: 400; }
.do-nav { background: #1f4e79; display: flex; }
.do-nav span { color: #dbe6f0; font-size: 10.5px; text-transform: uppercase; letter-spacing: .06em; padding: 8px 13px; border-right: 1px solid #2f5e89; }
.do-nav span.is-on { background: #163a5b; color: #fff; }
.do-crumb { padding: 5px 18px; font-size: 10px; color: #8b96a1; font-style: italic; border-bottom: 1px solid #e6e9ec; }
.do-body { display: grid; grid-template-columns: 1fr 188px; gap: 20px; padding: 16px 18px; align-items: start; }
.mk-do h3 { font-size: 16px; color: #1f4e79; font-weight: 600; margin: 0 0 6px; }
.mk-do p { font-size: 11.5px; margin: 0 0 10px; color: #4a4a4a; }
.do-list { border-top: 1px solid #e6e9ec; }
.do-list div { border-bottom: 1px solid #e6e9ec; padding: 7px 0; font-size: 11px; color: #6b7580; }
.do-list b { color: #1f4e79; font-size: 11.5px; margin-right: 6px; }
.do-list u { color: #1f4e79; margin-left: 4px; }
.do-photo {
  border: 1px solid #d5dae0; padding: 4px; font-size: 9.5px; color: #8b96a1; text-align: center;
}
.do-photo span { display: block; height: 84px; margin-bottom: 4px; background: linear-gradient(160deg, #b9c6d2 0 46%, #96a6b5 46% 100%); }
.do-news { margin-top: 12px; border: 1px solid #d5dae0; background: #f3f7fa; padding: 8px 10px; font-size: 10.5px; color: #5c6771; }
.do-news b { display: block; color: #1f4e79; margin-bottom: 4px; font-size: 11px; }
.do-news p { font-size: 10.5px !important; margin: 0 0 4px !important; color: #5c6771 !important; }
.do-foot { position: absolute; left: 0; right: 0; bottom: 0; background: #1f4e79; color: #c3d3e2; font-size: 10px; padding: 8px 18px; }

/* =========================================================
   2b · DACHDECKEREI — nachher: Foto-Hero mit Lichtschweif,
   Raster-Textur, Meister-Siegel, überlappender Zahlenleiste
   und nummeriertem Ablaufband
   ========================================================= */
.mk-dn { background: #f2f5fb; color: #16233a; font-size: 12px; padding: 14px 16px 0; }
.dn-card {
  position: relative; overflow: hidden; border-radius: 26px; padding: 15px 20px 30px; color: #fff;
  background:
    linear-gradient(101deg, rgba(18,40,92,.96) 0%, rgba(27,55,120,.90) 38%, rgba(43,82,168,.58) 68%, rgba(63,111,216,.16) 100%),
    url("../img/beispiel-dach.jpg") center 40% / cover no-repeat,
    linear-gradient(148deg, #3f6fd8 0%, #2b52a8 52%, #1e3b7d 100%);
  box-shadow: 0 28px 54px rgba(20,45,110,.34);
}
/* feines Raster als Textur, zur Bildseite hin ausgeblendet */
.dn-card::before {
  content: ""; position: absolute; inset: 0; opacity: .16; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: linear-gradient(101deg, #000 0 34%, transparent 68%);
  mask-image: linear-gradient(101deg, #000 0 34%, transparent 68%);
}
/* wandernder Lichtschweif */
.dn-shine {
  position: absolute; top: -45%; left: -25%; width: 34%; height: 190%; pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.20), transparent);
  transform: rotate(14deg); animation: dnShine 7.5s ease-in-out infinite;
}
@keyframes dnShine {
  0%, 55% { transform: translateX(-30%) rotate(14deg); }
  100%    { transform: translateX(420%) rotate(14deg); }
}
.dn-bar { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; position: relative; z-index: 2; }
.dn-bar b { font-size: 13.5px; letter-spacing: .02em; }
.dn-bar > span { font-size: 10.5px; color: #cddcf7; }
.dn-live { display: inline-flex; align-items: center; gap: 6px; font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase; color: #bfe7d3; }
.dn-live::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: #3ddc97;
  box-shadow: 0 0 0 3px rgba(61,220,151,.24); animation: dnPuls 2.4s ease-in-out infinite;
}
@keyframes dnPuls { 50% { box-shadow: 0 0 0 7px rgba(61,220,151,0); } }
.dn-pill {
  margin-left: auto; background: rgba(12,28,66,.62); border: 1px solid rgba(255,255,255,.42);
  border-radius: 999px; padding: 7px 14px; font-size: 10px; color: #fff; backdrop-filter: blur(3px);
}
.mk-dn h3 { font-size: 28px; line-height: 1.1; margin: 0 0 8px; color: #fff; position: relative; z-index: 2; }
.mk-dn h3 em {
  font-style: normal; padding: 0 3px;
  background: linear-gradient(transparent 62%, rgba(226,113,79,.85) 0);
}
.mk-dn .dn-card p { font-size: 11.5px; color: #d3e0f7; margin: 0 0 16px; max-width: 38ch; position: relative; z-index: 2; }
.dn-actions { display: flex; align-items: center; gap: 12px; position: relative; z-index: 2; }
.dn-btn { background: #fff; color: #1e3b7d; border-radius: 999px; padding: 11px 19px; font-size: 11.5px; font-weight: 700; box-shadow: 0 12px 24px rgba(10,26,60,.32); }
.dn-ghost { border: 1px solid rgba(255,255,255,.45); border-radius: 999px; padding: 11px 17px; font-size: 11px; color: #eaf1ff; }
/* Meister-Siegel */
.dn-seal {
  position: absolute; right: 22px; top: 66px; z-index: 2; width: 84px; height: 84px; border-radius: 50%;
  display: grid; place-items: center; text-align: center; transform: rotate(-9deg);
  border: 1px dashed rgba(255,255,255,.6); background: rgba(10,26,62,.42); backdrop-filter: blur(4px);
  font-size: 8.5px; line-height: 1.35; letter-spacing: .12em; text-transform: uppercase; color: #eaf1ff;
}
.dn-seal b { display: block; font-size: 15px; letter-spacing: .02em; margin: 2px 0; }
/* Zahlenleiste, die in die Karte hineinragt */
.dn-stats {
  position: relative; z-index: 3; margin: -30px 14px 0; display: grid; grid-template-columns: repeat(3, 1fr);
  background: rgba(255,255,255,.94); border: 1px solid #e2e8f4; border-radius: 18px; overflow: hidden;
  box-shadow: 0 20px 38px rgba(20,45,110,.18); backdrop-filter: blur(10px);
}
.dn-stats div { padding: 11px 14px; border-right: 1px solid #eef1f8; }
.dn-stats div:last-child { border-right: 0; }
.dn-stats b { display: block; font-size: 17px; color: #1e3b7d; letter-spacing: -.02em; }
.dn-stats span { font-size: 9px; color: #6d7a92; text-transform: uppercase; letter-spacing: .1em; }
/* Ablauf als nummeriertes Band mit Verbindungslinie */
.dn-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 16px; position: relative; }
.dn-steps::before {
  content: ""; position: absolute; left: 10px; right: 10px; top: 11px; height: 2px;
  background: linear-gradient(90deg, #c6d5ef, #3f6fd8);
}
.dn-steps div { position: relative; padding-top: 32px; font-size: 11.5px; font-weight: 700; color: #16233a; }
.dn-steps i {
  position: absolute; top: 0; left: 0; width: 23px; height: 23px; border-radius: 50%;
  background: #fff; border: 2px solid #3f6fd8; color: #1e3b7d;
  font-style: normal; font-size: 9.5px; font-weight: 800; display: grid; place-items: center;
}
.dn-steps small { display: block; font-weight: 400; color: #6d7a92; font-size: 10px; margin-top: 2px; }
.dn-foot {
  position: absolute; left: 0; right: 0; bottom: 0; display: flex; justify-content: space-between; gap: 12px;
  padding: 11px 22px; font-size: 10.5px; color: #6d7a92;
}
@media (prefers-reduced-motion: reduce) {
  .dn-shine { animation: none; opacity: .10; }
  .dn-live::before, .en-live { animation: none; }
}

/* =========================================================
   3a · PHYSIOPRAXIS — vorher: schlichte Vorlage in Gelb
   Aufbau: gelbes Kopfband, Menü mit Trennstrichen,
   Fließtext mit echter Öffnungszeiten-Tabelle, rechts Kästen.
   ========================================================= */
.mk-po { background: #fff; color: #4b4b4b; font-size: 12px; line-height: 1.55; }
.po-head { background: #f5c518; padding: 13px 18px; display: flex; align-items: center; justify-content: space-between; gap: 14px; border-bottom: 3px solid #d9ad0c; }
.po-logo { font-size: 17px; color: #3d3520; line-height: 1.2; }
.po-logo b { display: block; font-size: 20px; font-weight: 700; }
.po-info { font-size: 10.5px; color: #4d4325; text-align: right; line-height: 1.5; }
.po-nav { padding: 7px 18px; border-bottom: 1px solid #e4e2dc; font-size: 11px; color: #7a7466; }
.po-nav span { padding: 0 8px; }
.po-nav span:first-child { padding-left: 0; }
.po-nav span.is-on { color: #8a6d00; font-weight: 700; text-decoration: underline; }
.po-body { display: grid; grid-template-columns: 1fr 178px; gap: 18px; padding: 16px 18px; align-items: start; }
.mk-po h3 { font-size: 15.5px; color: #8a6d00; font-weight: 600; margin: 0 0 7px; }
.mk-po p { font-size: 11.5px; margin: 0 0 9px; color: #4b4b4b; }
.po-times { width: 100%; border-collapse: collapse; font-size: 11px; margin: 4px 0 10px; }
.po-times th { background: #fdf3cf; border: 1px solid #e8dcae; text-align: left; padding: 5px 8px; color: #6f5a08; font-weight: 600; }
.po-times td { border: 1px solid #e6e4de; padding: 5px 8px; color: #55524a; }
.po-hint { font-size: 10.5px !important; color: #7a7466 !important; font-style: italic; }
.po-aside { display: grid; gap: 10px; }
.po-img { border: 1px solid #e0ddd6; padding: 4px; font-size: 9.5px; color: #8f8a7e; text-align: center; }
.po-img span { display: block; height: 76px; margin-bottom: 4px; background: repeating-linear-gradient(135deg, #ddd8cc 0 9px, #d2ccbe 9px 18px); }
.po-yellow { background: #fdf3cf; border: 1px solid #e8dcae; padding: 9px 11px; font-size: 10.5px; color: #6f5a08; }
.po-yellow b { display: block; font-size: 12px; margin-bottom: 3px; }
.po-foot { position: absolute; left: 0; right: 0; bottom: 0; background: #f7f6f2; border-top: 1px solid #e4e2dc; padding: 8px 18px; font-size: 10px; color: #8f8a7e; }

/* =========================================================
   3b · PHYSIOPRAXIS — nachher: warmes Creme, Honigton,
   geteiltes Layout mit Terminraster statt Bilderstrecke
   ========================================================= */
.mk-pn { background: #fdf8ee; color: #2b2317; font-size: 12px; display: grid; grid-template-columns: 1.02fr .98fr; }
.pn-left { padding: 24px 22px 24px 26px; align-self: center; }
.pn-brandline { display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 700; margin-bottom: 16px; }
.pn-brandline i { width: 22px; height: 22px; border-radius: 50%; background: #c8901c; color: #fff; display: grid; place-items: center; font-style: normal; font-size: 9.5px; font-weight: 800; }
.pn-brandline em { font-style: normal; font-weight: 500; color: #8a7a5c; font-size: 11px; }
.pn-badge {
  display: inline-block; background: #f6e6c3; color: #7d5c10; border-radius: 999px;
  padding: 6px 13px; font-size: 10px; font-weight: 600; margin-bottom: 12px;
}
.mk-pn h3 { font-size: 27px; line-height: 1.13; margin: 0 0 9px; color: #241d10; }
.mk-pn h3 em { font-style: normal; color: #b57f12; }
.mk-pn p { font-size: 12px; color: #6a5c46; margin: 0 0 16px; max-width: 32ch; }
.pn-btn { display: inline-block; background: #c8901c; color: #fff; border-radius: 999px; padding: 12px 20px; font-size: 11.5px; font-weight: 700; box-shadow: 0 12px 24px rgba(200,144,28,.28); }
.pn-meta { margin-top: 14px; font-size: 10.5px; color: #6a5c46; }
.pn-meta b { color: #241d10; font-size: 12px; }
.pn-meta em { color: #d8a521; font-style: normal; letter-spacing: -1px; }
/* Praxisfoto als rechte Bildhälfte, darüber schwebt die Terminkarte. */
.pn-right {
  position: relative; padding: 18px 18px 26px; display: grid; align-content: end;
  background:
    linear-gradient(200deg, rgba(253,248,238,.18), rgba(58,42,12,.34)),
    url("../img/beispiel-physio.jpg") 58% 24% / cover no-repeat,
    #fff;
}
.pn-panel {
  background: rgba(255,255,255,.94); border-radius: 18px; padding: 14px;
  box-shadow: 0 18px 38px rgba(45,33,10,.26); display: grid; gap: 10px;
  backdrop-filter: blur(4px);
}
.pn-week { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.pn-day { background: #fdfaf3; border: 1px solid #f0e3ca; border-radius: 14px; padding: 10px 9px; text-align: center; }
.pn-day > span { display: block; font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase; color: #a8946c; margin-bottom: 7px; }
.pn-day i { display: block; font-style: normal; font-size: 10.5px; color: #4a3f2c; background: #fff; border: 1px solid #ece0c8; border-radius: 999px; padding: 5px 0; margin-bottom: 5px; }
.pn-day i:last-child { margin-bottom: 0; }
.pn-day i.is-on { background: #c8901c; border-color: #c8901c; color: #fff; font-weight: 700; }
.pn-note { background: #fdf6e7; border-left: 3px solid #c8901c; border-radius: 0 10px 10px 0; padding: 9px 12px; font-size: 10.5px; color: #6a5c46; }
.pn-foot { position: absolute; left: 0; right: 0; bottom: 0; display: flex; justify-content: space-between; gap: 12px; padding: 11px 26px; font-size: 10.5px; color: #8a7a5c; }

/* =========================================================
   Attrappen: schmale Bildschirme
   Die alten Seiten verkleinert compare.js zur Desktop-Ansicht –
   hier nur die neuen Seiten anpassen.
   ========================================================= */
@media (max-width: 900px) {
  .ba__viewport { height: 430px; }
  .ba__range::-webkit-slider-thumb { height: 430px; }
  .ba__range::-moz-range-thumb { height: 430px; }
  .ba__tab { padding: 9px 14px; font-size: .72rem; }

  /* Elektro: Foto bleibt Hintergrund, Buchung rückt unter den Text */
  /* Auf dem Handy deckt der Schleier von oben ab, unten bleibt das Foto sichtbar */
  .mk-en {
    background:
      linear-gradient(180deg, rgba(250,246,242,.975) 0%, rgba(250,246,242,.94) 44%, rgba(250,246,242,.58) 72%, rgba(250,246,242,.18) 100%),
      url("../img/beispiel-elektro.jpg") 62% 52% / cover no-repeat,
      #faf6f2;
  }
  .en-nav { margin: 12px 14px 0; padding: 8px 8px 8px 14px; gap: 10px; }
  .en-nav span:not(.en-cta):not(.en-logo) { display: none; }
  .en-hero { grid-template-columns: 1fr; gap: 12px; padding: 14px 14px 0; align-items: start; }
  .mk-en h3 { font-size: 21px; margin-bottom: 7px; }
  .mk-en p { font-size: 11.5px; margin-bottom: 11px; }
  .en-rating { margin-bottom: 10px; padding: 5px 11px; }
  .en-row { display: none; }
  .en-book { padding: 11px 12px 12px; border-radius: 16px; }
  .en-book__head { margin-bottom: 9px; font-size: 9.5px; }
  /* Auf dem Handy die Kurzfassung: Termin-Streifen und Bestätigen-Knopf */
  .en-book__step, .en-tags, .en-slots, .mk-en .en-book__note { display: none; }
  .en-days { margin-bottom: 10px; }
  .en-days span { padding: 5px 0 4px; font-size: 10px; }
  .en-book__go { padding: 9px; font-size: 10.5px; }
  .en-foot span:last-child { display: none; }

  /* Dachdeckerei: Effekte bleiben, Maße schrumpfen */
  .mk-dn { padding: 12px 13px 0; }
  .dn-card { padding: 13px 15px 24px; border-radius: 20px;
    background:
      linear-gradient(112deg, rgba(18,40,92,.97) 0%, rgba(27,55,120,.92) 52%, rgba(43,82,168,.66) 100%),
      url("../img/beispiel-dach.jpg") center 40% / cover no-repeat,
      linear-gradient(148deg, #3f6fd8 0%, #2b52a8 52%, #1e3b7d 100%);
  }
  .mk-dn h3 { font-size: 20px; }
  .mk-dn .dn-card p { font-size: 11px; margin-bottom: 12px; }
  .dn-bar { margin-bottom: 14px; }
  .dn-bar > span, .dn-pill { display: none; }
  .dn-seal { width: 60px; height: 60px; right: 12px; top: 54px; font-size: 7px; letter-spacing: .08em; }
  .dn-seal b { font-size: 10px; }
  .dn-ghost { display: none; }
  .dn-stats { margin: -24px 10px 0; border-radius: 14px; }
  .dn-stats div { padding: 8px 10px; }
  .dn-stats b { font-size: 14px; }
  .dn-stats div:nth-child(3) { display: none; }
  .dn-steps { grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }
  .dn-steps::before { right: 52%; }
  .dn-steps div:nth-child(3) { display: none; }
  .dn-foot span:last-child { display: none; }

  /* Physiopraxis */
  .mk-pn { grid-template-columns: 1fr; grid-template-rows: auto 1fr; }
  .pn-left { padding: 13px 16px 2px; }
  .pn-brandline { margin-bottom: 10px; }
  .pn-badge { margin-bottom: 8px; padding: 5px 11px; }
  .mk-pn h3 { font-size: 19px; margin-bottom: 6px; }
  .mk-pn p { font-size: 11.5px; margin-bottom: 10px; }
  .pn-btn { padding: 10px 16px; font-size: 11px; }
  .pn-right { padding: 10px 14px 30px; align-content: center; }
  .pn-panel { padding: 10px; }
  .pn-day { padding: 8px 7px; }
  .pn-meta, .pn-note { display: none; }
  .pn-foot span:last-child { display: none; }
}

@media (max-width: 560px) {
  .ba__viewport { height: 420px; }
  .ba__range::-webkit-slider-thumb { height: 420px; }
  .ba__range::-moz-range-thumb { height: 420px; }
  .ba__badge { bottom: 12px; font-size: .6rem; padding: 5px 10px; }
  .ba__handle::after { width: 52px; height: 36px; }
  .ba__url { font-size: .64rem; }
  .ba__tabs { gap: 7px; }
  .ba__tab { padding: 8px 11px; font-size: .66rem; letter-spacing: .06em; }
}
