/* ============================================================
   Zahnarztpraxis Paus, cinematic monochrome
   Recreation of the "White Dental" reference, rebranded (DE)
   Font: Hanken Grotesk (self-hosted, variable, latin + latin-ext)
   ============================================================ */

@font-face {
  font-family: "Hanken Grotesk";
  src: url("fonts/hanken-latin.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("fonts/hanken-latin-ext.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- tokens ---------- */
:root {
  --ink: #0a0a0b;
  --ink-2: #101012;
  --ink-3: #17171a;
  --line-d: rgba(255, 255, 255, 0.16);
  --line-d-soft: rgba(255, 255, 255, 0.09);
  --on-d: #f3f3f1;
  --on-d-mut: rgba(243, 243, 241, 0.56);
  --on-d-dim: rgba(243, 243, 241, 0.38);

  --paper: #fbfbf9;
  --paper-2: #f1f1ee;
  --line-l: rgba(10, 10, 11, 0.14);
  --on-l: #101011;
  --on-l-mut: rgba(16, 16, 17, 0.56);

  --maxw: 1360px;
  --pad: clamp(1.15rem, 4vw, 3.25rem);
  --radius: 14px;

  --e: cubic-bezier(0.16, 1, 0.3, 1);
  --font: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font);
  background: var(--ink);
  color: var(--on-d);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--on-d); color: var(--ink); }

/* ---------- shared type ---------- */
.display { font-weight: 800; line-height: 0.9; letter-spacing: -0.035em; }
.eyebrow { font-size: 0.78rem; letter-spacing: 0.02em; color: var(--on-d-mut); font-weight: 500; }
.section-note { font-size: clamp(0.82rem, 1vw, 0.94rem); line-height: 1.55; color: var(--on-d-mut); max-width: 30ch; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }

/* section theming */
.section { position: relative; }
.section--dark { background: var(--ink); color: var(--on-d); }
.section--paper { background: var(--paper); color: var(--on-l); }
.section--paper .eyebrow { color: var(--on-l-mut); }
.section--paper .section-note { color: var(--on-l-mut); }

.bracket { width: 34px; height: 34px; border-left: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; opacity: 0.5; }

.arrow { flex: none; width: 1.15em; height: 1.15em; stroke: currentColor; fill: none; stroke-width: 1.6; transition: transform 0.5s var(--e); }

/* skip link (a11y) */
.skip-link { position: fixed; top: 0; left: 0; z-index: 100; background: var(--on-d); color: var(--ink); padding: 0.7rem 1.1rem; border-radius: 0 0 8px 0; font-weight: 600; font-size: 0.9rem; transform: translateY(-120%); transition: transform 0.25s var(--e); }
.skip-link:focus { transform: translateY(0); outline: none; }
main:focus { outline: none; }

/* ============================================================ NAV ============================================================ */
.topbar {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.9rem var(--pad);
  transform: translateY(-105%);
  transition: transform 0.5s var(--e), background 0.4s var(--e);
  border-bottom: 1px solid transparent;
}
.topbar.is-visible { transform: translateY(0); }
.topbar.on-dark { background: rgba(10, 10, 11, 0.86); backdrop-filter: blur(14px); border-bottom-color: var(--line-d-soft); color: var(--on-d); }
.topbar.on-paper { background: rgba(251, 251, 249, 0.9); backdrop-filter: blur(14px); border-bottom-color: var(--line-l); color: var(--on-l); }

.brand { font-weight: 800; font-size: 1.08rem; letter-spacing: -0.02em; white-space: nowrap; }
.brand span { font-weight: 500; opacity: 0.6; }

.topbar-right { display: flex; align-items: center; gap: 1.6rem; }
.topbar-tel { font-weight: 600; font-size: 0.98rem; white-space: nowrap; }
.topbar-tel:hover { opacity: 0.7; }

