/* Sachverständigenbüro Christopher Piel – sachverstand-fleisch.de
   Stylesheet, abgeleitet aus dem Claude-Design-Entwurf. */

@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('../fonts/manrope-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('../fonts/manrope-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --blau: #363B8C;
  --blau-dunkel: #262A66;
  --blau-hell: #C9CCEA;
  --pill: #E7E9F6;
  --pill-hell: #F0F1F7;
  --bg: #F4F5F9;
  --weiss: #fff;
  --text: #23253A;
  --text-body: #3A3B3F;
  --muted: #58595B;
  --border: #E1E3EA;
  --border-btn: #C9CCDA;
  --divider: #EDEEF3;
  --input-bg: #F8F9FC;
  --hero-sub: #DDE0F2;
  --footer-bg: #1B1E45;
  --footer-text: #C5C8E0;
  --whatsapp: #25D366;
  --whatsapp-dunkel: #1EBE5A;
  --schatten: 0 8px 30px rgba(35, 37, 58, .08);
  --radius: 16px;
  --container: 1180px;
  --pad: 32px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--blau); }
a:hover { color: var(--blau-dunkel); }
img { max-width: 100%; height: auto; display: block; }
input, textarea, button { font: inherit; }
h1, h2, h3 { margin: 0; font-weight: 800; letter-spacing: -.02em; color: var(--text); }
p { margin: 0; }
ul { margin: 0; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0; padding: 0; margin: -1px;
}
.skip-link {
  position: absolute; left: 8px; top: -60px; z-index: 100;
  background: var(--blau); color: #fff; padding: 10px 16px; border-radius: 8px; font-weight: 700;
}
.skip-link:focus { top: 8px; color: #fff; }

.page { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; display: flex; flex-direction: column; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: var(--weiss);
  box-shadow: 0 1px 0 rgba(35, 37, 58, .08);
}
.site-header .container {
  padding-top: 16px; padding-bottom: 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: 18px; text-decoration: none; min-width: 0; }
.brand img { width: 56px; height: 56px; flex: none; }
.brand span { font-size: 14.5px; line-height: 1.45; color: var(--muted); }
.nav-toggle {
  display: none; background: transparent; border: 1.5px solid var(--border-btn);
  border-radius: 999px; padding: 10px 14px; cursor: pointer; color: var(--text); font-weight: 700; font-size: 15px;
  align-items: center; gap: 8px;
}
.nav-toggle .bars { display: inline-block; width: 18px; height: 2px; background: currentColor; position: relative; }
.nav-toggle .bars::before, .nav-toggle .bars::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: currentColor;
}
.nav-toggle .bars::before { top: -6px; }
.nav-toggle .bars::after { top: 6px; }
.site-nav { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.site-nav a {
  font-size: 15px; padding: 9px 16px; border-radius: 999px; text-decoration: none;
  font-weight: 600; color: var(--text); background: transparent;
}
.site-nav a:hover { background: var(--pill-hell); color: var(--text); }
.site-nav a.is-active { font-weight: 700; color: var(--blau); background: var(--pill); }
.site-nav a.btn-primary { margin-left: 10px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 16px; font-weight: 700; padding: 15px 26px; border-radius: 999px;
  text-decoration: none; border: 0; cursor: pointer; white-space: nowrap; line-height: 1.2;
  transition: background .15s, border-color .15s, color .15s;
}
.btn-primary { color: #fff; background: var(--blau); }
.btn-primary:hover { color: #fff; background: var(--blau-dunkel); }
.btn-white { color: var(--blau); background: #fff; }
.btn-white:hover { color: var(--blau); background: var(--pill); }
.btn-ghost-white { color: #fff; background: transparent; border: 1.5px solid rgba(255, 255, 255, .55); padding: 14px 26px; }
.btn-ghost-white:hover { color: #fff; border-color: #fff; }
.btn-outline { color: var(--blau); background: #fff; border: 1.5px solid var(--border-btn); padding: 12px 20px; font-size: 15px; }
.btn-outline:hover { color: var(--blau); border-color: var(--blau); }
.btn-dark-outline { color: var(--text); background: #fff; border: 1.5px solid var(--border-btn); padding: 12px 22px; font-size: 15px; }
.btn-dark-outline:hover { color: var(--text); border-color: var(--text); }
.btn-sm { font-size: 15px; padding: 13px 22px; }
.btn-sm.btn-ghost-white { padding: 12px 22px; }
.btn-xs { font-size: 14px; padding: 11px 18px; }
.btn-xs.btn-ghost-white { padding: 10px 18px; }
.site-nav .btn-primary { font-size: 15px; padding: 11px 20px; }
.wa-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--whatsapp); flex: none; }
.link-arrow { font-size: 15px; font-weight: 700; text-decoration: none; }

/* ---------- Typo-Bausteine ---------- */
.kicker { font-size: 14px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--blau); }
.section-title { font-size: clamp(32px, 4vw, 42px); line-height: 1.08; }
.lead { font-size: 18px; line-height: 1.55; color: var(--muted); text-wrap: pretty; }
.stack { display: flex; flex-direction: column; min-width: 0; }
.card { background: var(--weiss); border-radius: var(--radius); }
.pill { display: inline-block; font-size: 14px; font-weight: 600; color: var(--text); background: var(--pill-hell); padding: 10px 16px; border-radius: 999px; }
.pill-primary { color: #fff; background: var(--blau); font-weight: 700; }
.pills { display: flex; flex-wrap: wrap; gap: 10px; }
.num-badge {
  width: 44px; height: 44px; border-radius: 12px; background: var(--pill); color: var(--blau);
  font-weight: 800; font-size: 15px; display: flex; align-items: center; justify-content: center; flex: none;
}

/* ---------- Hero (Home) ---------- */
.hero { position: relative; overflow: hidden; background: var(--blau); padding: 72px 0 120px; color: #fff; }
.hero-mark { position: absolute; right: -120px; bottom: -260px; width: 760px; height: 760px; max-width: none; opacity: .07; pointer-events: none; }
.hero .container { position: relative; display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 56px; align-items: center; }
.hero-text { display: flex; flex-direction: column; gap: 26px; }
.hero-kicker { font-size: 14px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--blau-hell); }
.hero h1 { font-size: clamp(40px, 5vw, 60px); line-height: 1.05; color: #fff; text-wrap: pretty; }
.hero-sub { font-size: 19px; line-height: 1.55; color: var(--hero-sub); max-width: 560px; text-wrap: pretty; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 6px; }
.portrait-card {
  background: #fff; border-radius: 20px; padding: 12px; display: flex; flex-direction: column; gap: 12px;
  box-shadow: 0 24px 60px rgba(20, 22, 60, .35); max-width: 460px; justify-self: end; width: 100%; color: var(--text);
}
.portrait-card img { width: 100%; aspect-ratio: 436 / 440; height: auto; object-fit: cover; object-position: 50% 20%; border-radius: 12px; }
.portrait-meta { display: flex; justify-content: space-between; align-items: center; padding: 4px 10px 8px; gap: 12px; flex-wrap: wrap; }
.portrait-meta .name { font-size: 16px; font-weight: 800; color: var(--text); display: block; }
.portrait-meta .role { font-size: 13px; color: var(--muted); display: block; }
.portrait-meta .tag { font-size: 12px; font-weight: 700; color: var(--blau); background: var(--pill); padding: 6px 10px; border-radius: 999px; white-space: nowrap; }

.stats { margin-top: -56px; position: relative; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.stat { background: #fff; border-radius: var(--radius); padding: 24px 26px; display: flex; flex-direction: column; gap: 6px; box-shadow: var(--schatten); }
.stat strong { font-size: 26px; font-weight: 800; color: var(--blau); letter-spacing: -.02em; }
.stat span { font-size: 14px; line-height: 1.4; color: var(--muted); }

/* ---------- Sektionen ---------- */
.section { padding: 88px 0; }
.section-white { background: #fff; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap; }
.section-head .stack { gap: 12px; }
.services-home { padding-top: 96px; padding-bottom: 80px; display: flex; flex-direction: column; gap: 40px; }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr)); gap: 16px; }
.service-card {
  background: #fff; border-radius: 14px; padding: 24px 26px; display: grid; grid-template-columns: 44px minmax(0, 1fr); gap: 16px;
  transition: box-shadow .15s;
}
.service-card:hover { box-shadow: var(--schatten); }
.service-card h3 { font-size: 18px; letter-spacing: 0; margin-bottom: 6px; hyphens: auto; overflow-wrap: anywhere; }
.service-card p { font-size: 14.5px; line-height: 1.5; color: var(--muted); }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.step { display: flex; flex-direction: column; gap: 16px; border-top: 3px solid var(--blau-hell); padding-top: 20px; }
.step:first-child { border-top-color: var(--blau); }
.step .step-no { font-size: 13px; font-weight: 800; letter-spacing: .06em; color: var(--blau); }
.step h3 { font-size: 20px; letter-spacing: 0; }
.step p { font-size: 15px; line-height: 1.5; color: var(--muted); }

.about-teaser { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 56px; align-items: start; }
.about-teaser .quote { font-size: clamp(24px, 2.6vw, 30px); line-height: 1.3; font-weight: 600; letter-spacing: -.01em; color: var(--text); text-wrap: pretty; }
.about-teaser .text { font-size: 16px; line-height: 1.6; color: var(--muted); text-wrap: pretty; }
.quali-card { padding: 32px; gap: 18px; }

.cta-box {
  background: var(--blau); border-radius: 24px; padding: 48px 56px; color: #fff;
  display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap;
}
.cta-box .stack { gap: 8px; }
.cta-box strong { font-size: clamp(26px, 3vw, 34px); font-weight: 800; letter-spacing: -.02em; line-height: 1.1; }
.cta-box span { font-size: 16px; color: var(--hero-sub); }
.cta-box .actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-section { padding-bottom: 96px; }

/* ---------- Unterseiten-Hero ---------- */
.page-hero { background: #fff; padding: 72px 0 64px; border-bottom: 1px solid var(--border); }
.page-hero h1 { font-size: clamp(36px, 4.5vw, 54px); line-height: 1.05; text-wrap: pretty; }
.page-hero .stack { gap: 18px; }
.page-hero-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; align-items: end; }
.page-hero-grid h1 { font-size: clamp(32px, 4.2vw, 54px); hyphens: manual; min-width: 0; }
.page-hero-grid .stack-right { gap: 22px; }
.page-hero-grid .actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Leistungen ---------- */
.service-group { padding-top: 64px; padding-bottom: 32px; display: flex; flex-direction: column; gap: 32px; }
.service-group + .service-group { padding-top: 48px; }
.service-group .stack { gap: 8px; }
.service-group h2 { font-size: 30px; }
.detail-card { padding: 28px 30px; display: flex; flex-direction: column; gap: 14px; }
.detail-card .head { display: flex; align-items: center; gap: 14px; }
.detail-card h3 { font-size: 20px; letter-spacing: 0; hyphens: auto; overflow-wrap: anywhere; min-width: 0; }
.detail-card ul { padding: 0 0 0 18px; display: flex; flex-direction: column; gap: 8px; font-size: 15px; line-height: 1.5; color: var(--text-body); }
.leistungen-cta { padding-top: 48px; padding-bottom: 96px; }

/* ---------- Über mich ---------- */
.about-hero { padding: 72px 0; }
.about-hero .container { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 56px; align-items: center; }
.about-hero .stack { gap: 20px; }
.about-portrait {
  width: 100%; max-width: 460px; aspect-ratio: 460 / 520; object-fit: cover; object-position: 50% 15%;
  border-radius: 20px; justify-self: end; box-shadow: 0 24px 60px rgba(20, 22, 60, .15);
}
.about-body { padding: 80px 0 96px; }
.about-body .container { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 56px; align-items: start; }
.prose { display: flex; flex-direction: column; gap: 22px; font-size: 17px; line-height: 1.65; color: var(--text-body); max-width: 680px; }
.prose h2 { font-size: 30px; margin-bottom: 4px; }
.prose p { text-wrap: pretty; }
.signature { display: flex; flex-direction: column; gap: 4px; margin-top: 8px; }
.signature span { font-size: 15px; color: var(--muted); }
.signature strong { font-size: 22px; font-weight: 800; color: var(--text); }
.side-col { display: flex; flex-direction: column; gap: 20px; }
.timeline-card { padding: 32px; gap: 20px; }
.timeline { display: flex; flex-direction: column; }
.timeline-item { display: grid; grid-template-columns: 24px 1fr; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--divider); }
.timeline-item:last-child { border-bottom: 0; }
.timeline-item .dot { width: 12px; height: 12px; border-radius: 50%; background: var(--blau-hell); margin-top: 5px; }
.timeline-item.is-key .dot { background: var(--blau); }
.timeline-item span { font-size: 15px; line-height: 1.45; color: var(--text); }
.timeline-item small { display: block; font-size: 15px; color: var(--muted); }
.talk-box { background: var(--blau); border-radius: var(--radius); padding: 28px 32px; display: flex; flex-direction: column; gap: 14px; color: #fff; }
.talk-box strong { font-size: 20px; font-weight: 800; letter-spacing: -.01em; }
.talk-box p { font-size: 15px; line-height: 1.5; color: var(--hero-sub); }
.talk-box .actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- Kontakt ---------- */
.contact-grid { padding: 64px 0 32px; }
.contact-grid .container { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-card { padding: 32px; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.contact-card .stack { gap: 4px; }
.contact-card .label { font-size: 13px; font-weight: 700; color: var(--muted); }
.contact-card .value, .contact-card a { font-size: 18px; color: var(--text); text-decoration: none; }
.contact-card a { font-weight: 700; overflow-wrap: anywhere; }
.contact-card a:hover { color: var(--blau); }
.contact-card .sub { color: var(--muted); font-size: 15px; }
.contact-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.info-box { background: var(--pill); border-radius: var(--radius); padding: 24px 28px; display: flex; flex-direction: column; gap: 6px; }
.info-box strong { font-size: 15px; font-weight: 800; color: var(--blau); }
.info-box span { font-size: 15px; line-height: 1.5; color: var(--text-body); }

.contact-form { padding: 32px; display: flex; flex-direction: column; gap: 14px; box-shadow: 0 8px 30px rgba(35, 37, 58, .06); }
.contact-form h2 { font-size: 20px; letter-spacing: 0; margin-bottom: 6px; }
.contact-form label { display: flex; flex-direction: column; gap: 6px; font-size: 14px; font-weight: 700; color: var(--muted); }
.contact-form input, .contact-form textarea {
  border: 1.5px solid var(--border); background: var(--input-bg); border-radius: 12px; padding: 14px 16px;
  font-size: 16px; color: var(--text); width: 100%;
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--blau); outline-offset: 1px; border-color: var(--blau); }
.contact-form textarea { resize: vertical; min-height: 160px; }
.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; }
.form-consent { display: grid; grid-template-columns: 22px 1fr; gap: 10px; align-items: start; font-size: 13px; line-height: 1.5; color: var(--muted); font-weight: 400; }
.form-consent input { width: 20px; height: 20px; margin: 1px 0 0; accent-color: var(--blau); }
.form-note { font-size: 13px; line-height: 1.5; color: var(--muted); }
.form-msg { display: none; border-radius: 12px; padding: 14px 16px; font-size: 15px; line-height: 1.5; }
.form-msg.is-error { display: block; background: #FBE9EA; color: #9B1C2B; }
.form-msg.is-ok { display: block; background: #E6F6EC; color: #176B36; }
.hp-field { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.contact-form .btn { align-self: flex-start; }

.faq-section { padding: 64px 0 96px; }
.faq-section .container { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; align-items: start; }
.faq-section .intro { gap: 12px; }
.faq-section h2 { font-size: clamp(28px, 3.5vw, 38px); line-height: 1.1; }
.faq-section .intro p { font-size: 16px; line-height: 1.55; color: var(--muted); text-wrap: pretty; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: #fff; border-radius: 14px; overflow: hidden; }
.faq-item summary {
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 24px; cursor: pointer; font-size: 17px; font-weight: 700; color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .icon {
  width: 28px; height: 28px; border-radius: 50%; background: var(--pill); color: var(--blau);
  display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; flex: none;
}
.faq-item summary .icon::before { content: "+"; }
.faq-item[open] summary .icon::before { content: "–"; }
.faq-item p { padding: 0 24px 22px; font-size: 15.5px; line-height: 1.6; color: var(--text-body); text-wrap: pretty; }

/* ---------- Rechtliches / Textseiten ---------- */
.legal { padding: 72px 0 96px; }
.legal .container { display: flex; flex-direction: column; gap: 28px; }
.legal h1 { font-size: clamp(32px, 4vw, 44px); }
.legal-card { padding: 32px; display: flex; flex-direction: column; gap: 20px; font-size: 16px; line-height: 1.6; color: var(--text-body); max-width: 760px; }
.legal-card h2 { font-size: 16px; letter-spacing: 0; font-weight: 700; color: var(--text); margin: 0; }
.legal-card section { display: flex; flex-direction: column; gap: 6px; }
.legal-card a { word-break: break-all; }
.legal-note { background: var(--pill); border-radius: 12px; padding: 16px 20px; font-size: 14px; color: var(--blau); }

.simple-page { padding: 96px 0 120px; }
.simple-page .container { display: flex; flex-direction: column; gap: 20px; max-width: 720px; text-align: center; align-items: center; }
.simple-page h1 { font-size: clamp(32px, 4vw, 44px); }
.simple-page p { font-size: 18px; line-height: 1.55; color: var(--muted); }
.simple-page .actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--footer-bg); color: var(--footer-text); padding: 48px 0; }
.site-footer .container { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; font-size: 14px; line-height: 1.6; }
.site-footer .col { display: flex; flex-direction: column; gap: 8px; }
.site-footer .col.brand-col { gap: 16px; }
.site-footer .col.brand-col img { width: 48px; height: 48px; }
.site-footer strong { font-weight: 800; color: #fff; }
.site-footer a { color: var(--footer-text); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }

/* ---------- WhatsApp-Button ---------- */
.wa-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 20;
  display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 700; color: #fff;
  background: var(--whatsapp); padding: 14px 20px; border-radius: 999px; text-decoration: none;
  box-shadow: 0 10px 30px rgba(20, 22, 60, .25);
}
.wa-float:hover { background: var(--whatsapp-dunkel); color: #fff; }
.wa-float .wa-dot { background: #fff; }

/* ---------- Responsiv ---------- */
@media (max-width: 960px) {
  .brand span { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none; width: 100%; flex-direction: column; align-items: stretch; gap: 4px;
    padding-top: 12px; border-top: 1px solid var(--divider);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px 16px; }
  .site-nav a.btn-primary { margin: 8px 0 0; text-align: center; }
  .no-js .site-nav { display: flex; }
}
@media (max-width: 640px) {
  :root { --pad: 20px; }
  .hero { padding: 48px 0 96px; }
  .hero .container { gap: 36px; }
  .hero-mark { width: 480px; height: 480px; right: -160px; bottom: -200px; }
  .hero h1 { font-size: clamp(32px, 9vw, 40px); }
  .hero-sub { font-size: 17px; }
  .section { padding: 64px 0; }
  .services-home { padding-top: 64px; padding-bottom: 56px; }
  .service-grid, .page-hero-grid, .contact-grid .container, .faq-section .container,
  .about-hero .container, .about-body .container, .about-teaser, .hero .container { grid-template-columns: 1fr; }
  .service-card, .detail-card, .stat, .quali-card, .contact-card, .contact-form, .timeline-card, .legal-card { padding: 22px 20px; }
  .cta-box { padding: 32px 24px; border-radius: 20px; }
  .page-hero, .about-hero { padding: 48px 0; }
  .about-body, .legal { padding: 56px 0 72px; }
  .cta-section, .leistungen-cta, .faq-section { padding-bottom: 96px; }
  .about-portrait { justify-self: center; }
  .wa-float { padding: 14px; right: 16px; bottom: 16px; }
  .wa-float .wa-label { display: none; }
  .btn { white-space: normal; text-align: center; }
}
@media print {
  .site-header, .wa-float, .nav-toggle, .contact-form { display: none !important; }
  body { background: #fff; }
}
