/* =========================================================
   Physiotherapie Angerer — Modern Light Redesign
   ========================================================= */

:root {
  /* CI */
  --navy: #0A2540;
  --blue: #1E4A74;
  --ice:  #7FB6E6;
  --ice-50: rgba(127,182,230,.14);
  --cloud: #F4F7FA;
  --soft:  #E8F1F8;
  --line:  #D9E3ED;
  --text:  #0A2540;
  --muted: #5A6B7F;

  /* type */
  --f-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --f-body:    'Manrope', 'Inter', system-ui, sans-serif;

  /* shadows */
  --shadow-sm:  0 1px 2px rgba(10,37,64,.04), 0 2px 6px rgba(10,37,64,.04);
  --shadow-md:  0 6px 16px rgba(10,37,64,.08), 0 2px 6px rgba(10,37,64,.04);
  --shadow-lg:  0 24px 60px -20px rgba(10,37,64,.22), 0 12px 24px -12px rgba(10,37,64,.14);
  --shadow-xl:  0 40px 100px -30px rgba(10,37,64,.32), 0 20px 40px -18px rgba(10,37,64,.18);
  --glow:       0 0 0 1px rgba(127,182,230,.4), 0 20px 50px -18px rgba(30,74,116,.35);

  --radius: 14px;
  --r-sm: 8px;

  --container: 1240px;
  --pad: clamp(18px, 5vw, 48px);
}

/* -------- reset -------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body {
  margin:0;
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: #ffffff;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--navy); color: #fff; }

/* -------- typography scale -------- */
.kicker {
  display: inline-block;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue);
}
.kicker.on-dark { color: var(--ice); }
.kicker::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--ice);
  vertical-align: middle;
  margin-right: 12px;
  transform: translateY(-2px);
}

h1, h2, h3, h4 { font-family: var(--f-display); color: var(--navy); margin: 0 0 .5em; line-height: 1.05; letter-spacing: -.02em; }
h1 { font-weight: 700; font-size: clamp(42px, 5.8vw, 88px); letter-spacing: -.04em; line-height: 1; }
h2 { font-weight: 700; font-size: clamp(34px, 4.6vw, 72px); letter-spacing: -.03em; }
h3 { font-weight: 600; font-size: clamp(20px, 1.5vw, 24px); letter-spacing: -.015em; }

p  { margin: 0 0 1em; color: var(--muted); }
p.lead { font-size: clamp(17px, 1.25vw, 20px); color: var(--text); opacity: .82; max-width: 58ch; }

