/* =========================================================
   Wilken & Sohn – Landingpage
   CD: Grün #008778 · Anthrazit #3c474c · Interstate Condensed
   ========================================================= */

/* ---------- Fonts (selbst gehostet, DSGVO) ---------- */
@font-face { font-family: "Interstate Cond"; src: url("../assets/fonts/Interstate-LightCond.woff2") format("woff2"); font-weight: 300; font-display: swap; }
@font-face { font-family: "Interstate Cond"; src: url("../assets/fonts/Interstate-RegularCond.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Interstate Cond"; src: url("../assets/fonts/Interstate-BoldCond.woff2") format("woff2"); font-weight: 700; font-display: swap; }
@font-face { font-family: "Inter"; src: url("../assets/fonts/InterVariable.woff2") format("woff2"); font-weight: 100 900; font-style: normal; font-display: swap; }
/* Fließtext bleibt Inter, aber ausschließlich selbst gehostet — niemals von fonts.googleapis.com/fonts.gstatic.com laden. */

:root {
  --green: #008778;
  --green-dark: #006f63;
  --mint: #7fc3b8;
  --mint-tag: #86c4bc;
  --anthracite: #3c474c;
  --slate-dark: #424e53;
  --slate-mid: #465b60;
  --slate-grey: #8a8f90;
  --stone: #ecebe9;
  --light: #f4f3f1;
  --grey: #e6e5e3;
  --step-grey: #d9d9d9;
  --ink: #111;
  --text: #1d2326;
  --white: #fff;

  --f-head: "Inter", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --f-cond: "Interstate Cond", "Arial Narrow", "Roboto Condensed", Arial, sans-serif;

  --container: 1040px;
  --gutter: clamp(20px, 4vw, 32px);
  --section-y: clamp(56px, 7vw, 80px);
  --header-h: 92px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; } }
body { margin: 0; font-family: var(--f-cond); font-weight: 300; font-size: 18px; line-height: 1.45; color: var(--text); background: var(--light); }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
h1, h2, h3, p, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; }
.section-dark :focus-visible, .hero :focus-visible, .cta-band :focus-visible, .section-slate :focus-visible { outline-color: #fff; }

.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--green); color: #fff; padding: 10px 16px; text-decoration: none; }
.skip-link:focus { top: 12px; }

