/* Auto-generated: design-system.css + site.css. Do not edit directly -- edit those two files and bump TB_VERSION instead. */
/* Modernist design-system tokens and component classes. Note: the Archivo
   webfont is intentionally not self-hosted here (build-environment file-size
   constraint) - font-family falls back to system-ui/sans-serif, so no
   external font request is made either way and the privacy requirement is
   still satisfied. Colors, spacing, radii and all component classes below
   are faithful to the source design system. */

:root {
  --color-bg: #f3f2f2;
  --color-surface: #eae9e9;
  --color-text: #201e1d;
  --color-accent: #ec3013;
  --color-accent-2: #e15b47;
  --color-divider: color-mix(in srgb, #201e1d 40%, transparent);

  --color-neutral-100: #f8f4f4;
  --color-neutral-200: #eae7e7;
  --color-neutral-300: #d7d3d3;
  --color-neutral-400: #bab6b6;
  --color-neutral-500: #9b9797;
  --color-neutral-600: #7d7979;
  --color-neutral-700: #605d5d;
  --color-neutral-800: #444141;
  --color-neutral-900: #2d2b2b;

  --color-accent-100: #fff2ef;
  --color-accent-200: #ffe0d9;
  --color-accent-300: #ffc4b8;
  --color-accent-400: #ff9783;
  --color-accent-500: #ff563c;
  --color-accent-600: #dd2b0f;
  --color-accent-700: #ae1800;
  --color-accent-800: #7c1405;
  --color-accent-900: #4d170e;

  --color-accent-2-100: #fff2ef;
  --color-accent-2-200: #ffe0da;
  --color-accent-2-300: #ffc4b9;
  --color-accent-2-400: #ff9784;
  --color-accent-2-500: #ef6853;
  --color-accent-2-600: #c94b39;
  --color-accent-2-700: #9e3526;
  --color-accent-2-800: #71261b;
  --color-accent-2-900: #471d16;

  --font-heading: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-heading-weight: 800;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --space-1: 4.0px;
  --space-2: 8.0px;
  --space-3: 12.0px;
  --space-4: 16.0px;
  --space-6: 24.0px;
  --space-8: 32.0px;

  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;

  --shadow-sm: 0 1px 2px color-mix(in srgb, #2d2b2b 14%, transparent);
  --shadow-md: 0 3px 10px color-mix(in srgb, #2d2b2b 16%, transparent);
  --shadow-lg: 0 12px 32px color-mix(in srgb, #2d2b2b 22%, transparent);
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
}
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: var(--font-heading-weight); }
/* Astra's own theme CSS forces an explicit color on all headings (h1-h6), which otherwise
   beats our intended inherited text color (e.g. light heading text on the dark Kontakt-Karte
   or hero image). Re-establish inheritance with a selector specific enough to win reliably. */
body h1, body h2, body h3, body h4, body h5, body h6 { color: inherit; }

.grayscale{filter:grayscale(1) contrast(1.08)}

*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; font-size: 15px; line-height: 1.55; font-weight: 400; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading); font-weight: var(--font-heading-weight);
  line-height: 1.12; letter-spacing: -0.015em; margin: 0 0 var(--space-2);
}
h1 { font-size: 42px; }
h2 { font-size: 32px; }
h3 { font-size: 25px; }
h4 { font-size: 20px; }
h5 { font-size: 16px; }
h6 { font-size: 13px; }
h6 { letter-spacing: 0.08em; text-transform: uppercase; }
p { margin: 0 0 var(--space-3); }
a { color: var(--color-accent); text-underline-offset: 3px; }
img { display: block; max-width: 100%; }
figure { margin: 0; }
figcaption {
  font-size: 11px; margin-top: var(--space-1);
  color: color-mix(in srgb, var(--color-text) 55%, transparent);
}
.text-muted { color: color-mix(in srgb, var(--color-text) 55%, transparent); }
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
::selection { background: color-mix(in srgb, var(--color-accent) 30%, transparent); }

.hr {
  height: 2px; border: 0; margin: var(--space-4) 0;
  background: var(--color-divider);
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  cursor: pointer; text-decoration: none;
  font-family: var(--font-heading); font-weight: var(--font-heading-weight);
  font-size: 14px; line-height: 1.2; color: var(--color-text);
  background: transparent; border: 1px solid transparent;
  padding: var(--space-2) calc(var(--space-3) * 1.2);
  border-radius: var(--radius-md);
}
.btn svg { display: block; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; }
.btn-primary { background: var(--color-accent); color: var(--color-bg); }
.btn-primary:hover { background: var(--color-accent-600); color: var(--color-bg); }
.btn-primary:active { background: var(--color-accent-700); }
.btn-secondary { border-color: var(--color-divider); }
.btn-secondary:hover { background: color-mix(in srgb, var(--color-text) 7%, transparent); }
.btn-secondary:active { background: color-mix(in srgb, var(--color-text) 14%, transparent); }
.btn-ghost { color: var(--color-accent); padding-inline: var(--space-1); }
.btn-ghost:hover { background: color-mix(in srgb, var(--color-accent) 10%, transparent); }
.btn-ghost:active { background: color-mix(in srgb, var(--color-accent) 18%, transparent); }
.btn-icon { width: 36px; height: 36px; padding: 0; }
.btn-block { width: 100%; margin-top: var(--space-2); justify-content: flex-start; text-align: left; }

.field > label {
  display: block; font-size: 12px; margin-bottom: 5px;
  color: color-mix(in srgb, var(--color-text) 70%, transparent);
}
.input {
  width: 100%; min-height: 36px; padding: 6px 10px; font: inherit;
  font-size: 14px; color: var(--color-text); caret-color: var(--color-accent);
  background: var(--color-surface);
  border: 1px solid var(--color-divider); border-radius: var(--radius-md);
}
.input:hover { border-color: color-mix(in srgb, var(--color-text) 45%, transparent); }
.input:focus-visible { border-color: var(--color-accent); outline-offset: 0; }
textarea.input { min-height: 90px; resize: vertical; }
.radio { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; font-size: 14px; }
.radio input, .seg-opt input {
  position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none;
}
.radio .dot {
  width: 16px; height: 16px; flex: none; border-radius: 50%;
  border: 1.5px solid var(--color-divider);
}
.radio:hover .dot { border-color: var(--color-accent); }
.radio input:checked + .dot {
  border-color: var(--color-accent); background: var(--color-accent);
  box-shadow: inset 0 0 0 4px var(--color-bg);
}
.radio input:focus-visible + .dot { outline: 2px solid var(--color-accent); outline-offset: 2px; }
.seg {
  display: inline-flex; overflow: hidden;
  border: 1px solid var(--color-divider); border-radius: var(--radius-md);
}
.seg-opt {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 12px; font-size: 13px; cursor: pointer;
}
.seg-opt + .seg-opt { border-left: 1px solid var(--color-divider); }
.seg-opt:has(input:checked) { background: var(--color-accent); color: var(--color-bg); }
.seg-opt:not(:has(input:checked)):hover { background: color-mix(in srgb, var(--color-text) 7%, transparent); }
.seg-opt:has(input:focus-visible) { outline: 2px solid var(--color-accent); outline-offset: -2px; }

.card {
  display: flex; flex-direction: column; gap: var(--space-2);
  padding: var(--space-3); border-radius: var(--radius-md); background: var(--color-surface);
}
.card-kicker { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-accent); }
.card-title {
  font-family: var(--font-heading); font-weight: var(--font-heading-weight);
  font-size: 17px; line-height: 1.2;
}
.card-body { margin: 0; font-size: 13px; opacity: 0.8; flex: 1; }
.card-meta {
  display: flex; align-items: center; gap: 6px; font-size: 11px;
  color: color-mix(in srgb, var(--color-text) 50%, transparent);
}
.elev-sm { box-shadow: var(--shadow-sm); }
.elev-md { box-shadow: var(--shadow-md); }
.elev-lg { box-shadow: var(--shadow-lg); }

