/* ==========================================================================
   avoris.li — Editorial Design (Variante 1)
   Verbindliche Design-Referenz: startseiten-layouts.html #la (.va)
   Farbwelt, Typografie, Komponenten. Barrierefrei erweitert.
   ========================================================================== */

:root {
  --brown: #3a2e26;  /* nicht mehr als Textfarbe genutzt – Fliesstext läuft auf --muted */   /* Text/Primär */
  --ink:   #241b15;   /* Headlines/Dunkelster Text */
  --mid:   #6b5d52;
  --sand:  #c9bca8;
  --muted: var(--ink);   /* auf Wunsch: EIN Textton = --ink. Nur --teal-Labels weichen ab. (früher #756757 – das "komische Braun", raus) */
  --line:  #e9e2d6;   /* Hairlines */
  --line2: #ddd3c2;
  --bg:    #fbfaf7;   /* warmer Hintergrund */
  --bg2:   #f0e9db;   /* Beige-Karte */
  --white: #fff;
  --red:   #c62e36;   /* CTA / Hover */
  --red-d: #a8262d;
  --teal:  #1a7571;   /* Kontrast: Labels, Icons, Checks */
  --gold:  #fbbc04;   /* nur Google-Sterne */
  --hel: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --sans: "Inter", var(--hel);
  --tight: "Inter Tight", "Inter", var(--hel);
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --wrap: 1440px;
  --pad: 40px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px; /* Anker-Sprünge nicht unter den Sticky-Header */
  -webkit-text-size-adjust: 100%; /* iOS: keine Textvergrösserung beim Drehen */
  text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(203, 51, 59, .12); /* dezenter Tap-Effekt statt Blau (iOS/Android) */
  overflow-wrap: break-word;
}

/* Sichtbarer, einheitlicher Fokus-Ring (Tastatur) */
:focus-visible { outline: 3px solid var(--teal); outline-offset: 2px; border-radius: 3px; }
:focus:not(:focus-visible) { outline: none; }

/* Notch-Geräte: Footer nicht unter die Home-Indikator-Leiste */
.sitefooter { padding-bottom: max(40px, env(safe-area-inset-bottom)); }

img, video, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; }
p { margin: 0; }

.tight { font-family: var(--tight); }
.mono  { font-family: var(--mono); }

/* --- Accessibility --------------------------------------------------------- */
:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
  border-radius: 4px;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 10px 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* --- Layout ---------------------------------------------------------------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad);
  /* viewport-fit=cover ist gesetzt: im Querformat nicht unter Notch/Rundung rutschen */
  padding-left: max(var(--pad), env(safe-area-inset-left));
  padding-right: max(var(--pad), env(safe-area-inset-right)); }
section.wrap {
  padding-left: max(var(--pad), env(safe-area-inset-left));
  padding-right: max(var(--pad), env(safe-area-inset-right)); }

/* --- Buttons --------------------------------------------------------------- */
.pillbtn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: #fff;
  border: none; border-radius: 100px;
  padding: 12px 22px; font-size: 16px; font-weight: 600; line-height: 1;
  min-height: 44px;   /* Mindest-Touch-Ziel */
  font-family: inherit; cursor: pointer;
  transition: background .18s;
}
.pillbtn:hover { background: var(--red); }
.pillbtn.lg { padding: 15px 26px; }
.pillbtn.red { background: var(--red); }
.pillbtn.red:hover { background: var(--red-d); }

/* --- Topbar ---------------------------------------------------------------- */
.sitehead {
  position: -webkit-sticky; position: sticky; top: 0; z-index: 50;
  background: rgba(251, 250, 247, .8);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 0 0 rgba(36, 27, 21, 0);
  transition: box-shadow .28s ease;
}
.sitehead.is-scrolled { box-shadow: 0 6px 22px rgba(36, 27, 21, .09); }
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .sitehead { background: rgba(251, 250, 247, .96); }
}
/* Topbar (Servicelinks) beim Scrollen ausblenden */
.sitehead .topbar { overflow: hidden; max-height: 44px; transition: max-height .28s ease, opacity .2s ease, padding .28s ease; }
.sitehead.is-scrolled .topbar { max-height: 0; opacity: 0; padding-top: 0; padding-bottom: 0; border-bottom-color: transparent; }
/* Logo schrumpft + Nav wird kompakter beim Scrollen */
.mainnav { transition: padding .28s ease; }
.mainnav .brand :is(img, svg) { transition: height .28s ease; }
.sitehead.is-scrolled .mainnav { padding: 12px 0; }
.sitehead.is-scrolled .mainnav .brand :is(img, svg) { height: 51px; }
.topbar {
  display: flex; gap: 22px; justify-content: flex-end;
  font-size: 16px; padding: 10px 0;
  border-bottom: 1px solid var(--line); color: var(--muted);
}
.topbar a:hover { color: var(--red); }

/* --- Nav ------------------------------------------------------------------- */
.mainnav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
}
.mainnav .brand { flex: none; display: inline-flex; }
.mainnav .brand :is(img, svg) { height: 71px; width: auto; flex: none; }
.mainnav .navleft { display: flex; align-items: center; gap: 56px; min-width: 0; }
.mainnav .cta-desktop { white-space: nowrap; flex: none; }
.asidecontact a { color: var(--red); }
.asidecontact a:hover { text-decoration: underline; }
.mainnav ul { display: flex; gap: 24px; font-size: 16px; color: var(--muted); }
.mainnav ul a:hover { color: var(--red); }
.mainnav ul a[aria-current="page"] { color: var(--ink); font-weight: 600; }
.navtoggle { display: none; }
/* Menü-Extras (Topbar-Links + CTA) nur im mobilen Ausklapp-Menü */
.mainnav .nav-sep, .mainnav .nav-extra, .mainnav .nav-cta { display: none; }

/* --- Hero ------------------------------------------------------------------ */
.hero {
  display: grid; grid-template-columns: 1.02fr .98fr; gap: 64px;
  align-items: center; padding: 56px 0 84px;
}
.hero h1 {
  font-family: var(--tight); font-size: clamp(42px, 4.6vw, 64px);
  line-height: 1.08; letter-spacing: -.008em; font-weight: 600;
}
.hero .sub { font-size: 17px; color: var(--muted); max-width: 460px; margin-top: 20px; line-height: 1.65; }
.callrow { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; align-items: center; }
.trust { display: flex; align-items: center; gap: 14px; margin-top: 28px; font-size: 16px; color: var(--muted); }
.trust .avs { display: flex; }
.trust .avs img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; border: 2px solid var(--bg); margin-right: -9px; }
.trust b { color: var(--ink); }
.trust .g, .g { color: var(--gold); letter-spacing: 1px; }
/* Mobil: nach «… auf Google» umbrechen, Jahre in eigene Zeile ohne führenden Punkt */
@media (max-width: 560px) {
  .trust .trust-mid { display: none; }
  .trust .trust-years { display: block; }
}

.hphoto { position: relative; }
.hphoto > img, .hphoto > video {
  width: 100%; aspect-ratio: .92; object-fit: cover; object-position: 50% 15%;
  border-radius: 26px;
}
.hcard {
  position: absolute; left: -30px; bottom: 42px;
  background: #fff; border-radius: 14px;
  box-shadow: 0 18px 44px rgba(36,27,21,.16);
  padding: 13px 18px; display: flex; gap: 12px; align-items: center;
}
.hcard b { font-size: 16px; display: block; }
.hcard span { font-size: 14.5px; color: var(--muted); }
/* Kompakter Hero (z. B. Klartext): weniger Padding, kleinere H1, kleineres Bild */
.hero-kompakt { padding: 24px 0 48px; gap: 48px; }
.hero-kompakt h1 { font-size: clamp(30px, 3.2vw, 46px); }
.hero-kompakt .sub { margin-top: 16px; }
.hero-kompakt .hphoto { max-width: 420px; margin-inline: auto; }
/* svc-hero als Baustein: eigenes Padding weg (Abstand kommt vom Baustein-Spacing) */
.bs-svc-hero { padding-block: 0 !important; }
/* Home-Hero (Baustein): kein Doppel-Padding – Abstand kommt allein vom Baustein-Spacing */
.bs .hero { padding-block: 0 !important; }

/* --- Intro-Zweizeiler ------------------------------------------------------ */
.intro { display: block; padding: 64px 0 40px; }
.intro h2 { font-family: var(--tight); font-size: clamp(30px,3vw,42px); letter-spacing: -.005em; line-height: 1.16; font-weight: 600; }
.intro p { font-size: 19px; color: var(--muted); max-width: 660px; line-height: 1.62; margin-top: 18px; }

/* --- Leistungs-Tabs -------------------------------------------------------- */
.frame { margin-bottom: 10px; }
.ftabs { display: flex; gap: 10px; flex-wrap: wrap; margin: 4px 0 40px; }
.ftabs button {
  cursor: pointer; padding: 11px 22px; border-radius: 100px;
  min-height: 44px;   /* Mindest-Touch-Ziel */
  font-weight: 600; font-size: 16px; font-family: inherit;
  border: 1px solid var(--line2); background: #fff; color: var(--muted);
  transition: .15s;
}
.ftabs button:hover { border-color: var(--ink); }
.ftabs button[aria-selected="true"] { background: var(--ink); border-color: var(--ink); color: #fff; }
.fpane { display: none; }
.fpane.on { display: block; }
.fbody { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; padding: 0 0 38px; align-items: center; }
.fbody h2 { font-family: var(--tight); font-size: clamp(30px,2.8vw,40px); letter-spacing: -.005em; line-height: 1.14; font-weight: 600; }
.fbody .ft { font-size: 16px; color: var(--muted); margin-top: 18px; max-width: 420px; line-height: 1.65; }
.fbody img { width: 100%; aspect-ratio: 1.16; object-fit: cover; border-radius: 16px; }
.fstats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; padding: 26px 0 6px; border-top: 1px solid var(--line); }
.fstats .lbl { font-size: 14px; letter-spacing: .06em; color: var(--muted); text-transform: uppercase; }
.fstats .val { font-family: var(--mono); font-size: 26px; font-weight: 500; margin-top: 6px; letter-spacing: -.02em; }
.fstats .val small { font-size: 15px; color: var(--muted); }