.burger { --bw: 30px; width: var(--bw); height: 20px; position: relative; background: none; border: 0; flex: none; }
.burger span { position: absolute; left: 0; height: 1.8px; width: 100%; background: currentColor; transition: transform 0.4s var(--e), opacity 0.3s var(--e), top 0.4s var(--e); }
.burger span:nth-child(1) { top: 4px; }
.burger span:nth-child(2) { top: 14px; }
.burger.is-open span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.burger.is-open span:nth-child(2) { top: 9px; transform: rotate(-45deg); }

.menu {
  position: fixed; inset: 0; z-index: 55; background: var(--ink); color: var(--on-d);
  display: grid; grid-template-rows: auto 1fr auto; padding: 1.5rem var(--pad) 2.5rem;
  clip-path: inset(0 0 100% 0); transition: clip-path 0.7s var(--e); pointer-events: none;
}
.menu.is-open { clip-path: inset(0 0 0 0); pointer-events: auto; }
.menu-head { display: flex; justify-content: space-between; align-items: center; }
.menu-close { background: none; border: 0; color: inherit; font-size: 1.6rem; line-height: 1; }
.menu-nav { align-self: center; display: grid; gap: clamp(0.2rem, 1.5vw, 0.6rem); }
.menu-nav a { font-weight: 800; letter-spacing: -0.03em; font-size: clamp(2.4rem, 8vw, 5.5rem); line-height: 1.02; color: var(--on-d-dim); transition: color 0.35s var(--e), transform 0.5s var(--e); width: fit-content; }
.menu-nav a:hover { color: var(--on-d); transform: translateX(0.4rem); }
.menu-foot { display: flex; flex-wrap: wrap; gap: 0.6rem 2rem; color: var(--on-d-mut); font-size: 0.92rem; }

/* ============================================================ HERO ============================================================ */
.hero { min-height: 100dvh; padding: clamp(0.9rem, 2.5vw, 1.8rem); display: flex; }
.hero-frame { position: relative; flex: 1; border: 1px solid var(--line-d); border-radius: var(--radius); overflow: hidden; display: grid; grid-template-rows: auto 1fr auto; isolation: isolate; }
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 72% 35%; filter: grayscale(1) contrast(1.02) brightness(0.92); }
.hero-frame::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, var(--ink) 0%, rgba(10,10,11,0.86) 34%, rgba(10,10,11,0.34) 62%, rgba(10,10,11,0.62) 100%); }

.hero-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: clamp(1rem, 2.2vw, 1.7rem) clamp(1.1rem, 2.6vw, 2.2rem); border-bottom: 1px solid var(--line-d-soft); }
.hero-mid { display: flex; flex-direction: column; justify-content: center; padding: clamp(1rem,3vw,1.5rem) clamp(1.1rem, 2.6vw, 2.2rem); gap: 1.5rem; }
.hero-h1 { font-size: clamp(2.9rem, 8.2vw, 7.2rem); max-width: 15ch; }
.hero-h1 .line { display: block; overflow: hidden; }
.hero-h1 .line > span { display: block; will-change: transform; }
.hero-intro { align-self: flex-end; max-width: 30ch; margin-left: auto; font-size: clamp(0.86rem, 1vw, 0.98rem); line-height: 1.55; color: var(--on-d-mut); text-align: left; }
.hero-bot { display: grid; grid-template-columns: auto 1fr 1fr auto; align-items: end; gap: clamp(1rem, 3vw, 2.5rem); padding: clamp(1.1rem, 2.4vw, 1.9rem) clamp(1.1rem, 2.6vw, 2.2rem); border-top: 1px solid var(--line-d-soft); }
.meta-label { font-size: 0.74rem; color: var(--on-d-mut); margin-bottom: 0.35rem; }
.meta-value { font-weight: 600; font-size: clamp(0.9rem, 1.1vw, 1.05rem); line-height: 1.3; }