.tag {
  display: inline-flex; align-items: center; font-size: 11px;
  letter-spacing: 0.02em; padding: 3px 10px;
  border-radius: calc(var(--radius-md) * 0.75);
}
.tag-accent { background: var(--color-accent-100); color: var(--color-accent-800); }
.tag-accent-2 { background: var(--color-accent-2-100); color: var(--color-accent-2-800); }
.tag-neutral { background: var(--color-neutral-100); color: var(--color-neutral-800); }
.tag-outline { border: 1px solid var(--color-accent); color: var(--color-accent); }

.nav {
  display: flex; align-items: center; gap: var(--space-4);
  padding: var(--space-3) var(--space-4);
  border-bottom: 2px solid var(--color-divider);
}
.nav-brand {
  font-family: var(--font-heading); font-weight: var(--font-heading-weight);
  font-size: 18px; margin-right: auto;
}
.nav a { color: inherit; text-decoration: none; font-size: 14px; }
.nav a:hover, .nav a[aria-current='page'] { color: var(--color-accent); }

.table { width: 100%; border-collapse: collapse; font-size: 14px; }
.table th {
  text-align: left; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: color-mix(in srgb, var(--color-text) 60%, transparent);
  padding: var(--space-2); border-bottom: 2px solid var(--color-divider);
}
.table td {
  padding: var(--space-2);
  border-bottom: 1px solid var(--color-divider);
}
.table tbody tr:hover { background: color-mix(in srgb, var(--color-text) 4%, transparent); }

.dialog-backdrop {
  position: fixed; inset: 0; display: grid; place-items: center;
  padding: var(--space-4);
  background: color-mix(in srgb, var(--color-neutral-900) 50%, transparent);
}
.dialog {
  width: min(440px, 100%); display: flex; flex-direction: column; gap: var(--space-3);
  padding: var(--space-4); border-radius: var(--radius-lg);
  background: var(--color-surface); box-shadow: var(--shadow-lg);
}
.dialog-title {
  font-family: var(--font-heading); font-weight: var(--font-heading-weight);
  font-size: 20px;
}
.dialog-body { font-size: 14px; opacity: 0.85; }
.dialog-actions { display: flex; justify-content: flex-end; gap: var(--space-2); margin-top: var(--space-2); }

:root {
  --color-accent: #7b1e23; --color-accent-300: #c47a7e; --color-accent-400: #a8484e;
  --color-accent-500: #7b1e23; --color-accent-600: #6a1a1e; --color-accent-700: #5c161a;
  --r-lg: 30px; --r-md: 20px; --r-sm: 14px; --r-pill: 999px;
  --sh-sm: 0 1px 2px rgba(32,30,29,.08), 0 8px 22px rgba(32,30,29,.13);
  --sh-md: 0 14px 40px rgba(32,30,29,.10);
  --sh-lg: 0 30px 80px rgba(32,30,29,.16);
}
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--color-bg); color: var(--color-text); font-family: var(--font-body); }
a { text-decoration: none; color: var(--color-accent); }
a:hover { color: var(--color-accent-600); }
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 3px; }
@keyframes dUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
@keyframes dFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes dPop { from { opacity: 0; transform: scale(.94); } to { opacity: 1; transform: none; } }
@keyframes dPopScale { from { transform: scale(.94); } to { transform: none; } }
@keyframes dMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes dFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes dSheen { 0% { transform: translateX(-120%) skewX(-18deg); } 100% { transform: translateX(320%) skewX(-18deg); } }
@keyframes dSlowZoom { from { transform: scale(1); } to { transform: scale(1.12); } }
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-lift] { transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, background .3s ease, color .3s ease; }
[data-lift]:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }
[data-menu-panel] { opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .22s ease, transform .28s cubic-bezier(.2,.8,.2,1), visibility .22s; }
[data-menu]:hover > [data-menu-panel], [data-menu]:focus-within > [data-menu-panel] { opacity: 1; visibility: visible; transform: none; }
[data-menu]:hover > [data-menu-trigger], [data-menu]:focus-within > [data-menu-trigger] { background: color-mix(in srgb, var(--color-accent) 10%, transparent); color: var(--color-accent); }
[data-menu]:hover > [data-menu-trigger] [data-caret], [data-menu]:focus-within > [data-menu-trigger] [data-caret] { transform: rotate(180deg); }
[data-menu-item]:hover { background: var(--color-accent); color: var(--color-bg) !important; }
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
@media (max-width: 1180px) {
  [data-d="quotes"] { grid-template-columns: repeat(2, 1fr) !important; }
  [data-d="telHeader"] { display: none !important; }
}
@media (max-width: 1024px) {
  [data-d="two"], [data-d="stats"], [data-d="contact"], [data-d="heroCard"] { grid-template-columns: 1fr !important; }
  [data-d="grid"] { grid-template-columns: repeat(2, 1fr) !important; }
  [data-d="nav"] { display: none !important; }
  [data-d="navbar"] { display: flex !important; }
  [data-d="badgeFloat"] { position: static !important; margin-top: 16px; animation: none !important; }
}
@media (max-width: 760px) {
  [data-d="quotes"] { grid-template-columns: 1fr !important; }
  [data-wa-label] { display: none; }
  [data-d="waHeader"] { padding: 11px 13px !important; }
}
@media (max-width: 680px) {
  [data-d="grid"] { grid-template-columns: 1fr !important; }
  [data-d="fields"] { grid-template-columns: 1fr !important; }
  [data-d="contactRow"] { display: grid !important; grid-template-columns: 1fr !important; gap: 3px !important; text-align: left; }
  [data-d="contactRow"] > * { text-align: left; }
  [data-d="mobilebar"] { display: flex !important; }
  [data-d="whatsapp"] { bottom: 88px !important; }
  [data-d="ctaHeader"] { display: none !important; }
  [data-d="pad"] { padding-left: 16px !important; padding-right: 16px !important; }
  [data-d="footerBar"] { padding: 22px 16px 104px !important; }
  [data-d="navbar"] { padding-left: 16px !important; padding-right: 16px !important; }
  [data-sub] > div { left: 16px !important; right: 16px !important; }
  [data-sub] > div[style*="1fr 1fr"] { grid-template-columns: 1fr !important; }
}
@media (max-width: 400px) {
  [data-d="pad"] { padding-left: 13px !important; padding-right: 13px !important; }
}
[data-d="navbar"] { display: none; }

[data-sub] > summary::-webkit-details-marker { display: none; }
[data-sub][open] > summary svg { transform: rotate(180deg); }

/* Turner Bau child theme — layout CSS on top of design-system.css tokens */

:root { --tb-max: 1400px; }

* { box-sizing: border-box; }

.tb-wrap { max-width: var(--tb-max); margin: 0 auto; padding: 0 32px; }

/* ---------- Header ---------- */
.tb-header {
  position: sticky; top: 0; z-index: 60;
  /* Solid background (not a translucent color-mix + backdrop-filter blur) so the header always
     reads cleanly over busy content while scrolling, on every browser/GPU — no reliance on
     backdrop-filter compositing, which does not render reliably everywhere. */
  background: var(--color-bg);
  border-bottom: 1px solid color-mix(in srgb, var(--color-text) 10%, transparent);
}
/* When logged in, WP's black admin bar is fixed at top:0 with a higher z-index than our
   sticky header (also pinned at top:0) -- it was covering the header's top ~32px while
   scrolling, looking like the header was 'only half visible'. Push the sticky offset down
   by the admin bar's height (32px desktop, 46px on its own <=782px breakpoint) whenever it's showing. */
