/* Bergmann Elektro GmbH — Vorschau-Demo (Medientrupp)
   1:1-Nachbau der mt-bau-2 Framer-Vorlage ("Brixora").
   Farbwelt: Off-White #fafafa, Tiefschwarz, Akzent Teal #115e59, Font Inter. */

/* ---------- Reset & Tokens ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

:root {
  --bg: #fafafa;
  --surface: #ffffff;
  --surface-2: #f2f2f0;
  --ink: #1c1c1c;
  --ink-soft: #6b6b6b;
  --ink-mute: #9a9a9a;
  --accent: #115e59;
  --accent-dark: #0d4a46;
  --accent-soft: #e7f0ee;
  --pill-bg: #cdf3ea;
  --pill-fg: #12766c;
  --line: #ececec;
  --line-strong: #e0e0e0;
  --amber: #f5a623;

  --radius-xl: 26px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;

  --shadow-sm: 0 1px 2px rgba(17,24,28,0.04), 0 8px 24px rgba(17,24,28,0.04);
  --shadow-md: 0 4px 12px rgba(17,24,28,0.05), 0 24px 48px rgba(17,24,28,0.07);
  --shadow-card: 0 1px 3px rgba(17,24,28,0.05), 0 12px 32px rgba(17,24,28,0.06);

  --container: 1200px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 26px; }

/* ---------- Typografie ---------- */
h1, h2, h3, h4 { font-weight: 600; line-height: 1.08; letter-spacing: -0.035em; color: var(--ink); }
.display { font-size: clamp(2.6rem, 6vw, 4.4rem); font-weight: 600; letter-spacing: -0.045em; line-height: 1.02; }
.h-section { font-size: clamp(2rem, 3.8vw, 3rem); letter-spacing: -0.04em; }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: var(--ink-soft); font-weight: 400; letter-spacing: -0.01em; }

/* Pill-Eyebrow (mint), wie in der Referenz */
.eyebrow {
  display: inline-flex; align-items: center;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.005em;
  color: var(--pill-fg); background: var(--pill-bg);
  padding: 7px 16px; border-radius: 99px;
}
.eyebrow.on-dark { background: rgba(255,255,255,0.14); color: #bdeee4; }

.section-head { max-width: 640px; }
.section-head .h-section { margin: 16px 0 0; }
.section-head .lead { margin-top: 16px; }
.section-head.center { text-align: center; margin-inline: auto; align-items: center; }
.section-head .more-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; font-weight: 500; font-size: 0.96rem; color: var(--ink); }
.section-head .more-link svg { transition: transform 0.25s var(--ease); }
.section-head .more-link:hover svg { transform: translateX(4px); }
.section-head .more-link:hover { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.98rem; font-weight: 500; letter-spacing: -0.01em;
  padding: 14px 24px; border-radius: 12px;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap; cursor: pointer;
}
.btn svg { flex: none; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.85); flex: none; }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-ghost { color: var(--ink); padding-inline: 6px; }
.btn-ghost:hover { color: var(--accent); }
.btn-outline { border: 1px solid var(--line-strong); background: var(--surface); color: var(--ink); }
.btn-outline:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Header / Notice-Bar / Nav ---------- */
.site-header { position: sticky; top: 0; z-index: 200; }