.pill { display: inline-flex; align-items: center; gap: 0.9rem; background: var(--on-d); color: var(--ink); border: 1px solid var(--on-d); border-radius: 999px; padding: 0.55rem 0.55rem 0.55rem 1.5rem; font-weight: 600; font-size: 1rem; white-space: nowrap; transition: transform 0.4s var(--e), background 0.3s var(--e), color 0.3s var(--e); }
.pill .pill-ic { width: 2.5rem; height: 2.5rem; flex: none; display: grid; place-items: center; background: var(--ink); color: var(--on-d); border-radius: 999px; transition: transform 0.5s var(--e); }
.pill:hover { transform: translateY(-2px); }
.pill:hover .pill-ic { transform: rotate(-45deg); }
.pill:active { transform: translateY(0) scale(0.99); }
.section--paper .pill { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.section--paper .pill .pill-ic { background: var(--paper); color: var(--ink); }

/* ============================================================ ABOUT ============================================================ */
.about { padding-block: clamp(4rem, 9vw, 8rem); overflow: hidden; }
.about-lead { font-size: clamp(2.1rem, 5.6vw, 5.2rem); max-width: 20ch; }
.about-tag { position: absolute; top: clamp(2rem,5vw,3.4rem); }
.about-grid { position: relative; margin-top: clamp(3rem, 8vw, 7rem); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; min-height: min(52vw, 640px); }
.about-hand { position: absolute; z-index: 0; pointer-events: none; width: clamp(180px, 28vw, 420px); filter: grayscale(1) contrast(1.1) brightness(1.05); opacity: 0.92; }
.about-hand.left { left: -2%; bottom: -14%; }
.about-hand.right { right: -2%; top: -18%; transform: scaleX(-1); }
.about-col { position: relative; z-index: 1; max-width: 34ch; }
.about-col:nth-child(2) { justify-self: end; margin-top: clamp(2rem, 10vw, 8rem); }
.about-col h3 { font-size: clamp(1.5rem, 2.4vw, 2.1rem); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.9rem; }
.about-col p { color: var(--on-d-mut); font-size: 0.98rem; line-height: 1.65; }

/* ============================================================ TRUST ============================================================ */
.trust { padding-block: clamp(3rem, 7vw, 6rem); overflow: hidden; }
.trust-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.trust-media { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5; background: var(--ink-3); }
.trust-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05) brightness(0.85); }
.trust-body { display: flex; flex-direction: column; gap: clamp(1.6rem, 3vw, 2.6rem); }
.trust-h2 { font-size: clamp(2.6rem, 6vw, 5.4rem); }
.trust-points { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.4rem, 3vw, 2.4rem); }
.trust-point h4 { font-size: clamp(1.15rem, 1.6vw, 1.4rem); font-weight: 700; letter-spacing: -0.01em; margin-bottom: 0.55rem; }
.trust-point p { color: var(--on-d-mut); font-size: 0.9rem; line-height: 1.6; }

