/* ============================================================
   Langenberg Services (LS) — Design Tokens + Site Styles
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Barlow:wght@400;500;600;700&family=Bebas+Neue&family=Caveat+Brush&display=swap');

:root {
  --red:           #C8202E;
  --red-dark:      #9E1922;
  --red-deep:      #7A121A;
  --red-tint:      #FBEAEC;

  --ink:           #1A1A1F;
  --ink-2:         #2D2D34;
  --charcoal:      #3A3A40;

  --bg:            #F7F5F2;
  --surface:       #FFFFFF;
  --muted:         #6B6864;
  --muted-2:       #8C8884;
  --border:        #E5E1DC;
  --border-strong: #C9C4BD;

  --success:       #2F8F5C;
  --warning:       #C68A1E;
  --error:         var(--red);

  --on-ink:        #FFFFFF;
  --on-ink-muted:  #B8B5B0;

  --font-display: 'Oswald', 'Inter Tight', system-ui, sans-serif;
  --font-body:    'Barlow', system-ui, -apple-system, Segoe UI, sans-serif;
  --font-impact:  'Bebas Neue', 'Oswald', system-ui, sans-serif;
  --font-script:  'Caveat Brush', cursive;
  --font-mono:    ui-monospace, 'SFMono-Regular', Menlo, monospace;

  --text-xs:   12px;
  --text-sm:   14px;
  --text-base: 16px;
  --text-md:   18px;
  --text-lg:   20px;
  --text-xl:   26px;
  --text-2xl:  36px;
  --text-3xl:  52px;
  --text-4xl:  72px;

  --lh-tight:   1.05;
  --lh-snug:    1.2;
  --lh-normal:  1.55;
  --lh-loose:   1.7;

  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  20px;
  --space-6:  24px;
  --space-7:  32px;
  --space-8:  40px;
  --space-9:  48px;
  --space-10: 64px;
  --space-11: 80px;
  --space-12: 96px;

  --radius-sm:   3px;
  --radius:      4px;
  --radius-md:   6px;
  --radius-lg:   10px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(26, 26, 31, 0.08);
  --shadow-md: 0 8px 20px rgba(26, 26, 31, 0.10);
  --shadow-lg: 0 22px 48px rgba(26, 26, 31, 0.16);

  --ease-out:    cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-micro:   150ms;
  --dur-comp:    320ms;
  --dur-section: 600ms;

  --content-max: 1240px;
  --gutter:      32px;
  --header-h:    80px;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}
*, *::before, *::after { box-sizing: inherit; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--lh-normal);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0 0 var(--space-4);
  font-weight: 600;
  letter-spacing: 0.005em;
  line-height: var(--lh-tight);
  text-transform: uppercase;
  text-wrap: balance;
}

h1 { font-size: var(--text-4xl); font-weight: 700; letter-spacing: -0.005em; }
h2 { font-size: var(--text-3xl); font-weight: 700; }
h3 { font-size: var(--text-2xl); font-weight: 600; }
h4 { font-size: var(--text-xl);  font-weight: 600; line-height: var(--lh-snug); }
h5 { font-size: var(--text-lg);  font-weight: 600; line-height: var(--lh-snug); }
h6 {
  font-size: var(--text-sm); font-weight: 600;
  line-height: var(--lh-snug); letter-spacing: 0.12em;
  font-family: var(--font-body);
}

p {
  margin: 0 0 var(--space-4);
  text-wrap: pretty;
  max-width: 64ch;
}

a {
  color: var(--red);
  text-decoration: none;
  transition: color var(--dur-micro) var(--ease-in-out);
}
a:hover { color: var(--red-dark); text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1.5px; }

small, .text-sm  { font-size: var(--text-sm); }
.text-xs   { font-size: var(--text-xs); }
.text-md   { font-size: var(--text-md); }
.text-lg   { font-size: var(--text-lg); }

.muted     { color: var(--muted); }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--space-5);
}
.eyebrow::before {
  content: "";
  width: 24px; height: 2px; background: var(--red);
}

.script {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--red);
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
}

.container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- Top notice strip ---------- */
.notice-strip {
  background: var(--ink); color: var(--on-ink-muted);
  font-size: var(--text-xs); font-family: var(--font-body);
  padding: 8px 0; letter-spacing: 0.04em;
}
.notice-strip .inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.notice-strip .item { display: inline-flex; gap: 8px; align-items: center; white-space: nowrap; flex-shrink: 0; }
.notice-strip .item svg { color: var(--red); }
.notice-strip a { color: var(--on-ink-muted); }
.notice-strip a:hover { color: #fff; text-decoration: none; }
.notice-strip .items { display: flex; gap: 24px; flex-wrap: wrap; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: inset 0 -3px 0 var(--red);
}
.site-header .inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.site-header .brand { display: flex; align-items: center; gap: 14px; }
.site-header .brand,
.site-header .brand:hover,
.site-header .brand:focus,
.site-header .brand:active { text-decoration: none; color: inherit; }
.site-header .brand img { height: 56px; width: auto; display: block; }
.site-header .brand .wm { line-height: 1; }
.site-header .brand .wm .name {
  font-family: var(--font-display); font-weight: 700; font-size: 22px;
  text-transform: uppercase; letter-spacing: 0.02em; color: var(--ink);
}
.site-header .brand .wm .sub {
  font-family: var(--font-body); font-weight: 500; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.22em; color: var(--red); margin-top: 4px;
}
.site-header nav { display: flex; gap: var(--space-7); align-items: center; }
.site-header nav a {
  color: var(--ink); font-weight: 600; font-size: var(--text-sm);
  text-transform: uppercase; letter-spacing: 0.08em; padding: 6px 0; position: relative;
  font-family: var(--font-body);
}
.site-header nav a:hover { text-decoration: none; color: var(--red); }
.site-header nav a:hover::after, .site-header nav a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--red);
}
.header-cta { display: flex; gap: var(--space-3); align-items: center; }
.header-cta .btn { display: inline-flex; }