.notice-bar {
  background: var(--ink); color: #f4f4f4;
  font-size: 0.8rem; letter-spacing: -0.005em;
  text-align: center; padding: 9px 20px; line-height: 1.4;
}
.notice-bar strong { color: #fff; font-weight: 600; }
.notice-bar .dot { color: var(--amber); }

.nav {
  background: rgba(250,250,250,0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.nav.scrolled { border-bottom-color: var(--line); background: rgba(250,250,250,0.92); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 600; font-size: 1.18rem; letter-spacing: -0.03em; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 11px; background: var(--accent);
  display: grid; place-items: center; color: #fff; flex: none;
}
.brand-mark svg { width: 21px; height: 21px; }
.brand small { display: block; font-size: 0.66rem; font-weight: 500; color: var(--ink-soft); letter-spacing: 0.02em; margin-top: 1px; }
.brand-txt { line-height: 1.05; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 0.95rem; font-weight: 500; color: var(--ink-soft);
  padding: 9px 15px; border-radius: 9px; transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--ink); background: rgba(0,0,0,0.04); }
.nav-links a.active { color: var(--ink); }

.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-mobile { display: none; }

.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 10px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s; }
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Rating inline ---------- */
.rating { display: inline-flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--ink-soft); }
.stars { display: inline-flex; gap: 2px; color: var(--amber); }
.stars svg { width: 16px; height: 16px; }
.rating b { color: var(--ink); font-weight: 600; }

/* ---------- Hero ---------- */
.hero { padding: 54px 0 40px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 54px; align-items: center; }
.hero h1 { margin: 22px 0 20px; }
.hero .lead { max-width: 460px; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-top: 30px; }

.hero-review {
  margin-top: 40px; max-width: 430px;
  display: flex; align-items: center; gap: 16px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 12px; box-shadow: var(--shadow-sm);
}
.hero-review .thumb { position: relative; width: 108px; height: 84px; border-radius: 12px; overflow: hidden; flex: none; cursor: pointer; }
.hero-review .thumb img { width: 100%; height: 100%; object-fit: cover; }
.hero-review .play {
  position: absolute; inset: 0; margin: auto; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.92); display: grid; place-items: center;
}
.hero-review .play svg { width: 15px; height: 15px; margin-left: 2px; color: var(--ink); }
.hero-review .meta { min-width: 0; }
.hero-review .meta .rrow { display: flex; align-items: center; gap: 8px; }
.hero-review .meta .name { font-weight: 600; font-size: 0.98rem; margin-top: 8px; }
.hero-review .meta .sub { font-size: 0.83rem; color: var(--ink-soft); }

.hero-visual { position: relative; }
.hero-visual > img {
  width: 100%; aspect-ratio: 4/4.3; object-fit: cover;
  border-radius: var(--radius-xl); box-shadow: var(--shadow-md);
}
.team-card {
  position: absolute; left: 20px; bottom: 20px; right: 20px; max-width: 320px;
  background: var(--surface); border-radius: var(--radius-lg); padding: 20px 22px;
  box-shadow: var(--shadow-card); border: 1px solid rgba(0,0,0,0.03);
}
.team-card h4 { font-size: 1.15rem; margin-bottom: 6px; }
.team-card ul { display: grid; gap: 2px; }
.team-card li { display: flex; align-items: center; gap: 12px; padding: 10px 0; }
.team-card li + li { border-top: 1px solid var(--line); }
.team-card li img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex: none; }
.team-card .t-name { font-weight: 600; font-size: 0.95rem; line-height: 1.2; }
.team-card .t-role { font-size: 0.82rem; color: var(--ink-soft); }

/* ---------- Sections generic ---------- */
.section { padding: 78px 0; }
.section-tight { padding: 56px 0; }
.center { text-align: center; margin-inline: auto; }
.section-head.center { display: flex; flex-direction: column; align-items: center; }

/* ---------- Über-uns Teaser ---------- */
.about-teaser { text-align: center; max-width: 900px; margin-inline: auto; display: flex; flex-direction: column; align-items: center; }
.about-teaser .big {
  font-size: clamp(1.5rem, 3vw, 2.4rem); font-weight: 500; letter-spacing: -0.035em;
  line-height: 1.28; color: var(--ink); margin-top: 22px;
}
.about-teaser .big span { color: var(--ink-mute); }

/* Bild-Galerie-Strip unter dem Über-uns-Teaser */
.gallery-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; }
.gallery-strip figure { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3/3.6; box-shadow: var(--shadow-sm); }
.gallery-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-strip figure:hover img { transform: scale(1.05); }