/* ============================================================ LEISTUNGEN (opens to the RIGHT) ============================================================ */
.leist { padding-block: clamp(3.5rem, 8vw, 7rem); }
.leist-head { display: grid; grid-template-columns: 1fr auto; align-items: start; gap: 2rem; margin-bottom: clamp(1.5rem, 4vw, 3rem); }
.leist-title { font-size: clamp(3.2rem, 10vw, 8rem); color: var(--on-l); }
.leist-list { border-top: 1px solid var(--line-l); }
.acc-head { width: 100%; max-width: 52%; background: none; border: 0; color: var(--on-l); display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: clamp(0.85rem, 1.8vw, 1.2rem) 0.2rem; border-bottom: 1px solid var(--line-l); font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 600; letter-spacing: -0.01em; text-align: left; max-height: 6rem; overflow: hidden; transition: padding-left 0.4s var(--e), opacity 0.4s var(--e), max-height 0.5s var(--e), border-color 0.3s var(--e); }
.acc-head:hover { padding-left: 0.7rem; }
.acc-head .arrow { transition: transform 0.5s var(--e); }
.acc.is-open > .acc-head { max-height: 0; padding-top: 0; padding-bottom: 0; opacity: 0; border-color: transparent; pointer-events: none; }
.acc-panel { overflow: hidden; height: 0; transition: height 0.55s var(--e); }
.acc-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 3.5vw, 3.5rem); padding: clamp(1.1rem, 2.4vw, 1.9rem) 0.2rem clamp(1.6rem, 3vw, 2.4rem); align-items: start; border-top: 1px solid var(--line-l); border-bottom: 1px solid var(--line-l); }
.acc-media { border-radius: 10px; overflow: hidden; aspect-ratio: 16 / 11; background: var(--paper-2); }
.acc-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.03); }
.acc-detail-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 1.1rem; }
.acc-detail-head h4 { font-size: clamp(1.35rem, 2.2vw, 1.9rem); font-weight: 700; letter-spacing: -0.015em; line-height: 1.05; }
.acc-close { flex: none; width: 2.4rem; height: 2.4rem; border-radius: 999px; border: 1px solid var(--line-l); background: none; color: var(--on-l); display: grid; place-items: center; margin-top: 0.15rem; transition: background 0.3s var(--e), color 0.3s var(--e), transform 0.4s var(--e); }
.acc-close:hover { background: var(--ink); color: var(--paper); }
.acc-close:active { transform: scale(0.92); }
.acc-detail p { color: var(--on-l-mut); font-size: 0.96rem; line-height: 1.7; margin-bottom: 0.9rem; max-width: 46ch; }
.acc-detail .pill { margin-top: 0.6rem; }
@media (max-width: 860px) { .acc-head { max-width: 100%; } .acc-inner { grid-template-columns: 1fr; gap: 1.2rem; } }

/* ============================================================ TEAM ============================================================ */
.team { padding-block: clamp(3.5rem, 8vw, 7rem); }
.team-head { display: grid; grid-template-columns: 1.4fr 1fr; align-items: end; gap: 2rem; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.team-h2 { font-size: clamp(2.6rem, 6.4vw, 5.6rem); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(0.8rem, 1.6vw, 1.3rem); }
.member { position: relative; border-radius: 10px; overflow: hidden; background: var(--ink-3); }
.member--wide { grid-column: span 2; }
.member-photo { aspect-ratio: 1 / 1; overflow: hidden; }
.member--wide .member-photo { aspect-ratio: 2 / 1; }
.member-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.02) brightness(0.9); transition: transform 0.8s var(--e), filter 0.6s var(--e); }
.member:hover .member-photo img { transform: scale(1.05); filter: grayscale(1) contrast(1.05) brightness(1); }
.member-cap { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; padding: 0.85rem 0.95rem; border-top: 1px solid var(--line-d-soft); }
.member-cap b { font-weight: 700; font-size: 1rem; letter-spacing: -0.01em; }
.member-cap small { display: block; color: var(--on-d-mut); font-size: 0.78rem; font-weight: 500; margin-top: 0.1rem; }
.team-note { display: flex; flex-direction: column; gap: 1rem; padding-bottom: 0.5rem; }
.team-cta { display: inline-flex; align-items: center; gap: 0.6rem; font-weight: 700; font-size: 1.15rem; border-bottom: 1.5px solid currentColor; padding-bottom: 0.35rem; width: fit-content; transition: gap 0.4s var(--e); }
.team-cta:hover { gap: 1rem; }