.container { width: 100%; max-width: calc(var(--container) + 2 * var(--gutter)); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.center { text-align: center; }

/* ---------- Typo ---------- */
h1, h2, h3 { font-family: var(--f-cond); color: var(--ink); text-transform: uppercase; letter-spacing: .015em; }
h1 { font-size: clamp(34px, 4.6vw, 48px); line-height: 1.15; font-weight: 700; color: #fff; }
h2 { font-size: clamp(28px, 3.4vw, 36px); line-height: 1.12; font-weight: 700; }
.h2-sm { font-size: clamp(24px, 2.6vw, 28px); }
h3 { font-size: 17px; line-height: 1.2; font-weight: 700; }
strong { font-weight: 400; }

.kicker { position: relative; padding-left: 17px; font-family: var(--f-cond); font-weight: 400; font-size: 19px; line-height: 1.4; color: var(--ink); margin-bottom: 20px; }
.kicker::before { content: ""; position: absolute; left: 0; top: -4px; bottom: -4px; width: 3px; background: var(--green); }
.kicker-light { color: #fff; }

.eyebrow { font-family: var(--f-cond); font-weight: 700; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; color: var(--green); margin-bottom: 8px; }

.lead { font-size: 21px; line-height: 1.4; max-width: 700px; margin-top: 26px; }
.lead-light { color: #fff; margin-top: 18px; }
.lead-strong { font-weight: 400; margin-top: 16px; }

/* ---------- Buttons & Links ---------- */
.btn { display: inline-flex; align-items: center; gap: 12px; padding: 11px 24px; border: 0; border-radius: 0; font-family: var(--f-cond); font-weight: 400; font-size: 18px; line-height: 1.2; text-decoration: none; transition: background-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 14px rgba(0,0,0,.12); }
.btn:active { transform: translateY(0); box-shadow: none; }
.btn .arrow { transition: transform .18s ease; }
.btn:hover .arrow { transform: translateX(3px); }
.btn-sm { padding: 8px 15px; font-size: 18px; }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dark); }
.btn-dark, .btn-anthracite { background: var(--anthracite); color: #fff; }
.btn-dark { font-family: var(--f-head); font-weight: 600; font-size: 14px; padding: 13px 26px; }
.btn-dark:hover, .btn-anthracite:hover { background: #2b3438; }
.btn-outline { border: 2px solid var(--green); color: var(--green); background: transparent; }
.btn-outline:hover { background: var(--green); color: #fff; }
.btn .arrow { width: 20px; height: 10px; }

.link-underline { position: relative; display: inline-block; padding-bottom: 6px; font-family: var(--f-cond); font-weight: 400; font-size: 21px; text-decoration: none; color: var(--ink); }
.link-underline::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 3px; background: var(--green); transition: width .25s; }
.link-underline:hover::after { width: 60%; }
.link-light { color: #fff; }
.link-light::after { width: 60%; }
.link-light:hover::after { width: 100%; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--light); height: var(--header-h); border-bottom: 1px solid rgba(0,0,0,.04); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; max-width: 1240px; padding-inline: clamp(20px, 4.5vw, 58px); }
.logo img { width: 156px; height: auto; transition: opacity .18s ease; }
.logo:hover img { opacity: .8; }
.main-nav { display: flex; align-items: center; gap: 72px; }
.main-nav ul { display: flex; gap: 44px; }
.main-nav ul a { font-family: var(--f-cond); font-weight: 300; font-size: 19px; letter-spacing: .02em; text-decoration: none; color: var(--ink); padding: 6px 0; border-bottom: 2px solid transparent; transition: border-color .18s ease; }
.main-nav ul a:hover { border-bottom-color: var(--green); }
.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 560px; display: flex; align-items: center; overflow: hidden; background: #2f3a3e; color: #fff; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 66%; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(28,36,40,.72) 0%, rgba(28,36,40,.55) 55%, rgba(28,36,40,.35) 100%); }
.hero-inner { position: relative; z-index: 2; padding-block: 76px 90px; }
.hero .kicker { font-weight: 400; margin-bottom: 26px; }
.hero-brand { font-family: var(--f-cond); font-weight: 400; font-size: 19px; letter-spacing: .03em; text-transform: uppercase; color: var(--mint); margin-bottom: 14px; }
.hero-lead { font-family: var(--f-head); font-weight: 400; font-size: 19px; line-height: 1.4; margin-top: 18px; padding-left: 4px; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px 24px; margin-top: 50px; }

/* ---------- Warum / USPs ---------- */
.section-light { background: var(--light); }
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 11px; margin-top: 24px; }
.usp { background: #fff; padding: 26px 26px 30px; min-height: 280px; display: flex; flex-direction: column; }
.usp h3 { margin-top: 26px; min-height: 2.4em; display: flex; align-items: center; font-size: 15.5px; }
.usp p { margin-top: 28px; font-size: 17px; line-height: 1.42; }

.quad { display: grid; grid-template-columns: repeat(2, 21px); gap: 5px; }
.quad i { width: 21px; height: 21px; background: #787d80; }
.quad-tl i:nth-child(1), .quad-tr i:nth-child(2), .quad-bl i:nth-child(3), .quad-br i:nth-child(4) { background: var(--green); }

/* ---------- Leistungen ---------- */
.section-dark { background: var(--slate-dark); color: #fff; }
.title-mint { color: var(--mint); font-weight: 700; }
.services { display: grid; gap: 28px 26px; margin-top: 40px; align-items: start; }
.service { background: #fff; color: var(--anthracite); padding: 9px 10px 14px; transition: box-shadow .18s ease, transform .18s ease; overflow: hidden; }
.service:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,.18); }
.service img { width: 100%; aspect-ratio: 5 / 2; object-fit: cover; transition: transform .3s ease; }
.service:hover img { transform: scale(1.035); }
.service-body { padding: 10px 5px 0; }
.service h3 { position: relative; color: var(--anthracite); font-size: 15px; padding-top: 10px; }
.service h3::before { content: ""; position: absolute; left: 0; top: 0; width: 16px; height: 2px; background: var(--green); }
.service p { font-size: 13.5px; line-height: 1.3; margin-top: 8px; color: var(--anthracite); }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.tags li { background: var(--mint-tag); color: var(--anthracite); font-family: var(--f-cond); font-weight: 400; font-size: 11.5px; line-height: 1; padding: 5px 8px; }
.service-link { display: inline-block; margin-top: 14px; padding-bottom: 3px; font-family: var(--f-cond); font-weight: 400; font-size: 13.5px; color: var(--anthracite); text-decoration: none; border-bottom: 2px solid var(--green); transition: color .18s ease, padding-left .18s ease; }
.service-link:hover { padding-left: 3px; }
.service-link:hover { color: var(--green); }

/* obere Reihe: 2 große Karten (je 1,5x) + Stack aus 2 kleinen; untere Reihe: 4 kleine */
.services { grid-template-columns: repeat(24, 1fr); }
.service-lg { grid-column: span 9; padding: 10px 10px 14px; }
.service-lg img { aspect-ratio: 16 / 10; }
.service-lg .service-body { padding: 12px 6px 0; }
.service-lg h3 { font-size: 19px; padding-top: 14px; }
.service-lg p { font-size: 15px; }
.service-lg .tags li { font-size: 13px; padding: 7px 10px; }
.service-lg .service-link { font-size: 15px; }
.service-stack { grid-column: span 6; display: grid; gap: 22px; }
.services > .service-sm { grid-column: span 6; }
.service-stack .service img { aspect-ratio: 5 / 2; }
.section-dark .center { margin-top: 48px; }

/* ---------- Alles aus einer Hand ---------- */
.hand-grid { display: grid; grid-template-columns: 1.05fr 1.5fr; gap: 50px; align-items: start; }
.hand-text h2 { margin: 6px 0 36px 16px; }
.hand-text p { margin-left: 16px; font-size: 18px; line-height: 1.33; }
.hand-text p + p { margin-top: 24px; }
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: center; padding-top: 10px; }
.fact .icon { width: auto; height: 62px; margin: 0 auto 16px; }
.fact h3 { font-size: 20px; font-weight: 700; line-height: 1.18; }
.fact p { max-width: 175px; margin: 22px auto 0; font-size: 15.5px; line-height: 1.3; }

/* ---------- FAQ ---------- */
.section-grey { background: var(--grey); }
.faq-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 80px; align-items: start; }
.faq-intro h2 { color: var(--anthracite); }
.faq-intro p:not(.eyebrow) { font-family: var(--f-head); font-size: 15px; color: #6b7174; margin-top: 18px; max-width: 390px; }
.faq-intro .btn { margin-top: 30px; }
.faq-list details { border-bottom: 1px solid rgba(60,71,76,.12); }
.faq-list summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 20px; padding: 17px 0; font-family: var(--f-head); font-weight: 600; font-size: 15px; color: var(--anthracite); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; font-weight: 400; font-size: 22px; line-height: .8; color: var(--green); transition: transform .2s; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list summary:hover { color: var(--green); }
.faq-list details p { font-family: var(--f-head); font-size: 15px; line-height: 1.55; color: #50595d; padding: 0 30px 20px 0; }

/* ---------- CTA Band ---------- */
.cta-band { background: var(--green); color: #fff; padding-block: 52px; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: clamp(24px, 2.7vw, 34px); font-weight: 700; }
.cta-band p { font-family: var(--f-cond); font-weight: 400; font-size: 21px; margin-top: 8px; padding-left: 2px; }
.cta-band .btn { margin-right: clamp(0px, 8vw, 110px); }

/* ---------- Ablauf ---------- */
.ablauf { overflow: hidden; }
.ablauf-head { position: relative; display: flex; justify-content: space-between; padding-left: 16px; }
.ablauf-head > div { position: relative; z-index: 1; }
.ablauf-head .kicker { margin-left: -16px; }
.ablauf h2 { font-weight: 700; font-size: clamp(30px, 3.6vw, 40px); }
.house-sketch { position: absolute; right: -30px; top: -30px; width: 380px; height: auto; z-index: 0; opacity: .95; }
.steps { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 36px; }
.step { display: flex; gap: 10px; padding: 22px 20px 44px 14px; min-height: 184px; }
.step-num { font-family: var(--f-head); font-weight: 600; font-size: 48px; line-height: .9; }
.step h3 { font-size: 20px; line-height: 1.17; font-weight: 700; color: inherit; }
.step p { font-size: 15px; line-height: 1.4; margin-top: 16px; font-weight: 400; }
.step-1 { background: var(--step-grey); color: var(--ink); }
.step-1 p { margin-left: 2px; }
.step-2 { background: #45595e; color: #fff; }
.step-3 { background: var(--green); color: #fff; }
.step-2 .step-num, .step-3 .step-num { margin-top: -2px; }

/* ---------- Tradition ---------- */
.section-stone { background: var(--stone); }
.tradition-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 76px; align-items: start; }
.tradition-media { padding-top: 44px; }
.video-consent { position: relative; aspect-ratio: 373 / 227; background: #2c3134; color: #fff; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.video-thumb { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,14,15,.58) 0%, rgba(10,14,15,.1) 34%, rgba(10,14,15,.1) 66%, rgba(10,14,15,.6) 100%); }
.video-play { position: relative; z-index: 1; background: none; border: 0; color: rgba(255,255,255,.85); padding: 0; }
.video-play svg { width: 44px; height: 44px; transition: transform .2s, color .2s; }
.video-play:hover svg { color: #fff; transform: scale(1.08); }
.video-note { position: absolute; z-index: 1; left: 15px; right: 15px; top: 12px; font-family: var(--f-head); font-size: 11px; line-height: 1.35; color: rgba(255,255,255,.75); }
.video-note a { color: #fff; }
.trust-box { margin-top: 16px; background: var(--slate-dark); color: #fff; padding: 16px 18px 18px; border-left: 5px solid var(--green); }
.trust-title { font-family: var(--f-head); font-weight: 600; font-size: 17px; }
.trust-box p:last-child { font-family: var(--f-cond); font-weight: 400; font-size: 15px; margin-top: 6px; }
.tradition-text h2 { font-size: clamp(32px, 3.8vw, 42px); font-weight: 700; margin-top: 4px; }
.tradition-text > p:not(.kicker) { margin-top: 28px; font-size: 17px; line-height: 1.42; max-width: 470px; }
.values { margin: 18px 0 28px; display: grid; gap: 12px; }
.values li { display: flex; align-items: center; gap: 30px; font-family: var(--f-cond); font-weight: 400; font-size: 18px; }
.values svg, .values img { width: 54px; height: auto; flex: none; color: var(--green); }

/* ---------- Kundenstimmen ---------- */
.kundenstimmen { padding-bottom: calc(var(--section-y) + 20px); }
.reviews-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 8px; }
.review-card { background: #fff; border-top: 3px solid var(--green); padding: 22px 20px 18px; margin: 0; display: flex; flex-direction: column; }
.review-card .stars { width: 92px; height: 16px; color: #e0a412; margin-bottom: 14px; }
.review-card blockquote { margin: 0; flex: 1; }
.review-card blockquote > p { font-family: var(--f-head); font-size: 14.5px; line-height: 1.5; color: #454d50; }
.review-card figcaption { margin-top: 16px; font-family: var(--f-cond); font-size: 14px; color: #8a8f90; }

/* ---------- Kontakt ---------- */
.section-slate { background: var(--slate-grey); color: #fff; }
.kontakt-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 30px; align-items: start; max-width: calc(1080px + 2 * var(--gutter)); }
.kontakt-text h2 { color: #fff; font-size: clamp(30px, 3.4vw, 38px); font-weight: 700; margin-left: 16px; }
.kontakt-lead { font-family: var(--f-cond); font-weight: 400; font-size: 16px; line-height: 1.3; margin: 16px 0 26px 16px; max-width: 360px; }
.next-box { background: var(--green); border-left: 9px solid #fff; padding: 12px 22px 22px 18px; max-width: 316px; margin-left: 11px; }
.next-title { font-family: var(--f-head); font-weight: 600; font-size: 16.5px; }
.next-box > p:not(.next-title) { font-family: var(--f-cond); font-weight: 400; font-size: 15px; line-height: 1.35; margin: 12px 0 16px 3px; }
.checks { display: grid; gap: 2px; }
.checks li { position: relative; padding-left: 22px; font-family: var(--f-cond); font-weight: 400; font-size: 16px; line-height: 1.25; }
.checks li::before { content: ""; position: absolute; left: 3px; top: 5px; width: 6px; height: 11px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(40deg); }

.form-embed { background: #fff; margin-top: 44px; min-height: 380px; position: relative; }
.typeform-consent { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; text-align: center; padding: 46px 30px; min-height: 380px; color: var(--anthracite); }
.typeform-consent[hidden] { display: none !important; }
.form-consent-title { font-family: var(--f-head); font-weight: 600; font-size: 22px; color: var(--ink); }
.typeform-consent p:not(.form-consent-title) { font-family: var(--f-head); font-size: 14px; line-height: 1.5; max-width: 420px; }
.typeform-consent a { color: var(--green); }
.form-embed.is-loaded [data-typeform-mount] { height: 620px; }
[data-typeform-mount] .tf-v1-widget, [data-typeform-mount] iframe { display: block; width: 100% !important; height: 100% !important; border: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--light); padding-block: 36px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-inner img { width: 150px; height: auto; }
.footer-inner ul { display: flex; gap: 28px; }
.footer-inner a { font-family: var(--f-cond); font-weight: 400; text-decoration: none; transition: color .18s ease; }
.footer-inner a:hover { color: var(--green); }
.copy { font-size: 15px; color: #6b7174; }
.footer-cookie-settings { background: none; border: 0; padding: 0; font-family: var(--f-cond); font-weight: 400; font-size: inherit; text-decoration: none; cursor: pointer; transition: color .18s ease; }
.footer-cookie-settings:hover { color: var(--green); }

/* ---------- Video-Modal ---------- */
.video-modal { border: 0; padding: 0; background: transparent; max-width: min(920px, 92vw); width: 100%; }
.video-modal::backdrop { background: rgba(15,20,22,.82); }
.video-modal[open] { display: flex; flex-direction: column; }
.video-modal-frame { width: 100%; aspect-ratio: 16/9; background: #000; }
.video-modal-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-modal-close { align-self: flex-end; margin-bottom: 10px; background: rgba(255,255,255,.12); color: #fff; border: 0; width: 38px; height: 38px; font-size: 16px; cursor: pointer; }
.video-modal-close:hover { background: rgba(255,255,255,.22); }

/* ---------- Cookie-Banner ---------- */
.cookie-banner { max-height: 100vh; max-height: 100dvh; overflow-y: auto; overscroll-behavior: contain; position: fixed; left: 0; right: 0; bottom: 0; z-index: 200; background: var(--slate-dark); color: #fff; padding: 22px clamp(20px, 4vw, 40px); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px 32px; box-shadow: 0 -6px 24px rgba(0,0,0,.18); }
.cookie-banner[hidden] { display: none; }
.cookie-banner-copy { flex: 1 1 420px; max-width: 640px; }
.cookie-banner-copy strong { font-family: var(--f-head); font-weight: 600; font-size: 16px; }
.cookie-banner-copy p { font-family: var(--f-cond); font-weight: 400; font-size: 15px; line-height: 1.35; margin-top: 6px; }
.cookie-banner-copy a { color: #fff; text-decoration: underline; }
.cookie-banner-settings { margin-top: 16px; display: grid; gap: 10px; }
.cookie-banner-settings[hidden] { display: none; }
.cookie-option { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; font-family: var(--f-head); font-size: 13.5px; line-height: 1.4; }
.cookie-option b { font-weight: 600; }
.cookie-option small { display: block; font-weight: 400; color: rgba(255,255,255,.72); margin-top: 2px; font-size: 12.5px; }
.cookie-option input { flex: none; width: 20px; height: 20px; accent-color: var(--green); margin-top: 2px; }
.cookie-banner-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cookie-banner-actions [hidden] { display: none !important; }
.btn-outline-light { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }

@media (max-width: 700px) {
  .cookie-banner { flex-direction: column; align-items: stretch; padding: 20px; }
  .cookie-banner-actions { justify-content: stretch; }
  .cookie-banner-actions .btn { flex: 1 1 auto; justify-content: center; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1080px) {
  .main-nav { gap: 36px; }
  .main-nav ul { gap: 28px; }
  .services { grid-template-columns: repeat(2, 1fr); }
  .service-lg, .service-stack, .services > .service-sm { grid-column: auto; }
  .service-stack { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; }
  .hand-grid { grid-template-columns: 1fr; gap: 40px; }
  .house-sketch { opacity: .35; }
}

@media (max-width: 860px) {
  :root { --header-h: 72px; }
  .logo img { width: 132px; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; background: none; border: 0; }
  .nav-toggle-bar, .nav-toggle-bar::before, .nav-toggle-bar::after { display: block; width: 24px; height: 2px; background: var(--ink); position: relative; transition: transform .2s, background-color .2s; }
  .nav-toggle-bar::before, .nav-toggle-bar::after { content: ""; position: absolute; left: 0; }
  .nav-toggle-bar::before { top: -7px; } .nav-toggle-bar::after { top: 7px; }
  .nav-open .nav-toggle-bar { background: transparent; }
  .nav-open .nav-toggle-bar::before { transform: translateY(7px) rotate(45deg); }
  .nav-open .nav-toggle-bar::after { transform: translateY(-7px) rotate(-45deg); }
  .main-nav { position: absolute; top: var(--header-h); left: 0; right: 0; background: var(--light); flex-direction: column; align-items: flex-start; gap: 20px; padding: 16px var(--gutter) 28px; border-bottom: 1px solid rgba(0,0,0,.08); display: none; }
  .nav-open .main-nav { display: flex; }
  .main-nav ul { flex-direction: column; gap: 6px; }
  .main-nav ul a { font-size: 21px; }

  .hero { min-height: 520px; }
  .hero-bg { object-position: 60% 66%; }
  .br-desk { display: none; }
  .usp-grid { grid-template-columns: 1fr 1fr; }
  .usp { min-height: 0; }
  .faq-grid, .tradition-grid, .kontakt-grid { grid-template-columns: 1fr; gap: 40px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step { min-height: 0; padding-bottom: 28px; }
  .house-sketch { display: none; }
  .tradition-media { padding-top: 0; }
  .trust-box { margin-top: 12px; }
  .form-embed { margin-top: 0; }
  .form-embed.is-loaded [data-typeform-mount] { height: max(560px, 80vh); }
  .cta-band .btn { margin-right: 0; }
}

@media (max-width: 560px) {
  body { font-size: 17px; }
  .usp-grid, .facts, .services, .service-stack { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .facts { gap: 40px; }
  .lead { font-size: 19px; }
  .values li { gap: 18px; }
  .kontakt-text h2, .kontakt-lead, .hand-text h2, .hand-text p { margin-left: 0; }
  .next-box { margin-left: 0; }
}

.video-thumb[hidden] { display: none; }