/* ---------- Leistungen: alternierende Reihen ---------- */
.svc-rows { display: grid; gap: 22px; }
.svc-row {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-xl);
  display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; overflow: hidden;
}
.svc-row .svc-media { border-radius: 0; aspect-ratio: auto; min-height: 320px; margin: 0; }
.svc-row .svc-media img { height: 100%; }
.svc-row .svc-copy { padding: 40px 46px; display: flex; flex-direction: column; justify-content: center; }
.svc-row.reverse { grid-template-columns: 1fr 1fr; }
.svc-row.reverse .svc-media { order: 2; }
.svc-row.reverse .svc-copy { order: 1; }
.svc-row h3 { font-size: 1.6rem; margin-bottom: 12px; }
.svc-row p { color: var(--ink-soft); }
.svc-row .svc-list { margin-top: 22px; }
.svc-list { display: grid; gap: 11px; }
.svc-list li { display: flex; align-items: center; gap: 11px; font-size: 0.96rem; color: var(--ink); }
.svc-list li svg { width: 18px; height: 18px; color: var(--accent); flex: none; }

/* ---------- Projekte ---------- */
.proj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px 24px; }
.proj-card { display: block; }
.proj-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3.3; box-shadow: var(--shadow-sm); }
.proj-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.proj-card:hover .proj-media img { transform: scale(1.06); }
.proj-loc {
  position: absolute; left: 14px; top: 14px; display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.76rem; color: var(--ink); background: rgba(255,255,255,0.92); backdrop-filter: blur(3px);
  padding: 6px 12px; border-radius: 99px;
}
.proj-loc svg { width: 12px; height: 12px; color: var(--accent); }
.proj-body { padding-top: 16px; }
.proj-body h3 { font-size: 1.15rem; margin-bottom: 10px; }
.proj-meta { display: flex; gap: 18px; }
.proj-meta span { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; color: var(--ink-soft); }
.proj-meta svg { width: 15px; height: 15px; color: var(--ink-mute); }

/* ---------- Warum wir + Stats ---------- */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-list { margin-top: 26px; display: grid; gap: 14px; }
.why-list li { display: flex; align-items: center; gap: 14px; font-size: 1.05rem; font-weight: 500; }
.why-list li .chk { width: 26px; height: 26px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; flex: none; }
.why-list li .chk svg { width: 14px; height: 14px; }
.why-visual { border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 5/5.3; box-shadow: var(--shadow-md); }
.why-visual img { width: 100%; height: 100%; object-fit: cover; }

/* Helle Stats-Zeile mit Punkt-Trennern, wie in der Referenz */
.stats { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 26px; margin-top: 64px; }
.stats .stat { text-align: left; }
.stats .stat .n { font-size: clamp(2rem, 3.4vw, 2.7rem); font-weight: 600; letter-spacing: -0.04em; color: var(--ink); }
.stats .stat .l { color: var(--ink-soft); font-size: 0.92rem; margin-top: 4px; }
.stats .sep { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex: none; }
.stats.left { justify-content: flex-start; }

/* ---------- Kundenstimmen: Portrait-Marquee ---------- */
.testi-wrap { overflow: hidden; -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent); }
.testi-track { display: flex; gap: 22px; width: max-content; animation: testi-scroll 38s linear infinite; }
.testi-wrap:hover .testi-track { animation-play-state: paused; }
.testi-card {
  position: relative; width: 300px; aspect-ratio: 3/3.7; border-radius: var(--radius-lg);
  overflow: hidden; flex: none; box-shadow: var(--shadow-sm);
}
.testi-card img { width: 100%; height: 100%; object-fit: cover; }
.testi-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,10,12,0.88) 0%, rgba(8,10,12,0.25) 50%, rgba(8,10,12,0) 68%); }
.testi-quote { position: absolute; left: 20px; right: 20px; bottom: 20px; z-index: 1; color: #fff; }
.testi-quote p { font-size: 0.94rem; line-height: 1.45; }
.testi-quote .who { margin-top: 12px; font-weight: 600; font-size: 0.92rem; }
@keyframes testi-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .testi-track { animation: none; } }