body.admin-bar .tb-header { top: 32px; }
@media screen and (max-width: 782px) {
  body.admin-bar .tb-header { top: 46px; }
}
.tb-header-bar { max-width: var(--tb-max); margin: 0 auto; padding: 0 32px; height: 76px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.tb-brand { display: flex; flex-direction: column; align-items: center; gap: 3px; color: var(--color-text); flex: 0 0 auto; }
.tb-brand img { height: 42px; width: auto; display: block; }
.tb-brand span { font-family: var(--font-heading); font-size: 15px; font-weight: 800; letter-spacing: .02em; line-height: 1; text-transform: uppercase; }

.tb-nav { display: flex; align-items: center; gap: 6px; font-size: 15px; font-weight: 600; }
.tb-nav > a { padding: 9px 15px; border-radius: var(--r-pill); color: var(--color-text); transition: background .25s, color .25s; }
.tb-nav > a:hover { background: color-mix(in srgb, var(--color-accent) 10%, transparent); color: var(--color-accent); }

[data-menu] { position: relative; display: inline-flex; }
[data-menu-trigger] { display: inline-flex; align-items: center; gap: 6px; padding: 9px 15px; border-radius: var(--r-pill); color: var(--color-text); cursor: default; }
[data-menu-panel] { position: absolute; top: calc(100% + 10px); left: 0; z-index: 80; min-width: 288px;
  background: #fff; border-radius: var(--r-md); box-shadow: var(--sh-lg); padding: 10px; display: grid; gap: 2px; }
[data-menu-panel].tb-panel-areas { left: 50%; margin-left: -190px; width: 380px; grid-template-columns: 1fr 1fr; }
[data-menu-item] { display: grid; gap: 2px; padding: 9px 12px; border-radius: var(--r-sm); color: var(--color-text); transition: background .2s, color .2s; font-size: 15px; font-weight: 600; }
[data-menu-item] .tb-item-title { font-size: 15px; font-weight: 700; }
[data-menu-item] .tb-item-desc { font-size: 12px; line-height: 1.4; opacity: .7; }

.tb-header-actions { display: flex; align-items: center; gap: 10px; }
.tb-burger { display: none; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: var(--r-pill);
  background: color-mix(in srgb, var(--color-text) 6%, transparent); border: 0; cursor: pointer; flex: 0 0 auto; padding: 0; }
/* Astra's parent theme ships a global "button:focus, button:hover {background-color: var(--ast-global-color-1)}"
   rule -- being a bare element+pseudo-class selector it's JUST specific enough to beat our single-class
   .tb-burger rule, which painted the burger bright Astra-blue on tap/focus. Re-declare on the pseudo-class
   itself (two classes = higher specificity) so our neutral background always wins. */
.tb-burger:focus, .tb-burger:hover, .tb-burger:active, .tb-burger.is-open {
  background: color-mix(in srgb, var(--color-text) 6%, transparent);
  color: inherit; border-color: transparent; outline: none;
}
.tb-burger-bars { position: relative; width: 20px; height: 14px; display: block; }
.tb-burger-bars span { position: absolute; left: 0; right: 0; height: 2px; border-radius: 2px; background: var(--color-text);
  transition: transform .25s ease, opacity .25s ease, top .25s ease; }
.tb-burger-bars span:nth-child(1) { top: 0; }
.tb-burger-bars span:nth-child(2) { top: 6px; }
.tb-burger-bars span:nth-child(3) { top: 12px; }
.tb-burger.is-open .tb-burger-bars span:nth-child(1) { top: 6px; transform: rotate(45deg); }
.tb-burger.is-open .tb-burger-bars span:nth-child(2) { opacity: 0; }
.tb-burger.is-open .tb-burger-bars span:nth-child(3) { top: 6px; transform: rotate(-45deg); }
body.tb-menu-open { overflow: hidden; }
.tb-tel { font-size: 15px; font-weight: 700; color: var(--color-text); padding: 9px 14px; border-radius: var(--r-pill); transition: background .25s; }
.tb-tel:hover { background: color-mix(in srgb, var(--color-text) 8%, transparent); }
.tb-wa { display: inline-flex; align-items: center; gap: 8px; background: #25d366; color: var(--color-text); padding: 10px 16px 10px 13px;
  border-radius: var(--r-pill); font-size: 15px; font-weight: 700; box-shadow: var(--sh-sm); transition: transform .3s, box-shadow .3s; }
.tb-wa:hover { transform: translateY(-2px); color: var(--color-text); }
.tb-wa svg { flex: 0 0 auto; }

/* ---------- Floating WhatsApp button (fixed, follows scroll) ---------- */
.tb-wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 70; width: 58px; height: 58px; border-radius: 50%;
  background: var(--color-accent); color: var(--color-bg); display: grid; place-items: center; box-shadow: var(--sh-lg);
  animation: 5s ease-in-out infinite dFloat; transition: transform .3s cubic-bezier(.2,.8,.2,1), background .3s; will-change: transform;
}
.tb-wa-float:hover { transform: scale(1.06); color: var(--color-bg); }

/* Astra's built-in scroll-to-top button is not part of the original design and collides
   with the floating WhatsApp button in the same corner — remove it. */
#ast-scroll-top { display: none !important; }
.tb-cta { background: var(--color-accent); color: var(--color-bg); padding: 12px 20px; border-radius: var(--r-pill);
  font-size: 15px; font-weight: 700; box-shadow: var(--sh-sm); transition: transform .3s, background .3s; }
.tb-cta:hover { transform: translateY(-2px); color: var(--color-bg); background: var(--color-accent-600); }

.tb-navbar { display: none; position: relative; max-width: var(--tb-max); margin: 0 auto; padding: 0 32px 10px; gap: 8px; flex-wrap: wrap; }
.tb-navbar [data-sub] { flex: 0 0 auto; }
.tb-navbar summary { display: inline-flex; align-items: center; gap: 7px; min-height: 44px; padding: 0 16px; border-radius: var(--r-pill);
  background: color-mix(in srgb, var(--color-accent) 12%, transparent); color: var(--color-accent-700); font-size: 15px; font-weight: 700;
  white-space: nowrap; cursor: pointer; list-style: none; }
.tb-navbar summary::-webkit-details-marker { display: none; }
.tb-navbar [data-sub] > div { position: absolute; top: calc(100% - 4px); left: 32px; right: 32px; z-index: 90; max-height: 62vh; overflow-y: auto;
  background: #fff; border-radius: var(--r-md); box-shadow: var(--sh-lg); padding: 8px; display: grid; gap: 2px; }
.tb-navbar .tb-panel-areas > div { grid-template-columns: 1fr 1fr; }
.tb-navbar a.tb-plain { flex: 0 0 auto; display: inline-flex; align-items: center; min-height: 44px; padding: 0 16px; border-radius: var(--r-pill);
  background: color-mix(in srgb, var(--color-text) 6%, transparent); color: var(--color-text); font-size: 15px; font-weight: 700; white-space: nowrap; }
.tb-navbar [data-menu-item] { display: flex; align-items: center; min-height: 44px; padding: 0 12px; }

/* ---------- Hero ---------- */
.tb-hero-wrap { max-width: var(--tb-max); margin: 0 auto; padding: 34px 32px 0; }
.tb-hero { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg);
  /* Transform-only entrance (no opacity fade) -- the hero image is the LCP
     element, and Chrome only credits Largest Contentful Paint once an
     animated opacity settles, so fading it in was directly costing us LCP
     time. A subtle scale-in keeps the same feel without hiding the image. */
  animation: .9s cubic-bezier(.2,.8,.2,1) dPopScale both; }
.tb-hero-bg { position: absolute; inset: 0; z-index: 0; }
.tb-hero-bg img { width: 100%; height: 100%; object-fit: cover; display: block; animation: 18s ease-in-out infinite alternate dSlowZoom; }
.tb-hero-scrim { position: absolute; inset: 0; background: linear-gradient(105deg, color-mix(in srgb, var(--color-text) 88%, transparent) 0%, color-mix(in srgb, var(--color-text) 62%, transparent) 48%, color-mix(in srgb, var(--color-text) 18%, transparent) 100%); }
.tb-hero-card { position: relative; z-index: 1; display: grid; grid-template-columns: 1.4fr .6fr; gap: 32px; align-items: end;
  padding: clamp(28px,4vw,60px); min-height: clamp(420px,62vh,600px); color: var(--color-bg); }
.tb-hero-left { display: grid; gap: 18px; align-content: end; }
.tb-eyebrow { justify-self: start; display: inline-flex; align-items: center; gap: 10px; background: color-mix(in srgb, var(--color-bg) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--color-bg) 34%, transparent); border-radius: var(--r-pill); padding: 8px 16px; font-size: 12px;
  letter-spacing: .16em; text-transform: uppercase; font-weight: 700; animation: .8s ease dUp both; }