/* ---------- Mobile menu ---------- */
.menu-toggle {
  display: none;
  width: 48px; height: 48px;
  background: transparent; border: 0;
  cursor: pointer;
  padding: 0; align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
  transition: all var(--dur-micro) var(--ease-in-out);
}
.menu-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: all var(--dur-micro) var(--ease-in-out);
}
.menu-toggle:hover span { background: var(--red); }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 100;
  background: var(--ink); color: #fff;
  display: flex; flex-direction: column;
  padding: var(--space-7) var(--gutter);
  opacity: 0; pointer-events: none;
  transform: translateY(-8px);
  transition: opacity var(--dur-comp) var(--ease-out),
              transform var(--dur-comp) var(--ease-out);
  overflow-y: auto;
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mobile-menu .mm-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: var(--space-9); height: 56px;
}
.mobile-menu .mm-brand {
  display: flex; align-items: center; gap: 14px;
}
.mobile-menu .mm-brand img { height: 48px; width: auto; display: block; }
.mobile-menu .mm-brand .name {
  font-family: var(--font-display); font-weight: 700; font-size: 20px;
  text-transform: uppercase; letter-spacing: 0.02em; color: #fff; line-height: 1;
}
.mobile-menu .mm-brand .sub {
  font-family: var(--font-body); font-weight: 500; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.22em; color: var(--red); margin-top: 4px;
}
.mobile-menu .mm-close {
  width: 48px; height: 48px;
  background: transparent; border: 0;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #fff; padding: 0;
}
.mobile-menu .mm-close:hover { color: var(--red); }
.mobile-menu .mm-close svg { width: 22px; height: 22px; }
.mobile-menu nav {
  display: flex; flex-direction: column; gap: var(--space-2);
  margin-bottom: var(--space-9);
}
.mobile-menu nav a {
  color: #fff; font-family: var(--font-display); font-weight: 600;
  font-size: 32px; text-transform: uppercase; letter-spacing: 0.01em;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
  display: flex; justify-content: space-between; align-items: center;
}
.mobile-menu nav a:hover, .mobile-menu nav a:focus { color: var(--red); text-decoration: none; }
.mobile-menu nav a::after {
  content: "→"; font-family: var(--font-body); font-size: 22px;
  color: var(--red); opacity: 0.8;
}
.mobile-menu .mm-cta { margin-top: auto; }
.mobile-menu .mm-cta .btn { width: 100%; justify-content: center; }
.mobile-menu .mm-contact {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: var(--space-6);
  color: rgba(255,255,255,0.7); font-size: var(--text-sm);
}
.mobile-menu .mm-contact a, .mobile-menu .mm-contact .row {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.7); text-decoration: none;
}
.mobile-menu .mm-contact a:hover { color: #fff; text-decoration: none; }

body.menu-open { overflow: hidden; }

/* ---------- Buttons ---------- */
.btn {
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 10px;
  height: 46px; padding: 0 22px;
  font-family: var(--font-body); font-weight: 700; font-size: var(--text-sm);
  text-transform: uppercase; letter-spacing: 0.06em;
  border-radius: var(--radius); border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--dur-micro) var(--ease-in-out);
  text-decoration: none;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); color: #fff; text-decoration: none; }