/* --- USP-Checkliste -------------------------------------------------------- */
.uspsec { padding: 70px 0 30px; }
.uspgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 72px; border-bottom: 1px solid var(--line); }
.usprow { display: grid; grid-template-columns: 44px 1fr; gap: 22px; padding: 24px 0; border-top: 1px solid var(--line); align-items: start; }
.usprow .ci { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line2); background: #fff; display: flex; align-items: center; justify-content: center; }
.usprow .ci svg { width: 17px; height: 17px; stroke: var(--teal); stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.usprow b { font-size: 17px; display: block; margin-bottom: 2px; }
.usprow p { font-size: 16px; color: var(--muted); line-height: 1.6; }

/* --- Jobs ------------------------------------------------------------------ */
.jobsec { padding: 70px 0 20px; }
.jline { display: grid; grid-template-columns: 1fr auto auto; gap: 26px; align-items: center; padding: 22px 0; border-top: 1px solid var(--line); }
.jline:last-of-type { border-bottom: 1px solid var(--line); }
.jline b { font-size: 17.5px; font-weight: 600; letter-spacing: -.01em; }
.jline small { display: block; font-size: 16px; color: var(--muted); margin-top: 3px; }
.jline .jm { font-family: var(--mono); font-size: 16px; color: var(--muted); }
.jline small.jmeta { font-size: 16px !important; }
.jline small.jmeta b.jort { font-size: inherit !important; font-weight: 700; color: var(--ink); letter-spacing: 0; text-transform: none; font-family: inherit; }
.jline .ar { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line2); display: flex; align-items: center; justify-content: center; font-size: 14px; transition: .15s; }
.jline:hover .ar, .jline:focus-within .ar { background: var(--red); border-color: var(--red); color: #fff; }

/* --- Formular: Sende-Zustand ----------------------------------------------- */
.formsubmit { position: relative; }
.formsubmit .formsubmit-sending { display: none; }
.formsubmit .formsubmit-spinner { display: none; width: 16px; height: 16px; border-radius: 50%; border: 2px solid rgba(255,255,255,.35); border-top-color: #fff; }
.formsubmit.is-sending { pointer-events: none; opacity: .92; }
.formsubmit.is-sending .formsubmit-label { display: none; }
.formsubmit.is-sending .formsubmit-sending { display: inline; }
.formsubmit.is-sending .formsubmit-spinner { display: inline-block; animation: avoris-spin .7s linear infinite; }
@keyframes avoris-spin { to { transform: rotate(360deg); } }
/* Dezenter Fortschrittsbalken am oberen Rand, solange gesendet wird */
.formwrap { position: relative; }
.formwrap.is-sending::before {
  content: ""; position: absolute; inset: -1px -1px auto; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--red) 0%, var(--teal) 50%, var(--red) 100%);
  background-size: 220% 100%; animation: avoris-progress 1.1s linear infinite;
}
@keyframes avoris-progress { from { background-position: 220% 0; } to { background-position: 0 0; } }
.formwrap.is-sending .field { opacity: .72; transition: opacity .2s; }
@media (prefers-reduced-motion: reduce) {
  .formsubmit.is-sending .formsubmit-spinner, .formwrap.is-sending::before { animation: none; }
}
/* --- Störer: Initiativbewerbung (Jobbörse) --------------------------------- */
.jobcta {
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  background: #fff; border: 1px solid #e6dfd2; border-radius: 20px; padding: 32px 36px;
}
.jobcta-text { min-width: 0; flex: 1 1 380px; }
.jobcta-title { font-family: var(--display, inherit); font-size: 24px; font-weight: 600; letter-spacing: -.01em; margin: 6px 0 8px; }
.jobcta-text p { color: var(--muted); font-size: 16px; line-height: 1.6; margin: 0; max-width: 62ch; }
.jobcta-btn { flex: 0 0 auto; white-space: nowrap; }
@media (max-width: 700px) {
  .jobcta { padding: 26px 22px; gap: 22px; }
  .jobcta-btn { width: 100%; justify-content: center; }
}
/* --- Vergleich ------------------------------------------------------------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; padding: 70px 0; align-items: start; }
.pcard { background: var(--bg2); border-radius: 18px; padding: 42px; }
.pcard .brand, .pplain .brand { font-family: var(--mono); font-size: 16px; letter-spacing: .1em; text-transform: uppercase; }
.pplain .brand { color: var(--muted); }
.ptitle { font-family: var(--tight); font-size: 30px; font-weight: 600; margin-top: 10px; }
.pv { display: flex; justify-content: space-between; align-items: baseline; margin-top: 24px; }
.pv .val { font-family: var(--mono); font-size: 26px; font-weight: 500; letter-spacing: -.02em; }
.pv .lbl { font-size: 16px; color: var(--muted); }
.plist { margin-top: 28px; }
.plist li { padding: 10px 0 10px 28px; position: relative; font-size: 16px; }
.plist li::before { content: "✓"; position: absolute; left: 0; font-weight: 700; color: var(--teal); }
.plist.neg li::before { content: "✕"; color: var(--muted); }
.plist.neg li { color: var(--muted); }
.pcard .pillbtn { margin-top: 30px; }
/* Buch: Kauf-Zeile als sauberes 3-Spalten-Raster (Label | Preis | Button) */
.variant-row { padding: 22px 26px; display: grid; grid-template-columns: 1fr auto auto; align-items: center; column-gap: 30px; row-gap: 12px; }
.variant-name { font-family: var(--tight); font-size: 19px; }
.variant-note { color: var(--muted); font-size: 15px; margin-top: 4px; }
.variant-price { font-size: 22px; white-space: nowrap; justify-self: end; }
.variant-cta .pillbtn { margin-top: 0; }
.pplain { padding: 42px 0; }

/* --- Kundenstimmen --------------------------------------------------------- */
.quotesec { padding: 60px 0 40px; }
.qhead { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 34px; gap: 20px; flex-wrap: wrap; }
.qhead h2 { font-family: var(--tight); font-size: clamp(28px,2.6vw,38px); letter-spacing: -.005em; font-weight: 600; }
.q3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: stretch; }
.qc { background: #fff; border: 1px solid #e6dfd2; border-radius: 16px; padding: 30px; display: flex; flex-direction: column; }
.qc .g { letter-spacing: 3px; font-size: 16px; }
.qc blockquote { margin: 0; }
.qc p { font-size: 16px; line-height: 1.6; margin-top: 16px; }
/* Zitat auf 6 Zeilen begrenzen, «mehr anzeigen» klappt auf */
.qc-quote { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 6; overflow: hidden; }
.qc.is-expanded .qc-quote { display: block; overflow: visible; -webkit-line-clamp: unset; }
.qc-more { align-self: flex-start; background: none; border: 0; padding: 8px 0 0; margin: 0; font: inherit; font-size: 14.5px; color: var(--teal); cursor: pointer; }
.qc-more:hover { color: var(--red); text-decoration: underline; }
.qc .w { font-family: var(--mono); font-size: 16px; color: var(--muted); margin-top: auto; padding-top: 20px; }

/* --- Team ------------------------------------------------------------------ */
.teamsec { padding: 48px 0 30px; }
.t3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px 36px; margin-top: 34px; }
.tc img { width: 100%; aspect-ratio: .85; object-fit: cover; border-radius: 16px; }

/* Team-Lead (Tanja) – prominent hervorgehoben */
.teamlead { display: grid; grid-template-columns: 320px 1fr; gap: 44px; align-items: center; background: #fff; border: 1px solid var(--line2); border-radius: 22px; padding: 30px; margin-top: 34px; }
.teamlead-photo img { width: 100%; aspect-ratio: .82; object-fit: cover; border-radius: 16px; display: block; }
.teamlead-name { font-family: var(--tight); font-size: clamp(28px,2.6vw,38px); font-weight: 600; letter-spacing: -.008em; margin-top: 10px; line-height: 1.1; }
.teamlead-role { font-size: 17px; color: var(--muted); margin-top: 4px; }
.teamlead-bio { font-size: 16.5px; line-height: 1.65; color: var(--muted); margin-top: 16px; max-width: 72ch; }
.teamlead-contact { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 10px 26px; }
.teamlead-contact .tc-line { font-size: 15px; }

/* Übriges Team – vier kleinere Karten */
.teamgrid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; margin-top: 22px; }
.teamgrid .tc img { aspect-ratio: .82; }
.teamgrid .tc-name { font-size: 16px; margin-top: 14px; }
.teamgrid .tc-role { font-size: 14px; }
.teamgrid .tc-line { font-size: 13.5px; }
@media (max-width: 900px) {
  .teamlead { grid-template-columns: 1fr; gap: 26px; padding: 24px; }
  .teamlead-photo img { max-width: 300px; }
  .teamgrid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .teamgrid { grid-template-columns: 1fr; }
}