.tb-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--color-accent-300); box-shadow: 0 0 0 4px color-mix(in srgb, var(--color-accent-300) 30%, transparent); }
.tb-hero-left h1 { margin: 0; font-family: var(--font-heading); font-size: clamp(30px,4.3vw,62px); line-height: 1.04; letter-spacing: -.035em; font-weight: 800; text-wrap: balance; animation: .9s ease .08s dUp both; }
.tb-hero-left > p { margin: 0; max-width: 54ch; font-size: clamp(16px,1.4vw,19px); line-height: 1.65; color: color-mix(in srgb, var(--color-bg) 86%, transparent); animation: .9s ease .16s dUp both; }
.tb-hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; animation: .9s ease .24s dUp both; }
.tb-btn-accent { position: relative; overflow: hidden; background: var(--color-accent); color: var(--color-bg); padding: 15px 26px; border-radius: var(--r-pill);
  font-size: 16px; font-weight: 700; box-shadow: var(--sh-md); transition: transform .3s, background .3s; display: inline-block; }
.tb-btn-accent:hover { transform: translateY(-2px); color: var(--color-bg); }

/* ---------- Glanz-Animation (Buttons "Angebot anfragen") ---------- */
.tb-shine { position: relative; overflow: hidden; }
.tb-shine::after {
  content: ""; position: absolute; top: 0; left: -75%; width: 45%; height: 100%; pointer-events: none;
  background: linear-gradient(115deg, transparent, color-mix(in srgb, var(--color-bg) 60%, transparent), transparent);
  transform: skewX(-20deg); animation: dShine 3s ease-in-out infinite;
}
@keyframes dShine { 0% { left: -75%; } 78% { left: 130%; } 100% { left: 130%; } }
@media (prefers-reduced-motion: reduce) { .tb-shine::after { animation: none; display: none; } }
.tb-btn-ghost-light { background: color-mix(in srgb, var(--color-bg) 14%, transparent); border: 1px solid color-mix(in srgb, var(--color-bg) 40%, transparent);
  color: var(--color-bg); padding: 15px 26px; border-radius: var(--r-pill); font-size: 16px; font-weight: 700; backdrop-filter: blur(6px);
  transition: background .3s, transform .3s; display: inline-block; }
.tb-btn-ghost-light:hover { transform: translateY(-2px); background: color-mix(in srgb, var(--color-bg) 22%, transparent); color: var(--color-bg); }

.tb-hero-right { position: relative; display: grid; gap: 14px; justify-items: stretch; }
.tb-badge { background: color-mix(in srgb, var(--color-bg) 94%, transparent); color: var(--color-text); border-radius: var(--r-md); padding: 20px 22px;
  box-shadow: var(--sh-md); display: grid; gap: 12px; animation: 6s ease-in-out infinite dFloat, .9s cubic-bezier(.2,.8,.2,1) .3s dPop both; }
.tb-badge-top { display: flex; align-items: center; gap: 12px; }
.tb-badge-top strong { font-family: var(--font-heading); font-size: 30px; line-height: 1; font-weight: 800; letter-spacing: -.03em; }
.tb-stars { display: flex; gap: 2px; color: var(--color-accent); }
.tb-badge p { margin: 0; font-size: 13px; line-height: 1.5; color: color-mix(in srgb, var(--color-text) 65%, transparent); }
.tb-stats-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.tb-stat { background: color-mix(in srgb, var(--color-bg) 14%, transparent); border: 1px solid color-mix(in srgb, var(--color-bg) 30%, transparent);
  border-radius: var(--r-md); padding: 16px 18px; backdrop-filter: blur(6px); animation: .9s cubic-bezier(.2,.8,.2,1) .42s dPop both; }
.tb-stat .num { font-family: var(--font-heading); font-size: 30px; line-height: 1; font-weight: 800; letter-spacing: -.03em; }
.tb-stat p { margin: 6px 0 0; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: color-mix(in srgb, var(--color-bg) 76%, transparent); }

/* ---------- Services marquee (below hero) ---------- */
.tb-marquee-wrap { padding: 30px 0 0; overflow: hidden; }
.tb-marquee { display: flex; white-space: nowrap; will-change: transform; animation: 42s linear infinite dMarquee; }
.tb-marquee-pass { display: flex; align-items: center; gap: 26px; padding-right: 26px; }
.tb-marquee-item { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-heading); font-size: 15px; font-weight: 700;
  letter-spacing: .02em; color: color-mix(in srgb, var(--color-text) 75%, transparent); }
.tb-marquee-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--color-accent); flex: 0 0 auto; }
/* ---------- Angebot des Monats (Hero-Karte, oberhalb der Google-Bewertung) ---------- */
.tb-hero-offer { display: grid; gap: 6px; background: var(--color-accent); color: var(--color-bg); border-radius: var(--r-md);
  padding: 16px 20px; box-shadow: var(--sh-md); text-decoration: none; animation: .9s cubic-bezier(.2,.8,.2,1) .18s dPop both;
  transition: transform .3s; }
.tb-hero-offer:hover { transform: translateY(-2px); color: var(--color-bg); }
.tb-hero-offer-kicker { justify-self: start; background: color-mix(in srgb, var(--color-bg) 20%, transparent);
  border: 1px solid color-mix(in srgb, var(--color-bg) 36%, transparent); border-radius: var(--r-pill); padding: 4px 12px;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; }
.tb-hero-offer strong { font-family: var(--font-heading); font-size: 18px; line-height: 1.25; font-weight: 800; color: var(--color-bg); }
.tb-hero-offer p { margin: 0; font-size: 13px; line-height: 1.4; color: color-mix(in srgb, var(--color-bg) 88%, transparent); }
.tb-hero-offer-cta { font-size: 12px; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.tb-hero-offer-cta em { font-style: normal; font-weight: 600; opacity: .85; text-decoration: none; }

/* ---------- Generic section ---------- */
.tb-section { max-width: var(--tb-max); margin: 0 auto; padding: 76px 32px 0; scroll-margin-top: 96px; }
.tb-section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 36px; flex-wrap: wrap; margin-bottom: 34px; }
#kontakt.tb-section { padding-bottom: 90px; }
.tb-kicker { display: inline-block; background: color-mix(in srgb, var(--color-accent) 12%, transparent); color: var(--color-accent-700);
  border-radius: var(--r-pill); padding: 7px 15px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; margin-bottom: 16px; }
.tb-section h2 { margin: 0; font-family: var(--font-heading); font-size: clamp(28px,3.4vw,46px); line-height: 1.04; letter-spacing: -.03em; font-weight: 800; }
.tb-section-head h2 { font-size: clamp(30px,3.8vw,54px); line-height: 1.02; max-width: 22ch; }
.tb-section-head > p { margin: 0; max-width: 40ch; font-size: 16px; line-height: 1.65; color: color-mix(in srgb, var(--color-text) 68%, transparent); }

.tb-grid4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.tb-card { background: #fff; border: 1px solid rgba(32,30,29,.08);  border-radius: var(--r-md); padding: 26px 24px 22px; box-shadow: var(--sh-sm); display: grid; gap: 12px; align-content: start;
  min-height: 232px; color: var(--color-text); }
.tb-card-num { width: 34px; height: 34px; border-radius: var(--r-sm); background: color-mix(in srgb, var(--color-accent) 12%, transparent);
  color: var(--color-accent-700); display: grid; place-items: center; font-size: 12px; font-weight: 800; letter-spacing: .04em; }