.btn-primary:active { transform: translateY(1px); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; text-decoration: none; }
.btn-ghost { background: transparent; color: var(--ink); border-color: transparent; }
.btn-ghost:hover { background: var(--red-tint); color: var(--red); }
.btn-lg { height: 54px; padding: 0 28px; font-size: var(--text-base); }
.btn svg { width: 18px; height: 18px; }

/* ---------- Hero (full-bleed background image) ---------- */
.hero {
  position: relative;
  padding: 0;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  isolation: isolate;
}
.hero .hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero .hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 42%;
  display: block;
}
.hero .hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 50% 38%, rgba(12,12,16,0.20) 0%, rgba(12,12,16,0.52) 60%, rgba(12,12,16,0.74) 100%),
    linear-gradient(180deg, rgba(12,12,16,0.42) 0%, rgba(12,12,16,0.30) 42%, rgba(12,12,16,0.80) 100%);
}
.hero .hero-inner {
  position: relative; z-index: 1;
  width: 100%;
  max-width: 860px;
  padding-top: var(--space-11);
  padding-bottom: calc(var(--space-12) + var(--space-7));
}
.hero .eyebrow { color: #fff; margin-bottom: var(--space-6); opacity: 0.95; }
.hero .eyebrow::before { background: var(--red); }
.hero h1 {
  color: #fff;
  font-size: 84px; line-height: 0.96; letter-spacing: -0.01em;
  margin-bottom: var(--space-6); font-weight: 700;
  text-shadow: 0 2px 36px rgba(0,0,0,0.34);
}
.hero h1 .red { color: var(--red); }
.hero h1 .script {
  display: block; font-family: var(--font-script); color: #fff;
  font-size: 56px; font-weight: 400; text-transform: none;
  margin-top: 16px; letter-spacing: 0; line-height: 1.1;
  padding-bottom: 8px; text-shadow: 0 2px 24px rgba(0,0,0,0.30);
}
.hero .lead {
  font-size: var(--text-lg); color: rgba(255,255,255,0.94);
  margin: 0 auto var(--space-8);
  max-width: min(54ch, 100%); font-weight: 400; line-height: 1.6;
  text-shadow: 0 1px 18px rgba(0,0,0,0.28);
}
.hero-actions { display: flex; gap: var(--space-4); flex-wrap: wrap; justify-content: center; }
.hero-actions .btn-lg { box-shadow: 0 10px 30px rgba(0,0,0,0.22); }
.hero .btn-outline { color: #fff; border-color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.06); backdrop-filter: blur(2px); }
.hero .btn-outline:hover { background: #fff; color: var(--ink); border-color: #fff; }
.hero .scroll-cue {
  position: absolute; left: 50%; bottom: var(--space-8); transform: translateX(-50%);
  z-index: 1; color: rgba(255,255,255,0.8); display: flex; flex-direction: column;
  align-items: center; gap: 6px; font-size: var(--text-xs); letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 600; pointer-events: none;
}
.hero .scroll-cue svg { width: 20px; height: 20px; animation: heroBob 1.8s var(--ease-in-out) infinite; }
@keyframes heroBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ---------- Section scaffold ---------- */
section.band { padding-top: var(--space-12); padding-bottom: var(--space-12); position: relative; }
section.band.alt { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
section.band .head { max-width: 760px; margin: 0 auto var(--space-9); text-align: center; }
section.band .head h2 { margin-bottom: var(--space-3); }
section.band .head p { color: var(--muted); margin: 0 auto; }

/* ---------- Services grid ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.service-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: var(--space-7);
  box-shadow: var(--shadow-sm); position: relative; cursor: pointer;
  transition: all var(--dur-comp) var(--ease-out);
}
.service-card::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: var(--red); opacity: 0; transition: opacity var(--dur-comp) var(--ease-out);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.service-card:hover {
  transform: translateY(-3px); box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}
.service-card:hover::before { opacity: 1; }
.service-card .icon-tile {
  width: 56px; height: 56px; background: var(--red-tint); color: var(--red);
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-5);
}
.service-card .icon-tile svg { width: 28px; height: 28px; }
.service-card h4 { margin-bottom: var(--space-2); font-size: var(--text-lg); }
.service-card p { color: var(--muted); margin: 0; font-size: var(--text-sm); }

/* ---------- Before / After slider ---------- */
section.band.beforeafter { padding-top: var(--space-12); padding-bottom: var(--space-12); }
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-7); }
.ba-slider {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  user-select: none;
  touch-action: none;
  cursor: ew-resize;
  box-shadow: var(--shadow-md);
  background: #111;
}
.ba-slider .ba-img,
.ba-slider .ba-after { position: absolute; inset: 0; }
.ba-slider img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  pointer-events: none; -webkit-user-drag: none;
}
.ba-slider .ba-after {
  clip-path: inset(0 0 0 50%);
  -webkit-clip-path: inset(0 0 0 50%);
  will-change: clip-path;
}
.ba-label {
  position: absolute;
  top: var(--space-4);
  padding: 5px 12px;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-sm);
  background: rgba(20, 20, 24, 0.72);
  color: #fff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: none;
  z-index: 2;
}
.ba-label-before { left: var(--space-4); }
.ba-label-after { right: var(--space-4); background: var(--red); }
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: #fff;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 3;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.18);
}
.ba-handle-knob {
  position: absolute;
  top: 50%; left: 50%;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.32), 0 2px 6px rgba(0, 0, 0, 0.18);
  color: var(--ink);
}
.ba-handle-knob svg { width: 22px; height: 22px; }
.ba-range {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 4;
}
@media (max-width: 960px) {
  .ba-grid { grid-template-columns: 1fr; gap: var(--space-6); }
}
@media (max-width: 560px) {
  .ba-handle-knob { width: 44px; height: 44px; }
  .ba-label { font-size: 10px; padding: 4px 10px; }
}