/* ============================================================ ABLAUF ============================================================ */
.ablauf { padding-block: clamp(3.5rem, 8vw, 7rem); overflow: hidden; }
.ablauf-h2 { font-size: clamp(2.4rem, 6.2vw, 5.6rem); text-align: right; margin-left: auto; max-width: 18ch; }
.ablauf-h2 .tooth { display: inline-block; width: clamp(2.2rem, 5vw, 4.4rem); vertical-align: -0.12em; margin-inline: 0.2rem; }
.ablauf-grid { margin-top: clamp(2.5rem, 6vw, 5rem); display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.screen { position: relative; }
.screen-frame { border: 1px solid var(--line-d); border-radius: 10px; overflow: hidden; aspect-ratio: 16 / 10; background: #060607; position: relative; }
.screen-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.7s var(--e); display: grid; place-items: center; }
.screen-slide.is-active { opacity: 1; }
.screen-slide img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05) brightness(0.9); }
.screen-stand { width: 1.5px; height: clamp(28px, 5vw, 60px); background: var(--line-d); margin: 0 auto; }
.screen-foot { width: clamp(80px, 16vw, 150px); height: 1.5px; background: var(--line-d); margin: 0 auto; }
.ablauf-panel { display: flex; flex-direction: column; gap: clamp(1.3rem, 2.4vw, 1.9rem); min-height: 300px; }
.step { display: none; flex-direction: column; gap: 0.7rem; }
.step.is-active { display: flex; animation: fadeUp 0.6s var(--e) both; }
.step-index { font-size: 0.82rem; color: var(--on-d-mut); font-weight: 600; letter-spacing: 0.02em; }
.step h4 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); font-weight: 700; letter-spacing: -0.015em; }
.step p { color: var(--on-d-mut); font-size: 0.98rem; line-height: 1.65; max-width: 42ch; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.ablauf-ctrl { display: flex; align-items: center; gap: 1rem; margin-top: auto; }
.nav-round { width: 3rem; height: 3rem; border-radius: 999px; flex: none; border: 1px solid var(--line-d); background: none; color: var(--on-d); display: grid; place-items: center; transition: background 0.3s var(--e), color 0.3s var(--e), transform 0.3s var(--e); }
.nav-round:hover { background: var(--on-d); color: var(--ink); }
.nav-round:active { transform: scale(0.94); }
.ablauf-dots { display: flex; gap: 0.5rem; margin-left: 0.4rem; }
.ablauf-dots button { width: 8px; height: 8px; border-radius: 999px; border: 0; background: var(--on-d-dim); transition: background 0.3s, width 0.3s; }
.ablauf-dots button.is-active { background: var(--on-d); width: 22px; }

/* ============================================================ KONTAKT + form ============================================================ */
.kontakt { padding-block: clamp(3.5rem, 8vw, 7rem); overflow: hidden; }
.kontakt-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; position: relative; }
.kontakt-h2 { font-size: clamp(2.6rem, 7vw, 6rem); color: var(--on-l); max-width: 14ch; }
.kontakt-meta { margin-top: clamp(2rem, 5vw, 3.5rem); display: flex; gap: clamp(2rem, 5vw, 4rem); flex-wrap: wrap; }
.kontakt-meta .meta-label { color: var(--on-l-mut); }
.kontakt-meta .meta-value { color: var(--on-l); }
.form-wrap { position: relative; z-index: 2; }
.form-card { background: var(--ink); color: var(--on-d); border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: 0 30px 70px -30px rgba(0,0,0,0.5); }
.form-card .form-note { color: var(--on-d-mut); font-size: 0.86rem; margin-bottom: 1.4rem; line-height: 1.55; }
.field { display: grid; gap: 0.4rem; margin-bottom: 1.15rem; }
.field label { font-size: 0.8rem; color: var(--on-d-mut); font-weight: 500; }
.field input, .field select, .field textarea { width: 100%; background: transparent; border: 0; border-bottom: 1px solid var(--line-d); color: var(--on-d); font-family: inherit; font-size: 1rem; padding: 0.5rem 0.1rem; transition: border-color 0.3s var(--e); }
.field textarea { resize: vertical; min-height: 2.4rem; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23f3f3f1' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.1rem center; }
.field select option { background: var(--ink-2); color: var(--on-d); }
.field input::placeholder, .field textarea::placeholder { color: var(--on-d-dim); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--on-d); }
.field.invalid input, .field.invalid select { border-color: #ff6b6b; }
.field .err { font-size: 0.74rem; color: #ff8a8a; min-height: 0; }
.form-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; margin-top: 1.4rem; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem; border-radius: 999px; padding: 0.85rem 1.1rem; font-weight: 600; font-size: 0.95rem; border: 1px solid var(--on-d); transition: transform 0.3s var(--e), background 0.3s, color 0.3s, opacity 0.3s; }
.btn:active { transform: scale(0.98); }
.btn--wa { background: var(--on-d); color: var(--ink); }
.btn--wa:hover { background: #fff; }
.btn--mail { background: transparent; color: var(--on-d); }
.btn--mail:hover { background: rgba(255,255,255,0.08); }
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.form-hand { position: absolute; right: -8%; bottom: -22%; z-index: 1; width: clamp(220px, 32vw, 480px); filter: grayscale(1) contrast(1.1) brightness(1.05); pointer-events: none; }
.form-success { display: none; text-align: left; }
.form-success.show { display: block; animation: fadeUp 0.5s var(--e) both; }
.form-success h4 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.6rem; }
.form-success p { color: var(--on-d-mut); font-size: 0.94rem; line-height: 1.6; margin-bottom: 1.2rem; }

/* ============================================================ FOOTER ============================================================ */
.footer { background: var(--ink); color: var(--on-d); padding-block: clamp(2.5rem, 5vw, 4rem) clamp(1.6rem, 3vw, 2.2rem); border-top: 1px solid var(--line-d-soft); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.footer-brand { font-size: clamp(2.4rem, 6vw, 4.4rem); font-weight: 800; letter-spacing: -0.03em; line-height: 0.95; }
.footer-col h5 { font-size: 0.78rem; color: var(--on-d-mut); font-weight: 500; margin-bottom: 1rem; letter-spacing: 0.02em; }
.footer-col a, .footer-col p { display: block; color: var(--on-d); font-size: 0.94rem; line-height: 1.9; opacity: 0.86; }
.footer-col a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 3px; }
.footer-bot { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.6rem 1.5rem; margin-top: clamp(2rem, 5vw, 3.5rem); padding-top: 1.4rem; border-top: 1px solid var(--line-d-soft); color: var(--on-d-mut); font-size: 0.82rem; }
.footer-bot a:hover { color: var(--on-d); }

/* ============================================================ FAB ============================================================ */
.fab { position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem); z-index: 50; width: 3.5rem; height: 3.5rem; border-radius: 999px; background: var(--on-d); color: var(--ink); display: grid; place-items: center; box-shadow: 0 12px 30px -8px rgba(0,0,0,0.6); transform: translateY(120%); transition: transform 0.5s var(--e); }
.fab.show { transform: translateY(0); }
.fab:hover { transform: translateY(-3px); }
.fab svg { width: 1.7rem; height: 1.7rem; }