.tb-card h3 { margin: 0; font-family: var(--font-heading); font-size: 23px; line-height: 1.1; letter-spacing: -.02em; font-weight: 800; }
.tb-card p { margin: 0; font-size: 15px; line-height: 1.6; opacity: .78; }
.tb-card .tb-more { margin-top: auto; font-size: 14px; font-weight: 700; }
.tb-card-cta { background: var(--color-accent); color: var(--color-bg); padding: 26px 24px; display: grid; gap: 12px; align-content: center; min-height: 232px; box-shadow: var(--sh-md); }
.tb-card-cta:hover { color: var(--color-bg); }
.tb-card-cta h3 { color: var(--color-bg); }
.tb-card-cta p { opacity: .88; }

.tb-reason { background: #fff; border: 1px solid rgba(32,30,29,.08);  border-radius: var(--r-md); padding: 26px 24px; box-shadow: var(--sh-sm); display: grid; gap: 12px; align-content: start; }
.tb-reason .badge-num { width: 40px; height: 40px; border-radius: 50%; background: var(--color-accent); color: var(--color-bg); display: grid;
  place-items: center; font-family: var(--font-heading); font-size: 15px; font-weight: 800; }
.tb-reason h3 { margin: 0; font-family: var(--font-heading); font-size: 20px; letter-spacing: -.02em; font-weight: 800; }
.tb-reason p { margin: 0; font-size: 15px; line-height: 1.65; color: color-mix(in srgb, var(--color-text) 70%, transparent); }

.tb-two { display: grid; grid-template-columns: 1fr 1.15fr; gap: 40px; background: #fff; border: 1px solid rgba(32,30,29,.08);  border-radius: var(--r-lg);
  padding: clamp(26px,3.4vw,54px); box-shadow: var(--sh-sm); }
.tb-two-left { display: grid; gap: 16px; align-content: start; }
.tb-two-left h2 { margin: 0; font-family: var(--font-heading); font-size: clamp(26px,3vw,42px); line-height: 1.04; letter-spacing: -.03em; font-weight: 800; }
.tb-pill-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 6px; }
.tb-pill-outline { border: 1px solid color-mix(in srgb, var(--color-text) 16%, transparent); border-radius: var(--r-pill); padding: 8px 14px; font-size: 13px; font-weight: 600; }
.tb-two-right { display: grid; gap: 18px; align-content: center; }
.tb-two-right p { margin: 0; font-size: 17px; line-height: 1.75; }

/* ---------- Quotes ---------- */
.tb-quotes { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.tb-quote { margin: 0; background: #fff; border: 1px solid rgba(32,30,29,.08);  border-radius: var(--r-md); padding: 28px 26px; box-shadow: var(--sh-sm); display: grid; gap: 16px; }
.tb-quote blockquote { margin: 0; font-size: 17px; line-height: 1.7; }
.tb-quote figcaption { display: flex; align-items: center; gap: 12px; font-size: 14px; }
.tb-quote .avatar { width: 36px; height: 36px; border-radius: 50%; background: color-mix(in srgb, var(--color-accent) 12%, transparent);
  color: var(--color-accent-700); display: grid; place-items: center; font-weight: 800; }
.tb-quote figcaption strong { display: block; font-weight: 700; }
.tb-quote figcaption span.job { color: color-mix(in srgb, var(--color-text) 62%, transparent); }

/* ---------- Contact ---------- */
.tb-contact-outer { background: var(--color-text); color: var(--color-bg); border-radius: var(--r-lg); padding: clamp(28px,3.6vw,56px); box-shadow: var(--sh-lg); }
.tb-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.tb-contact-left { display: grid; gap: 22px; align-content: start; }
.tb-contact-left h2 { margin: 0; font-family: var(--font-heading); font-size: clamp(26px,3.2vw,46px); line-height: 1.04; letter-spacing: -.03em; font-weight: 800; }
.tb-contact-rows { display: grid; gap: 10px; }
.tb-contact-row { display: flex; justify-content: space-between; gap: 16px; background: color-mix(in srgb, var(--color-bg) 9%, transparent);
  border-radius: var(--r-md); padding: 15px 18px; color: var(--color-bg); font-size: 16px; }
.tb-contact-row span.label { opacity: .7; }
.tb-contact-row strong { font-weight: 700; }
.tb-contact-formbox { background: var(--color-bg); color: var(--color-text); border-radius: var(--r-md); padding: clamp(22px,2.4vw,32px); }

/* WPForms styling to match design (2-col grid: Name/Firma, E-Mail/Telefon, then full-width fields) */
.tb-contact-formbox .wpforms-container { margin: 0 !important; }
.tb-contact-formbox .wpforms-field-container { display: grid !important; grid-template-columns: 1fr 1fr; gap: 16px; }
.tb-contact-formbox .wpforms-field { margin-bottom: 0 !important; grid-column: 1 / -1; }
.tb-contact-formbox .wpforms-field-name,
.tb-contact-formbox .wpforms-field-text,
.tb-contact-formbox .wpforms-field-email {
  grid-column: span 1;
}
.tb-contact-formbox .wpforms-form label.wpforms-field-label,
.tb-contact-formbox .wpforms-form legend.wpforms-field-label { font-size: 13px !important; font-weight: 600 !important; color: var(--color-text) !important; margin-bottom: 7px !important; display: block; }
.tb-contact-formbox .wpforms-form input[type=text], .tb-contact-formbox .wpforms-form input[type=email],
.tb-contact-formbox .wpforms-form input[type=tel], .tb-contact-formbox .wpforms-form textarea,
.tb-contact-formbox .wpforms-form select {
  border: 1px solid color-mix(in srgb, var(--color-text) 18%, transparent) !important; border-radius: var(--r-sm) !important;
  padding: 12px 14px !important; font-family: var(--font-body) !important; font-size: 16px !important; background: #fff !important;
  color: var(--color-text) !important; width: 100% !important; max-width: 100% !important; box-sizing: border-box; }
/* WPForms' "medium" size class caps fields at max-width:60% by default — override so every
   field (and the select) fills its grid cell / row completely and the placeholder text
   in the dropdown is not cramped. */
.tb-contact-formbox .wpforms-form .wpforms-field-medium,
.tb-contact-formbox .wpforms-form input.wpforms-field-medium,
.tb-contact-formbox .wpforms-form select.wpforms-field-medium,
.tb-contact-formbox .wpforms-form textarea.wpforms-field-medium {
  max-width: 100% !important;
}
.tb-contact-formbox .wpforms-form select {
  background-image: linear-gradient(45deg, transparent 49%, var(--color-text) 50%), linear-gradient(-45deg, transparent 49%, var(--color-text) 50%) !important;
  background-position: calc(100% - 20px) 55%, calc(100% - 13px) 55% !important; background-size: 7px 7px, 7px 7px !important; background-repeat: no-repeat !important; appearance: none; }
.tb-contact-formbox .wpforms-form textarea { min-height: 110px !important; resize: vertical; }
.tb-contact-formbox .wpforms-field-checkbox fieldset { border: 0; padding: 0; margin: 0; }
.tb-contact-formbox .wpforms-field-checkbox legend.wpforms-field-label { display: none !important; }
.tb-contact-formbox .wpforms-field-checkbox ul { list-style: none; margin: 0 !important; padding: 0 !important; }
.tb-contact-formbox .wpforms-field-checkbox li { display: flex; align-items: flex-start; gap: 8px; }
.tb-contact-formbox .wpforms-field-checkbox input[type=checkbox] { margin-top: 3px; flex: 0 0 auto; accent-color: var(--color-accent); }
.tb-contact-formbox .wpforms-field-checkbox label.wpforms-field-label-inline {
  margin: 0 !important; font-size: 12px !important; font-weight: 400 !important; line-height: 1.5 !important;
  color: color-mix(in srgb, var(--color-text) 62%, transparent) !important; }
.tb-contact-formbox .wpforms-field-checkbox label.wpforms-field-label-inline a { color: inherit; text-decoration: underline; }
.tb-contact-formbox .wpforms-submit-container { grid-column: 1 / -1; margin-top: 2px; }
.tb-contact-formbox .wpforms-submit-container button,
.tb-contact-formbox .wpforms-form button[type=submit] {
  background: var(--color-accent) !important; color: var(--color-bg) !important; border: none !important; border-radius: var(--r-pill) !important;
  padding: 15px 26px !important; font-size: 16px !important; font-weight: 700 !important; cursor: pointer; box-shadow: var(--sh-sm); transition: transform .3s, background .3s; }
.tb-contact-formbox .wpforms-submit-container button:hover { transform: translateY(-2px); background: var(--color-accent-600) !important; }
.tb-contact-formbox .wpforms-error { color: #b3261e !important; }
@media (max-width: 720px) {
  .tb-contact-formbox .wpforms-field-container { grid-template-columns: 1fr; }
  .tb-contact-formbox .wpforms-field-name, .tb-contact-formbox .wpforms-field-text, .tb-contact-formbox .wpforms-field-email { grid-column: 1 / -1; }
}

/* ---------- Footer ---------- */
.tb-footer { background: var(--color-text); color: var(--color-bg); }
.tb-footer-bar { max-width: var(--tb-max); margin: 0 auto; padding: 26px 32px; display: flex; gap: 24px; flex-wrap: wrap;
  justify-content: space-between; font-size: 14px; }
.tb-footer-bar .copy { opacity: .65; }
.tb-footer-bar .links { display: flex; gap: 22px; }
.tb-footer-bar a { color: var(--color-bg); }

/* ---------- City / service singles ---------- */
.tb-single-hero { max-width: var(--tb-max); margin: 0 auto; padding: 44px 32px 90px; }
.tb-single-hero .tb-eyebrow-plain { display: inline-block; background: color-mix(in srgb, var(--color-accent) 12%, transparent); color: var(--color-accent-700);
  border-radius: var(--r-pill); padding: 7px 15px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; margin-bottom: 18px; }
.tb-single-hero h1 { margin: 0 0 18px; font-family: var(--font-heading); font-size: clamp(30px,4.4vw,58px); line-height: 1.04; letter-spacing: -.03em; font-weight: 800; max-width: 24ch; }
.tb-single-hero .lead { max-width: 66ch; font-size: 18px; line-height: 1.7; color: color-mix(in srgb, var(--color-text) 75%, transparent); }
.tb-single-media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); margin: 28px 0; }
.tb-single-media img { width: 100%; height: auto; display: block; max-height: 460px; object-fit: cover; }
.tb-bullets { display: grid; gap: 12px; margin: 24px 0; padding: 0; list-style: none; }
.tb-bullets li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; line-height: 1.55; background: #fff; border: 1px solid rgba(32,30,29,.08);  border-radius: var(--r-md);
  padding: 14px 16px; box-shadow: var(--sh-sm); }