/* ---------- Logos / Referenzen band ---------- */
section.band.logos { background: #fff; padding-top: var(--space-11); padding-bottom: var(--space-11); }
section.band.logos .head { margin-bottom: var(--space-8); }
.logo-row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: var(--space-10) var(--space-12);
}
.logo-item {
  display: flex; align-items: center; justify-content: center;
  height: 96px;
  filter: grayscale(100%);
  opacity: 0.78;
  transition: filter var(--dur-comp) var(--ease-out), opacity var(--dur-comp) var(--ease-out), transform var(--dur-comp) var(--ease-out);
}
.logo-item img { max-height: 100%; max-width: 220px; width: auto; height: auto; display: block; object-fit: contain; }
a.logo-item { cursor: pointer; }
a.logo-item:hover, .logo-item:hover { filter: grayscale(0%); opacity: 1; transform: translateY(-2px); }
a.logo-item:hover { text-decoration: none; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-12); align-items: center; }
.about-grid .photo-wrap { position: relative; }
.about-grid img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--radius-md); display: block; }
.about-grid .photo-wrap::before {
  content: ""; position: absolute; right: -16px; bottom: -16px;
  width: 120px; height: 120px; background: var(--red); border-radius: var(--radius-md); z-index: -1;
}
.about-grid .about-text {
  display: flex; flex-direction: column; align-items: flex-start; text-align: left;
}
.about-grid .about-text .eyebrow { justify-content: flex-start; }
.about-grid .about-text p { margin-left: 0; margin-right: 0; margin-bottom: var(--space-4); max-width: 56ch; }
.about-grid .about-text p:last-of-type { margin-bottom: var(--space-7); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-8); position: relative; }
.step .num {
  font-family: var(--font-impact); font-size: 64px; color: var(--red);
  line-height: 1; letter-spacing: 0.01em;
  margin-bottom: var(--space-4); display: flex; align-items: center; gap: var(--space-4);
}
.step .num::after { content: ""; flex: 1; height: 2px; background: var(--ink); }
.step h4 { margin-bottom: var(--space-2); }
.step p { color: var(--muted); margin: 0; font-size: var(--text-sm); }