.grad {
  background: linear-gradient(95deg, #0A2540 0%, #1E4A74 35%, #4A8FBF 70%, #7FB6E6 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: sweep 9s ease-in-out infinite;
}

/* -------- container -------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--pad); }

/* -------- buttons -------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -.005em;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--ice); outline-offset: 3px; }
.btn-primary {
  background: linear-gradient(180deg, var(--blue) 0%, var(--navy) 100%);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 10px 24px -10px rgba(10,37,64,.45);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 18px 36px -12px rgba(10,37,64,.55); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--navy); background: rgba(10,37,64,.03); transform: translateY(-2px); }
.btn .arrow { width: 14px; height: 14px; flex-shrink: 0; transition: transform .25s ease; }
.btn:hover .arrow { transform: translate(3px, -3px); }

/* Compact header CTA — outline only */
.btn-cta {
  padding: 11px 22px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -.005em;
  color: var(--navy);
  background: transparent;
  border: 1.5px solid var(--navy);
  border-radius: 999px;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}
.btn-cta:hover { background: var(--navy); color: #fff; transform: translateY(-1px); }
.btn-cta:focus-visible { outline: 2px solid var(--ice); outline-offset: 3px; }

/* Screen-Reader-only — fuer SEO/A11y-Spans, die optisch nicht erscheinen sollen. */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Skip-to-Content — Tab-Fokus blendet ihn ein, sonst komplett ueber den Viewport-Rand verschoben. */
.skip-link {
  position: absolute;
  top: 0;
  left: 8px;
  transform: translateY(-110%);
  background: var(--navy);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 8px 8px;
  z-index: 10000;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: transform .15s;
}
.skip-link:focus { transform: translateY(0); outline: 2px solid var(--ice); outline-offset: 2px; }

/* -------- info-modal (Overlay-Hinweis, zeitlich begrenzt — JS schaltet aus) -------- */
.info-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 20px;
}
.info-modal[hidden] { display: none; }
.info-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 37, 64, 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  cursor: pointer;
  animation: info-modal-fade .25s ease-out;
}
.info-modal-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 44px 40px 36px;
  width: 100%;
  max-width: 460px;
  text-align: center;
  box-shadow: 0 30px 80px -20px rgba(10, 37, 64, 0.55), 0 0 0 1px rgba(10, 37, 64, 0.06);
  animation: info-modal-pop .35s cubic-bezier(.2,.8,.2,1);
  font-family: var(--f-body, system-ui, sans-serif);
}
.info-modal-x {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: var(--muted, #5A6B7F);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  transition: background .15s, color .15s;
  display: grid;
  place-items: center;
  font-family: inherit;
}
.info-modal-x:hover, .info-modal-x:focus-visible {
  background: var(--cloud, #F4F7FA);
  color: var(--navy, #0A2540);
  outline: none;
}
.info-modal-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0A2540 0%, #1E4A74 100%);
  color: #7FB6E6;
}
.info-modal-card h2 {
  font-family: var(--f-display, system-ui, sans-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy, #0A2540);
  margin: 0 0 12px;
  letter-spacing: -0.2px;
  line-height: 1.25;
}
.info-modal-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text, #1f2937);
  opacity: .8;
  margin: 0 0 24px;
}
.info-modal-card p strong {
  color: var(--navy, #0A2540);
  font-weight: 700;
  opacity: 1;
}
.info-modal-ok {
  background: var(--blue, #1E4A74);
  color: #fff;
  border: 0;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .3px;
  cursor: pointer;
  transition: background .18s, transform .18s;
  font-family: inherit;
  min-width: 140px;
}
.info-modal-ok:hover { background: var(--navy, #0A2540); transform: translateY(-1px); }
.info-modal-ok:focus-visible { outline: 2px solid var(--ice, #7FB6E6); outline-offset: 3px; }
@keyframes info-modal-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes info-modal-pop {
  from { opacity: 0; transform: translateY(8px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 480px) {
  .info-modal { padding: 16px; }
  .info-modal-card { padding: 38px 24px 28px; border-radius: 14px; }
  .info-modal-card h2 { font-size: 19px; }
  .info-modal-card p { font-size: 13.5px; }
  .info-modal-icon { width: 56px; height: 56px; }
}

/* -------- header -------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  padding: 15px 0;
  background: rgba(255,255,255,.78);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, padding .3s ease, background .3s ease;
}
.site-header.scrolled { padding: 8px 0; border-bottom-color: var(--line); background: rgba(255,255,255,.9); }
.nav {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
}
.logo { display: block; }
.logo img { height: 97px; width: auto; display: block; transition: height .3s ease; }
.site-header.scrolled .logo img { height: 71px; }
@media (max-width: 700px) { .logo img { height: 74px; } .site-header.scrolled .logo img { height: 60px; } }
.nav-links {
  display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; justify-content: center;
}
.nav-links a {
  position: relative;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 14px;
  color: var(--text);
  letter-spacing: -.01em;
  padding: 8px 2px;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px;
  height: 2px; background: var(--navy);
  transform: scaleX(0); transform-origin: right;
  transition: transform .3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }

.burger {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line); background: #fff;
  border-radius: var(--r-sm); cursor: pointer;
  padding: 0; align-items: center; justify-content: center; flex-direction: column; gap: 4px;
}
.burger span { width: 20px; height: 2px; background: var(--navy); display: block; transition: transform .3s ease; }
.burger[aria-expanded="true"] span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.burger[aria-expanded="true"] span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
  .nav > nav[aria-label="Hauptnavigation"] { display: contents; }
  .burger { display: inline-flex; }
  .header-cta { display: none; }
  .nav-links {
    position: absolute; top: 100%; right: var(--pad); left: var(--pad);
    flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; padding: 14px; border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--line);
    transform-origin: top right;
    transform: scale(.96) translateY(-6px); opacity: 0; pointer-events: none;
    transition: transform .2s ease, opacity .2s ease;
  }
  .nav-links.open { transform: scale(1) translateY(6px); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 12px 14px; border-radius: 8px; font-size: 16px; }
  .nav-links a:hover { background: var(--cloud); }
  .nav-links a::after { display: none; }
}

/* -------- gradient blobs utility -------- */
.blob-layer { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
}
.blob.b1 { width: 560px; height: 560px; background: radial-gradient(closest-side, #BFE0F6, transparent); top: -120px; left: -140px; }
.blob.b2 { width: 680px; height: 680px; background: radial-gradient(closest-side, #C8D7E8, transparent); top: 20%; right: -260px; opacity: .4; }
.blob.b3 { width: 420px; height: 420px; background: radial-gradient(closest-side, #9EC8E8, transparent); bottom: -160px; left: 30%; opacity: .35; }

/* Mobile-only Overlay-Headline — auf Desktop komplett verbergen */
.mobile-overlay-h1 { display: none; }

/* ========= HERO (komplett neu) ========= */
.hero {
  position: relative;
  padding: 56px 0 0;
  background: #fff;
  overflow: hidden;
  isolation: isolate;
  min-height: calc(100vh - 130px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-bg .mesh { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .55; }
.hero-bg .mesh.m1 { width: 620px; height: 620px; background: radial-gradient(closest-side, #BFE0F6, transparent 70%); top: -200px; left: -180px; }
.hero-bg .mesh.m2 { width: 760px; height: 760px; background: radial-gradient(closest-side, #DDE9F2, transparent 70%); bottom: -260px; right: -200px; opacity: .65; }
.hero-bg .mesh.m3 { width: 380px; height: 380px; background: radial-gradient(closest-side, #9EC8E8, transparent 70%); top: 32%; right: 38%; opacity: .35; }
.hero-bg .grain { position: absolute; inset: 0; width: 100%; height: 100%; mix-blend-mode: overlay; opacity: .22; pointer-events: none; }

.hero-container { position: relative; z-index: 2; }

/* vertical sidetag on left rail */
.sidetag {
  position: absolute;
  left: clamp(-4px, -1vw, 8px);
  top: 16%;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  font-family: var(--f-display);
  color: var(--blue);
}
.sidetag .num {
  font-weight: 700; font-size: 16px; letter-spacing: -.02em; color: var(--navy);
}
.sidetag .line { width: 1px; height: 84px; background: linear-gradient(180deg, var(--ice), transparent); }
.sidetag .t {
  writing-mode: vertical-rl; transform: rotate(180deg);
  font-size: 10.5px; font-weight: 600; letter-spacing: .35em; opacity: .8;
}
@media (max-width: 1180px) { .sidetag { display: none; } }

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .9fr;
  gap: clamp(30px, 4vw, 70px);
  align-items: start;
}
@media (min-width: 981px) {
  .hero-visual { margin-top: -80px; }
}
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 30px; } }

.hero-text .kicker { margin-bottom: 24px; animation: rise .9s ease both; }
.hero-text { position: relative; }

.hero-h1 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(34px, 4.0vw, 68px);
  line-height: 1;
  letter-spacing: -.04em;
  margin: 0 0 28px;
  color: var(--navy);
  min-height: 3.12em; /* reserve space for 3 lines so content below doesn't shift */
}
.hero-h1 .line-1 {
  display: block;
  background: linear-gradient(105deg, #021124 0%, #0A2540 25%, #1E4A74 65%, #4A8FBF 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-h1 .line-2 {
  display: block;
  margin-top: .04em;
  background: linear-gradient(95deg, #0A2540 0%, #1E4A74 50%, #4A8FBF 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-h1 .line-3 {
  display: block;
  margin-top: .04em;
}
/* typewriter cursor */
.hero-h1 .tw-cursor {
  display: inline-block;
  width: 3px;
  margin-left: 2px;
  background: var(--navy);
  animation: tw-blink .55s step-end infinite;
  vertical-align: baseline;
  height: 1.05em;
  transform: translateY(.08em);
}
.hero-h1 .line-1 .tw-cursor,
.hero-h1 .line-2 .tw-cursor { background: currentColor; }
@keyframes tw-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
/* animated gradient sweep on "Im Alltag" */
.grad-sweep {
  background: linear-gradient(95deg, #0A2540 0%, #1565A8 16%, #3D9BE0 32%, #8CC8F5 50%, #3D9BE0 68%, #1565A8 84%, #0A2540 100%);
  background-size: 300% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: sweep 3.5s ease-in-out infinite;
  display: inline-block;
  position: relative;
  padding-right: .04em;
}
.grad-sweep::after {
  content: "";
  position: absolute;
  left: 4%; right: 8%; bottom: -.06em;
  height: 7px;
  background: linear-gradient(90deg, transparent, var(--ice) 18%, var(--ice) 82%, transparent);
  border-radius: 4px;
  transform: skewX(-14deg);
  opacity: .9;
}
.dot-end { color: var(--ice); }

@keyframes sweep {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

.hero-lead {
  max-width: 56ch;
  font-size: clamp(16px, 1.15vw, 19px);
  color: var(--text);
  opacity: .82;
  margin: 0 0 32px;
  animation: rise .9s .25s ease both;
}
.hero-lead b { color: var(--navy); font-weight: 600; }

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin: 0 0 44px;
  animation: rise .9s .35s ease both;
}
.btn-lg { padding: 18px 30px; font-size: 15.5px; }
.btn-primary .arrow { width: 18px; height: 18px; }

.hero-meta {
  display: flex; align-items: center; gap: clamp(14px, 1.6vw, 28px);
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  animation: rise .9s .45s ease both;
}
.meta-item { display: flex; flex-direction: column; gap: 2px; }
.meta-num {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(28px, 2.4vw, 38px);
  letter-spacing: -.04em; line-height: 1;
  background: linear-gradient(160deg, var(--navy) 0%, var(--blue) 70%, var(--ice) 130%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.meta-num sup { font-size: .55em; font-weight: 600; vertical-align: super; }
.meta-lbl { font-family: var(--f-display); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); line-height: 1.35; }
.meta-sep { width: 1px; height: 38px; background: var(--line); }

/* right side visual */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 78vh;
}
.hero-visual .big-outline {
  position: absolute;
  top: -.12em; right: -5%;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(180px, 22vw, 340px);
  line-height: .8;
  letter-spacing: -.06em;
  color: transparent;
  -webkit-text-stroke: 2px rgba(127,182,230,.65);
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.hero-photo {
  position: absolute;
  inset: 0;
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
  overflow: hidden;
  z-index: 1;
  transition: transform .45s ease;
  transform-style: preserve-3d;
}
.hero-photo:hover {
  transform: perspective(800px) rotateY(-8deg) rotateX(4deg) scale(1.03);
}
/* 3D shadow behind clipped image */
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 6px -2px -2px 4px;
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
  background: rgba(10,37,64,.45);
  filter: blur(24px);
  z-index: 0;
  pointer-events: none;
  transition: filter .45s ease, transform .45s ease;
}
.hero-photo:hover ~ .hero-visual::after,
.hero-visual:hover::after {
  filter: blur(32px);
  transform: translateY(4px);
}
/* glow pulse behind diagonal image */
.hero-photo::before {
  content: ''; position: absolute; inset: -6px;
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
  background: linear-gradient(135deg, rgba(127,182,230,.5), rgba(10,37,64,.15));
  z-index: -1;
  filter: blur(18px);
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: .45; transform: scale(1); }
  50%      { opacity: .85; transform: scale(1.04); }
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 60% top;
  transform: scale(1.05); transform-origin: center top;
  transition: transform 8s ease;
}
.hero-photo:hover img { transform: scale(1.1); }
.hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 55%, rgba(10,37,64,.22) 100%),
    linear-gradient(95deg, rgba(10,37,64,.18) 0%, transparent 30%);
  pointer-events: none;
}

/* sticker badge */
.sticker {
  position: absolute;
  top: 24px; right: 24px;
  z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px;
  background: rgba(255,255,255,.92);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-radius: 999px;
  font-family: var(--f-display);
  font-size: 11px; font-weight: 600;
  letter-spacing: .22em;
  color: var(--navy);
  box-shadow: 0 8px 20px -8px rgba(10,37,64,.35);
}
.sticker .s-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2EC27E;
  box-shadow: 0 0 0 4px rgba(46,194,126,.18);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(46,194,126,.18); }
  50%      { box-shadow: 0 0 0 9px rgba(46,194,126,.0); }
}

/* dashed arc decoration */
.hero-visual .arc {
  position: absolute;
  width: 60%;
  height: auto;
  bottom: -8%;
  left: -10%;
  z-index: 0;
  animation: spin 60s linear infinite;
  pointer-events: none;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 980px) {
  .hero-visual { max-height: 60vh; aspect-ratio: 4/4.5; }
  .hero-photo { clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%); }
  .hero-visual .big-outline { display: none; }
}

/* bottom marquee */
.hero-marquee {
  margin-top: clamp(60px, 8vh, 100px);
  margin-inline: calc(50% - 50vw);
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 38px;
  white-space: nowrap;
  overflow: hidden;
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(244,247,250,.7);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.hero-marquee { display: block; position: relative; }
.hero-marquee .marquee-track {
  display: inline-flex; gap: 38px; align-items: center;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
  will-change: transform;
}
.hero-marquee .marquee-track span { display: inline-block; }
.hero-marquee .marquee-track .sep { color: var(--ice); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.hero-media {
  position: relative;
  aspect-ratio: 3 / 4;
  max-height: 78vh;
  overflow: hidden;
  border-top-left-radius: var(--radius);
  border-bottom-left-radius: var(--radius);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transform: scale(1.04); transform-origin: center top; transition: transform 6s ease; }
.hero-media:hover img { transform: scale(1.08); }
/* left edge merges into white text area */
.hero-media::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255,255,255,.7) 5%, rgba(255,255,255,0) 22%);
  z-index: 1;
  pointer-events: none;
}
/* subtle bottom darken for depth */
.hero-media::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 30%;
  background: linear-gradient(180deg, transparent, rgba(10,37,64,.16));
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 980px) {
  .hero-media { border-radius: var(--radius); max-height: none; }
  .hero-media::before { background: linear-gradient(180deg, rgba(255,255,255,.7) 0%, transparent 18%); }
}

/* -------- stats floating bar -------- */
.stats-wrap { position: relative; z-index: 4; }
.stats {
  margin-top: -70px;
  background: rgba(255,255,255,.85);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  backdrop-filter: saturate(180%) blur(18px);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: var(--shadow-xl);
  border-radius: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 32px clamp(24px, 3vw, 48px);
  gap: 20px;
}
.stats .stat { position: relative; padding-inline: 10px; }
.stats .stat + .stat::before {
  content: ""; position: absolute; left: -10px; top: 8px; bottom: 8px; width: 1px;
  background: linear-gradient(180deg, transparent, var(--line), transparent);
}
.stats .num {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(28px, 2.4vw, 40px);
  letter-spacing: -.04em; line-height: 1;
  background: linear-gradient(92deg, var(--navy), var(--blue));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 8px;
}
.stats .lbl { font-family: var(--f-display); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 780px) { .stats { grid-template-columns: repeat(2,1fr); } }

/* -------- section base -------- */
section { position: relative; }
.section {
  padding: clamp(80px, 12vh, 140px) 0;
  position: relative;
}
.section-head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 64px); }
.section-head h2 { margin-top: 14px; }

/* -------- Leistungen -------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 960px) { .svc-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 720px) { .svc-grid { grid-template-columns: 1fr; } }

.svc {
  position: relative;
  padding: 32px 28px;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.svc::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--ice), transparent);
  opacity: .4;
}
.svc::after {
  content: ""; position: absolute; left: 0; top: 24px; bottom: 24px; width: 3px;
  background: var(--ice);
  border-radius: 0 2px 2px 0;
  transition: background .25s ease, width .25s ease;
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc:hover::after { background: var(--navy); width: 5px; }
.svc .mono {
  font-family: var(--f-display); font-weight: 700;
  font-size: 40px; letter-spacing: -.06em;
  background: linear-gradient(180deg, var(--navy), var(--blue));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1; margin-bottom: 22px;
}
.svc h3 { margin-bottom: 10px; }
.svc p { margin: 0 0 18px; font-size: 15.5px; }
.svc .tag {
  display: inline-flex; align-items: center;
  font-family: var(--f-display); font-size: 11px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 7px 12px;
  background: var(--soft); color: var(--blue);
  border-radius: 999px;
}

.svc-overview {
  margin: 0 auto clamp(30px, 4vw, 48px);
  text-align: center;
  font-family: var(--f-display);
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--blue);
  padding: 14px 20px;
  background: var(--soft);
  border-radius: 999px;
  display: table;
  max-width: 100%;
}
.svc-focus { display: flex; flex-direction: column; }
.focus-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.focus-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--f-display);
  font-weight: 500;
  color: var(--text);
  font-size: 15px;
}
.focus-list li:last-child { border-bottom: none; }
.focus-list li::before {
  content: "→";
  color: var(--ice);
  margin-right: 10px;
  font-weight: 700;
}

/* -------- Über mich -------- */
.about-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(30px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 900px){ .about-grid { grid-template-columns: 1fr; } }
.about-media {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-xl);
  isolation: isolate;
  background: var(--cloud);
}
.about-media img { display: block; width: 100%; height: auto; object-fit: contain; }
.about-media::before {
  content:""; position:absolute; inset:-12% -12% auto auto; width: 55%; height: 55%;
  background: radial-gradient(closest-side, var(--ice-50), transparent 70%);
  filter: blur(40px); z-index: -1;
}
.about-text .lead { margin-bottom: 26px; }
.facts { list-style: none; padding: 0; margin: 26px 0 0; }
.facts li {
  display: grid; grid-template-columns: 180px 1fr; gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.facts li:last-child { border-bottom: none; }
.facts .k {
  font-family: var(--f-display); font-size: 11px; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--blue); padding-top: 4px;
}
.facts .v { color: var(--text); font-weight: 500; }
@media (max-width: 540px) { .facts li { grid-template-columns: 1fr; gap: 4px; } }

/* -------- Ablauf -------- */
.ablauf { background: linear-gradient(180deg, var(--soft) 0%, #fff 100%); position: relative; overflow: hidden; }
.ablauf .blob { opacity: .3; }
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
@media (max-width: 960px){ .steps { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px){ .steps { grid-template-columns: 1fr; } }
.step {
  position: relative;
  padding: 34px 28px 32px;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  overflow: hidden;
}
.step .n {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(78px, 8.5vw, 130px);
  letter-spacing: -.06em; line-height: .9;
  color: transparent;
  -webkit-text-stroke: 2px var(--ice);
  margin-bottom: 16px;
}
.step h3 { margin-bottom: 8px; }
.step p { margin: 0; font-size: 15px; }

/* -------- Preise -------- */
.price-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(24px, 5vw, 60px);
  align-items: center;
}
@media (max-width: 900px){ .price-grid { grid-template-columns: 1fr; } }
.price-cards { display: flex; flex-direction: column; gap: 18px; }
.pcard {
  position: relative;
  padding: 28px 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 20px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pcard::before {
  content:""; position:absolute; top:0; left:28px; right:28px; height:2px;
  background: linear-gradient(90deg, transparent, var(--ice), transparent);
}
.pcard .name {
  font-family: var(--f-display); font-weight: 600; font-size: 19px;
  color: var(--navy); margin-bottom: 4px; letter-spacing: -.01em;
}
.pcard .min {
  font-family: var(--f-display); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted);
}
.pcard .amt {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(34px, 3.4vw, 56px);
  letter-spacing: -.04em;
  background: linear-gradient(180deg, var(--navy), var(--blue));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.price-note {
  margin-top: 24px;
  font-size: 13px; color: var(--muted);
  padding-left: 14px; border-left: 2px solid var(--ice);
}

/* -------- Praxis Gallery (modern mosaic + lightbox) -------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}
.g-tile {
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  background: var(--cloud);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: var(--shadow-md);
  transition: transform .4s cubic-bezier(.2,.65,.2,1), box-shadow .4s ease;
  isolation: isolate;
}
.g-tile.g-w { grid-column: span 2; }      /* wide rooms — 3 per row */
.g-tile.g-t { grid-column: span 3; grid-row: span 2; }  /* 2 tall portraits — 2 per row */
.g-tile img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 1s ease, filter .5s ease;
  filter: saturate(.92);
}
.g-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.g-tile:hover img { transform: scale(1.07); filter: saturate(1.05); }
.g-tile:focus-visible { outline: 2px solid var(--ice); outline-offset: 3px; }

/* gradient & meta overlay */
.g-tile::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 35%, rgba(10,37,64,.55) 75%, rgba(10,37,64,.85) 100%);
  opacity: .85; transition: opacity .4s ease;
}
.g-tile:hover::before { opacity: 1; }
.g-meta {
  position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 2;
  display: flex; align-items: baseline; gap: 12px;
  color: #fff;
  font-family: var(--f-display);
  transform: translateY(8px); opacity: .9;
  transition: transform .4s ease, opacity .4s ease;
}
.g-tile:hover .g-meta { transform: none; opacity: 1; }
.g-num {
  font-weight: 700; font-size: 14px; letter-spacing: -.02em;
  color: var(--ice);
}
.g-cap {
  font-weight: 600; font-size: 13px; letter-spacing: .2em; text-transform: uppercase;
}
/* zoom hint icon */
.g-tile::after {
  content: "↗";
  position: absolute; top: 14px; right: 16px; z-index: 2;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.85);
  color: var(--navy);
  font-family: var(--f-display); font-weight: 700; font-size: 16px;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  transform: translate(6px,-6px) scale(.9); opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
}
.g-tile:hover::after { transform: none; opacity: 1; }

@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; }
  .g-tile.g-w { grid-column: span 2; }
  .g-tile.g-t { grid-column: span 2; grid-row: span 2; }
}
@media (max-width: 560px) {
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .g-tile.g-w, .g-tile.g-t { grid-column: auto; grid-row: auto; }
  .g-tile.g-t { aspect-ratio: 4/5; height: auto; min-height: 320px; }
}

/* ---- Lightbox ---- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(6, 18, 32, .92);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(20px, 4vw, 60px);
  animation: fadeIn .25s ease;
}
.lightbox[hidden] { display: none; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.lb-stage {
  margin: 0;
  max-width: 1100px;
  max-height: 88vh;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  animation: lbIn .35s cubic-bezier(.2,.65,.2,1);
}
@keyframes lbIn { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: none; } }
.lb-stage img {
  display: block;
  max-width: 100%;
  max-height: 78vh;
  width: auto; height: auto;
  border-radius: var(--radius);
  box-shadow: 0 40px 120px -20px rgba(0,0,0,.6);
}
.lb-stage figcaption {
  color: #fff;
  font-family: var(--f-display);
  display: flex; gap: 18px; align-items: baseline;
}
.lb-counter { color: var(--ice); font-weight: 700; font-size: 13px; }
.lb-cap { font-size: 13px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; opacity: .9; }

.lb-close, .lb-prev, .lb-next {
  position: absolute;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}
.lb-close { top: 24px; right: 28px; }
.lb-prev  { left: clamp(12px, 3vw, 36px); top: 50%; transform: translateY(-50%); }
.lb-next  { right: clamp(12px, 3vw, 36px); top: 50%; transform: translateY(-50%); }
.lb-close:hover { background: rgba(255,255,255,.2); transform: rotate(90deg); }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.4); }
.lb-prev:hover { transform: translateY(-50%) translateX(-3px); }
.lb-next:hover { transform: translateY(-50%) translateX(3px); }
.lb-close:focus-visible, .lb-prev:focus-visible, .lb-next:focus-visible { outline: 2px solid var(--ice); outline-offset: 3px; }

@media (max-width: 600px) { .lb-prev, .lb-next { width: 44px; height: 44px; } .lb-close { width: 44px; height: 44px; top: 16px; right: 16px; } }

.info-row {
  margin-top: 44px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
@media (max-width: 860px){ .info-row { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .info-row { grid-template-columns: 1fr; } }
.info-card {
  padding: 20px 22px;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.info-card .k { font-family: var(--f-display); font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--blue); margin-bottom: 6px; }
.info-card .v { font-family: var(--f-display); color: var(--text); font-size: 15px; font-weight: 500; }

.map-wrap {
  margin-top: 44px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 7;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Map-Consent — 2-Klick-Loesung fuer den OSM-iFrame (DSGVO Art. 6(1)(a) Einwilligung). */
.map-consent { position: relative; background: var(--cloud); }
.map-consent-placeholder {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  padding: 28px;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(127,182,230,.18), transparent 55%),
    radial-gradient(ellipse at 80% 90%, rgba(30,74,116,.10), transparent 60%),
    var(--cloud);
  text-align: center;
}
.map-consent-inner { max-width: 460px; }
.map-consent-icon { color: var(--blue); margin-bottom: 10px; display: inline-flex; }
.map-consent-placeholder h3 {
  font-family: var(--f-display, inherit);
  color: var(--navy);
  font-size: 22px;
  margin: 0 0 10px;
  letter-spacing: -.01em;
}
.map-consent-placeholder p {
  color: var(--muted);
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.55;
}
.map-consent-placeholder p a { color: var(--blue); text-decoration: underline; }
.map-consent-placeholder p a:hover { color: var(--navy); }
.map-consent-addr {
  font-weight: 600;
  color: var(--navy) !important;
  margin-top: 2px !important;
  margin-bottom: 18px !important;
  font-size: 14px !important;
}
.map-consent-btn { margin-top: 4px; }
.map-consent.loaded { background: transparent; }
.map-consent.loaded .map-consent-placeholder { display: none; }
@media (max-width: 480px) {
  .map-consent-placeholder { padding: 18px; }
  .map-consent-placeholder h3 { font-size: 18px; }
  .map-consent-placeholder p { font-size: 13px; }
}

/* -------- Kontakt -------- */
.kontakt {
  position: relative; overflow: hidden;
  background: radial-gradient(ellipse at 20% 0%, var(--soft), transparent 55%),
              radial-gradient(ellipse at 80% 100%, var(--ice-50), transparent 60%),
              #fff;
}
.kontakt::before {
  content:""; position:absolute; inset:0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: .18;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}
.kontakt-grid {
  display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(20px, 3vw, 36px);
  position: relative;
}
.kontakt-tabs { display: none; }
@media (max-width: 900px){ .kontakt-grid { grid-template-columns: 1fr; } }

.contact-info {
  padding: 36px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: var(--radius);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
}
.contact-info .row {
  display: grid; grid-template-columns: 110px 1fr; gap: 16px;
  padding: 14px 0; border-bottom: 1px solid var(--line); align-items: flex-start;
}
.contact-info .row:last-child { border-bottom: none; }
.contact-info .k { font-family: var(--f-display); font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--blue); padding-top: 4px; }
.contact-info .v { font-weight: 500; color: var(--text); }
.contact-info .v a:hover { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }

.contact-form {
  padding: 36px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: var(--radius);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: 16px;
}
.contact-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px){ .contact-form .row2 { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--f-display);
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--blue); font-weight: 600;
}
.field input, .field select, .field textarea {
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 15px;
  color: var(--text);
  transition: border-color .2s ease, box-shadow .2s ease;
  font-family: var(--f-body);
}
.field textarea { min-height: 140px; max-height: 420px; resize: vertical; line-height: 1.6; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(30,74,116,.12);
}
.consent { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: flex-start; font-size: 13.5px; color: var(--muted); }
.consent input { margin-top: 3px; accent-color: var(--navy); }
.consent a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }

/* -------- Footer -------- */
.site-footer {
  margin-top: 40px;
  position: relative;
  background: var(--navy);
  color: #C9DBEA;
  overflow: hidden;
  padding: clamp(56px, 8vw, 80px) 0 28px;
}
.site-footer::before, .site-footer::after {
  content:""; position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none;
}
.site-footer::before { width: 500px; height: 500px; background: radial-gradient(closest-side, rgba(127,182,230,.3), transparent); top: -150px; left: -140px; }
.site-footer::after  { width: 600px; height: 600px; background: radial-gradient(closest-side, rgba(30,74,116,.7), transparent); bottom: -220px; right: -180px; opacity: .7; }
.site-footer .container { position: relative; z-index: 2; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(24px, 3vw, 48px);
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
@media (max-width: 860px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px){ .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 72px; width: auto; filter: brightness(0) invert(1); opacity: .94; }
.footer-brand p { color: #8FA9C1; margin-top: 20px; max-width: 36ch; font-size: 14.5px; }
.site-footer h4 {
  color: #fff; font-family: var(--f-display); font-size: 12px; letter-spacing: .26em;
  text-transform: uppercase; margin-bottom: 18px; font-weight: 600;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { padding: 5px 0; font-size: 14.5px; color: #B6CADC; }
.site-footer a { transition: color .2s ease; }
.site-footer a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  padding-top: 26px;
  font-size: 12px; color: #8FA9C1;
  font-family: var(--f-display); letter-spacing: .02em;
}
.footer-disclaimer {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 11.5px;
  line-height: 1.6;
  color: #7A92A8;
  font-family: var(--f-display);
  letter-spacing: .01em;
  max-width: 90ch;
}

/* -------- Legal pages (Impressum / Datenschutz) -------- */
.legal-hero {
  position: relative;
  padding: clamp(80px, 12vh, 140px) 0 clamp(40px, 6vh, 60px);
  background:
    radial-gradient(ellipse at 20% 0%, var(--soft), transparent 55%),
    radial-gradient(ellipse at 80% 100%, var(--ice-50), transparent 60%),
    #fff;
}
.legal-hero .kicker { margin-bottom: 18px; }
.legal-hero h1 { font-size: clamp(44px, 5.5vw, 86px); letter-spacing: -.04em; margin-bottom: 18px; }
.legal-hero .lead { max-width: 64ch; }

.prose {
  max-width: 780px;
  margin-inline: auto;
}
.prose h2 {
  font-family: var(--f-display);
  font-size: clamp(20px, 1.6vw, 26px);
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--navy);
  margin: 48px 0 14px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.prose h2:first-of-type { margin-top: 0; border-top: none; padding-top: 0; }
.prose p { color: var(--text); opacity: .85; margin: 0 0 14px; font-size: 16px; line-height: 1.75; }
.prose p strong { color: var(--navy); font-weight: 600; }
.prose p em { color: var(--muted); font-style: italic; }
.prose ul { margin: 0 0 18px; padding-left: 20px; color: var(--text); opacity: .85; }
.prose ul li { padding: 4px 0; }
.prose a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.prose a:hover { color: var(--navy); text-decoration-thickness: 2px; }

/* credits link in footer */
.footer-bottom .credits a { color: #B6CADC; text-decoration: underline; text-underline-offset: 3px; transition: color .2s ease; }
.footer-bottom .credits a:hover { color: #fff; }

/* -------- reveal animation -------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.65,.2,1); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: .08s; }
.reveal.delay-2 { transition-delay: .16s; }
.reveal.delay-3 { transition-delay: .24s; }


/* ====== Mobile Sticky CTA (desktop ausgeblendet) ====== */
.mobile-cta {
  display: none;
  position: fixed;
  left: 14px; right: 14px;
  bottom: 14px;
  z-index: 90;
  gap: 10px;
  padding: 10px;
  background: rgba(255,255,255,.92);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(217,227,237,.8);
  border-radius: 16px;
  box-shadow: 0 20px 40px -12px rgba(10,37,64,.28), 0 8px 16px -6px rgba(10,37,64,.18);
  transform: translateY(140%);
  transition: transform .45s cubic-bezier(.2,.65,.2,1);
}
.mobile-cta.visible { transform: translateY(0); }
.mobile-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  border-radius: 12px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -.01em;
  transition: transform .2s ease, box-shadow .2s ease;
}
.mobile-cta-btn:active { transform: scale(.97); }
.mobile-cta-btn.call,
.mobile-cta-btn.mail {
  width: 52px;
  flex-shrink: 0;
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--line);
}
.mobile-cta-btn.primary {
  flex: 1;
  background: linear-gradient(180deg, var(--blue), var(--navy));
  color: #fff;
  box-shadow: 0 10px 20px -8px rgba(10,37,64,.45);
}

/* =========================================================
   MOBILE OPTIMIZATION (<=640px, <=480px)
   Desktop bleibt unberührt.
   ========================================================= */
@media (max-width: 640px) {
  /* Mobile Sticky CTA einblenden */
  .mobile-cta { display: flex; }
  /* Footer bottom padding, damit nichts hinter CTA verschwindet */
  .site-footer { padding-bottom: 100px; }

  /* Touch-Targets: Navigations-Links */
  .nav-links a { min-height: 44px; display: flex; align-items: center; }

  /* Tags etwas größer für Touch */
  .svc .tag { padding: 9px 14px; font-size: 11.5px; }

  /* Fixed Header — Hintergrund, Blur & Border fadet proportional zum Hero-Scroll ein (--hdr-alpha: 0 → 1). */
  .site-header {
    position: fixed !important;
    top: 0; left: 0; right: 0;
    background: rgba(255,255,255, calc(var(--hdr-alpha, 0) * 0.55)) !important;
    -webkit-backdrop-filter: blur(calc(var(--hdr-alpha, 0) * 14px)) saturate(calc(100% + var(--hdr-alpha, 0) * 40%)) !important;
    backdrop-filter: blur(calc(var(--hdr-alpha, 0) * 14px)) saturate(calc(100% + var(--hdr-alpha, 0) * 40%)) !important;
    border-bottom: 1px solid rgba(217,227,237, calc(var(--hdr-alpha, 0) * 0.6)) !important;
    padding: 14px 0 !important;
    transition: none !important;
  }
  .site-header .logo img {
    height: 68px !important;
    filter: none;
  }
  .site-header .burger {
    background: transparent !important;
    border: none !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    width: 40px; height: 40px;
  }
  .site-header .burger span { background: var(--navy); width: 22px; height: 2px; }
  /* Dropdown Menü auf Mobile immer mit dunklem Text */
  .nav-links {
    background: #fff !important;
    color: var(--navy);
  }
  .nav-links a { color: var(--navy) !important; }

  /* ============ MOBILE HERO: Editorial Overlay ============ */
  .hero {
    padding: 0;
    margin-top: 0;
    min-height: 0;
    overflow: visible;
    display: block;
    background: #fff;
    isolation: isolate;
  }
  .site-header { z-index: 60; }
  .hero-bg { display: none; }
  .hero .container.hero-container {
    position: relative;
    max-width: none;
    padding: 0;
    display: block;
  }
  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
  }
  /* Visual: sticky pinned am Top, fixe Pixel-Höhe, z-index ganz hinten — Content scrollt drüber weg */
  .hero-visual {
    order: -1;
    position: sticky !important;
    top: 0;
    margin: 0 !important;
    aspect-ratio: auto !important;
    width: 100%;
    height: 480px;
    min-height: 0 !important;
    max-height: none !important;
    overflow: hidden;
    z-index: 0;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  /* Auf Mobile kein Reveal-Transform auf Hero-Visual (würde beim Laden "springen") */
  .hero-visual.reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  /* Auch kein Reveal-Transform auf Hero-Text (enthält den restlichen Content unter dem Bild) */
  .hero-text.reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-visual .arc { display: none; }
  .hero-photo {
    position: absolute !important;
    inset: 0;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: hidden;
    clip-path: none !important;
  }
  .hero-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: 60% 18%;
    transform: none;
  }
  .hero-photo::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 32%, rgba(0,0,0,.5) 70%, rgba(0,0,0,.85) 100%);
    pointer-events: none;
    z-index: 2;
  }
  .hero-visual::before { display: none !important; }

  /* Mobile-only: Headline als Editorial-Overlay IM Bild */
  .mobile-overlay-h1 {
    display: block;
    position: absolute;
    left: 0; right: 0;
    bottom: 22px;
    padding: 0 20px;
    z-index: 10;
    color: #fff;
    font-family: var(--f-display), "Space Grotesk", sans-serif;
    font-size: clamp(42px, 12.5vw, 60px);
    font-weight: 700;
    line-height: .92;
    letter-spacing: -.035em;
    white-space: nowrap;
    pointer-events: none;
    text-shadow: 0 2px 14px rgba(0,0,0,.35);
  }
  .mobile-overlay-h1 span { display: block; }
  .mobile-overlay-h1 .line-3 {
    background: linear-gradient(95deg, #BFE0F6 0%, #7FB6E6 70%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
    text-shadow: none;
  }
  /* Originale H1 im Textblock auf Mobile verbergen (wird vom Overlay ersetzt) */
  .hero-text .hero-h1 { display: none !important; }
  /* "01" Outline auf Mobile ausgeblendet */
  .hero-visual .big-outline { display: none !important; }
  /* (GEÖFFNET-Chip entfernt) */
  /* Text block on white below */
  .hero-text {
    position: relative;
    z-index: 4;
    padding: 30px 22px 30px;
    background: #fff;
    color: var(--text);
  }
  .hero-text .kicker { color: var(--blue); margin-bottom: 14px; }
  .hero-text .kicker::before { background: var(--ice); width: 22px; }
  .hero-h1 {
    color: var(--navy);
    margin: 0 0 16px;
    font-size: 44px;
    line-height: 1;
  }
  .hero-h1 .line-1 {
    background: linear-gradient(105deg, #021124 0%, #0A2540 25%, #1E4A74 65%, #4A8FBF 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    -webkit-text-fill-color: transparent;
  }
  .hero-h1 .line-2 {
    background: linear-gradient(95deg, #0A2540 0%, #1E4A74 50%, #4A8FBF 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    -webkit-text-fill-color: transparent;
  }
  .hero-h1 .dot-end { color: var(--ice); }
  .hero-lead {
    color: var(--muted);
    opacity: 1;
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 20px;
    max-width: 40ch;
  }
  .hero-lead b { color: var(--navy); }
  .hero-actions {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
  }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .btn-lg { padding: 15px 20px; font-size: 14.5px; }
  .btn-primary {
    background: linear-gradient(180deg, var(--blue), var(--navy));
    color: #fff;
    box-shadow: 0 10px 22px -10px rgba(10,37,64,.45);
  }
  .btn-ghost {
    color: var(--navy);
    border-color: var(--line);
    background: #fff;
  }
  .hero-meta {
    gap: 18px;
    flex-wrap: wrap;
    padding-top: 18px;
    margin: 0;
    border-top: 1px solid var(--line);
  }
  .meta-sep { display: none; }
  .meta-num { font-size: 20px; }
  .sidetag { display: none !important; }
  /* Marquee auch auf Mobile sichtbar & horizontal scrollend */
  .hero-marquee {
    display: flex !important;
    margin-top: 0 !important;
    padding: 12px 0 !important;
    font-size: 11px !important;
    letter-spacing: .22em !important;
    gap: 28px !important;
    background: rgba(244,247,250,.8) !important;
    position: relative;
    z-index: 5;
  }
  .hero-marquee .marquee-track {
    gap: 28px !important;
    animation: marquee 20s linear infinite !important;
  }
  /* Scroll-Hint-Pfeil entfernen (würde mit Weiß-Hintergrund nicht mehr passen) */
  .hero::after { display: none; }

  /* Sections kompakter */
  .section { padding: clamp(56px, 10vh, 96px) 0; }
  .section-head { margin-bottom: clamp(28px, 5vw, 44px); }

  /* ===== Separator V2 — Diagonal Slice (alternierend) ===== */
  #ueber-mich,
  #praxis,
  #preise {
    background: linear-gradient(180deg, var(--soft) 0%, #F4F9FD 100%);
    clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
    padding-top: clamp(72px, 12vh, 110px);
    padding-bottom: clamp(72px, 12vh, 110px);
    margin-top: -20px;
    margin-bottom: -20px;
    position: relative;
    z-index: 1;
  }
  #leistungen,
  #ablauf,
  #kontakt {
    background: #fff;
    position: relative;
    z-index: 0;
  }
  /* Ablauf-Section bg-Override für Mobile (ursprünglich hat .ablauf eigene bg) */
  .ablauf { background: #fff !important; }
  .ablauf .blob { display: none; }
  /* Kontakt-Section bg-Override (Original hat radial gradients, auf Mobile vereinfachen) */
  .kontakt { background: #fff !important; }
  .kontakt::before { display: none; }

  /* Leistungen V3 — 2-spaltiges Tile Grid auf Mobile */
  .svc-grid { grid-template-columns: 1fr 1fr !important; gap: 10px; }
  .svc {
    padding: 16px 14px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--line);
  }
  .svc::after { display: none; }
  .svc .mono {
    font-size: 20px !important;
    letter-spacing: -.04em;
    margin-bottom: 10px !important;
    line-height: 1;
  }
  .svc h3 {
    font-size: 15px !important;
    margin-bottom: 6px !important;
    line-height: 1.2;
  }
  .svc p {
    font-size: 12.5px !important;
    line-height: 1.45;
    margin: 0 0 10px !important;
    color: var(--muted);
  }
  .svc .tag {
    font-size: 9.5px !important;
    padding: 5px 8px !important;
    letter-spacing: .14em;
  }
  /* Jede zweite Kachel als Feature (Navy) */
  .svc:nth-child(2n),
  .svc:nth-child(5) {
    background: linear-gradient(160deg, var(--navy), var(--blue));
    border-color: transparent;
  }
  .svc:nth-child(2n) .mono,
  .svc:nth-child(5) .mono {
    color: var(--ice) !important;
    -webkit-text-stroke: 0 !important;
    -webkit-text-fill-color: var(--ice);
    background: none !important;
  }
  .svc:nth-child(2n) h3,
  .svc:nth-child(5) h3 { color: #fff !important; }
  .svc:nth-child(2n) p,
  .svc:nth-child(5) p { color: #C9DBEA !important; }
  .svc:nth-child(2n) .tag,
  .svc:nth-child(5) .tag {
    background: rgba(255,255,255,.14) !important;
    color: #fff !important;
    border: none;
    box-shadow: none !important;
  }
  /* svc-focus in gleicher Größe wie andere Kacheln, Navy mit weißem Text */
  .svc.svc-focus {
    grid-column: auto;
    padding: 16px 14px;
    background: linear-gradient(160deg, var(--navy), var(--blue)) !important;
    border-color: transparent !important;
  }
  .svc.svc-focus .mono {
    color: var(--ice) !important;
    -webkit-text-stroke: 0 !important;
    -webkit-text-fill-color: var(--ice);
    background: none !important;
  }
  .svc.svc-focus h3 { color: #fff !important; }
  .svc.svc-focus .focus-list {
    margin-top: 6px;
    border-top: 1px solid rgba(255,255,255,.18);
    padding-top: 10px;
  }
  .svc.svc-focus .focus-list li {
    color: #fff !important;
    font-size: 13px;
    padding: 8px 0;
    border-bottom-color: rgba(255,255,255,.12) !important;
  }
  .svc.svc-focus .focus-list li::before { color: var(--ice) !important; }

  /* Ablauf V2 — Diagonal Accent Cards */
  .steps { gap: 12px; }
  .step {
    position: relative;
    padding: 18px 18px 18px 70px !important;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
  }
  .step::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 56px;
    background: linear-gradient(160deg, var(--navy), var(--blue));
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
  }
  .step .n {
    position: absolute;
    left: 12px; top: 14px;
    font-family: var(--f-display);
    font-weight: 800;
    font-size: 28px !important;
    line-height: 1 !important;
    color: #fff !important;
    -webkit-text-stroke: 0 !important;
    -webkit-text-fill-color: #fff;
    margin: 0 !important;
    z-index: 2;
  }
  .step h3 {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 15.5px !important;
    color: var(--navy);
    margin: 0 0 4px !important;
  }
  .step p {
    color: var(--muted);
    font-size: 12.5px !important;
    line-height: 1.5 !important;
    margin: 0 !important;
  }

  /* Preis V3 — Minimal Table Rows */
  .price-cards { gap: 0 !important; border-top: 1px solid var(--line); }
  .pcard {
    padding: 18px 0 !important;
    grid-template-columns: 1fr auto !important;
    gap: 14px !important;
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid var(--line) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    align-items: flex-end !important;
  }
  .pcard::before { display: none !important; }
  .pcard .name {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 15.5px !important;
    color: var(--navy);
    margin-bottom: 4px !important;
    letter-spacing: -.005em !important;
  }
  .pcard .min {
    font-family: var(--f-display);
    font-size: 10.5px !important;
    letter-spacing: .18em !important;
    text-transform: uppercase;
    color: var(--muted);
  }
  .pcard .amt {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 26px !important;
    letter-spacing: -.03em;
    color: var(--navy) !important;
    -webkit-text-fill-color: var(--navy);
    background: none !important;
    line-height: 1;
  }
  /* Price-Note als softbox mit Ice-Left-Border */
  .price-note {
    margin-top: 18px !important;
    padding: 12px 14px;
    background: var(--soft);
    border-left: 3px solid var(--ice);
    border-radius: 0 8px 8px 0;
    font-size: 11.5px !important;
    color: var(--muted) !important;
  }

  /* Facts in About */
  .facts li { grid-template-columns: 1fr; gap: 4px; padding: 12px 0; }

  /* Marquee overflow hart begrenzen */
  .hero-marquee { margin-inline: calc(50% - 50vw); max-width: 100vw; }
  body, html { overflow-x: clip; }

  /* Praxis V4 — Diagonal Overlap Tiles */
  .gallery {
    grid-template-columns: 1fr !important;
    grid-auto-rows: auto !important;
    gap: 0 !important;
  }
  .g-tile {
    aspect-ratio: 5 / 3;
    height: auto !important;
    min-height: 0 !important;
    grid-column: auto !important;
    grid-row: auto !important;
    border-radius: 0 !important;
    box-shadow: 0 14px 28px -14px rgba(10,37,64,.35);
    position: relative;
  }
  .g-tile:nth-child(odd) {
    clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
    border-radius: 18px 18px 0 0 !important;
  }
  .g-tile:nth-child(even) {
    clip-path: polygon(0 12%, 100% 0, 100% 100%, 0 100%);
    border-radius: 0 0 18px 18px !important;
    margin-top: -20px;
  }
  .g-tile:last-child {
    border-radius: 0 0 18px 18px !important;
  }
  .g-tile:first-child {
    border-radius: 18px 18px 0 0 !important;
  }
  .g-tile img {
    object-position: center 25% !important;
  }
  .g-tile::before {
    background: linear-gradient(180deg, transparent 50%, rgba(10,37,64,.7) 100%) !important;
  }
  .g-tile::after { display: none !important; }
  .g-meta {
    left: 18px !important;
    right: 18px !important;
    bottom: 14px !important;
    transform: none !important;
    opacity: 1 !important;
  }
  .g-num {
    color: var(--ice) !important;
    font-size: 11px !important;
    font-weight: 700;
    letter-spacing: .2em;
  }
  .g-cap {
    font-size: 13px !important;
    letter-spacing: .14em !important;
  }

  /* Kontakt V4 — Tabbed Interface */
  .kontakt-tabs {
    display: flex;
    gap: 4px;
    padding: 4px;
    background: var(--soft);
    border-radius: 999px;
    margin: 0 0 18px;
  }
  .kt-tab {
    flex: 1;
    padding: 11px 12px;
    border: none;
    background: transparent;
    border-radius: 999px;
    font-family: var(--f-display);
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: .02em;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, box-shadow .2s ease;
  }
  .kt-tab.active {
    background: #fff;
    color: var(--navy);
    box-shadow: 0 2px 6px rgba(10,37,64,.08);
  }
  /* Panels: default nur aktives anzeigen */
  .kontakt-grid [data-panel] { display: none; }
  .kontakt-grid .contact-info.active { display: block; }
  .kontakt-grid .contact-form.active { display: flex; flex-direction: column; gap: 16px; }
  .contact-info, .contact-form { padding: 24px 22px; }
  .contact-info .row { grid-template-columns: 1fr; gap: 4px; padding: 12px 0; }
  .contact-info .k { padding-top: 0; }

  /* Scroll-margin für Anchors: unter sticky Header */
  section[id] { scroll-margin-top: 86px; }

  /* Footer */
  .site-footer { padding-top: 48px; }
  .footer-bottom { justify-content: flex-start; font-size: 11.5px; }

  /* Stats */
  .stats { padding: 24px 20px; gap: 16px; margin-top: -40px; }
  .stats .num { font-size: 26px; }

  /* ===== Über mich V4 — Editorial Quote ===== */
  .about-grid {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    align-items: stretch !important;
    gap: 18px;
  }
  .about-text { order: 2; }
  .about-media {
    order: 1;
    width: 100%;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    border-radius: 18px;
    aspect-ratio: 4/3;
    overflow: visible;
    box-shadow: 0 20px 40px -20px rgba(10,37,64,.3);
    margin-bottom: 30px;
  }
  .about-media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 15%;
    border-radius: 18px;
    position: absolute;
    inset: 0;
  }
  /* "01" Outline-Ziffer unten rechts am Portrait */
  .about-media::after {
    content: "01";
    position: absolute;
    bottom: -36px;
    right: 10px;
    font-family: var(--f-display);
    font-weight: 800;
    font-size: 90px;
    line-height: .82;
    letter-spacing: -.06em;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--ice);
    z-index: 2;
    pointer-events: none;
  }
  /* Erstes Lead-Paragraph als editorialer Quote */
  .about-text .lead:first-of-type {
    font-family: var(--f-display);
    font-size: 16px;
    font-weight: 500;
    font-style: italic;
    line-height: 1.35;
    color: var(--navy);
    margin: 20px 0 16px;
    padding-left: 14px;
    border-left: 3px solid var(--ice);
  }
  /* Zweites Lead als normaler Fließtext */
  .about-text .lead + .lead { font-size: 13.5px; color: var(--muted); }
  /* Qualifikationen Überschrift */
  .about-text h3 {
    font-family: var(--f-display);
    font-size: 11px !important;
    letter-spacing: .22em !important;
    text-transform: uppercase !important;
    color: var(--blue);
    margin-top: 24px !important;
    font-weight: 600;
  }
  /* Qualifikationen-Facts als 2×col Stat-Tiles */
  .facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0 !important;
    margin: 10px 0 0 !important;
    list-style: none;
  }
  .facts li {
    display: block !important;
    grid-template-columns: none !important;
    gap: 0 !important;
    padding: 12px 14px !important;
    border-bottom: none !important;
    background: var(--soft);
    border-radius: 12px;
  }
  .facts .k {
    display: block;
    font-size: 9.5px !important;
    letter-spacing: .2em !important;
    text-transform: uppercase;
    color: var(--blue);
    font-family: var(--f-display);
    font-weight: 600;
    padding-top: 0 !important;
    margin-bottom: 4px;
  }
  .facts .v {
    display: block;
    font-family: var(--f-display);
    font-size: 14px !important;
    font-weight: 600;
    color: var(--navy) !important;
    line-height: 1.2;
  }

  /* ===== Section Kicker: animierter Akzent-Strich ===== */
  .section-head .kicker::before { animation: kickerDash 2.2s ease-in-out infinite; }
  @keyframes kickerDash {
    0%, 100% { width: 22px; opacity: .6; }
    50% { width: 40px; opacity: 1; }
  }

  /* ===== Chip-Style für Service Tags ===== */
  .svc .tag {
    background: linear-gradient(180deg, var(--soft), #fff);
    border: 1px solid var(--line);
    box-shadow: 0 2px 6px -2px rgba(10,37,64,.1);
  }

  /* ===== Service-Karten mit subtiler Hover-Akzent-Line ===== */
  .svc::after { left: 0; top: 0; bottom: 0; width: 4px; opacity: .6; }

  /* ===== Scroll-Hint im Hero (animierter Pfeil) ===== */
  .hero::after {
    content: "";
    position: absolute;
    left: 50%; bottom: 14px;
    transform: translateX(-50%);
    width: 26px; height: 26px;
    border-right: 2px solid rgba(255,255,255,.75);
    border-bottom: 2px solid rgba(255,255,255,.75);
    transform-origin: center;
    animation: scrollHint 1.8s ease-in-out infinite;
    z-index: 3;
    pointer-events: none;
    opacity: .85;
  }
  @keyframes scrollHint {
    0%   { transform: translateX(-50%) rotate(45deg) translateY(-6px); opacity: 0; }
    40%  { opacity: .9; }
    80%  { transform: translateX(-50%) rotate(45deg) translateY(6px); opacity: 0; }
    100% { opacity: 0; }
  }
}

@media (max-width: 480px) {
  body { font-size: 16px; line-height: 1.6; }
  h2 { font-size: clamp(28px, 8vw, 40px); }

  /* Hero kompakter auf kleinen Phones — fixe px, damit sticky nicht springt */
  .hero-visual { height: 420px !important; min-height: 0 !important; max-height: none !important; }
  .hero-visual .big-outline { font-size: 82px !important; right: 12px !important; bottom: -16px; }
  .hero-text { padding: 26px 20px 26px; }
  .hero-h1 { font-size: 40px; margin-bottom: 14px; }
  .hero-lead { font-size: 13.5px; margin-bottom: 18px; }
  .grad-sweep::after { height: 5px; bottom: -.02em; }
  .hero-meta { gap: 14px; padding-top: 14px; }
  .meta-num { font-size: 18px; }
  .meta-lbl { font-size: 10px; }

  /* Buttons kompakter */
  .btn-lg { padding: 14px 20px; font-size: 14px; width: 100%; justify-content: center; }

  /* Stats nur 2-spaltig (falls stats existiert) */
  .stats { grid-template-columns: repeat(2, 1fr); margin-top: -30px; padding: 20px 16px; }
  .stats .stat + .stat::before { display: none; }

  /* Service-Titel */
  .svc h3 { font-size: 18px; }
  .svc p { font-size: 14.5px; }

  /* Legal Pages */
  .legal-hero h1 { font-size: clamp(34px, 9vw, 48px); }

  /* Lightbox Padding schmaler */
  .lightbox { padding: 14px; }
  .lb-stage figcaption { gap: 10px; font-size: 12px; }

  /* Footer einspaltig (bereits aktiv via 480px Regel oben), Brand-Text */
  .footer-brand img { height: 60px; }
}

/* Extra-klein (<=360px) */
@media (max-width: 360px) {
  .hero-h1 { font-size: 28px; }
  .btn { padding: 14px 20px; font-size: 14px; }
  .btn-cta { padding: 9px 16px; font-size: 13px; }
}