.tb-bullets li::before { content: "\2713"; flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%; background: var(--color-accent); color: var(--color-bg);
  display: grid; place-items: center; font-size: 13px; font-weight: 800; }
.tb-closing { font-size: 17px; line-height: 1.7; max-width: 66ch; margin: 24px 0; color: color-mix(in srgb, var(--color-text) 78%, transparent); }

.tb-faq { display: grid; gap: 10px; margin: 20px 0; }
.tb-faq details { background: #fff; border: 1px solid rgba(32,30,29,.08);  border-radius: var(--r-md); box-shadow: var(--sh-sm); padding: 4px 20px; }
.tb-faq summary { padding: 16px 0; font-weight: 700; font-size: 16px; cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 12px; }
.tb-faq summary::-webkit-details-marker { display: none; }
.tb-faq summary::after { content: "+"; font-weight: 800; color: var(--color-accent); }
.tb-faq details[open] summary::after { content: "\2013"; }
.tb-faq p { margin: 0 0 18px; font-size: 15px; line-height: 1.65; color: color-mix(in srgb, var(--color-text) 75%, transparent); }

.tb-crosslinks { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 0; }
.tb-crosslinks a { border: 1px solid color-mix(in srgb, var(--color-text) 16%, transparent); border-radius: var(--r-pill); padding: 9px 16px;
  font-size: 14px; font-weight: 600; color: var(--color-text); }
.tb-crosslinks a:hover { background: color-mix(in srgb, var(--color-accent) 10%, transparent); color: var(--color-accent); }

.tb-districts { display: flex; flex-wrap: wrap; gap: 8px; margin: 8px 0 22px; }
.tb-districts span { border: 1px solid color-mix(in srgb, var(--color-text) 14%, transparent); border-radius: var(--r-pill); padding: 6px 12px; font-size: 13px; font-weight: 600; }

/* ---------- Cities grid (static list, homepage service-area) ---------- */
/* ---------- Einsatzgebiete (accent promo box, matches Claude Design) ---------- */
.tb-gebiete-box {
  position: relative; overflow: hidden; border-radius: var(--r-lg); background: var(--color-accent); color: var(--color-bg);
  padding: clamp(30px,4vw,60px); box-shadow: var(--sh-md);
}
.tb-gebiete-watermark {
  position: absolute; top: -40px; right: -30px; width: 360px; max-width: 55%; opacity: .12; filter: brightness(0) invert(1);
  pointer-events: none; animation: 9s ease-in-out infinite dFloat; will-change: transform;
}
.tb-gebiete-grid { position: relative; display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px; align-items: center; }
.tb-gebiete-left { display: grid; gap: 18px; }
.tb-gebiete-left h2 { margin: 0; font-family: var(--font-heading); font-size: clamp(26px,3.2vw,44px); line-height: 1.04; letter-spacing: -.03em; font-weight: 800; color: inherit; }
.tb-gebiete-left p { margin: 0; font-size: 16px; line-height: 1.65; opacity: .9; }
.tb-kicker--onaccent { justify-self: start; background: color-mix(in srgb, var(--color-bg) 18%, transparent); color: var(--color-bg); margin-bottom: 0; }
.tb-gebiete-cta {
  justify-self: start; background: var(--color-bg); color: var(--color-accent); padding: 14px 24px; border-radius: var(--r-pill);
  font-size: 15px; font-weight: 700; transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.tb-gebiete-cta:hover { transform: translateY(-2px); }
.tb-gebiete-right { display: grid; gap: 14px; }
.tb-gebiete-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.tb-gebiete-pill {
  background: color-mix(in srgb, var(--color-bg) 14%, transparent); border: 1px solid color-mix(in srgb, var(--color-bg) 32%, transparent);
  border-radius: var(--r-pill); padding: 10px 17px; font-size: 15px; font-weight: 600; color: var(--color-bg);
  transition: background .3s, transform .3s, color .3s;
}
.tb-gebiete-pill:hover { background: var(--color-bg); color: var(--color-accent); transform: translateY(-2px); }
.tb-gebiete-caption { margin: 0; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; opacity: .8; }
@media (max-width: 860px) {
  .tb-gebiete-grid { grid-template-columns: 1fr; }
}

/* ---------- Legal pages ---------- */
.tb-legal { max-width: 860px; margin: 0 auto; padding: 60px 32px 100px; }
.tb-legal h1 { font-family: var(--font-heading); font-size: clamp(30px,4vw,48px); font-weight: 800; letter-spacing: -.03em; margin: 0 0 12px; }
.tb-legal .lead { font-size: 17px; line-height: 1.6; color: color-mix(in srgb, var(--color-text) 70%, transparent); margin-bottom: 40px; }
.tb-legal section { margin-bottom: 30px; }
.tb-legal section h2 { font-family: var(--font-heading); font-size: 15px; letter-spacing: .06em; text-transform: uppercase; color: var(--color-accent-700);
  font-weight: 800; margin: 0 0 10px; }
.tb-legal section p { font-size: 16px; line-height: 1.7; margin: 0; }

/* ---------- Google Maps consent placeholder ---------- */
.tb-map-consent { background: #fff; border: 1px solid rgba(32,30,29,.08);  border-radius: var(--r-md); box-shadow: var(--sh-sm); padding: 34px 24px; text-align: center; display: grid; gap: 14px;
  justify-items: center; min-height: 280px; align-content: center; }
.tb-map-consent p { margin: 0; max-width: 46ch; font-size: 15px; line-height: 1.6; color: color-mix(in srgb, var(--color-text) 68%, transparent); }

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .tb-quotes { grid-template-columns: repeat(2,1fr) !important; }
  .tb-tel { display: none !important; }
}
@media (max-width: 1024px) {
  .tb-two, .tb-contact, .tb-hero-card { grid-template-columns: 1fr !important; }
  .tb-grid4 { grid-template-columns: repeat(2,1fr) !important; }
  .tb-nav { display: none !important; }
  .tb-burger { display: inline-flex; order: -1; }
  /* Mobile header layout: burger left, logo centered (absolute, independent of the other
     flex items), remaining actions (just the CTA button now -- WhatsApp icon is hidden
     below) on the right. */
  .tb-header-bar { position: relative; justify-content: space-between; }
  .tb-brand { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); }
  .tb-wa { display: none !important; }
  /* Keep the CTA button on a single line and compact enough to fit next to the burger
     once the logo is centered -- otherwise "Angebot anfragen" wraps to two lines and
     overlaps the vertically-centered logo. */
  .tb-header-actions { gap: 6px; }
  .tb-cta { padding: 10px 14px; font-size: 13px; white-space: nowrap; }
  .tb-navbar { display: none; flex-direction: column; align-items: stretch; gap: 6px; flex-wrap: nowrap;
    position: absolute; top: 100%; left: 0; right: 0; background: var(--color-bg);
    box-shadow: var(--sh-lg); padding: 14px 18px 22px; max-height: calc(100vh - 76px);
    overflow-y: auto; z-index: 70; border-top: 1px solid color-mix(in srgb, var(--color-text) 10%, transparent); }
  .tb-navbar.is-open { display: flex !important; }
  .tb-navbar [data-sub] { width: 100%; }
  .tb-navbar summary, .tb-navbar a.tb-plain { width: 100%; justify-content: space-between; }
  .tb-navbar [data-sub][open] > div { position: static; box-shadow: none; background: transparent; padding: 4px 0 4px 12px; max-height: none; margin-top: 4px; }
  .tb-cities-grid { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width: 760px) {
  .tb-quotes { grid-template-columns: 1fr !important; }
  .tb-wa { padding: 11px 13px !important; }
  .tb-wa span { display: none; }
}

/* On narrow phones the burger + centered logo + CTA button no longer all fit on one line
   without the logo overlapping the CTA -- trim the wordmark down to just the icon and
   shrink the CTA a touch so all three stay clear of each other. */
@media (max-width: 560px) {
  .tb-brand span { display: none; }
  .tb-brand img { height: 42px; }
  .tb-header-actions { gap: 6px; }
  .tb-cta { padding: 8px 12px; font-size: 12px; }
}
@media (max-width: 680px) {
  .tb-grid4 { grid-template-columns: 1fr !important; }
  .tb-cities-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 400px) {
  .tb-wrap, .tb-header-bar, .tb-hero-wrap, .tb-section, .tb-single-hero, .tb-footer-bar, .tb-navbar { padding-left: 18px !important; padding-right: 18px !important; }
}

/* Subline unter der H1 im Hero: traegt den Claim, seit die H1 das Keyword traegt. */
.tb-hero-claim{
  margin: 14px 0 0;
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,.82);
}