/* ---------- Testimonial ---------- */
.testimonial { max-width: 880px; margin: 0 auto; text-align: center; position: relative; }
.testimonial .mark-bg {
  position: absolute; left: 50%; top: -40px; transform: translateX(-50%);
  width: 200px; height: 200px; opacity: 0.05; pointer-events: none; z-index: 0;
}
.testimonial .mark-bg img { width: 100%; height: 100%; object-fit: contain; }
.testimonial .inner { position: relative; z-index: 1; }
.testimonial .quote {
  font-family: var(--font-display); font-weight: 600;
  font-size: var(--text-2xl); line-height: 1.2; color: var(--ink);
  letter-spacing: 0.005em; text-transform: none;
  margin: 0 0 var(--space-7);
  text-wrap: balance;
}
.testimonial .author { display: flex; gap: 14px; align-items: center; justify-content: center; }
.testimonial .avatar {
  width: 48px; height: 48px; border-radius: 50%; background: var(--red); color: #fff;
  font-weight: 700; font-family: var(--font-display); text-transform: uppercase;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: 0.02em; font-size: var(--text-sm);
}
.testimonial .name { font-weight: 600; }
.testimonial .role { font-size: var(--text-sm); color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--red); color: #fff; padding: var(--space-12) 0;
  position: relative; overflow: hidden;
}
.cta-band h2 { color: #fff; }
.cta-band .inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: var(--space-9); align-items: center;
}
.cta-band p { color: rgba(255,255,255,0.88); font-size: var(--text-md); margin: 0; max-width: 50ch; }
.cta-band .form {
  background: var(--surface); color: var(--ink);
  border-radius: var(--radius-md); padding: var(--space-7); box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--ink);
}
.cta-band .form h5 { margin-bottom: var(--space-5); color: var(--ink); }
.cta-band .eyebrow { color: rgba(255,255,255,0.85); }
.cta-band .eyebrow::before { background: rgba(255,255,255,0.85); }
.cta-band .contact-info { margin-top: var(--space-7); display: flex; flex-direction: column; gap: 14px; }
.cta-band .contact-info .row { display: flex; gap: 14px; align-items: center; color: rgba(255,255,255,0.9); }

