@font-face {
  font-family: "Bodoni Moda";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url(../fonts/BodoniModa-Variable.woff2) format("woff2");
}
@font-face {
  font-family: "Bodoni Moda";
  font-style: italic;
  font-weight: 400 900;
  font-display: swap;
  src: url(../fonts/BodoniModa-Italic-Variable.woff2) format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url(../fonts/DMSans-Variable.woff2) format("woff2");
}
@font-face {
  font-family: "Bodoni Moda Fallback";
  src: local("Georgia");
  size-adjust: 131.97%;
  ascent-override: 85.25%;
  descent-override: 30.31%;
  line-gap-override: 0%;
}
@font-face {
  font-family: "DM Sans Fallback";
  src: local("Arial");
  size-adjust: 125.28%;
  ascent-override: 79.18%;
  descent-override: 24.74%;
  line-gap-override: 0%;
}
:root {
  --bg: #F7F2E9;
  --bg-elev: #F1E9DA;
  --surface: #FFFFFF;
  --ink: #1C2340;
  --ink-soft: #4A4E72;
  --ink-soft-dk: #C7CBDE;
  --accent: #C4386B;
  --accent-deep: #9C2A50;
  --accent-light: #EDA0BE;
  --line: rgba(28, 35, 64, 0.14);
  --line-dk: rgba(247, 242, 233, 0.16);
  --space-3xs: clamp(0.375rem, 0.35rem + 0.11vw, 0.4375rem);
  --space-2xs: clamp(0.5rem, 0.46rem + 0.22vw, 0.625rem);
  --space-xs: clamp(0.75rem, 0.69rem + 0.33vw, 0.9375rem);
  --space-s: clamp(1rem, 0.91rem + 0.43vw, 1.25rem);
  --space-m: clamp(1.5rem, 1.37rem + 0.65vw, 1.875rem);
  --space-l: clamp(2rem, 1.83rem + 0.87vw, 2.5rem);
  --space-xl: clamp(3rem, 2.74rem + 1.3vw, 3.75rem);
  --space-2xl: clamp(4rem, 3.65rem + 1.74vw, 5rem);
  --space-3xl: clamp(6rem, 5.48rem + 2.61vw, 7.5rem);
  --text-h1: clamp(2.75rem, 1.9rem + 4vw, 5.25rem);
  --text-h2: clamp(2rem, 1.65rem + 1.7vw, 3rem);
  --text-h3: clamp(1.5rem, 1.35rem + 0.8vw, 1.875rem);
  --text-h4: clamp(1.15rem, 1.08rem + 0.35vw, 1.3rem);
  --text-lead: clamp(1.125rem, 1.05rem + 0.4vw, 1.375rem);
  --text-body: 1.0625rem;
  --text-caption: 0.875rem;
  --text-eyebrow: 0.8125rem;
  --text-stat: clamp(2.25rem, 1.9rem + 1.75vw, 3.25rem);
  --font-display:
    "Bodoni Moda",
    "Bodoni Moda Fallback",
    Georgia,
    "Times New Roman",
    serif;
  --font-body:
    "DM Sans",
    "DM Sans Fallback",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --shadow-s: 0 1px 3px rgba(28, 35, 64, 0.1), 0 1px 2px rgba(28, 35, 64, 0.07);
  --shadow-m: 0 10px 28px rgba(28, 35, 64, 0.14), 0 2px 8px rgba(28, 35, 64, 0.08);
  --shadow-l: 0 24px 56px rgba(28, 35, 64, 0.2);
  --ease-settle: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-menu: cubic-bezier(0.6, 0.14, 0, 1);
  --dur: 0.5s;
  --container: 1180px;
  --scroll-progress: 0;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  height: 100%;
}
body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  hyphens: auto;
}
img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-s);
  text-wrap: balance;
  color: var(--ink);
}
h1 {
  font-size: var(--text-h1);
  line-height: 1.04;
  font-weight: 500;
  hyphens: none;
}
h2 {
  font-size: var(--text-h2);
}
h3 {
  font-size: var(--text-h3);
  font-weight: 600;
}
h4 {
  font-size: var(--text-h4);
  font-weight: 600;
}
p {
  margin: 0 0 var(--space-s);
  max-width: 65ch;
}
p:last-child {
  margin-bottom: 0;
}
a {
  color: var(--accent-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:hover {
  color: var(--ink);
}
:focus-visible {
  outline: 3px solid var(--accent-deep);
  outline-offset: 3px;
  border-radius: 2px;
}
::selection {
  background: var(--accent-light);
  color: var(--ink);
}
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.u-center {
  text-align: center;
}
.u-mt-s {
  margin-top: var(--space-s);
}
.u-mt-m {
  margin-top: var(--space-m);
}
.u-mt-l {
  margin-top: var(--space-l);
}
.section-intro {
  max-width: 46rem;
  margin-inline: auto;
  text-align: center;
}
section {
  padding-block: var(--space-2xl);
  position: relative;
}
section.tight {
  padding-block: var(--space-xl);
}
section.alt {
  background: var(--bg-elev);
}
section.dark {
  background: var(--ink);
  color: var(--bg);
}
section.dark h2,
section.dark h3 {
  color: var(--bg);
}
section.dark .lead,
section.dark p {
  color: var(--ink-soft-dk);
}
section.dark a {
  color: var(--accent-light);
}
section.dark .container {
  position: relative;
  z-index: 2;
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}
section.dark .hero-actions {
  justify-content: center;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 100;
  background: var(--accent-deep);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
}
.skip-link:focus {
  top: 1rem;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-eyebrow);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-deep);
  margin-bottom: var(--space-s);
}
section.dark .eyebrow {
  color: var(--accent-light);
}
.lead {
  font-size: var(--text-lead);
  color: var(--ink-soft);
  font-weight: 400;
}
em.accent,
.accent {
  font-style: italic;
  font-family: var(--font-display);
  color: var(--accent-deep);
}
section.dark .accent {
  color: var(--accent-light);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-pill);
  padding: 0.8rem 1.7rem 0.9rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    transform 0.2s var(--ease-out),
    box-shadow 0.2s var(--ease-out),
    background-color 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-s);
}
.btn-primary:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-m);
}
section.dark .btn-primary {
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--accent-deep);
  color: var(--accent-deep);
}
section.dark .btn-ghost {
  color: var(--bg);
  border-color: var(--line-dk);
}
section.dark .btn-ghost:hover {
  border-color: var(--accent-light);
  color: var(--accent-light);
}
.btn-sm {
  padding: 0.55rem 1.2rem;
  font-size: var(--text-caption);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  padding-top: env(safe-area-inset-top, 0px);
  transition: background-color 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.site-header.is-scrolled {
  background: rgba(247, 242, 233, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-s);
}
.tanz-stage-progress {
  height: 2px;
  background: var(--line);
  overflow: hidden;
}
.tanz-stage-progress-fill {
  height: 100%;
  width: 100%;
  background: var(--accent);
  transform-origin: left;
  transform: scaleX(var(--scroll-progress, 0));
}
.js .tanz-stage-progress-fill {
  transition: transform 0.05s linear;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-s);
  min-height: 64px;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--ink);
}
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  cursor: pointer;
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  gap: var(--space-m);
  align-items: center;
}
.nav-list a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
}
.nav-list a:hover,
.nav-list a[aria-current=page] {
  color: var(--accent-deep);
}
.nav-list .btn-primary {
  color: #fff;
}
.nav-list .btn-primary:hover {
  color: #fff;
}
.nav-list.open {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: var(--space-m) clamp(1.25rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-m);
}
.nav-list.open a {
  display: block;
  padding: 0.65rem 0;
}
@media (min-width: 860px) {
  .nav-toggle {
    display: none;
  }
  .nav-list {
    display: flex;
  }
}
.hero {
  position: relative;
  overflow: hidden;
  padding-block: var(--space-3xl);
  background:
    radial-gradient(
      ellipse 70% 60% at 50% 20%,
      #2A3364 0%,
      var(--ink) 62%);
  color: var(--bg);
}
.hero.tight {
  padding-block: var(--space-xl);
  overflow: visible;
  background: none;
  color: var(--ink);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 46rem;
}
.hero.tight .hero-inner {
  max-width: 50rem;
}
.hero-lead {
  max-width: 52ch;
}
.hero:not(.tight) .hero-lead {
  color: var(--ink-soft-dk);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-s);
  margin-top: var(--space-l);
}
.hero:not(.tight) .eyebrow {
  color: var(--accent-light);
}
.hero:not(.tight) h1 {
  color: var(--bg);
}
.hero:not(.tight) .btn-ghost {
  color: var(--bg);
  border-color: var(--line-dk);
}
.hero:not(.tight) .btn-ghost:hover {
  border-color: var(--accent-light);
  color: var(--accent-light);
}
.tanz-spotlight {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 50% 8%,
      rgba(196, 56, 107, 0.28) 0%,
      rgba(196, 56, 107, 0) 55%);
}
.tanz-curtain {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
  background:
    repeating-linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.16) 0,
      rgba(0, 0, 0, 0.16) 2.2%,
      rgba(255, 255, 255, 0.05) 2.2%,
      rgba(255, 255, 255, 0.05) 4.4%,
      transparent 4.4%,
      transparent 6.6%),
    linear-gradient(
      180deg,
      #7A2244 0%,
      #5C1936 55%,
      #3C1024 100%);
}
.tanz-curtain::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 14px;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.25),
      transparent),
    var(--accent-deep);
}
.js .tanz-curtain {
  clip-path: inset(0 0 0 0);
}
.hero-title {
  position: relative;
  z-index: 2;
  margin-inline: 0;
}
.hero-title .line {
  display: block;
  overflow: hidden;
}
.hero-title .line-inner {
  display: block;
}
.js .hero-title .line-inner {
  opacity: 0;
}
.js .hero:not(.tight) .eyebrow,
.js .hero:not(.tight) .hero-lead,
.js .hero:not(.tight) .hero-actions {
  opacity: 0;
  transform: translateY(16px);
}
.no-gsap .hero-title .line-inner,
.no-gsap .hero .eyebrow,
.no-gsap .hero .hero-lead,
.no-gsap .hero .hero-actions {
  opacity: 1 !important;
  transform: none !important;
}
.no-gsap .tanz-curtain {
  clip-path: inset(0 0 100% 0) !important;
}
.tanz-divider {
  width: 48px;
  height: 1px;
  background: var(--line);
  margin: 0 auto var(--space-2xl);
  position: relative;
}
.tanz-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  background: var(--accent);
  transform: translate(-50%, -50%) rotate(45deg);
}
section.dark .tanz-divider {
  background: var(--line-dk);
}
.stats {
  display: grid;
  gap: var(--space-l);
  text-align: center;
  position: relative;
  z-index: 2;
}
@media (min-width: 700px) {
  .stats {
    grid-template-columns: repeat(3, 1fr);
  }
}
.stat-num {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-size: var(--text-stat);
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-num .unit {
  color: var(--accent-deep);
}
.stat-label {
  color: var(--ink-soft);
  font-size: var(--text-caption);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.5rem;
}
.tanz-parallax-layer {
  position: absolute;
  inset: -10% 0 -10% 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 60% 50% at 50% 40%,
      rgba(196, 56, 107, 0.1),
      transparent 70%);
}
.grid {
  display: grid;
  gap: var(--space-m);
}
@media (min-width: 700px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 900px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-l) var(--space-m);
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out),
    border-color 0.3s;
}
.card:hover {
  box-shadow: var(--shadow-m);
  border-color: rgba(28, 35, 64, 0.24);
}
.card p {
  color: var(--ink-soft);
  font-size: var(--text-body);
}
.card .testimonial-quote {
  font-style: italic;
  color: var(--ink);
}
.card-link {
  display: inline-block;
  font-weight: 700;
  font-size: var(--text-caption);
  color: var(--accent-deep);
  text-decoration: none;
  margin-top: var(--space-2xs);
}
.card-link::after {
  content: " →";
}
.card-link:hover {
  color: var(--ink);
}
.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
}
.tanz-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  white-space: nowrap;
}
.tanz-badge.is-einsteiger {
  background: var(--bg-elev);
  color: var(--ink-soft);
  border-color: var(--line);
}
.tanz-badge.is-anfaenger {
  background: rgba(196, 56, 107, 0.12);
  color: var(--accent-deep);
  border-color: rgba(196, 56, 107, 0.3);
}
.tanz-badge.is-fortgeschritten {
  background: var(--ink);
  color: var(--bg);
}
.tanz-badge.is-kompakt {
  background: var(--accent);
  color: #fff;
}
.tanz-badge.is-alle {
  background: transparent;
  color: var(--ink-soft);
  border-color: var(--line);
}
.tanz-schedule {
  display: grid;
  gap: var(--space-m);
  margin-top: var(--space-l);
}
@media (min-width: 860px) {
  .tanz-schedule {
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-s);
  }
}
.tanz-schedule-day {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-m);
}
.tanz-schedule-day-head {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 var(--space-s);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--line);
}
.tanz-schedule-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-s);
}
.tanz-schedule-item {
  border-left: 3px solid var(--accent);
  padding-left: var(--space-s);
}
.tanz-schedule-time {
  display: block;
  font-size: var(--text-caption);
  font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: 0.2rem;
  font-variant-numeric: tabular-nums;
}
.tanz-schedule-name {
  display: block;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.tanz-schedule-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.tanz-schedule-teacher {
  font-size: var(--text-caption);
  color: var(--ink-soft);
}
.tanz-legend {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-s) var(--space-m);
  margin-top: var(--space-m);
}
.tanz-legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-caption);
  color: var(--ink-soft);
}
.pull-note-grid {
  display: grid;
  gap: var(--space-l);
}
@media (min-width: 900px) {
  .pull-note-grid {
    grid-template-columns: repeat(12, 1fr);
    align-items: center;
  }
  .pull-note-main {
    grid-column: 1 / 8;
  }
  .pull-note-aside {
    grid-column: 9 / -1;
  }
}
.pull-note-aside {
  background: var(--surface);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-l);
  box-shadow: var(--shadow-s);
}
.pull-note-label {
  display: block;
  font-size: var(--text-eyebrow);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin-bottom: var(--space-s);
}
.pull-note-quote {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 1.25rem + 0.7vw, 1.9rem);
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 var(--space-s);
}
.pull-note-quote.is-compact {
  font-size: clamp(1.3rem, 1.1rem + 0.6vw, 1.7rem);
}
.pull-note-attr {
  font-size: var(--text-caption);
  color: var(--ink-soft);
  font-weight: 700;
}
.pull-note-list {
  color: var(--ink-soft);
  padding-left: var(--space-s);
  margin: 0;
}
.pull-note-list li {
  margin-bottom: var(--space-2xs);
}
.pull-note-list li:last-child {
  margin-bottom: 0;
}
.tanz-funnel {
  position: relative;
  list-style: none;
  margin: var(--space-l) 0 0;
  padding: 0;
  max-width: 42rem;
}
.tanz-funnel-line {
  position: absolute;
  left: 27px;
  top: 12px;
  bottom: 12px;
  height: calc(100% - 24px);
  width: 2px;
  z-index: 0;
}
.tanz-funnel-line path {
  fill: none;
  stroke: var(--line);
  stroke-width: 2;
}
.tanz-funnel-line .tanz-funnel-line-fill {
  stroke: var(--accent);
}
.tanz-funnel-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--space-m);
  padding-bottom: var(--space-l);
}
.tanz-funnel-step:last-child {
  padding-bottom: 0;
}
.tanz-funnel-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--accent);
  color: var(--accent-deep);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-size: 1.4rem;
  font-weight: 600;
}
.tanz-funnel-body h3 {
  margin-bottom: 0.35rem;
}
.tanz-funnel-body p {
  color: var(--ink-soft);
  margin: 0;
}
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
  display: grid;
  gap: var(--space-m);
}
@media (min-width: 900px) {
  .timeline {
    grid-template-columns: repeat(4, 1fr);
  }
}
.timeline li {
  counter-increment: step;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-m);
}
.timeline li::before {
  content: "0" counter(step);
  display: block;
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-size: var(--text-h3);
  font-weight: 600;
  color: var(--accent-deep);
  margin-bottom: 0.4rem;
}
.timeline h3 {
  font-size: var(--text-h4);
}
.timeline p {
  color: var(--ink-soft);
  font-size: var(--text-caption);
  margin: 0;
}
.faq {
  max-width: 760px;
  margin-inline: auto;
}
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  margin-bottom: var(--space-xs);
}
.faq summary {
  cursor: pointer;
  padding: var(--space-s) var(--space-m);
  font-weight: 700;
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  color: var(--accent-deep);
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
}
.faq details[open] summary::after {
  content: "-";
}
.faq details > div {
  padding: 0 var(--space-m) var(--space-m);
  color: var(--ink-soft);
}
.cta-banner {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-l);
  text-align: center;
}
.cta-banner h2,
.cta-banner p {
  color: var(--bg);
  position: relative;
  z-index: 2;
}
.cta-banner .lead {
  color: var(--ink-soft-dk);
  margin-inline: auto;
}
.cta-banner .hero-actions {
  justify-content: center;
  position: relative;
  z-index: 2;
}
.cta-banner .cta-highlight {
  color: var(--accent-light);
}
#anfrage .grid-2 {
  align-items: start;
  gap: var(--space-xl);
}
.form-grid {
  display: grid;
  gap: var(--space-s);
}
@media (min-width: 700px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-grid .full {
    grid-column: 1 / -1;
  }
}
label {
  display: block;
  font-weight: 700;
  font-size: var(--text-caption);
  margin-bottom: 0.35rem;
}
input,
select,
textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font: inherit;
  padding: 0.8rem 1rem;
}
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--accent-deep);
  outline-offset: 1px;
  border-color: var(--accent-deep);
}
.form-success {
  background: rgba(196, 56, 107, 0.08);
  border: 1px solid var(--accent);
  border-radius: var(--radius-md);
  padding: var(--space-m);
  color: var(--ink);
}
.hint {
  color: var(--ink-soft);
  font-size: var(--text-caption);
}
.info-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-m);
}
.info-box dt {
  font-weight: 700;
  font-size: var(--text-caption);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-deep);
  margin-top: var(--space-s);
}
.info-box dt:first-child {
  margin-top: 0;
}
.info-box dd {
  margin: 0.2rem 0 0;
  color: var(--ink-soft);
}
.portrait {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2rem;
  color: var(--ink);
  background: var(--bg-elev);
  border: 2px solid var(--line);
  margin-bottom: var(--space-s);
  object-fit: cover;
  object-position: center center;
}
.portrait-lg {
  width: 148px;
  height: 148px;
  font-size: 2.6rem;
}
.person-role {
  color: var(--accent-deep);
  font-size: var(--text-caption);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.table-wrap {
  overflow-x: auto;
  background:
    linear-gradient(
      to right,
      var(--surface) 30%,
      rgba(255, 255, 255, 0)) 0 0 / 36px 100% no-repeat local,
    linear-gradient(
      to left,
      var(--surface) 30%,
      rgba(255, 255, 255, 0)) 100% 0 / 36px 100% no-repeat local,
    linear-gradient(
      to right,
      rgba(28, 35, 64, 0.16),
      rgba(28, 35, 64, 0)) 0 0 / 14px 100% no-repeat scroll,
    linear-gradient(
      to left,
      rgba(28, 35, 64, 0.16),
      rgba(28, 35, 64, 0)) 100% 0 / 14px 100% no-repeat scroll;
}
.table-wrap table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  hyphens: none;
}
.table-wrap th,
.table-wrap td {
  padding: 0.85rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.table-wrap thead th {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 600;
  color: var(--ink);
  background: var(--bg-elev);
}
.table-wrap td {
  color: var(--ink-soft);
  font-variant-numeric: tabular-nums;
}
.table-wrap tbody tr:last-child th,
.table-wrap tbody tr:last-child td {
  border-bottom: 0;
}
.breadcrumb {
  background: var(--bg-elev);
  border-bottom: 1px solid var(--line);
}
.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0.6rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: var(--text-caption);
  color: var(--ink-soft);
}
.breadcrumb li + li::before {
  content: "/";
  margin-right: 0.5rem;
  color: var(--ink-soft);
}
.breadcrumb a {
  color: var(--ink-soft);
}
.breadcrumb a:hover {
  color: var(--accent-deep);
}
.prose {
  max-width: 760px;
}
.prose h2 {
  font-size: var(--text-h3);
  margin-top: var(--space-l);
}
.prose h3 {
  font-size: var(--text-h4);
  margin-top: var(--space-m);
}
.prose li {
  margin-bottom: 0.35rem;
}
.notice {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-s) var(--space-m);
  margin-bottom: var(--space-l);
  font-size: var(--text-caption);
}
.notice:last-child {
  margin-bottom: 0;
}
.notice-narrow {
  max-width: 760px;
  margin-inline: auto;
  margin-top: var(--space-l);
}
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-elev);
  padding-block: var(--space-xl) var(--space-l);
  color: var(--ink-soft);
  font-size: var(--text-caption);
}
.footer-grid {
  display: grid;
  gap: var(--space-l);
  margin-bottom: var(--space-l);
}
@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}
.site-footer h3 {
  color: var(--ink);
  font-size: var(--text-body);
  font-family: var(--font-display);
  font-optical-sizing: auto;
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer li {
  margin-bottom: 0.45rem;
}
.site-footer a {
  color: var(--ink-soft);
}
.site-footer a:hover {
  color: var(--accent-deep);
}
.footer-legal {
  border-top: 1px solid var(--line);
  padding-top: var(--space-m);
}
.footer-demo-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-deep);
  border: 1px solid var(--accent);
  border-radius: var(--radius-pill);
  padding: 0.15rem 0.6rem;
  margin-bottom: 0.5rem;
}
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
}
.js .reveal-grid > * {
  opacity: 0;
  transform: translateY(24px);
}
.no-gsap .reveal,
.no-gsap .reveal-grid > * {
  opacity: 1 !important;
  transform: none !important;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js .reveal,
  .js .reveal-grid > * {
    opacity: 1;
    transform: none;
  }
  .js .tanz-curtain {
    clip-path: inset(0 0 100% 0) !important;
    animation: none !important;
  }
  .js .hero-title .line-inner {
    opacity: 1;
    transform: translateY(0) !important;
  }
  .js .hero:not(.tight) .eyebrow,
  .js .hero:not(.tight) .hero-lead,
  .js .hero:not(.tight) .hero-actions {
    opacity: 1;
    transform: none;
  }
  .tilt-card {
    transform: none !important;
  }
}