.tb-hero-left h1{ text-wrap: balance; }

/* ------------------------------------------------------------------ *
 * .tb-prose -- Fliesstextbereich der Leistungs- und Ortsseiten.
 * Der Inhalt kommt aus post_content und wird klassisch als h2/h3/p/ul
 * geschrieben, nicht als Gutenberg-Bloecke (die Block-CSS ist bewusst
 * dequeued). Eingefuehrt fuer den Content-Ausbau nach dem SEO-Audit.
 * ------------------------------------------------------------------ */
.tb-prose{
  margin: 46px 0 0;
  max-width: 68ch;
}
.tb-prose > *:first-child{ margin-top: 0; }
.tb-prose h2{
  margin: 46px 0 14px;
  font-size: clamp(22px, 2.6vw, 29px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.tb-prose h3{
  margin: 32px 0 10px;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.tb-prose p{
  margin: 0 0 16px;
  font-size: 16.5px;
  line-height: 1.68;
}
.tb-prose ul,
.tb-prose ol{
  margin: 0 0 18px;
  padding-left: 0;
  list-style: none;
}
.tb-prose ol{ counter-reset: tb-prose-step; }
.tb-prose li{
  position: relative;
  margin: 0 0 9px;
  padding-left: 26px;
  font-size: 16.5px;
  line-height: 1.6;
}
.tb-prose ul > li::before{
  content: "";
  position: absolute;
  left: 4px;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--color-accent);
}
.tb-prose ol > li{ padding-left: 34px; }
.tb-prose ol > li::before{
  counter-increment: tb-prose-step;
  content: counter(tb-prose-step);
  position: absolute;
  left: 0;
  top: 0.1em;
  font-size: 12px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--color-accent);
  border: 1px solid color-mix(in srgb, var(--color-accent) 35%, transparent);
  border-radius: 3px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
}
.tb-prose strong{ font-weight: 700; }
.tb-prose a{
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.tb-prose table{
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 20px;
  font-size: 15.5px;
}
.tb-prose th,
.tb-prose td{
  text-align: left;
  padding: 9px 12px 9px 0;
  border-bottom: 1px solid var(--color-divider);
  vertical-align: top;
}
.tb-prose th{
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}
.tb-prose blockquote{
  margin: 24px 0;
  padding: 2px 0 2px 18px;
  border-left: 3px solid var(--color-accent);
  font-size: 17px;
  line-height: 1.6;
}
@media (max-width: 640px){
  .tb-prose{ margin-top: 34px; }
  .tb-prose p,
  .tb-prose li{ font-size: 16px; }
}

/* ------------------------------------------------------------------ *
 * .tb-prose, Ausbaustufe 2: Rhythmus statt Textwueste.
 * Der Fliesstext bleibt auf 68 Zeichen begrenzt, gestaltete Bausteine
 * duerfen breiter laufen. Alle Werte folgen der aktiven Designrichtung
 * "Turner Bau Burgundy Modern Minimal".
 * ------------------------------------------------------------------ */
.tb-prose{ max-width: none; }
.tb-prose > p,
.tb-prose > ul,
.tb-prose > ol,
.tb-prose > h2,
.tb-prose > h3,
.tb-prose > blockquote{ max-width: 68ch; }

/* --- Kernaussage: vertiefte Flaeche, kein Rahmen, kein Schatten ----- */
.tb-prose .tb-callout{
  margin: 34px 0;
  padding: 26px 30px;
  background: color-mix(in srgb, var(--color-accent) 7%, var(--color-bg));
  border-radius: var(--r-md);
  max-width: 62ch;
}
.tb-prose .tb-callout p{
  margin: 0;
  font-size: clamp(17px, 2.1vw, 20px);
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--color-accent-700);
}
.tb-prose .tb-callout p + p{
  margin-top: 10px;
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.6;
  color: color-mix(in srgb, var(--color-text) 78%, transparent);
}

/* --- Ablauf als Schrittfolge --------------------------------------- */
.tb-prose .tb-steps{
  list-style: none;
  margin: 26px 0 34px;
  padding: 0;
  max-width: 70ch;
  counter-reset: tb-step;
}
.tb-prose .tb-steps li{
  position: relative;
  margin: 0;
  padding: 0 0 26px 62px;
  font-size: 16.5px;
  line-height: 1.65;
}
.tb-prose .tb-steps li::before{
  counter-increment: tb-step;
  content: counter(tb-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--r-pill);
  background: var(--color-accent);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
/* Verbindungslinie zwischen den Schritten */
.tb-prose .tb-steps li::after{
  content: "";
  position: absolute;
  left: 19.5px;
  top: 48px;
  bottom: 10px;
  width: 1px;
  background: color-mix(in srgb, var(--color-accent) 28%, transparent);
}
.tb-prose .tb-steps li:last-child{ padding-bottom: 0; }
.tb-prose .tb-steps li:last-child::after{ display: none; }
.tb-prose .tb-steps b,
.tb-prose .tb-steps strong{
  display: block;
  margin: 8px 0 4px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

/* --- Zwei Panels nebeneinander: gemacht / nicht gemacht ------------- */
.tb-prose .tb-split{
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 18px;
  margin: 28px 0 34px;
  max-width: 1000px;
}
.tb-prose .tb-panel{
  padding: 28px 30px;
  border-radius: var(--r-md);
  background: #fff;
  box-shadow: var(--sh-md);
}
.tb-prose .tb-panel--sunk{
  background: var(--color-surface);
  box-shadow: none;
}
.tb-prose .tb-panel h3{
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.tb-prose .tb-panel p:last-child,
.tb-prose .tb-panel ul:last-child{ margin-bottom: 0; }
.tb-prose .tb-panel ul{ margin-bottom: 0; }
.tb-prose .tb-panel li{ font-size: 15.5px; }
.tb-prose .tb-panel--sunk li::before{
  background: color-mix(in srgb, var(--color-text) 38%, transparent);
}

/* --- Kostentreiber: Begriff ueber Erklaerung ------------------------ */
.tb-prose .tb-factlist{
  list-style: none;
  margin: 24px 0 34px;
  padding: 0;
  max-width: 72ch;
  display: grid;
  gap: 1px;
  background: color-mix(in srgb, var(--color-text) 10%, transparent);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-md);
}
.tb-prose .tb-factlist li{
  margin: 0;
  padding: 18px 22px;
  background: #fff;
  font-size: 15.5px;
  line-height: 1.6;
}
.tb-prose .tb-factlist li::before{ display: none; }
.tb-prose .tb-factlist b,
.tb-prose .tb-factlist strong{
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent-700);
}

/* --- Vergleichstabelle ---------------------------------------------- */
.tb-prose .tb-tablewrap{
  margin: 24px 0 34px;
  max-width: 1000px;
  overflow-x: auto;
  border-radius: var(--r-md);
  background: #fff;
  box-shadow: var(--sh-md);
}
.tb-prose .tb-tablewrap table{
  margin: 0;
  min-width: 560px;
}
.tb-prose .tb-tablewrap th{
  padding: 15px 20px;
  background: var(--color-surface);
  border-bottom: 0;
  color: var(--color-accent-700);
}
.tb-prose .tb-tablewrap td{
  padding: 15px 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--color-text) 10%, transparent);
  font-size: 15.5px;
  line-height: 1.55;
}
.tb-prose .tb-tablewrap tr:last-child td{ border-bottom: 0; }
.tb-prose .tb-tablewrap td:first-child{ font-weight: 700; white-space: nowrap; }