/* ---------- Forms ---------- */
.field { margin-bottom: var(--space-4); }
.field label {
  display: block; font-size: var(--text-xs); font-weight: 700;
  margin-bottom: 8px; color: var(--ink); text-transform: uppercase; letter-spacing: 0.08em;
}
.input, .textarea, .select {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--border-strong); border-radius: var(--radius);
  background: var(--surface); color: var(--ink);
  font-family: var(--font-body); font-size: var(--text-sm);
  transition: all var(--dur-micro) var(--ease-in-out);
}
.input:focus, .textarea:focus, .select:focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(200,32,46,0.18);
}
.textarea { min-height: 96px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: var(--space-4); }
.chip {
  padding: 7px 14px; font-size: var(--text-xs); font-weight: 600;
  border: 1px solid var(--border-strong); border-radius: var(--radius-pill);
  background: var(--surface); color: var(--ink); text-transform: uppercase; letter-spacing: 0.04em;
  cursor: pointer; user-select: none; transition: all var(--dur-micro) var(--ease-in-out);
  font-family: var(--font-body);
}
.chip:hover { border-color: var(--red); color: var(--red); }
.chip.on { background: var(--red); color: #fff; border-color: var(--red); }
.success-card {
  background: rgba(47,143,92,0.08); border: 1px solid rgba(47,143,92,0.3);
  padding: var(--space-5); border-radius: var(--radius);
  display: flex; gap: 12px; align-items: flex-start;
}
.success-card svg { color: var(--success); flex: 0 0 20px; margin-top: 2px; }
.success-card strong { color: var(--success); }
.form .fine-print { margin-top: 12px; margin-bottom: 0; font-size: var(--text-xs); color: var(--muted); }

/* ---------- Footer ---------- */
footer.site-footer { background: var(--ink); color: var(--on-ink); padding: var(--space-11) 0 var(--space-6); position: relative; }
footer.site-footer .top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: var(--space-8);
  margin-bottom: var(--space-9);
}
footer.site-footer .brand-row {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: var(--space-5);
}
footer.site-footer .brand-block .wm { line-height: 1; }
footer.site-footer .brand-block .wordmark {
  font-family: var(--font-display); font-weight: 700;
  font-size: 22px; text-transform: uppercase; letter-spacing: 0.02em;
  color: #fff; line-height: 1; margin-bottom: 0;
}
footer.site-footer .brand-block .sub {
  font-family: var(--font-body); font-weight: 500;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--red); margin-top: 4px; margin-bottom: 0;
}
footer.site-footer .brand-block p { color: var(--on-ink-muted); font-size: var(--text-sm); margin: 0; max-width: 36ch; }
footer.site-footer h6 {
  color: #fff; font-size: var(--text-xs); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: var(--space-4);
  font-family: var(--font-body);
}
footer.site-footer a, footer.site-footer .line { color: var(--on-ink-muted); font-size: var(--text-sm); display: block; padding: 5px 0; margin: 0; font-family: var(--font-body); }
footer.site-footer a:hover { color: #fff; text-decoration: none; }
footer.site-footer .bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: var(--space-5);
  display: flex; justify-content: space-between; align-items: center;
  font-size: var(--text-xs); color: var(--on-ink-muted);
}
footer.site-footer .bottom .links { display: flex; gap: var(--space-5); }
footer.site-footer .bottom .credit-link { display: inline; padding: 0; color: var(--on-ink-muted); text-decoration: underline; text-underline-offset: 2px; }
footer.site-footer .bottom .credit-link:hover { color: #fff; }

/* ---------- Legal pages (Impressum, Datenschutz) ---------- */
.legal {
  padding-top: var(--space-11);
  padding-bottom: var(--space-12);
}
.legal .container { max-width: 820px; }
.legal h1 { font-size: 56px; margin-bottom: var(--space-3); }
.legal .subtitle { color: var(--muted); font-size: var(--text-md); margin-bottom: var(--space-9); }
.legal h1, .legal h2, .legal h3 {
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}
.legal h2 {
  font-size: var(--text-xl); margin-top: var(--space-9); margin-bottom: var(--space-3);
  text-transform: uppercase;
}
.legal h2:first-of-type { margin-top: var(--space-7); }
.legal h3 {
  font-size: var(--text-base); margin-top: var(--space-6); margin-bottom: var(--space-2);
  text-transform: uppercase; letter-spacing: 0.04em;
}
.legal p, .legal ul, .legal address {
  color: var(--ink-2); font-style: normal; max-width: none;
}
.legal ul { padding-left: 1.2em; margin-bottom: var(--space-4); }
.legal ul li { margin-bottom: 6px; }
.legal address { margin-bottom: var(--space-4); line-height: 1.6; }
.legal a { color: var(--red); }
.legal .back-link {
  display: flex; align-items: center; gap: 8px;
  width: fit-content; max-width: 100%;
  margin-bottom: var(--space-6);
  font-size: var(--text-sm); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--ink); text-decoration: none;
  font-family: var(--font-body);
}
.legal .back-link:hover { color: var(--red); text-decoration: none; }
.legal .back-link svg { width: 16px; height: 16px; }