/* ---------- Ablauf / Prozess: eine Weißkarte mit Trennlinien ---------- */
.process-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-xl);
  padding: clamp(36px, 5vw, 60px); text-align: center;
}
.process-card .section-head { margin-inline: auto; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 50px; }
.step { padding: 0 30px; text-align: left; }
.step:not(:first-child) { border-left: 1px solid var(--line); }
.step .num {
  width: 38px; height: 38px; border-radius: 50%; background: var(--ink); color: #fff;
  font-size: 0.85rem; font-weight: 600; display: grid; place-items: center; margin-bottom: 20px;
}
.step h3 { font-size: 1.25rem; margin-bottom: 10px; }
.step p { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Ratgeber / Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { display: block; }
.blog-card .b-media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/11; box-shadow: var(--shadow-sm); }
.blog-card .b-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.blog-card:hover .b-media img { transform: scale(1.05); }
.blog-card .b-body { padding-top: 18px; }
.tag { font-size: 0.82rem; font-weight: 500; color: var(--accent); }
.blog-card h3 { font-size: 1.18rem; margin: 10px 0 12px; }
.blog-card .b-meta { display: flex; gap: 16px; font-size: 0.82rem; color: var(--ink-soft); }
.blog-card .b-meta span { display: inline-flex; align-items: center; gap: 6px; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 24px 4px; text-align: left; font-size: 1.1rem; font-weight: 500; letter-spacing: -0.02em; }
.faq-q .ic { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; flex: none; transition: background 0.3s, color 0.3s, transform 0.3s; }
.faq-q .ic svg { width: 15px; height: 15px; transition: transform 0.3s var(--ease); }
.faq-item.open .faq-q .ic { background: var(--accent); color: #fff; border-color: var(--accent); }
.faq-item.open .faq-q .ic svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a p { padding: 0 4px 24px; color: var(--ink-soft); max-width: 90%; }

/* ---------- CTA: Teal-Band mit Bogen-Muster ---------- */
.cta {
  background: var(--accent); color: #fff; border-radius: var(--radius-xl);
  padding: clamp(50px, 7vw, 90px) clamp(24px, 6vw, 60px); text-align: center; position: relative; overflow: hidden;
}
.cta-pattern { position: absolute; inset: 0; opacity: 0.16; pointer-events: none;
  background-image: repeating-linear-gradient(90deg, transparent 0 64px, rgba(255,255,255,0.5) 64px 66px);
  -webkit-mask-image: radial-gradient(ellipse 90% 140% at 50% 120%, #000 55%, transparent 100%);
  mask-image: radial-gradient(ellipse 90% 140% at 50% 120%, #000 55%, transparent 100%);
}
.cta > * { position: relative; z-index: 1; }
.cta .rating { color: rgba(255,255,255,0.85); justify-content: center; }
.cta .rating b { color: #fff; }
.cta h2 { color: #fff; font-size: clamp(2rem, 4vw, 3.2rem); margin: 20px 0 20px; }
.cta p { color: rgba(255,255,255,0.72); max-width: 560px; margin-inline: auto; }
.cta .cta-actions { margin-top: 34px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta .btn-primary { background: #fff; color: var(--ink); }
.cta .btn-primary::before { background: var(--accent); }
.cta .btn-primary:hover { background: #f0f0f0; }
.cta .btn-outline { background: transparent; border-color: rgba(255,255,255,0.3); color: #fff; }
.cta .btn-outline:hover { border-color: #fff; }

/* ---------- Page-Hero (Unterseiten) ---------- */
.page-hero { padding: 60px 0 20px; }
.page-hero .inner { max-width: 780px; }
.page-hero h1 { margin: 18px 0 20px; }
.page-hero .lead { max-width: 560px; }
.page-hero .actions { margin-top: 28px; display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 42px; align-items: start; }
.contact-info { background: var(--ink); color: #fff; border-radius: var(--radius-xl); padding: 40px; }
.contact-info h2 { color: #fff; font-size: 1.7rem; margin: 14px 0 12px; }
.contact-info p.intro { color: rgba(255,255,255,0.65); }
.contact-info .eyebrow { background: rgba(255,255,255,0.14); color: #bdeee4; }
.contact-list { margin-top: 32px; display: grid; gap: 6px; }
.contact-list a, .contact-list .ci { display: flex; align-items: center; gap: 15px; padding: 15px 0; color: #fff; }
.contact-list a + a, .contact-list a + .ci, .contact-list .ci + .ci { border-top: 1px solid rgba(255,255,255,0.1); }
.contact-list .ci-ic { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,0.08); display: grid; place-items: center; flex: none; }
.contact-list .ci-ic svg { width: 19px; height: 19px; color: #fff; }
.contact-list .ci-l { font-size: 0.78rem; color: rgba(255,255,255,0.55); }
.contact-list .ci-v { font-weight: 500; }

.contact-form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 36px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 8px; color: var(--ink); }
.field input, .field textarea {
  width: 100%; font: inherit; font-size: 0.97rem; color: var(--ink);
  background: var(--bg); border: 1px solid var(--line-strong); border-radius: 12px;
  padding: 13px 15px; transition: border-color 0.2s, background 0.2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); background: #fff; }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.82rem; color: var(--ink-mute); margin-top: 4px; }

/* ---------- Team-Grid (Über uns) ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.member { text-align: left; }
.member .m-media { aspect-ratio: 3/3.3; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 16px; box-shadow: var(--shadow-sm); }
.member .m-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.member:hover .m-media img { transform: scale(1.05); }
.member .m-name { font-weight: 600; font-size: 1.1rem; }
.member .m-role { color: var(--ink-soft); font-size: 0.9rem; }

/* ---------- Split (Mission/Vision) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; align-items: center; }
.split-media { border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 4/3.4; box-shadow: var(--shadow-md); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.mv-grid { display: grid; gap: 18px; margin-top: 26px; }
.mv-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; }
.mv-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.mv-card p { color: var(--ink-soft); font-size: 0.97rem; }

.value-list { display: grid; gap: 12px; margin-top: 24px; }
.value-list li { display: flex; align-items: center; gap: 13px; font-weight: 500; }
.value-list li .chk { width: 26px; height: 26px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; flex: none; }
.value-list li .chk svg { width: 14px; height: 14px; }

/* ---------- Footer (hell, mit Newsletter) ---------- */
.footer { background: var(--surface); border-top: 1px solid var(--line); padding: 64px 0 26px; margin-top: 20px; }
.footer-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding-bottom: 40px; }
.newsletter { max-width: 360px; }
.newsletter .eyebrow { margin-bottom: 16px; }
.newsletter h3 { font-size: 1.3rem; margin-bottom: 8px; }
.newsletter p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 20px; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
  flex: 1; min-width: 0; font: inherit; font-size: 0.95rem; padding: 13px 18px;
  border: 1px solid var(--line-strong); border-radius: 99px; background: var(--bg); color: var(--ink);
}
.newsletter-form input:focus { outline: none; border-color: var(--accent); background: #fff; }
.newsletter-form button { background: var(--accent); color: #fff; padding: 13px 24px; border-radius: 99px; font-weight: 500; white-space: nowrap; transition: background 0.2s; }
.newsletter-form button:hover { background: var(--accent-dark); }

.footer-nav { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col h5 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-mute); margin-bottom: 16px; font-weight: 600; }
.footer-col a, .footer-col span { display: block; color: var(--ink-soft); font-size: 0.95rem; padding: 5px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--ink); }

.socials-col h5 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-mute); margin-bottom: 16px; font-weight: 600; }
.socials-list { display: grid; gap: 4px; }
.socials-list a { display: flex; align-items: center; gap: 10px; color: var(--ink-soft); font-size: 0.95rem; padding: 5px 0; transition: color 0.2s; }
.socials-list a:hover { color: var(--ink); }
.socials-list svg { width: 17px; height: 17px; }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-top: 24px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.footer-bottom p { color: var(--ink-mute); font-size: 0.85rem; }
.footer-brand-mini { display: inline-flex; align-items: center; gap: 9px; }
.footer-brand-mini .brand-mark { width: 30px; height: 30px; border-radius: 8px; }
.footer-brand-mini .brand-mark svg { width: 16px; height: 16px; }
.footer-brand-mini span { font-weight: 600; font-size: 1rem; letter-spacing: -0.02em; }

/* ---------- Reveal-Animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

/* ---------- Preview-Modal ---------- */
.preview-modal {
  position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 24px;
  background: rgba(15,18,20,0.55); backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease;
}
.preview-modal.open { opacity: 1; visibility: visible; }
.preview-modal__card {
  position: relative; background: var(--surface); border-radius: var(--radius-xl);
  padding: 42px 38px 36px; max-width: 440px; width: 100%; text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3); transform: translateY(16px) scale(0.98);
  transition: transform 0.4s var(--ease);
}
.preview-modal.open .preview-modal__card { transform: none; }
.preview-modal__close {
  position: absolute; top: 16px; right: 16px; width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line-strong); display: grid; place-items: center; color: var(--ink-soft);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.preview-modal__close:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.preview-modal__icon { width: 62px; height: 62px; border-radius: 18px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; margin: 0 auto 20px; }
.preview-modal__eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 0.8rem; font-weight: 500; color: var(--ink-soft); margin-bottom: 12px; }
.preview-modal__eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.preview-modal__title { font-size: clamp(1.5rem, 3.5vw, 1.9rem); font-weight: 600; letter-spacing: -0.03em; margin-bottom: 14px; }
.preview-modal__text { color: var(--ink-soft); font-size: 0.99rem; margin-bottom: 28px; }
.preview-modal__btn { background: var(--accent); color: #fff; width: 100%; justify-content: center; padding: 14px; border-radius: 12px; font-weight: 500; transition: background 0.2s; }
.preview-modal__btn:hover { background: var(--accent-dark); }
body.preview-open { overflow: hidden; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 520px; }
  .why-grid, .split, .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .proj-grid, .blog-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .svc-row, .svc-row.reverse { grid-template-columns: 1fr; }
  .svc-row .svc-media, .svc-row.reverse .svc-media { order: 1; min-height: 240px; }
  .svc-row .svc-copy, .svc-row.reverse .svc-copy { order: 2; padding: 30px; }
  .steps { grid-template-columns: 1fr; gap: 30px; }
  .step:not(:first-child) { border-left: none; border-top: 1px solid var(--line); padding-top: 30px; }
  .footer-nav { gap: 40px; }
  .contact-info { order: 2; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav-links, .nav-right .btn { display: none; }
  .nav-toggle { display: flex; }
  .nav.open .nav-mobile { display: flex; }
  .nav-mobile {
    display: none; position: absolute; left: 12px; right: 12px; top: 100%;
    flex-direction: column; gap: 4px; background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--radius-lg); padding: 14px; box-shadow: var(--shadow-md); margin-top: 8px;
  }
  .nav-mobile a { padding: 12px 14px; border-radius: 10px; font-weight: 500; color: var(--ink); }
  .nav-mobile a:hover { background: var(--bg); }
  .nav-mobile .btn { margin-top: 6px; }
  .section { padding: 56px 0; }
  .form-row { grid-template-columns: 1fr; }
  .proj-grid, .blog-grid, .team-grid { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-top { flex-direction: column; }
  .newsletter { max-width: none; }
  .footer-nav { width: 100%; justify-content: space-between; }
}

@media (max-width: 540px) {
  .container { padding-inline: 18px; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .hero-review { flex-direction: row; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .team-card { position: static; margin-top: -40px; margin-inline: 16px; max-width: none; }
  .stats { justify-content: flex-start; gap: 22px 30px; }
  .footer-nav { gap: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