/* --- Abschlussband -------------------------------------------------- */
.tb-prose .tb-band{
  margin: 40px 0 8px;
  padding: 38px 40px;
  border-radius: var(--r-lg);
  background: var(--color-surface);
  max-width: 1000px;
}
.tb-prose .tb-band h2{ margin-top: 0; }
.tb-prose .tb-band > *:last-child{ margin-bottom: 0; }
.tb-prose .tb-band p{ max-width: 66ch; }

@media (max-width: 860px){
  .tb-prose .tb-split{ grid-template-columns: 1fr; }
}
@media (max-width: 640px){
  .tb-prose .tb-callout{ padding: 22px 22px; }
  .tb-prose .tb-panel{ padding: 24px 22px; }
  .tb-prose .tb-band{ padding: 28px 22px; border-radius: var(--r-md); }
  .tb-prose .tb-steps li{ padding-left: 52px; }
  .tb-prose .tb-steps li::before{ width: 34px; height: 34px; font-size: 14px; }
  .tb-prose .tb-steps li::after{ left: 16.5px; top: 42px; }
}

/* ------------------------------------------------------------------ *
 * Footer, Neuaufbau 14.09.2026.
 * Traegt jetzt die vollstaendige NAP-Angabe als sichtbaren, crawlbaren
 * Text auf jeder Seite -- vorher stand die Adresse nur im JSON-LD und
 * im Impressum. Farben folgen der aktiven Designrichtung; auf dem
 * dunklen Grund uebernimmt accentSoft (#C47A7E) die Akzentrolle, weil
 * das CI-Burgunder dort nicht genug Kontrast haette.
 * ------------------------------------------------------------------ */
.tb-footer{
  background: var(--color-text);
  color: var(--color-bg);
  margin-top: 0;
}
.tb-footer-inner{
  max-width: var(--tb-max);
  margin: 0 auto;
  padding: 64px 32px 48px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px 40px;
}

/* --- Marke und NAP -------------------------------------------------- */
.tb-footer-mark{
  display: inline-flex;
  flex-direction: column;
  color: var(--color-bg);
  text-decoration: none;
  margin-bottom: 18px;
}
.tb-footer-mark-name{
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.tb-footer-mark-sub{
  font-size: 14px;
  letter-spacing: 0.02em;
  color: rgba(243,242,242,.72);
  margin-top: 2px;
}
.tb-footer-claim{
  margin: 0 0 22px;
  max-width: 40ch;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(243,242,242,.78);
}
.tb-footer-nap{
  font-style: normal;
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 14px;
  padding-left: 14px;
  border-left: 2px solid var(--color-accent-400);
}
.tb-footer-contact{
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 15px;
}
.tb-footer-contact a{
  color: var(--color-bg);
  text-decoration: none;
  border-bottom: 1px solid rgba(243,242,242,.28);
  padding-bottom: 1px;
}
.tb-footer-contact a:hover{
  color: var(--color-accent-300);
  border-bottom-color: var(--color-accent-300);
}
.tb-footer-hours{
  margin: 0;
  font-size: 13.5px;
  color: rgba(243,242,242,.66);
}

/* --- Linkspalten ---------------------------------------------------- */
.tb-footer-head{
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-300);
}
.tb-footer-col ul{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.tb-footer-col a{
  color: rgba(243,242,242,.82);
  text-decoration: none;
  font-size: 14.5px;
  line-height: 1.4;
}
.tb-footer-col a:hover{ color: var(--color-bg); }
.tb-footer-col a.tb-footer-all{
  color: var(--color-accent-300);
  font-weight: 600;
  margin-top: 4px;
}

/* --- Schlussleiste -------------------------------------------------- */
.tb-footer-bar{
  max-width: var(--tb-max);
  margin: 0 auto;
  padding: 20px 32px 26px;
  border-top: 1px solid rgba(243,242,242,.14);
  display: flex;
  gap: 18px 28px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
}
.tb-footer-bar .copy{ color: rgba(243,242,242,.66); }
.tb-footer-bar .tb-credit{ color: rgba(243,242,242,.66); }
.tb-footer-bar a{ color: var(--color-bg); }
.tb-footer-bar .tb-credit a{
  color: var(--color-accent-300);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
}
.tb-footer-bar .tb-credit a:hover{
  border-bottom-color: var(--color-accent-300);
}
.tb-footer a:focus-visible{ outline: 2px solid var(--color-accent-300); outline-offset: 3px; }

@media (max-width: 1080px){
  .tb-footer-inner{ grid-template-columns: 1fr 1fr 1fr; }
  .tb-footer-brand{ grid-column: 1 / -1; }
}
@media (max-width: 720px){
  .tb-footer-inner{ grid-template-columns: 1fr 1fr; gap: 36px 28px; padding: 48px 18px 36px; }
  .tb-footer-brand{ grid-column: 1 / -1; }
}
@media (max-width: 460px){
  .tb-footer-inner{ grid-template-columns: 1fr; }
  .tb-footer-bar{ padding-bottom: 92px; }
}