@media (max-width: 560px) {
  .legal h1 { font-size: 36px; }
  .legal h2 { font-size: var(--text-lg); }
  .legal .subtitle { font-size: var(--text-base); }
  footer.site-footer .bottom { gap: var(--space-3); }
}

/* ---------- WhatsApp FAB (pill) ---------- */
.whatsapp-fab {
  position: fixed;
  right: var(--space-6);
  bottom: var(--space-6);
  z-index: 60;
  height: 56px;
  padding: 0 22px 0 18px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  text-transform: none;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.36), 0 3px 8px rgba(0, 0, 0, 0.18);
  transition: transform var(--dur-comp) var(--ease-out), box-shadow var(--dur-comp) var(--ease-out);
}
.whatsapp-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.46), 0 5px 12px rgba(0, 0, 0, 0.22);
  color: #fff;
  text-decoration: none;
}
.whatsapp-fab:active { transform: translateY(0); }
.whatsapp-fab svg { width: 24px; height: 24px; flex: 0 0 24px; }
.whatsapp-fab__label { white-space: nowrap; }
@media (max-width: 560px) {
  .whatsapp-fab {
    right: var(--space-4);
    bottom: calc(var(--space-3) + env(safe-area-inset-bottom, 0px));
    height: 50px;
    padding: 0 18px 0 14px;
    font-size: 15px;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.26), 0 1px 4px rgba(0, 0, 0, 0.14);
  }
  .whatsapp-fab svg { width: 22px; height: 22px; flex-basis: 22px; }
}

/* ---------- Footer logo ---------- */
footer.site-footer .footer-logo {
  display: block;
  height: 56px;
  width: auto;
  margin-bottom: 0;
}

/* ---------- Reveal animations (premium) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(44px) scale(0.97);
  filter: blur(6px);
  transition:
    opacity 1200ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 1200ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 950ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  filter: blur(5px);
  transition:
    opacity 1100ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 1100ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 850ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}
.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 130ms; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 260ms; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 390ms; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 520ms; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 650ms; }

/* ---------- Hero entrance (premium) ---------- */
.hero .hero-bg img {
  animation: heroKenBurns 22s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
  transform-origin: 50% 42%;
}
@keyframes heroKenBurns {
  0%   { transform: scale(1.04); }
  100% { transform: scale(1.13) translate(-1%, -1.5%); }
}