/* Redaktionsnotiz – klar als interner Hinweis markiert */
.redaktionsnotiz { background: #fff4d6; border: 1px solid #e9d08a; border-left: 4px solid #d9a441; border-radius: 12px; padding: 16px 18px; margin: 26px 0; color: #6b5312; font-size: 15px; line-height: 1.55; }
.redaktionsnotiz-label { display: block; font-family: var(--mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: #8a6314; margin-bottom: 6px; }
.tc-name { display: block; font-size: 17px; font-weight: 600; margin-top: 16px; color: var(--ink); }
.tc-role { display: block; font-size: 15px; color: var(--muted); margin-top: 2px; }
.tc-contact { margin-top: 12px; display: flex; flex-direction: column; gap: 7px; }
.tc-line { display: inline-flex; align-items: center; gap: 8px; font-size: 14.5px; color: var(--muted); transition: color .15s; }
.tc-line svg { width: 16px; height: 16px; flex: none; color: var(--teal); transition: color .15s; }
.tc-line span { overflow-wrap: anywhere; }
.tc-line:hover, .tc-line:hover svg { color: var(--red); }

/* --- CTA-Band + Footer ----------------------------------------------------- */
.ctaband { text-align: center; padding: 90px 0; }
.ctaband h2 { font-family: var(--tight); font-size: clamp(30px,3.2vw,46px); letter-spacing: -.008em; font-weight: 600; max-width: 800px; margin: 0 auto; line-height: 1.15; }
.ctaband p { color: var(--muted); margin: 16px auto 0; font-size: 17px; max-width: 720px; }
.ctaband .pillbtn { margin-top: 30px; }

.sitefooter { border-top: 1px solid var(--line); padding: 44px 0 40px; margin-top: 40px; }
.frow { display: grid; grid-template-columns: 1fr auto; align-items: center; row-gap: 20px; column-gap: 28px; font-size: 16px; color: var(--muted); }
.frow .fbr { display: none; }
.frow .socs { justify-self: end; }
.frow .sslogo { justify-self: end; height: 24px; width: auto; opacity: .85; }
.socs { display: flex; gap: 12px; }
.socs a svg { width: 22px; height: 22px; fill: var(--muted); transition: .15s; }
.socs a:hover svg { fill: var(--red); }
.legall a:hover { color: var(--red); text-decoration: underline; }

/* --- Generischer Seiten-Body (Leistungsseiten etc.) ------------------------ */
.page-hero { padding: 56px 0 40px; }
.kicker { font-family: var(--mono); font-size: 14px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); }
.page-hero h1 { font-family: var(--tight); font-size: clamp(38px,4vw,58px); line-height: 1.08; letter-spacing: -.008em; font-weight: 600; margin-top: 14px; }
.page-hero .sub { font-size: 18px; color: var(--muted); max-width: 620px; margin-top: 18px; line-height: 1.6; }
.prose { max-width: 720px; font-size: 17px; line-height: 1.7; color: var(--muted); }
.prose > :first-child { margin-top: 0; }
.prose h2 { font-family: var(--tight); font-size: clamp(26px,2.4vw,34px); font-weight: 600; margin: 40px 0 14px; letter-spacing: -.005em; }
.ueber-content { padding-top: 6px; }
.prose h3 { font-family: var(--tight); font-size: 22px; font-weight: 600; margin: 28px 0 10px; }
.prose p { margin: 14px 0; }
.prose ul { margin: 14px 0; }
.prose ul li { padding: 6px 0 6px 26px; position: relative; }
.prose ul li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.prose a { color: var(--red); text-decoration: underline; }
.prose a.pillbtn { color: #fff !important; text-decoration: none; }

/* --- Responsive ------------------------------------------------------------ */
@media (max-width: 1000px) {
  :root { --pad: 22px; }
  .hero, .intro, .fbody, .compare, .q3, .t3, .uspgrid { grid-template-columns: 1fr; }
  .hero { gap: 36px; padding: 32px 0 56px; }
  .hcard { left: 12px; }
  .fstats { grid-template-columns: 1fr 1fr; }
  .intro p { justify-self: start; }
}
/* Nav: früher auf Menü-Button umschalten (lange Labels brauchen Platz) */
@media (max-width: 1320px) {
  /* Topbar-Links wandern ins Ausklapp-Menü */
  .sitehead .topbar { display: none; }
  .mainnav .navlinks { display: none; }
  /* Header-Zeile ist sicherer Bezugsrahmen fürs Ausklapp-Menü */
  .mainnav { position: relative; }
  /* Panel direkt unter dem Header, trotzdem über die volle Viewport-Breite (zentriert) */
  .mainnav .navlinks.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
    width: 100vw; box-sizing: border-box; overflow: hidden;
    overscroll-behavior: contain;
    background: #fff;
    padding: 6px max(var(--pad), env(safe-area-inset-right)) max(20px, env(safe-area-inset-bottom)) max(var(--pad), env(safe-area-inset-left));
    gap: 0;
    border-radius: 0 0 22px 22px;
    box-shadow: 0 26px 50px rgba(36, 27, 21, .16);
    border-top: 1px solid var(--line);
    z-index: 40;
  }
  /* Jede Zeile: Trennlinie + volle Fläche klickbar */
  .mainnav .navlinks.open li { list-style: none; min-width: 0; border-bottom: 1px solid var(--line); }
  .mainnav .navlinks.open a { display: block; min-width: 0; max-width: 100%; padding: 15px 6px; font-size: 18px; color: var(--ink); }
  .mainnav .navlinks.open a:hover,
  .mainnav .navlinks.open a[aria-current="page"] { background: var(--bg2); }
  /* Aktiv-Status im Menü ohne rote Unterstreichung */
  .mainnav .navlinks.open a[aria-current="page"]::after { content: none; }
  .mainnav .navlinks.open .nav-sep { display: none; }
  .mainnav .navlinks.open .nav-extra:last-of-type { border-bottom: 0; }
  .mainnav .navlinks.open .nav-extra { display: block; }
  .mainnav .navlinks.open .nav-extra a { color: var(--muted); font-size: 17px; }
  .navtoggle { display: inline-flex; }
  .mainnav .navleft { gap: 18px; }
}
@media (max-width: 620px) {
  .fstats { grid-template-columns: 1fr; }
  .topbar { gap: 16px; font-size: 15px; }
  .frow { grid-template-columns: 1fr; row-gap: 14px; }
  .frow .socs, .frow .sslogo { justify-self: start; }
  .frow .fbr { display: inline; }
  .frow .fsep { display: none; }
}

/* --- Reduced Motion: Video aus, Poster zeigen ------------------------------ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* --- Formulare ------------------------------------------------------------- */
.formwrap { max-width: 640px; }
.formwrap form { display: grid; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 15px; font-weight: 600; color: var(--ink); }
.field input, .field textarea {
  border: 1px solid var(--line2); background: #fff; border-radius: 12px;
  padding: 13px 16px; font-size: 16px; font-family: inherit; color: var(--ink); width: 100%;
}
.field input:focus, .field textarea:focus { border-color: var(--teal); outline: none; }
.field textarea { resize: vertical; }
.field select {
  border: 1px solid var(--line2); background: #fff; border-radius: 12px;
  padding: 13px 44px 13px 16px; font-size: 16px; font-family: inherit; color: var(--ink);
  width: 100%; cursor: pointer; appearance: none; -webkit-appearance: none; -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%23241b15' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; background-size: 12px;
}
.field select:focus { border-color: var(--teal); outline: none; }
.field select[aria-invalid="true"] { border-color: var(--red); }
.field .checkline { flex-direction: row; align-items: flex-start; gap: 10px; font-weight: 400; font-size: 15px; color: var(--muted); cursor: pointer; }
.field .checkline input { width: auto; margin-top: 3px; }
.field.field-toggle label { font-weight: 400; }
.fielderr { color: var(--red); font-size: 14px; }
.formmsg { border-radius: 12px; padding: 16px 18px; font-size: 16px; }
.formmsg.ok { background: #e7f2f1; color: var(--teal); border: 1px solid #bcdedb; }
.formmsg.err { background: #fbeaea; color: var(--red); border: 1px solid #f0c9cb; }
.formhint { font-size: 13px; color: var(--muted); }
.formwrap button { justify-self: start; }
@media (min-width: 640px) {
  .formwrap form { grid-template-columns: 1fr 1fr; }
  .field, .formwrap button, .formhint, .formmsg, .formlive { grid-column: 1 / -1; }
  .field.half { grid-column: auto; }
}

@media (max-width: 900px) { .formgrid { grid-template-columns: 1fr !important; } }

/* --- Fixes: Umbruch langer Wörter, Buch-/Tanja-Grid, Mobile-Header ---------- */
h1, h2, h3, .ptitle { overflow-wrap: break-word; hyphens: auto; }

.splitgrid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: start; }
.splitgrid.tanja { grid-template-columns: 340px 1fr; align-items: center; gap: 48px; }
@media (max-width: 900px) {
  .splitgrid, .splitgrid.tanja { grid-template-columns: 1fr; gap: 32px; }
  .splitgrid .bookcover, .splitgrid.tanja .hphoto { max-width: 420px; }
}

/* Varianten-Karte: auf Mobile Preis + Button stapeln */
@media (max-width: 560px) {
  .variant-row { grid-template-columns: 1fr auto; column-gap: 16px; }
  .variant-info { grid-column: 1 / -1; }
  .variant-price { justify-self: start; }
  .variant-cta { justify-self: end; }
}

/* Mobile-Header: Logo kleiner */
@media (max-width: 1000px) {
  .mainnav .brand :is(img, svg) { height: 55px; }
}
@media (max-width: 560px) {
  /* Jobbörse: Zeile umbrechen statt überlaufen (Ort-Badge unter den Titel) */
  .jline { grid-template-columns: 1fr auto; column-gap: 16px; row-gap: 6px; }
  .jline > div { grid-column: 1; grid-row: 1; min-width: 0; }
  .jline .jm { grid-column: 1; grid-row: 2; justify-self: start; font-size: 14px; }
  .jline .ar { grid-column: 2; grid-row: 1 / 3; align-self: center; }
  /* Header-CTA verschwindet → CTA erscheint im Menü */
  .mainnav .cta-desktop { display: none; }
  .mainnav .navlinks.open .nav-cta { display: block; border-bottom: 0; margin-top: 16px; }
  .mainnav .navlinks.open .nav-cta a { display: block; width: 100%; box-sizing: border-box; text-align: center; white-space: normal; color: #fff; padding: 15px; font-size: 17px; border-radius: 100px; }
}

/* --- Barrierefreiheit / Feinschliff ---------------------------------------- */
h1, h2, h3, .ptitle, .ctaband h2, .intro h2 { text-wrap: balance; }
p, .sub, .ft { text-wrap: pretty; }
.mono, .val, .fstats .val, .jline .jm, .pv .val { font-variant-numeric: tabular-nums; }
a, button, summary, .pillbtn { touch-action: manipulation; -webkit-tap-highlight-color: rgba(203,51,59,.15); }
:target, h2[id], section[id] { scroll-margin-top: 90px; }
/* Fehlerhervorhebung */
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--red); }
/* Reduced-Motion: Smooth-Scroll & Auto-Play aus (ergänzt) */
@media (prefers-reduced-motion: reduce) {
  .jline .ar, .pillbtn, .ftabs button { transition: none !important; }
}

/* Testimonial-Figure/Blockquote-Resets */
.qc, .qc figure, .qc blockquote { margin: 0; }
.qc blockquote p { margin: 0; }

/* Barrierefreie, gestylte Checkbox (grösserer Hit-Bereich) */
.field .checkline input[type="checkbox"] {
  appearance: none; -webkit-appearance: none;
  width: 22px; height: 22px; margin: 0; flex: 0 0 22px;
  border: 1.5px solid var(--line2); border-radius: 6px; background: #fff;
  cursor: pointer; position: relative; transition: .15s;
}
.field .checkline input[type="checkbox"]:checked {
  border-color: var(--teal);
  background: var(--teal) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23fff' stroke-width='2.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3.5 8.4l3 3 6-6.8'/%3E%3C/svg%3E") center / 14px 14px no-repeat;
}
.field .checkline input[type="checkbox"]:focus-visible { outline: 3px solid var(--teal); outline-offset: 2px; }
.field .checkline { align-items: flex-start; }
.field .checkline input[type="checkbox"] { margin-top: 1px; }
.field .checkline > label:not(.checkline-text) { display: inline-flex; margin: 0; }
.checkline-text { font-weight: 400; font-size: 15px; color: var(--muted); line-height: 1.45; cursor: pointer; }

/* Datei-Upload als Drop-Zone */
.dropzone { position: relative; border: 2px dashed var(--line2); border-radius: 14px; background: #fff; padding: 24px 20px; text-align: center; transition: border-color .15s, background .15s; }
.dropzone input[type="file"] { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
.dropzone.is-drag { border-color: var(--teal); background: #f1f8f7; }
.dropzone-ui { pointer-events: none; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.dz-ic { width: 26px; height: 26px; color: var(--teal); margin-bottom: 2px; }
.dz-main { font-size: 15px; color: var(--muted); margin: 0; }
.dz-link { color: var(--teal); text-decoration: underline; }
.dz-hint { font-size: 13px; color: var(--muted); margin: 2px 0 0; }
.dropzone-files { list-style: none; margin: 14px 0 0; padding: 0; display: flex; flex-direction: column; gap: 6px; pointer-events: none; text-align: left; position: relative; }
.dropzone-files:empty { display: none; }
.dropzone-files li { font-size: 14px; color: var(--ink); background: var(--bg2); border-radius: 8px; padding: 7px 12px; display: flex; justify-content: space-between; gap: 12px; }
.dz-file-name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dz-file-size { color: var(--muted); font-variant-numeric: tabular-nums; flex: none; }
.dropzone.has-files { padding-bottom: 20px; }

/* Datenschutzkonforme Standort-Karte (rein statisches SVG, keine externen Dienste) */
.mapcard { position: relative; margin: 0; border-radius: 18px; overflow: hidden; border: 1px solid var(--line2); aspect-ratio: 16 / 9; background: #eae2d1; }
.mapcard-map { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.mapcard-map .m-land { fill: #e9e1d0; }
.mapcard-map .m-de { fill: #e7dfca; }
.mapcard-map .m-ch { fill: #dbd2bc; }
.mapcard-map .m-at { fill: #e3dbc5; }
.mapcard-map .m-li { fill: #f5f0e3; }
.mapcard-map .m-lake { fill: #a9d0cb; }
.mapcard-map .m-river { stroke: #a9d0cb; stroke-width: 6; fill: none; stroke-linecap: round; }
.mapcard-map .m-border path { stroke: #bfb499; stroke-width: 2; stroke-dasharray: 2 7; fill: none; stroke-linecap: round; }
.mapcard-map .m-relief path { stroke: #cbc1a9; stroke-width: 2.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.mapcard-map .m-place circle { fill: #8a7d6a; }
.mapcard-map .m-town { fill: #6b5f4f; font-family: var(--mono); font-size: 15px; }
.mapcard-map .m-country { fill: #a2947c; font-family: var(--mono); font-size: 19px; letter-spacing: .14em; font-weight: 600; }
.mapcard-map .m-li-label { fill: var(--ink); font-family: var(--mono); font-size: 15px; font-weight: 500; }
.mapcard-map .m-lakelabel { fill: #5f9f99; font-family: var(--mono); font-size: 13px; }
/* Marker (auf Liechtenstein) */
.mapcard-pin { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -100%); z-index: 3; filter: drop-shadow(0 4px 6px rgba(36,27,21,.32)); }
.mapcard-pin svg path { fill: var(--red); }
.mapcard-pin svg circle { fill: #fff; }
.mapcard-pin::after { content: ""; position: absolute; left: 50%; top: 100%; width: 24px; height: 7px; transform: translate(-50%, -2px); background: radial-gradient(ellipse, rgba(36,27,21,.28), transparent 70%); z-index: -1; }
/* Info-Leiste unten */
.mapcard-bar { position: absolute; left: 0; right: 0; bottom: 0; z-index: 4; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 13px 18px; background: rgba(255,255,255,.9); backdrop-filter: saturate(150%) blur(8px); -webkit-backdrop-filter: saturate(150%) blur(8px); border-top: 1px solid rgba(36,27,21,.07); }
.mapcard-bar-text { display: flex; flex-direction: column; min-width: 0; }
.mapcard-name { font-family: var(--tight); font-weight: 600; font-size: 16px; color: var(--ink); }
.mapcard-adr { font-size: 13.5px; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mapcard-cta { flex: none; display: inline-flex; align-items: center; gap: 7px; text-decoration: none; }
.mapcard-privacy { position: absolute; right: 10px; top: 10px; z-index: 3; font-size: 11px; color: var(--muted); background: rgba(251,250,247,.82); padding: 3px 9px; border-radius: 999px; }
@media (max-width: 560px) {
  .mapcard { aspect-ratio: 4 / 5; }
  .mapcard-bar { flex-direction: column; align-items: stretch; gap: 10px; text-align: center; }
  .mapcard-cta { justify-content: center; }
  .mapcard-privacy { display: none; }
}

/* --- Kassen-Lightbox -------------------------------------------------------- */
/* Kassen-Panel: fährt von rechts ins Bild (Off-Canvas) */
.lightbox { position: fixed; inset: 0; z-index: 200; }
.lightbox[hidden] { display: none; }
.lightbox-backdrop { position: absolute; inset: 0; background: rgba(36,27,21,.55); backdrop-filter: blur(2px); opacity: 0; transition: opacity .34s ease; }
.lightbox.is-open .lightbox-backdrop { opacity: 1; }
.lightbox-panel {
  position: absolute; top: 0; right: 0; height: 100%;
  width: min(500px, 100%); max-width: 100%;
  background: #f0e9db; overflow: hidden; display: flex; flex-direction: column;
  border-radius: 22px 0 0 22px;
  box-shadow: -24px 0 70px rgba(36,27,21,.34);
  transform: translateX(100%);
  transition: transform .36s cubic-bezier(.33, 1, .68, 1);
}
.lightbox.is-open .lightbox-panel { transform: translateX(0); }
.lightbox-bar { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px 12px 22px; background: #fff; border-bottom: 1px solid var(--line); }
.lightbox-close { border: none; background: transparent; font-size: 30px; line-height: 1; color: var(--muted); cursor: pointer; width: 40px; height: 40px; border-radius: 10px; }
.lightbox-close:hover { background: var(--bg2); color: var(--red); }
.lightbox-frame { border: 0; width: 100%; flex: 1; min-height: 0; background: #f0e9db; }
@media (prefers-reduced-motion: reduce) { .lightbox-panel, .lightbox-backdrop { transition: none; } }
@media (max-width: 560px) {
  .lightbox-panel { width: 100%; border-radius: 0; }
}

/* --- Navigation Aktiv-Status ----------------------------------------------- */
.mainnav ul a { position: relative; padding-bottom: 4px; }
.mainnav ul a[aria-current="page"] { color: var(--ink); font-weight: 600; }
.mainnav ul a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--red); border-radius: 2px;
}
.topbar a { position: relative; }
.topbar a[aria-current="page"] { color: var(--ink); font-weight: 600; }
.topbar a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px;
  height: 2px; background: var(--red); border-radius: 2px;
}

/* Blog-Karten */
.blogcard img { aspect-ratio: 1.5; }
.blogcard-x { font-size: 15px; margin-top: 8px; line-height: 1.55; color: var(--ink); display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; line-clamp: 3; overflow: hidden; }
.pager { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 56px; flex-wrap: wrap; }
.pager-n, .pager-arrow { min-width: 42px; height: 42px; padding: 0 8px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line2); border-radius: 11px; font-family: var(--mono); font-size: 15px; color: var(--ink); text-decoration: none; transition: border-color .15s, background .15s, color .15s; }
.pager-n:hover, .pager-arrow:hover { border-color: var(--ink); }
.pager-n.is-cur { background: var(--ink); color: #fff; border-color: var(--ink); }
.pager-arrow.is-off { opacity: .3; pointer-events: none; }
.blogcard b { color: var(--ink); }
.blogcard:hover b { color: var(--red); }

/* --- Checkout (Dummy-Kasse) ------------------------------------------------- */
.checkoutform { display: grid; gap: 22px; }
.checkoutform .fieldrow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.checkoutform .field { gap: 8px; }
.checkoutform .field-toggle { margin-top: 2px; }
.checkoutform .checkline { gap: 12px; line-height: 1.45; font-size: 15px; }
.checkoutform .checkline input[type="checkbox"] { margin-top: 1px; }

/* Zahlungsarten */
.paygrid { border: 0; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.paygrid legend { grid-column: 1 / -1; font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 4px; padding: 0; }
.paymethod {
  position: relative; display: flex; align-items: center; gap: 12px;
  border: 1.5px solid var(--line2); border-radius: 12px; background: #fff;
  padding: 12px 14px; cursor: pointer; transition: .15s; font-size: 15px;
}
.paymethod:hover { border-color: var(--mid); }
.paymethod input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.paymethod:has(input:checked) { border-color: var(--teal); background: #f2f8f7; box-shadow: 0 0 0 1px var(--teal); }
.paymethod:has(input:focus-visible) { outline: 3px solid var(--teal); outline-offset: 2px; }
.pm-name { flex: 1; font-weight: 500; }
.pm-check { width: 18px; height: 18px; border-radius: 50%; border: 1.5px solid var(--line2); flex: 0 0 18px; }
.paymethod:has(input:checked) .pm-check { border-color: var(--teal); background: var(--teal) radial-gradient(circle, #fff 32%, transparent 34%); }
.pm-logo {
  flex: 0 0 auto; min-width: 46px; height: 26px; padding: 0 8px; border-radius: 5px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; letter-spacing: .02em; font-family: var(--sans);
  background: #eee; color: var(--ink);
}
.pm-twint { background: #000; color: #fff; }
.pm-visa { background: #1a1f71; color: #fff; font-style: italic; }
.pm-mastercard { background: #eb001b; color: #fff; }
.pm-maestro { background: #0099df; color: #fff; font-size: 10px; }
.pm-postfinance { background: #fcbb00; color: #000; }
.pm-applepay { background: #000; color: #fff; }
.pm-googlepay { background: #f1f3f4; color: #5f6368; border: 1px solid #dadce0; }
.pm-bank { background: var(--bg2); color: var(--muted); letter-spacing: 2px; }
@media (max-width: 480px) { .paygrid { grid-template-columns: 1fr; } .checkoutform .fieldrow { grid-template-columns: 1fr; } }

/* --- Frontend-Bearbeiten (nur eingeloggte CP-User) ------------------------- */
.cp-edit {
  position: fixed; z-index: 120;
  right: calc(1.25rem + env(safe-area-inset-right));
  bottom: calc(1.25rem + env(safe-area-inset-bottom));
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--ink); color: #fff; font-weight: 600; font-size: .9rem;
  padding: .7rem 1.15rem; border-radius: 999px; line-height: 1;
  box-shadow: 0 12px 30px -8px rgba(36,27,21,.5);
  transition: background .15s;
}
.cp-edit:hover { background: var(--red); color: #fff; }
.cp-edit svg { width: 18px; height: 18px; }
@media print { .cp-edit { display: none; } }

/* Formular-Hinweistext unter Feldern */
.fieldhint { font-size: 13px; color: var(--muted); }

/* --- Stellendetail: 2-Spalten mit Sidebar ---------------------------------- */
.jobgrid { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; padding-block: 20px 60px; }
.jobmain { min-width: 0; }
.jobside { display: grid; gap: 20px; position: -webkit-sticky; position: sticky; top: 88px; }
.jobfacts { width: 100%; border-collapse: collapse; }
.jobfacts th, .jobfacts td { text-align: left; vertical-align: top; padding: 10px 0; font-size: 15.5px; border-top: 1px solid var(--line); }
.jobfacts tr:first-child th, .jobfacts tr:first-child td { border-top: 0; }
.jobfacts th { font-weight: 700; white-space: nowrap; padding-right: 16px; width: 1%; }
.jobfacts td { color: var(--ink); }
.jobcard { background: var(--bg2); border-radius: 16px; padding: 24px; }
.jobfact { font-size: 15px; padding: 7px 0; color: var(--muted); border-bottom: 1px solid rgba(36,27,21,.07); }
.jobfact:last-child { border-bottom: 0; }
.jobfact b { color: var(--ink); font-weight: 600; }
.jobexpert-title { font-family: var(--tight); font-size: 20px; font-weight: 600; display: block; }
.jobexpert-photo { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; margin: 16px 0 12px; }
.jobexpert-name { font-weight: 600; font-size: 17px; color: var(--ink); }
.jobexpert-role { color: var(--muted); font-size: 15px; margin-bottom: 8px; }
.jobexpert-bio { font-size: 14.5px; line-height: 1.6; color: var(--muted); margin: 10px 0 14px; padding-top: 12px; border-top: 1px solid var(--line2); }
.jobexpert-line { display: block; font-size: 15px; color: var(--muted); margin-top: 4px; }
.jobexpert-line:hover { color: var(--red); }
.jobexpert-org { font-size: 13px; color: var(--muted); margin-top: 14px; line-height: 1.5; }
.jobcard .socs a svg { width: 20px; height: 20px; }
@media (max-width: 900px) {
  .jobgrid { grid-template-columns: 1fr; }
  .jobside { position: static; }
}

/* ==========================================================================
   Leistungsseiten — abwechslungsreiche Aufbereitung
   ========================================================================== */

/* Volle Breite tingierte Bänder (Inhalt zentriert via .wrap) */
.band { padding-block: 68px; margin-block: 10px; }
.band-beige { background: var(--bg2); }
.band-dark { background: var(--ink); color: #fff; }
.band-title { font-family: var(--tight); font-size: clamp(28px,3vw,40px); font-weight: 600; letter-spacing: -.005em; line-height: 1.12; margin-bottom: 34px; max-width: 900px; }
.band-dark .band-title { color: #fff; }

.sec-h2 { font-family: var(--tight); font-size: clamp(26px,2.6vw,36px); font-weight: 600; letter-spacing: -.005em; line-height: 1.14; margin-bottom: 32px; }
.svc-block { padding-block: 60px; }

/* 1 · Hero zweispaltig */
.svc-hero { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding: 48px 0 44px; }
.svc-hero-media img { width: 100%; aspect-ratio: 1.12; object-fit: cover; border-radius: 22px; }
.svc-claim { font-family: var(--tight); font-size: clamp(22px,2.4vw,30px); font-weight: 600; letter-spacing: -.005em; line-height: 1.18; margin-top: 12px; color: var(--ink); }
.svc-hero .sub { font-size: 18px; max-width: 520px; }

/* 2 · Problem — Pain-Cards */
.painrow { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.paincard { background: #fff; border: 1px solid #e6dfd2; border-radius: 16px; padding: 26px; display: grid; grid-template-columns: 38px 1fr; gap: 16px; align-items: start; }
.pain-mark { width: 34px; height: 34px; border-radius: 50%; background: #fbeceb; color: var(--red); display: flex; align-items: center; justify-content: center; font-family: var(--tight); font-weight: 700; font-size: 18px; }
.paincard p { font-size: 16px; line-height: 1.5; }
.pain-closer { font-family: var(--tight); font-size: clamp(20px,2.1vw,27px); font-weight: 600; letter-spacing: -.005em; line-height: 1.25; margin-top: 34px; max-width: 780px; }

/* 3 · Lösung — Lead mit Akzentleiste */
.svc-lead { display: grid; grid-template-columns: .78fr 1.22fr; gap: 48px; align-items: start; padding: 62px 0; }
.lead-body { font-size: 19px; line-height: 1.68; color: var(--muted); border-left: 3px solid var(--red); padding-left: 30px; }
.lead-body p { margin: 0 0 16px; }
.lead-body p:last-child { margin-bottom: 0; }

/* 4 · Das macht avoris — Check-Grid */
.checkgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 64px; border-top: 1px solid var(--line); }
.checkitem { display: grid; grid-template-columns: 28px 1fr; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); align-items: start; }
.check-ic { width: 26px; height: 26px; border-radius: 50%; background: #e7f2f1; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.check-ic svg { width: 14px; height: 14px; stroke: var(--teal); stroke-width: 2.6; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.checkitem p { font-size: 16px; line-height: 1.55; }

/* 5 · Wieso avoris — nummeriert (CSS-Counter) */
.reasons { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 56px; counter-reset: rc; }
.reason { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start; }
.reason::before { counter-increment: rc; content: counter(rc,decimal-leading-zero); font-family: var(--mono); font-size: 15px; font-weight: 500; color: var(--red); padding-top: 2px; }
.reason p { font-size: 16.5px; line-height: 1.55; }

/* 6 · Preise — Preisliste */
.pricelist { border-top: 1px solid var(--line); }
.pricerow { display: flex; justify-content: space-between; gap: 24px; align-items: baseline; padding: 22px 0; border-bottom: 1px solid var(--line); }
.pricerow-main b { font-size: 17.5px; }
.pricerow-main span { display: block; color: var(--muted); font-size: 15px; margin-top: 5px; max-width: 820px; line-height: 1.55; }
.pricerow-val { font-size: 22px; white-space: nowrap; letter-spacing: -.02em; }
.price-fine { font-size: 14px; color: var(--muted); margin-top: 14px; line-height: 1.5; }

/* 8 · Region — dunkles Band */
.region-inner { max-width: 900px; }
.region-body { font-size: 19px; line-height: 1.72; color: rgba(255,255,255,.82); }
.region-body p { margin: 0 0 16px; }
.region-body p:last-child { margin-bottom: 0; }
.band-dark a { color: #fff; text-decoration: underline; }

/* 9 · FAQ — eigener Stil */
.faqlist { border-top: 1px solid var(--line); }
.faqitem { border-bottom: 1px solid var(--line); }
.faqitem summary { display: flex; justify-content: space-between; align-items: center; gap: 20px; cursor: pointer; padding: 20px 0; font-family: var(--tight); font-weight: 600; font-size: 18px; list-style: none; }
.faqitem summary::-webkit-details-marker { display: none; }
.faq-plus { position: relative; flex: 0 0 20px; width: 20px; height: 20px; }
.faq-plus::before, .faq-plus::after { content: ""; position: absolute; background: var(--red); transition: transform .2s; }
.faq-plus::before { left: 0; top: 9px; width: 20px; height: 2px; }
.faq-plus::after { left: 9px; top: 0; width: 2px; height: 20px; }
.faqitem[open] .faq-plus::after { transform: scaleY(0); }
.faq-a { padding: 0 0 22px; color: var(--muted); line-height: 1.65; max-width: 820px; }

@media (max-width: 900px) {
  .svc-hero, .svc-lead { grid-template-columns: 1fr; gap: 30px; }
  .painrow, .checkgrid, .reasons { grid-template-columns: 1fr; }
  .checkgrid, .pricelist, .faqlist { border-top: 0; }
  .band { padding-block: 48px; }
  .lead-body { padding-left: 22px; }
}

/* Abschluss-CTA als dunkles Band (Conversion-Höhepunkt) */
.cta-close { text-align: center; }
.cta-close .wrap { max-width: 820px; }
.cta-close h2 { font-family: var(--tight); font-size: clamp(28px,3.1vw,44px); font-weight: 600; letter-spacing: -.008em; line-height: 1.14; color: #fff; margin: 10px 0 14px; }
.cta-close p { color: rgba(255,255,255,.75); font-size: 18px; line-height: 1.6; max-width: 620px; margin: 0 auto; }
.cta-close .pillbtn { margin-top: 26px; }

/* ==========================================================================
   Leistungsseiten — Feinschliff Typografie & Abstände (Override, ganz unten)
   ========================================================================== */
/* Hero-H1 = grösstes Element der Seite (war ungestylt → zu klein) */
.svc-hero { padding: 54px 0 50px; align-items: center; gap: 60px; }
.svc-hero h1 { font-family: var(--tight); font-size: clamp(40px, 4.6vw, 58px); font-weight: 600; line-height: 1.05; letter-spacing: -.012em; color: var(--ink); }
.svc-hero .svc-claim { margin-top: 16px; }
.svc-hero .sub { margin-top: 16px; color: var(--muted); }
.svc-hero .kicker { margin-bottom: 6px; }

/* Klarere, einheitliche Sektions-Hierarchie */
.sec-h2 { font-size: clamp(27px, 2.6vw, 36px); margin-bottom: 30px; }
.band-title { font-size: clamp(28px, 2.9vw, 39px); margin-bottom: 30px; }

/* Ruhigere Abstände */
.band { padding-block: 60px; margin-block: 0; }
.svc-block { padding-block: 58px; }
.svc-lead { padding: 58px 0; align-items: start; gap: 52px; }

/* Bessere Lesbarkeit der Listen/Preise */
.checkitem p, .reason p { font-size: 16.5px; line-height: 1.5; }
.checkitem { padding: 18px 0; }
.lead-body { font-size: 18.5px; }
.pricerow-main b { font-size: 18px; }

/* Kunden-/Faktenbreite begrenzen, damit Zeilen nicht endlos lang werden */
.svc-hero .sub, .pain-closer { }

/* Preiszeile auf schmalen Screens stapeln (langer Mono-Preis nie am Rand kleben) */
@media (max-width: 560px) {
  .pricerow { flex-direction: column; align-items: flex-start; gap: 6px; }
  .pricerow-val { font-size: 20px; }
}

/* ==========================================================================
   Inhaltsseiten — grosszügigeres vertikales Spacing (Override, ganz unten)
   ========================================================================== */
.band { padding-block: 92px; margin-block: 0; }
.svc-block { padding-block: 84px; }
.svc-lead { padding: 84px 0; }
.svc-hero { padding: 60px 0 68px; }

.band-title { margin-bottom: 42px; }
.sec-h2 { margin-bottom: 38px; }
.pain-closer { margin-top: 46px; }

/* Hero/Intro luftiger + grösserer Introtext */
.svc-hero .kicker { margin-bottom: 14px; }
.svc-claim { margin-top: 18px; }
.svc-hero .sub { font-size: 20px; line-height: 1.62; max-width: 560px; margin-top: 22px; }
.svc-hero .callrow { margin-top: 38px; }

/* Kundenstimmen-/Abschluss-Bänder gleich luftig (nutzen .band) */
@media (max-width: 900px) {
  .band { padding-block: 64px; }
  .svc-block, .svc-lead { padding-block: 60px; }
  .svc-hero { padding: 40px 0 48px; }
}

/* Pain-Cards plakativer: Icon in eigener Zeile, grösser, grösserer Text */
.paincard { display: block; padding: 34px 32px; border-radius: 18px; }
.pain-mark { width: 56px; height: 56px; font-size: 30px; margin-bottom: 22px; }
.paincard p { font-size: 19px; line-height: 1.5; color: var(--ink); }

/* Dark-Band: Pill-Buttons NICHT unterstreichen (nur Fliesstext-Links) */
.band-dark .pillbtn, .cta-close .pillbtn { text-decoration: none; }
/* Kein Warm-Spalt zwischen letzter Sektion (v.a. dunkles Abschluss-Band) und Footer */
.sitefooter { margin-top: 0; }

/* «Wieso avoris»-Liste: Trennlinien wie die Check-Liste, auf Beige sichtbar */
.reasons { gap: 0 56px; border-top: 1px solid rgba(36,27,21,.12); }
.reason { padding: 22px 0; border-bottom: 1px solid rgba(36,27,21,.12); }
.reason::before { padding-top: 3px; }

/* ==========================================================================
   Bausteine (frei aufgebaute Inhaltsblöcke)
   ========================================================================== */
.bs { position: relative; overflow: hidden; }
.bs-inner { position: relative; z-index: 2; }

/* Hintergründe */
.bs-hell { background: var(--bg); }
.bs-beige { background: var(--bg2); }
.bs-dunkel { background: var(--ink); color: #fff; }
.bs-dunkel .bs-h2, .bs-hasbg .bs-h2 { color: #fff; }
.bs-dunkel .bs-prose, .bs-hasbg .bs-prose { color: rgba(255,255,255,.85); }
.bs-dunkel a:not(.pillbtn), .bs-hasbg a:not(.pillbtn) { color: #fff; text-decoration: underline; }
.bs-hasbg { color: #fff; }

/* Abstände */
.bs-sp-klein { padding-block: 52px; }
.bs-sp-normal { padding-block: 88px; }
.bs-sp-gross { padding-block: 128px; }

/* Hintergrundbild + Parallax */
.bs-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.bs-bg.bs-parallax { top: -24%; bottom: -24%; height: auto; will-change: transform; }
.bs-bg.bs-fixed { top: 0; bottom: 0; background-attachment: fixed; }

/* Zweispaltiger Text */
.bs-prose.bs-textcols { column-count: 2; column-gap: 60px; max-width: none; }
.bs-textcols > :first-child { margin-top: 0; }
.bs-textcols p, .bs-textcols li { break-inside: avoid; }

/* Bild | Text – halbe/halbe */
.bs-inner-full { position: relative; z-index: 2; width: 100%; }
.bs-flush { padding-block: 0 !important; }
.bs-mediasplit { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.bs-mediasplit:not(.is-full) { gap: 48px; align-items: center; }
.bs-mediasplit.media-left .bs-ms-img { order: -1; }
.bs-ms-img { background-size: cover; background-position: center; min-height: 380px; border-radius: 20px; }
.bs-mediasplit.is-full .bs-ms-img { border-radius: 0; min-height: 460px; }
.bs-ms-text { display: flex; flex-direction: column; justify-content: center; }
.bs-mediasplit.is-full .bs-ms-text { padding: clamp(32px, 5vw, 80px); }
@media (max-width: 760px) {
  .bs-textcols { column-count: 1; }
  .bs-mediasplit { grid-template-columns: 1fr; }
  .bs-mediasplit:not(.is-full) { gap: 24px; }
  .bs-mediasplit.media-left .bs-ms-img { order: 0; }
  .bs-ms-img, .bs-mediasplit.is-full .bs-ms-img { min-height: 260px; }
  .bs-mediasplit.is-full .bs-ms-text { padding: 32px 22px; }
}
.bs-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(28,20,14,.68), rgba(28,20,14,.78)); }
/* Dunkle Bausteine mit Naturbild: schwarz-weiss + kräftigeres Overlay (Lesbarkeit) */
.bs-dunkel .bs-bg { filter: grayscale(1) contrast(1.04) brightness(.96); }
.bs-dunkel .bs-overlay { background: linear-gradient(180deg, rgba(18,14,10,.72), rgba(18,14,10,.82)); }

/* Typo in Bausteinen */
.bs-h2 { font-family: var(--tight); font-size: clamp(28px,2.9vw,40px); font-weight: 600; letter-spacing: -.005em; line-height: 1.14; margin-bottom: 22px; text-wrap: balance; }
.bs-prose { max-width: 760px; font-size: 18px; line-height: 1.7; }
.bs-btn { margin-top: 28px; }

/* Bild + Text (Split) */
.bs-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.bs-split.media-left .bs-split-media { order: -1; }
.bs-split-media img { width: 100%; border-radius: 20px; aspect-ratio: 1.15; object-fit: cover; }
.bs-split .bs-prose { max-width: none; }

/* Werte-Spalten */
.bs-cols { display: grid; gap: 28px; }
.bs-cols.cols-2 { grid-template-columns: repeat(2,1fr); }
.bs-cols.cols-3 { grid-template-columns: repeat(3,1fr); }
.bs-cols.cols-4 { grid-template-columns: repeat(4,1fr); }
.bs-col b { font-family: var(--tight); font-size: 20px; font-weight: 600; display: block; margin-bottom: 8px; }
.bs-col p { color: var(--muted); font-size: 16px; line-height: 1.6; }
.bs-dunkel .bs-col p, .bs-hasbg .bs-col p { color: rgba(255,255,255,.8); }

/* CTA-Baustein */
.bs-cta { text-align: center; max-width: 780px; margin: 0 auto; }
.bs-cta-text { font-size: 18px; line-height: 1.6; color: var(--muted); max-width: 620px; margin: 0 auto; }
.bs-dunkel .bs-cta-text, .bs-hasbg .bs-cta-text { color: rgba(255,255,255,.8); }

@media (max-width: 900px) {
  .bs-split { grid-template-columns: 1fr; gap: 28px; }
  .bs-split.media-left .bs-split-media { order: 0; }
  .bs-cols.cols-2, .bs-cols.cols-3, .bs-cols.cols-4 { grid-template-columns: 1fr; }
  .bs-sp-normal { padding-block: 72px; }
  .bs-sp-gross { padding-block: 96px; }
  .bs-sp-klein { padding-block: 56px; }
}

/* --- Baustein-Spacing-Feinschliff --- */
/* Überschrift → Inhalt einheitlich: Listen ohne obere Trennlinie + ohne Extra-Padding der ersten Reihe */
.checkgrid, .reasons, .pricelist, .faqlist { border-top: 0; }
.checkgrid > .checkitem:nth-child(-n+2),
.reasons > .reason:nth-child(-n+2),
.pricelist > .pricerow:first-child { padding-top: 0; }
@media (max-width: 900px) {
  /* einspaltig: das zweite Item ist dann Reihe 2 und braucht wieder Abstand */
  .checkgrid > .checkitem:nth-child(2), .reasons > .reason:nth-child(2) { padding-top: 18px; }
}
/* Gleiche Hintergründe direkt hintereinander: keine doppelte Section-Luft (Desktop) */
@media (min-width: 901px) {
  .bs-hell:not(.bs-hasbg) + .bs-hell:not(.bs-hasbg), .bs-beige:not(.bs-hasbg) + .bs-beige:not(.bs-hasbg), .bs-dunkel:not(.bs-hasbg) + .bs-dunkel:not(.bs-hasbg) { padding-top: 0; }
}

@media (prefers-reduced-motion: reduce) { .bs-bg.bs-parallax { transform: none !important; top: 0; bottom: 0; } }

/* Eyebrow auf dunklem/Bild-Baustein heller (bessere Lesbarkeit) */
.bs-dunkel .kicker, .bs-hasbg .kicker { color: #8fd0cc; }

/* Bildstreifen (Parallax-Trenner) */
.bs-streifen { display: flex; align-items: center; justify-content: center; text-align: center; }
.bs-streifen-klein { min-height: 240px; }
.bs-streifen-mittel { min-height: 400px; }
.bs-streifen-gross { min-height: 560px; }
.bs-streifen-quote { font-family: var(--tight); font-weight: 600; font-size: clamp(24px, 3vw, 40px); line-height: 1.2; color: #fff; max-width: 780px; margin: 0; text-shadow: 0 2px 24px rgba(0,0,0,.5); }
/* Text auf Bild-Hintergrund: hell + Lesbarkeit sichern */
.bs-hasbg .bs-prose { color: #fff; }
.bs-hasbg .person-role, .bs-hasbg .person-text { color: rgba(255,255,255,.92); }
.bs-hasbg .bs-h2, .bs-hasbg .bs-prose, .bs-hasbg .person-name, .bs-hasbg .person-role, .bs-hasbg .person-text, .bs-hasbg .bs-cta-text { text-shadow: 0 1px 16px rgba(0,0,0,.45); }

/* Jobbörse – Filterzeile */
.jobfilters { display:grid; grid-template-columns:repeat(4, minmax(0,1fr)); gap:12px; align-items:stretch; }
/* Zeile 1: Suchfeld + Fachbereich je halbe Breite. Zeile 2: die vier uebrigen Filter. */
.jobfilters #jobsearch, .jobfilters #fbereich { grid-column:span 2; }
.jobfilters #jobsearch {
  width:100%; min-width:0;
  border:1px solid var(--line2); background:#fff; border-radius:100px;
  padding:13px 22px; font-size:16px; font-family:inherit; color:var(--ink);
}
.jobfilters select {
  appearance:none; -webkit-appearance:none;
  width:100%; min-width:0;
  border:1px solid var(--line2); background:#fff; border-radius:100px;
  padding:13px 46px 13px 22px; font-size:16px; font-family:inherit; color:var(--ink); cursor:pointer;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23241b15' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 18px center; background-size:14px;
}
.jobfilters select:hover { border-color:var(--ink); }
@media (max-width:860px){
  .jobfilters { grid-template-columns:repeat(2, minmax(0,1fr)); }
  .jobfilters #jobsearch, .jobfilters #fbereich { grid-column:span 2; }
}
@media (max-width:560px){
  .jobfilters { grid-template-columns:minmax(0,1fr); }
  .jobfilters #jobsearch, .jobfilters #fbereich { grid-column:span 1; }
}

/* Formular: Pflichtfeld-Stern + Links in der Einwilligungs-Zeile */
.field label .req { color: var(--red); }
.checkline-text .req { color: var(--red); }
.checkline-text a { color: var(--red); text-decoration: underline; text-underline-offset: 2px; }
.checkline-text a:hover { text-decoration-thickness: 2px; }

/* Startseite: Jobs-Einleitung + Klartext-Verweis im CTA-Band */
.jobsec-intro { font-size: 19px; color: var(--muted); max-width: 660px; line-height: 1.62; margin: -6px 0 30px; }
.ctaband-more { margin-top: 18px; font-size: 16px; color: var(--muted); }
.ctaband-more a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
/* Grosse Display-Überschriften nicht trennen («tref-fen») */
.ctaband h2, .intro h2, .band-title, .bs-h2, .hero h1 { hyphens: manual; }

/* KI-geschriebene Texte: gestrichelte rote Linie am rechten Rand (Marker unsichtbar) */
.ki-text { display: none; }
:has(> .ki-text) { border-right: 3px dashed #d33; padding-right: 14px; cursor: help; }
html.ki-off :has(> .ki-text) { border-right: 0; padding-right: 0; cursor: auto; }
.ki-panel { position: fixed; right: 18px; bottom: 18px; z-index: 9999; background: #fff;
  border: 1px solid var(--line2); border-radius: 12px; box-shadow: 0 10px 30px rgba(36,27,21,.18);
  padding: 10px 14px; font: 14px var(--sans); color: var(--ink); }
.ki-panel label { display: flex; align-items: center; gap: 9px; cursor: pointer; margin: 0; }
.ki-panel .dot { width: 12px; height: 0; border-top: 3px dashed #d33; display: inline-block; }
.ki-tip { position: fixed; z-index: 10000; max-width: 320px; background: #241b15; color: #fff;
  padding: 10px 12px; border-radius: 10px; font: 13.5px/1.45 var(--sans);
  box-shadow: 0 12px 30px rgba(0,0,0,.28); pointer-events: none; opacity: 0; transition: opacity .12s; }
.ki-tip.on { opacity: 1; }
@media print { .ki-panel, .ki-tip { display: none; } }

/* Baustein «Personen / Ansprechpersonen» */
.personen { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 26px; }
.person { display: grid; grid-template-columns: 96px 1fr; grid-template-areas: "foto name" "foto rolle" "text text"; column-gap: 20px; align-items: start; }
.person-photo { grid-area: foto; width: 96px; height: 96px; border-radius: 50%; object-fit: cover; }
.person-name { grid-area: name; font-family: var(--tight); font-size: 20px; align-self: end; }
.person-role { grid-area: rolle; color: var(--muted); font-size: 15.5px; }
.person-text { grid-area: text; margin-top: 16px; color: var(--muted); line-height: 1.65; }
@media (max-width: 900px) { .personen { grid-template-columns: 1fr; gap: 34px; } }

/* Jobbörse: zweispaltige Liste ab Desktop – Ort unter dem Text, durchgehende Linien */
@media (min-width: 901px) {
  #joblist, .joblist { display: grid; grid-template-columns: 1fr 1fr; column-gap: 48px; border-bottom: 1px solid var(--line); }
  #joblist .jline, .joblist .jline { grid-template-columns: 1fr auto; column-gap: 18px; row-gap: 10px; padding: 22px 0; align-items: start; }
  #joblist .jline:last-of-type, .joblist .jline:last-of-type { border-bottom: 0; }
  #joblist .jline > div, .joblist .jline > div { grid-column: 1; grid-row: 1; min-width: 0; }
  #joblist .jline .jm, .joblist .jline .jm { grid-column: 1; grid-row: 2; justify-self: start; font-size: 14px; }
  #joblist .jline .ar, .joblist .jline .ar { grid-column: 2; grid-row: 1 / 3; align-self: center; }
  #joblist .jline small, .joblist .jline small { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; overflow: hidden; }
}

/* ===== Baustein Leistungs-Tabs (Desktop-Panel) + Mobile-Akkordeon ===== */
.bs-lead { font-size: 19px; line-height: 1.62; color: var(--ink); max-width: 660px; margin: 14px 0 0; }
.ltabs { margin-top: 30px; }
.ltabs .ftabs { margin-bottom: 16px; }
.fpane-head { display: none; }
/* Desktop: aktives Panel als weisser, eingerückter Kasten */
.ltabs .fpane-body { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: clamp(26px, 3.4vw, 46px); }
@media (max-width: 900px) {
  /* Mobil: Tab-Leiste weg, alle Panels als geschlossenes Akkordeon */
  .ltabs .ftabs { display: none; }
  .ltabs .fpane { display: block !important; border-top: 1px solid var(--line2); }
  .ltabs .fpane:last-of-type { border-bottom: 1px solid var(--line2); }
  .ltabs .fpane-body { display: none; background: none; border: 0; border-radius: 0; padding: 0 2px 26px; }
  .ltabs .fpane.open .fpane-body { display: block; }
  .fpane-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%; background: none; border: 0; cursor: pointer; padding: 22px 2px; font-family: var(--tight); font-size: 20px; font-weight: 600; line-height: 1.2; color: var(--ink); text-align: left; }
  .fpane-ic { position: relative; width: 22px; height: 22px; flex: none; }
  .fpane-ic::before, .fpane-ic::after { content: ""; position: absolute; top: 50%; left: 50%; background: var(--ink); }
  .fpane-ic::before { width: 15px; height: 2px; transform: translate(-50%, -50%); }
  .fpane-ic::after { width: 2px; height: 15px; transform: translate(-50%, -50%); transition: transform .2s ease; }
  .ltabs .fpane.open .fpane-ic::after { transform: translate(-50%, -50%) scaleY(0); }
}

/* ==========================================================================
   Cookie-Einwilligung
   ========================================================================== */
.cc-banner {
  position: fixed; left: 18px; right: 18px; bottom: 18px; z-index: 9998;
  max-width: 560px; background: #fff; border: 1px solid var(--line2);
  border-radius: 18px; box-shadow: 0 20px 50px rgba(36,27,21,.20);
  padding: 22px 24px; font-size: 15px; line-height: 1.55; color: var(--muted);
}
.cc-banner .cc-text { margin: 0 0 16px; }
.cc-banner b { color: var(--ink); }
.cc-banner a { color: var(--red); text-decoration: underline; text-underline-offset: 2px; }
.cc-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.cc-ghost { background: #fff; color: var(--ink); border: 1px solid var(--line2); }
.cc-ghost:hover { background: var(--bg2); }
.cc-link { background: none; border: 0; padding: 8px 4px; font: inherit; color: var(--muted);
  text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.cc-link:hover { color: var(--ink); }

.cc-modal { position: fixed; inset: 0; z-index: 9999; display: none; }
.cc-modal.on { display: block; }
.cc-backdrop { position: absolute; inset: 0; background: rgba(36,27,21,.55); }
.cc-panel {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: min(620px, calc(100vw - 36px));
  max-height: calc(100vh - 60px);   /* Rueckfall fuer aeltere Browser */
  max-height: calc(100dvh - 60px);  /* iOS Safari: springt nicht mit der Adressleiste */
  overflow-y: auto; overscroll-behavior: contain;
  background: #fff; border-radius: 20px; padding: 28px; box-shadow: 0 30px 70px rgba(36,27,21,.3);
}
.cc-panelhead { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 6px; }
.cc-panel h2 { font-family: var(--tight); font-size: 26px; font-weight: 600; margin: 0; color: var(--ink); }
.cc-x { background: none; border: 0; font-size: 26px; line-height: 1; cursor: pointer; color: var(--muted); padding: 0 4px; }
.cc-x:hover { color: var(--ink); }
.cc-row { border-top: 1px solid var(--line); padding: 16px 0; }
.cc-rowhead { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.cc-rowhead b { font-size: 16.5px; color: var(--ink); }
.cc-rowhead input { width: 18px; height: 18px; accent-color: var(--red); }
.cc-rowhead input:disabled { opacity: .5; }
.cc-immer { font-family: var(--mono); font-size: 12px; color: var(--muted); }
.cc-row p { margin: 6px 0 0 28px; font-size: 14.5px; line-height: 1.55; color: var(--muted); }
.cc-panel .cc-actions { margin-top: 22px; }

/* KI-Panel weicht dem Banner aus */
html.cc-visible .ki-panel { bottom: 210px; }
/* Eingeloggt: KI-Panel über den «Bearbeiten»-Button (cp-edit) heben, damit es ihn nicht überlagert */
body.is-cp-user .ki-panel { bottom: 78px; }

@media (max-width: 560px) {
  .cc-banner { left: 10px; right: 10px; bottom: 10px; padding: 18px; }
  .cc-actions .pillbtn { flex: 1 1 100%; justify-content: center; }
  html.cc-visible .ki-panel { display: none; }
}

/* YouTube: erst auf Klick laden (kein Cookie vorher) */
[data-yt] { position: relative; aspect-ratio: 16/9; border-radius: 18px; overflow: hidden; background: var(--bg2); }
[data-yt] .yt-frame { width: 100%; height: 100%; border: 0; display: block; }
.yt-load { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 12px; padding: 26px; text-align: center; cursor: pointer;
  background: var(--bg2); border: 1px solid var(--line2); font: inherit; color: var(--muted); }
.yt-load:hover { background: var(--line); }
.yt-play { width: 58px; height: 58px; border-radius: 50%; background: var(--red); position: relative; flex: none; }
.yt-play::after { content: ""; position: absolute; left: 52%; top: 50%; transform: translate(-50%,-50%);
  border-left: 17px solid #fff; border-top: 11px solid transparent; border-bottom: 11px solid transparent; }
.yt-titel { font-size: 17px; font-weight: 600; color: var(--ink); }
.yt-hint { font-size: 13.5px; max-width: 340px; line-height: 1.5; }

/* Cookie-Testmodus: Beleg, welche Kategorien freigeschaltet wurden */
.cc-test {
  position: fixed; left: 18px; bottom: 18px; z-index: 9997;
  max-width: 340px; background: #241b15; color: #fff; border-radius: 12px;
  padding: 12px 16px; font: 13.5px/1.5 var(--sans); box-shadow: 0 12px 30px rgba(36,27,21,.3);
}
.cc-test b { color: #8fd0cc; }
.cc-test span { display: block; margin-top: 4px; color: rgba(255,255,255,.72); font-size: 12.5px; }
@media print { .cc-test { display: none; } }

/* --- «Drei Türen»: gemeinsame Zeilenhöhen (Titel/Text/Button) via Subgrid,
       Buttons nur inhaltsbreit ------------------------------------------------ */
.q3-doors > .qc { display: grid; grid-template-rows: subgrid; grid-row: span 3; align-content: start; row-gap: 20px; }
.q3-doors > .qc p { margin: 0; }
.q3-doors > .qc .pillbtn, .q3-doors > .qc .mono { justify-self: start; align-self: start; margin: 0; }

/* --- Elegantere Zeilenumbrüche in grossen Titeln (kein Einzelwort am Zeilenende) */
.hero h1, .page-hero h1, .svc-hero h1 { text-wrap: balance; }
/* Hero-Karte (Name + Zitat überm Bild): 40 % schmaler, Text darf mehrzeilig laufen */
.hcard { max-width: 60%; }


/* Nummerierte Liste «Zeilen»: grosse Ziffer auf der Baseline der ersten Textzeile,
   Linien nur zwischen den Zeilen, Block endet mit dem Inhalt statt ins Leere zu laufen */
.reasons.reasons-rows { grid-template-columns: 1fr; gap: 0; max-width: 900px; border-top: 0; }
.reasons.reasons-rows > .reason { grid-template-columns: 96px 1fr; gap: 0; align-items: baseline; padding: 34px 0; border-top: 1px solid rgba(36,27,21,.14); border-bottom: 0; }
.reasons.reasons-rows > .reason:nth-child(-n+2) { padding-top: 34px; }
.reasons.reasons-rows > .reason:first-child { border-top: 0; padding-top: 10px; }
.reasons.reasons-rows > .reason:last-child { padding-bottom: 12px; }
.reasons.reasons-rows > .reason::before { font-family: var(--tight); font-size: 54px; font-weight: 700; line-height: 1; letter-spacing: -.03em; font-variant-numeric: tabular-nums; padding-top: 0; }
.reasons.reasons-rows > .reason p { font-size: 17px; line-height: 1.65; max-width: 64ch; }
@media (max-width: 760px) {
  .reasons.reasons-rows > .reason { grid-template-columns: 64px 1fr; padding: 24px 0; }
  .reasons.reasons-rows > .reason::before { font-size: 38px; }
}

/* Nummerierte Liste «Treppe»: drei gleich breite Blöcke, diagonal gestaffelt — nutzt die volle Breite */
.reasons.reasons-steps { max-width: none; }
.reasons.reasons-steps > .reason { max-width: 720px; border-top: 0; padding: 20px 0; }
.reasons.reasons-steps > .reason:nth-child(-n+2) { padding-top: 20px; }
.reasons.reasons-steps > .reason:first-child { padding-top: 10px; }
.reasons.reasons-steps > .reason:nth-child(2) { margin-inline: auto; }
.reasons.reasons-steps > .reason:nth-child(3) { margin-left: auto; }
@media (max-width: 900px) {
  .reasons.reasons-steps > .reason:nth-child(2), .reasons.reasons-steps > .reason:nth-child(3) { margin: 0; }
}

/* Nummerierte Liste «Timeline»: vertikale Linie links, roter Punkt je Schritt */
.reasons.reasons-timeline { position: relative; padding-left: 44px; }
.reasons.reasons-timeline::before { content: ""; position: absolute; left: 5px; top: 20px; bottom: 26px; width: 1px; background: rgba(36,27,21,.22); }
.reasons.reasons-timeline > .reason { border-top: 0; position: relative; padding: 24px 0; }
.reasons.reasons-timeline > .reason:nth-child(-n+2) { padding-top: 24px; }
.reasons.reasons-timeline > .reason:first-child { padding-top: 10px; }
.reasons.reasons-timeline > .reason::after { content: ""; position: absolute; left: -44px; width: 11px; height: 11px; border-radius: 50%; background: var(--red); top: 24px; }
.reasons.reasons-timeline > .reason:first-child::after { top: 10px; }

/* --- Vertikales System nach Überschriften -------------------------------------
   H2 direkt vor einem Raster: 30px Luft. Steht ein Lead-Text dazwischen,
   trennt der schon — dann nur 22px. Ersetzt die früheren Einzel-Margins. */
.bs-h2 + .q3, .bs-h2 + .uspgrid, .bs-h2 + .bs-joblist, .bs-h2 + .compare, .bs-h2 + .teamgrid { margin-top: 30px; }
.bs-lead + .q3, .bs-lead + .uspgrid, .bs-lead + .bs-joblist, .bs-lead + .compare, .bs-lead + .teamgrid, .bs-prose + .compare { margin-top: 22px; }

/* Team-Raster: Spaltenzahl folgt der eingestellten Personenzahl (Desktop) */
@media (min-width: 901px) {
  .teamgrid.tg-cols-5 { grid-template-columns: repeat(5, 1fr); }
  .teamgrid.tg-cols-3 { grid-template-columns: repeat(3, 1fr); }
}
/* Vergleich im Baustein: kein eigenes 70px-Innenpadding — Abstand regelt das System oben */
.bs-inner .compare { padding: 0; }

/* Jobs-Teaser: jede Stelle als weisse Karte (auf Beige sonst konturlos) */
.bs-joblist { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 24px; border-bottom: 0; }
.bs-joblist .jline, .bs-joblist .jline:last-of-type { background: #fff; border: 1px solid #e6dfd2; border-radius: 16px; padding: 20px 24px; }
@media (max-width: 900px) { .bs-joblist { grid-template-columns: 1fr; } }

/* qhead (Überschrift + Button): kein doppeltes Spacing — H2-Eigenabstand raus,
   Abstand zum Inhalt 30px, mit folgendem Lead-Text nur 14px */
.bs-inner .qhead { margin-bottom: 30px; }
.qhead .bs-h2, .qhead h2 { margin-bottom: 0; }
.bs-inner .qhead:has(+ .bs-lead) { margin-bottom: 14px; }

/* Kundenstimmen: Name und Firma/Funktion in eigenen Zeilen */
.qc .w .w-name { display: block; }
.qc .w .w-org { display: block; margin-top: 3px; color: var(--muted); }

/* «Lead + Text (zwei Spalten)»: grosser Einstieg links, Fliesstext rechts */
.bs-h2 + .bs-leadsplit { margin-top: 30px; }
.bs-leadsplit { display: grid; grid-template-columns: 1fr 1.15fr; gap: 26px 64px; align-items: start; }
.bs-leadsplit-lead { font-size: 21px; line-height: 1.55; font-weight: 600; letter-spacing: -.008em; }
.bs-leadsplit-lead p { margin: 0 0 14px; }
.bs-leadsplit-lead p:last-child { margin-bottom: 0; }
.bs-leadsplit .bs-prose p:first-child { margin-top: 0; }
@media (max-width: 900px) { .bs-leadsplit { grid-template-columns: 1fr; gap: 18px; } }

/* Check-Liste auf Beige: Punkte als weisse Karten (Linien + helle Icons hatten dort keinen Kontrast) */
.bs-beige .checkgrid { border-top: 0; gap: 14px 24px; }
.bs-beige .checkgrid > .checkitem { background: #fff; border: 1px solid #e6dfd2; border-radius: 14px; padding: 18px 22px; border-bottom: 0; }
.bs-beige .checkgrid > .checkitem:nth-child(-n+2) { padding-top: 18px; }

/* --- Parallax nach Müroll-Muster: scrollgesteuerte CSS-Animation ---------------
   Läuft auf dem Compositor (flüssig statt Scroll-Event-Ruckeln). Die Timeline
   liefert die Sektion — view() direkt auf dem absolut positionierten Bild bleibt
   inaktiv. Browser ohne Scroll-Timelines behalten den JS-Fallback aus avoris.js;
   eine laufende CSS-Animation hat Kaskaden-Vorrang, darum keine Weiche nötig.
   Prozente beziehen sich auf die BILDhöhe (180 % der Sektion): Überhang 40 %
   Sektionshöhe je Seite = 22,2 % Bildhöhe Reserve. */
@supports (animation-timeline: view()) {
  .bs:has(> .bs-bg.bs-parallax) { view-timeline: --bs-flaeche block; }
  .bs-bg.bs-parallax {
    top: -40%; bottom: auto; height: 180%;
    animation: bs-parallax-schub linear both;
    animation-timeline: --bs-flaeche;
    animation-range: cover 0% cover 100%;
  }
  .bs-bg.bs-parallax[data-strength="sanft"] { animation-name: bs-parallax-schub-sanft; }
  .bs-bg.bs-parallax[data-strength="stark"] { animation-name: bs-parallax-schub-stark; }
}
@keyframes bs-parallax-schub { from { transform: translate3d(0,-17.8%,0); } to { transform: translate3d(0,17.8%,0); } }
@keyframes bs-parallax-schub-sanft { from { transform: translate3d(0,-9%,0); } to { transform: translate3d(0,9%,0); } }
@keyframes bs-parallax-schub-stark { from { transform: translate3d(0,-22%,0); } to { transform: translate3d(0,22%,0); } }
@media (prefers-reduced-motion: reduce) { .bs-bg.bs-parallax { animation: none !important; } }

/* «Fixiert» ohne background-attachment (auf iOS wirkungslos): das Bild ist
   viewport-fixiert (position: fixed) und wird von der Sektion beschnitten
   (clip-path erzeugt KEINEN neuen Bezugsrahmen für fixed — genau darum
   funktioniert der Trick). Zwei Sektionen mit demselben Bild wirken nahtlos. */
.bs:has(> .bs-bg.bs-fixed) { clip-path: inset(0); }
.bs-bg.bs-fixed { position: fixed; inset: 0; background-attachment: scroll; }

/* «Überschrift + Text (zwei Spalten)»: H2 in der linken Hälfte, Fliesstext rechts */
.bs-headsplit { display: grid; grid-template-columns: 1fr 1.15fr; gap: 26px 64px; align-items: start; }
.bs-headsplit .bs-h2 { margin-bottom: 0; }
.bs-headsplit .bs-prose p:first-child { margin-top: 0; }
@media (max-width: 900px) { .bs-headsplit { grid-template-columns: 1fr; gap: 18px; } }

/* Beige Sektionen: Trennlinien kräftiger (var(--line) säuft auf Beige ab) */
.bs-beige .pricelist, .bs-beige .pricerow, .bs-beige .faqlist, .bs-beige .faqitem, .bs-beige .reasons, .bs-beige .reason { border-color: rgba(36,27,21,.16); }
/* Weisse Karten auf hellem Grund: sanfter Schatten statt kaum sichtbarer Border */
.bs-hell .qc { box-shadow: 0 12px 32px rgba(36,27,21,.07); }

/* Lead-Spalte auf Dunkel/Bild: heller Text + Schatten wie die Prose */
.bs-dunkel .bs-leadsplit-lead, .bs-hasbg .bs-leadsplit-lead { color: #fff; }
.bs-hasbg .bs-leadsplit-lead { text-shadow: 0 1px 16px rgba(0,0,0,.45); }

/* Nummerierte Liste + Check-Liste: gleiche Textgrösse wie der Fliesstext (waren 16.5px) */
.reason p, .checkitem p { font-size: 18px; line-height: 1.65; }

/* Preisliste: Beschreibungen und Hinweistexte eine Stufe grösser (16px) */
.pricerow-main span { font-size: 16px; }
.price-fine { font-size: 16px; }

/* ===== TYPO-TEST START (6-Stufen-System, 25.08.2026) =========================
   Experiment auf Mikes Wunsch. Zum Rückgängigmachen diesen ganzen Block
   löschen (START bis ENDE) — darunter liegen alle alten Grössen unverändert.
   Skala: H1 ~58 | H2 ~38 | H3 24 | H4/Lead 21 | Kicker 15 | Text 17 */
/* H1 — Seiten-/Hero-Titel */
.hero h1, .page-hero h1, .svc-hero h1 { font-size: clamp(40px, 4.5vw, 58px) !important; }
/* H2 — Sektionstitel */
.bs-h2, .qhead h2, .intro h2, .cta-close h2, .splitgrid.tanja h2 { font-size: clamp(28px, 2.9vw, 38px) !important; }
/* H3 — Zwischentitel / Subheadings */
.prose h3, .bs-prose h3, .teamlead-name { font-size: 24px !important; }
/* H4 / Lead — 21px */
.bs-lead, .bs-leadsplit-lead, .svc-claim, .hero .sub, .page-hero .sub, .svc-hero .sub,
.qc b, .jline b, .pricerow-main b, .tc-name, .person-name { font-size: 22px !important; }
.pain-closer { font-size: 22px !important; }
/* Kicker — 15px */
.kicker, .pcard .brand, .pplain .brand, .fstats .lbl { font-size: 16px !important; }
/* Normaler Text — 17px */
.bs-prose, .reason p, .checkitem p, .qc p, .person-text, .teamlead-bio, .paincard p,
.bs-col p, .faq-a, .blogcard-x, .jline small, .pricerow-main span { font-size: 18px !important; }
/* Zeilenhöhen: Überschriften 1.2, Texte 1.5 */
.hero h1, .page-hero h1, .svc-hero h1, .bs-h2, .qhead h2, .intro h2, .cta-close h2, .splitgrid.tanja h2, .prose h3, .bs-prose h3, .teamlead-name, .qc b, .jline b, .pricerow-main b, .tc-name, .person-name { line-height: 1.2 !important; }
.bs-prose, .bs-lead, .bs-leadsplit-lead, .svc-claim, .hero .sub, .page-hero .sub, .svc-hero .sub, .pain-closer, .reason p, .checkitem p, .qc p, .person-text, .teamlead-bio, .paincard p, .bs-col p, .faq-a, .blogcard-x, .jline small, .pricerow-main span { line-height: 1.5 !important; }
/* ===== TYPO-TEST ENDE ======================================================= */

/* Personen-Beschreibung als Markdown: Absatz-Abstände im div */
.teamlead-bio p, .person-text p { margin: 0 0 10px; }
.teamlead-bio p:last-child, .person-text p:last-child { margin-bottom: 0; }

/* Weisse Karten bleiben dunkel beschriftet — auch in Sektionen mit Hintergrundbild/Dunkel
   (sonst macht die hasbg-Regel Linktexte weiss auf weisser Karte) */
.bs-hasbg .teamlead, .bs-dunkel .teamlead, .bs-hasbg .qc, .bs-dunkel .qc { color: var(--ink); }
.bs-hasbg .teamlead a:not(.pillbtn), .bs-dunkel .teamlead a:not(.pillbtn),
.bs-hasbg .qc a:not(.pillbtn), .bs-dunkel .qc a:not(.pillbtn) { color: inherit; text-decoration: none; }
.bs-hasbg .teamlead-name, .bs-hasbg .teamlead-bio, .bs-hasbg .teamlead .person-name { text-shadow: none; }

/* --- Redaktions-Stift je Leistungs-Tab (nur eingeloggte CP-User) ----------- */
.ltabs .fpane-body { position: relative; }
.cp-edit-mini {
  position: absolute; top: 14px; right: 14px; z-index: 5;
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--ink); color: #fff; font-size: .78rem; font-weight: 600;
  padding: .45rem .8rem; border-radius: 999px; line-height: 1;
  opacity: .28; transition: opacity .15s, background .15s;
}
.ltabs .fpane-body:hover .cp-edit-mini, .cp-edit-mini:focus-visible { opacity: 1; }
.cp-edit-mini:hover { background: var(--red); color: #fff; opacity: 1; }
.cp-edit-mini svg { width: 14px; height: 14px; }
@media (max-width: 700px) { .cp-edit-mini span { display: none; } .cp-edit-mini { padding: .5rem; opacity: .6; } }
@media print { .cp-edit-mini { display: none; } }

/* Stifte auch auf Karten-Bausteinen (Kundenstimmen, Team) und am Jobs-Block */
.qc, .tc, .joblist.bs-joblist { position: relative; }
.qc .cp-edit-mini, .tc .cp-edit-mini { top: 10px; right: 10px; }
.tc .cp-edit-mini span { display: none; }
.tc .cp-edit-mini { padding: .5rem; }
.qc:hover .cp-edit-mini, .tc:hover .cp-edit-mini { opacity: 1; }
.cp-edit-block { top: -34px; right: 0; }
.joblist.bs-joblist:hover .cp-edit-block { opacity: 1; }

/* ── Bunny-Stream · quadratisches Hero-Video (1:1) ───────────────────────── */
/* Ersetzt im Hero-Baustein Bild/lokales Video, sobald eine Bunny-Video-ID gesetzt ist. */
.bunnybox {
  position: relative;
  padding-top: 100%;              /* 1:1 */
  border-radius: 22px;
  overflow: hidden;
  background: #17120e;            /* dunkler Grund, bis der Player malt */
  box-shadow: 0 18px 44px rgba(36, 27, 21, .10);
}
.bunnybox iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0; display: block;
}
/* Home-Hero: gleiche Rundung wie das Foto, Namenskarte bleibt darüber */
.hphoto > .bunnybox { border-radius: 26px; }
.hphoto > .bunnybox + .hcard { z-index: 2; }

/* Hero auf der Startseite: Video laeuft von selbst und ist nicht bedienbar (hphoto-nopointer) */
.hphoto > video,
.hphoto > .bunnybox,
.hphoto > .bunnybox iframe { pointer-events: none; }