/* ============================================================ Reveal ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--e), transform 0.8s var(--e); }
.reveal.in { opacity: 1; transform: none; }
.js .hero-h1 .line > span { transform: translateY(110%); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .js .hero-h1 .line > span { transform: none; }
  .step.is-active { animation: none; }
}

/* ============================================================ RESPONSIVE ============================================================ */
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 860px) {
  .hero-intro { display: none; }
  .hero-bot { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .hero-bot .pill { grid-column: 1 / -1; justify-self: start; }
  .hero-media img { object-position: 68% 30%; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; min-height: 0; }
  .about-col { max-width: none; }
  .about-col:nth-child(2) { justify-self: start; margin-top: 0; }
  .about-hand { display: none; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-media { aspect-ratio: 16 / 12; }
  .leist-head { grid-template-columns: 1fr; }
  .team-head { grid-template-columns: 1fr; align-items: start; gap: 1.2rem; }
  .ablauf-grid { grid-template-columns: 1fr; }
  .ablauf-h2 { text-align: left; }
  .kontakt-grid { grid-template-columns: 1fr; }
  .form-hand { display: none; }
}
@media (max-width: 560px) {
  .trust-points { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .member--wide { grid-column: auto; }
  .member--wide .member-photo { aspect-ratio: 3 / 2; }
  .form-actions { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bot { flex-direction: column; }
  .topbar-tel { display: none; }
}
@media (pointer: coarse) { .footer-col a, .menu-foot a { padding-block: 0.2rem; } .burger { min-width: 44px; min-height: 44px; padding: 12px 7px; } }