.hero .hero-inner > * {
  opacity: 0;
  transform: translateY(36px);
  filter: blur(8px);
  animation: heroRise 1400ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero .hero-inner > *:nth-child(1) { animation-delay: 240ms; }
.hero .hero-inner > *:nth-child(2) { animation-delay: 420ms; }
.hero .hero-inner > *:nth-child(3) { animation-delay: 660ms; }
.hero .hero-inner > *:nth-child(4) { animation-delay: 880ms; }
@keyframes heroRise {
  0%   { opacity: 0; transform: translateY(36px); filter: blur(8px); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.hero .scroll-cue {
  opacity: 0;
  animation: heroCueFade 1100ms cubic-bezier(0.16, 1, 0.3, 1) 1400ms forwards;
}
@keyframes heroCueFade {
  0%   { opacity: 0; transform: translateX(-50%) translateY(10px); }
  100% { opacity: 0.85; transform: translateX(-50%) translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
  .hero .hero-bg img,
  .hero .hero-inner > *,
  .hero .scroll-cue {
    animation: none !important;
    opacity: 1 !important;
    filter: none !important;
  }
  .hero .hero-inner > * { transform: none !important; }
  .hero .scroll-cue { transform: translateX(-50%) !important; opacity: 0.85 !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  :root { --gutter: 20px; }
  .about-grid, .cta-band .inner { grid-template-columns: 1fr; gap: var(--space-9); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .site-header nav, .notice-strip .item.hide-sm { display: none; }
  .site-header .header-cta .btn { display: none; }
  .menu-toggle { display: inline-flex; }
  footer.site-footer .top { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 78vh; }
  .hero .scroll-cue { display: none; }
  .hero h1 { font-size: 56px; }
  .hero h1 .script { font-size: 40px; }
  .hero .lead { font-size: var(--text-md); }
  .about-grid .photo-wrap::before { width: 80px; height: 80px; right: -10px; bottom: -10px; }
  .testimonial .quote { font-size: var(--text-xl); }
}
@media (max-width: 560px) {
  :root { --gutter: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  footer.site-footer .top { grid-template-columns: 1fr; gap: var(--space-7); }
  footer.site-footer .bottom { flex-direction: column; gap: var(--space-3); align-items: flex-start; }
  footer.site-footer .bottom .links { flex-wrap: wrap; gap: var(--space-4); }
  section.band, .cta-band { padding-top: var(--space-10); padding-bottom: var(--space-10); }
  .hero { min-height: 84vh; }
  .hero .hero-inner { padding-top: var(--space-9); padding-bottom: var(--space-9); }
  .hero h1 { font-size: 40px; line-height: 1.02; letter-spacing: 0; }
  .hero h1 .script { font-size: 32px; margin-top: 8px; }
  .hero .lead { font-size: var(--text-base); }
  .site-header { height: 64px; }
  .site-header .brand img { height: 44px; }
  .site-header .brand .wm .name { font-size: 18px; }
  .site-header .brand .wm .sub { font-size: 10px; letter-spacing: 0.18em; }
  .notice-strip { padding: 6px 0; }
  .notice-strip .inner { justify-content: center; }
  .notice-strip .items { gap: 12px; }
  section.band .head { margin-bottom: var(--space-7); }
  .logo-row { gap: var(--space-7) var(--space-8); }
  .logo-item { height: 64px; }
  .logo-item img { max-width: 160px; }
  h2 { font-size: 32px; }
  .service-card { padding: var(--space-6); }
  .step .num { font-size: 48px; }
  .testimonial .quote { font-size: var(--text-lg); }
  .testimonial .mark-bg { width: 140px; height: 140px; top: -20px; }
  .cta-band .form { padding: var(--space-6); }
  .cta-band .contact-info .row { font-size: var(--text-sm); }

  /* Full-width buttons on mobile */
  .btn {
    width: 100%; justify-content: center;
    white-space: normal; text-align: center;
    height: auto; min-height: 46px;
    padding-top: 12px; padding-bottom: 12px; line-height: 1.2;
  }
  .btn-lg { min-height: 54px; padding-top: 14px; padding-bottom: 14px; }
  .hero-actions, .hero-actions .btn { width: 100%; }
  .hero-actions { flex-direction: column; }
  .mobile-menu .mm-cta .btn { width: 100%; }

  /* Mobile menu sizing */
  .mobile-menu nav a { font-size: 26px; padding: 12px 0; }
  .mobile-menu .mm-head { margin-bottom: var(--space-7); }
}
