@font-face {
  font-family: 'Instrument Serif';
  src: url('../fonts/InstrumentSerif-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Instrument Serif';
  src: url('../fonts/InstrumentSerif-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Material Symbols Outlined';
  src: url('../fonts/MaterialSymbolsOutlined.ttf') format('truetype');
  font-weight: 100 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #F5F1EA;
  --surface: #EDE7DD;
  --surface-2: #1A1F1C;
  --surface-3: #2D5F4F;
  --text: #1A1F1C;
  --text-muted: #6B6558;
  --text-inverse: #F5F1EA;
  --accent: #2D5F4F;
  --accent-2: #B8875B;
  --border: #D4CCBE;
  --border-strong: #8B8273;
  
  --font-display: 'Instrument Serif', serif;
  --font-body: 'Manrope', sans-serif;
  
  --fs-display: clamp(3.5rem, 8vw, 6rem);
  --fs-h1: clamp(2.5rem, 5vw, 4rem);
  --fs-h2: clamp(2rem, 4vw, 3rem);
  --fs-h3: clamp(1.4rem, 2.5vw, 1.8rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-tiny: 0.75rem;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 100px;
  
  --shadow-sm: 0 1px 3px rgba(26, 31, 28, 0.08);
  --shadow-md: 0 4px 16px rgba(26, 31, 28, 0.12);
  --shadow-lg: 0 16px 48px rgba(26, 31, 28, 0.16);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
main { flex: 1 0 auto; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); margin-bottom: var(--space-md); }
h3 { font-size: var(--fs-h3); margin-bottom: var(--space-sm); }
p { margin-bottom: var(--space-sm); color: var(--text-muted); }
p:last-child { margin-bottom: 0; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

.accent-serif {
  font-style: italic;
  color: var(--accent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 241, 234, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  gap: var(--space-md);
}
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text);
}
.logo-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.logo-text {
  font-weight: 400;
  letter-spacing: -0.01em;
}
.logo-footer .logo-text {
  color: var(--text-inverse);
}

.main-nav {
  display: flex;
  align-items: center;
  position: relative;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.nav-link {
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--text-muted);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-pill);
  transition: all 0.3s ease;
  position: relative;
}
.nav-link:hover,
.nav-link.active {
  color: var(--text);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}
.nav-cta {
  background: var(--text);
  color: var(--text-inverse);
}
.nav-cta:hover,
.nav-cta.active {
  background: var(--accent);
  color: var(--text-inverse);
}
.nav-cta.active::after { display: none; }

.menu-toggle {
  display: none;
  padding: var(--space-xs);
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 0.9rem 1.8rem;
  font-size: var(--fs-small);
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font-body);
}
.btn-primary {
  background: var(--text);
  color: var(--text-inverse);
}
.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-strong);
}
.btn-ghost:hover {
  border-color: var(--text);
  background: var(--text);
  color: var(--text-inverse);
}
.btn-ghost-light {
  background: transparent;
  color: var(--text-inverse);
  border: 1.5px solid rgba(245, 241, 234, 0.4);
}
.btn-ghost-light:hover {
  background: var(--text-inverse);
  color: var(--text);
  border-color: var(--text-inverse);
}
.btn-lg { padding: 1.1rem 2.2rem; font-size: 1rem; }
.btn-full { width: 100%; }

.section {
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}
.section-dark {
  background: var(--surface-2);
  color: var(--text-inverse);
}
.section-dark p,
.section-dark .text-muted { color: rgba(245, 241, 234, 0.7); }
.section-dark h2,
.section-dark h3 { color: var(--text-inverse); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-xl);
}
.section-lead {
  font-size: 1.125rem;
  margin-top: var(--space-sm);
}

.overline-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.4rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: var(--fs-tiny);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}
.overline-light {
  background: rgba(245, 241, 234, 0.1);
  border-color: rgba(245, 241, 234, 0.2);
  color: rgba(245, 241, 234, 0.8);
}

.jahresring {
  display: inline-block;
  border-radius: 50%;
  background: radial-gradient(circle at center, 
    transparent 20%, var(--accent) 21%, var(--accent) 22%, 
    transparent 23%, transparent 35%, var(--accent) 36%, var(--accent) 37%, 
    transparent 38%, transparent 52%, var(--accent) 53%, var(--accent) 54%, 
    transparent 55%, transparent 70%, var(--accent) 71%, var(--accent) 72%, 
    transparent 73%);
}
.jring-sm { width: 14px; height: 14px; }
.jring-md { width: 24px; height: 24px; }
.jring-lg { width: 100%; height: 100%; position: absolute; top: 0; left: 0; opacity: 0.5; }
.jring-card { width: 180px; height: 180px; position: absolute; top: -40px; right: -40px; opacity: 0.25; }
.jring-badge { width: 60px; height: 60px; }
.jring-badge-light {
  width: 60px; height: 60px;
  background: radial-gradient(circle at center, 
    transparent 20%, var(--accent-2) 21%, var(--accent-2) 22%, 
    transparent 23%, transparent 35%, var(--accent-2) 36%, var(--accent-2) 37%, 
    transparent 38%, transparent 52%, var(--accent-2) 53%, var(--accent-2) 54%, 
    transparent 55%, transparent 70%, var(--accent-2) 71%, var(--accent-2) 72%, 
    transparent 73%);
}
.jring-marker { width: 80px; height: 80px; }
.jring-info { width: 200px; height: 200px; position: absolute; top: -60px; right: -60px; opacity: 0.15; }
.jring-hero { width: 400px; height: 400px; position: absolute; top: -100px; right: -100px; opacity: 0.12; }
.jring-thanks { width: 500px; height: 500px; position: absolute; top: -150px; left: -150px; opacity: 0.1; }
.jring-icon { width: 48px; height: 48px; position: absolute; top: 0; left: 0; opacity: 0.4; }

.hero {
  padding: var(--space-xl) 0 var(--space-2xl);
  position: relative;
  overflow: hidden;
}
.hero-bg-lines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    115deg,
    transparent,
    transparent 60px,
    rgba(26, 31, 28, 0.03) 60px,
    rgba(26, 31, 28, 0.03) 61px
  );
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-grid-center { grid-template-columns: 1fr; max-width: 960px; text-align: center; }
.hero-grid-center .hero-content { text-align: center; }
.hero-grid-center .overline-badge { margin-left: auto; margin-right: auto; }
.hero-grid-center .hero-actions { justify-content: center; }

.hero-content h1 {
  margin-bottom: var(--space-md);
  max-width: 620px;
}
.hero-lead {
  font-size: 1.125rem;
  margin-bottom: var(--space-lg);
  max-width: 560px;
}
.hero-supporting {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}
.supporting-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: var(--fs-small);
  font-weight: 500;
}
.supporting-chip .material-symbols-outlined {
  font-size: 18px;
  color: var(--accent);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.hero-visual { position: relative; }
.hero-image-stack { position: relative; }
.hero-img-main {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero-image-wide img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero-floating-card {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background: var(--text-inverse);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 240px;
  overflow: hidden;
}
.floating-stat { position: relative; z-index: 1; }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: var(--fs-tiny);
  color: var(--text-muted);
  line-height: 1.3;
}
.hero-floating-tag {
  position: absolute;
  top: 30px;
  right: -20px;
  background: var(--accent);
  color: var(--text-inverse);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-pill);
  font-size: var(--fs-small);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: var(--shadow-md);
}
.hero-floating-tag .material-symbols-outlined {
  font-size: 18px;
  color: var(--accent-2);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.about-text h2 { margin-bottom: var(--space-md); }
.about-signature {
  margin-top: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.signature-line {
  width: 60px;
  height: 1px;
  background: var(--accent-2);
}
.signature-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--text-inverse);
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.stat-ring {
  position: relative;
  background: rgba(245, 241, 234, 0.08);
  border: 1px solid rgba(245, 241, 234, 0.15);
  border-radius: var(--radius-lg);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  overflow: hidden;
}
.stat-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.stat-number-lg {
  display: block;
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 0.9;
  color: var(--text-inverse);
  letter-spacing: -0.03em;
}
.stat-percent { font-size: 2.5rem; }
.stat-unit {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--accent-2);
  margin-bottom: 0.3rem;
}
.stat-ring .stat-label {
  font-size: var(--fs-tiny);
  color: rgba(245, 241, 234, 0.7);
  line-height: 1.3;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.service-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-image img { transform: scale(1.05); }
.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26, 31, 28, 0.6) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: var(--space-sm);
}
.service-overlay .material-symbols-outlined {
  background: var(--text-inverse);
  color: var(--accent);
  padding: 0.5rem;
  border-radius: 50%;
  font-size: 28px;
}
.service-body {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-body-reverse { order: -1; }
.service-tag {
  display: inline-block;
  font-size: var(--fs-tiny);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.service-card p {
  font-size: var(--fs-small);
  margin-bottom: var(--space-sm);
}
.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
}
.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.7rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: var(--fs-tiny);
  font-weight: 600;
  color: var(--text);
}
.chip-accent {
  background: var(--accent);
  color: var(--text-inverse);
  border-color: var(--accent);
}
.services-cta { text-align: center; }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-xl);
  align-items: start;
}
.why-intro { position: sticky; top: 120px; }
.why-items { display: flex; flex-direction: column; gap: var(--space-md); }
.why-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}
.why-item:hover {
  border-color: var(--accent);
  transform: translateX(4px);
}
.why-icon {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-icon .material-symbols-outlined {
  font-size: 32px;
  color: var(--accent);
  position: relative;
  z-index: 1;
  background: var(--bg);
  padding: 0.5rem;
  border-radius: 50%;
}
.why-text h3 { font-size: 1.3rem; margin-bottom: 0.4rem; }
.why-text p { font-size: var(--fs-small); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-2);
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-sm);
  color: var(--accent-2);
}
.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: var(--space-md);
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--text-inverse);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--fs-small);
}
.author-info { flex: 1; min-width: 120px; }
.author-name {
  display: block;
  font-weight: 600;
  color: var(--text);
  font-size: var(--fs-small);
}
.author-location {
  font-size: var(--fs-tiny);
  color: var(--text-muted);
}
.testimonial-project {
  font-size: var(--fs-tiny);
  color: var(--accent);
  font-weight: 600;
  flex-basis: 100%;
  margin-top: 0.3rem;
}
.testimonials-disclaimer {
  text-align: center;
  font-size: var(--fs-tiny);
  color: var(--text-muted);
  font-style: italic;
}

.cta-content {
  text-align: center;
  position: relative;
  padding: var(--space-xl) 0;
}
.cta-content h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  margin-bottom: var(--space-sm);
}
.cta-content p {
  font-size: 1.125rem;
  max-width: 560px;
  margin: 0 auto var(--space-lg);
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.intro-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: all 0.3s ease;
}
.intro-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.intro-icon {
  font-size: 48px;
  color: var(--accent);
  margin-bottom: var(--space-md);
}
.intro-card h3 { font-size: 1.4rem; }
.intro-card p { font-size: var(--fs-small); }

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.detail-reverse .detail-image { order: 2; }
.detail-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: var(--text-inverse);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: var(--fs-small);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: var(--shadow-md);
}
.detail-badge-light {
  background: var(--surface-2);
  color: var(--text-inverse);
}
.tag-numbered {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}
.tag-light { color: var(--accent-2); }
.detail-content h2 { margin-bottom: var(--space-sm); }
.detail-content-light h2,
.detail-content-light h3,
.detail-content-light p { color: var(--text-inverse); }
.detail-content-light p { color: rgba(245, 241, 234, 0.75); }
.detail-lead {
  font-size: 1.05rem;
  margin-bottom: var(--space-md);
}
.detail-features {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: var(--space-lg);
}
.detail-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: var(--fs-small);
  color: var(--text);
}
.detail-content-light .detail-features li { color: rgba(245, 241, 234, 0.85); }
.detail-features .material-symbols-outlined {
  font-size: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.detail-content-light .detail-features .material-symbols-outlined { color: var(--accent-2); }
.detail-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.detail-content-light .detail-meta {
  background: rgba(245, 241, 234, 0.08);
  border-color: rgba(245, 241, 234, 0.2);
}
.meta-item { text-align: center; }
.meta-label {
  display: block;
  font-size: var(--fs-tiny);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}
.detail-content-light .meta-label { color: rgba(245, 241, 234, 0.6); }
.meta-value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text);
}
.detail-content-light .meta-value { color: var(--text-inverse); }

.prices-table {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}
.price-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
  padding: var(--space-md);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
}
.price-row:last-child { border-bottom: none; }
.price-row:hover { background: var(--bg); }
.price-service {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.price-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
  line-height: 1;
}
.price-service h4 {
  font-size: 1.3rem;
  font-family: var(--font-display);
  margin: 0;
}
.price-service p {
  font-size: var(--fs-tiny);
  margin: 0;
}
.price-range { text-align: right; }
.price-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text);
}
.price-unit {
  font-size: var(--fs-tiny);
  color: var(--text-muted);
}

.timeline {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: var(--space-md) 0;
}
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--border) 0%, var(--accent) 50%, var(--border) 100%);
  transform: translateX(-50%);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-md);
  align-items: center;
  margin-bottom: var(--space-xl);
  position: relative;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-reverse .timeline-content { order: 2; text-align: right; }
.timeline-reverse .timeline-marker { order: 1; }
.timeline-marker {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.timeline-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--accent);
  position: relative;
  z-index: 1;
}
.timeline-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
}
.timeline-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.7rem;
}
.timeline-reverse .timeline-meta { justify-content: flex-end; }
.timeline-content h3 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.timeline-lead {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: var(--space-sm);
}
.timeline-details {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
}
.timeline-details li {
  font-size: var(--fs-small);
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  text-align: left;
}
.timeline-details li::before {
  content: '';
  flex-shrink: 0;
  margin-top: 0.55rem;
  width: 6px;
  height: 6px;
  background: var(--accent-2);
  border-radius: 50%;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-xl);
  align-items: start;
}
.faq-intro { position: sticky; top: 120px; }
.faq-intro h2 { color: var(--text-inverse); }
.faq-intro p { color: rgba(245, 241, 234, 0.7); }
.faq-list { display: flex; flex-direction: column; gap: var(--space-sm); }
.faq-item {
  background: rgba(245, 241, 234, 0.05);
  border: 1px solid rgba(245, 241, 234, 0.15);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item[open] {
  background: rgba(245, 241, 234, 0.08);
  border-color: var(--accent-2);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space-md);
  cursor: pointer;
  font-weight: 600;
  color: var(--text-inverse);
  font-size: 1rem;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { transition: transform 0.3s ease; }
.faq-item[open] .faq-icon { transform: rotate(180deg); }
.faq-content {
  padding: 0 var(--space-md) var(--space-md);
  color: rgba(245, 241, 234, 0.8);
  font-size: var(--fs-small);
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}
.form-header { margin-bottom: var(--space-lg); }
.form-header h2 { margin-bottom: 0.4rem; }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.form-row { display: flex; flex-direction: column; gap: 0.4rem; }
.form-row-double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.form-field label {
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--text);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  max-width: 100%;
  padding: 0.8rem 1rem;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  transition: all 0.3s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(45, 95, 79, 0.1);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: var(--fs-small);
  color: var(--text-muted);
  cursor: pointer;
}
.form-checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--accent);
  cursor: pointer;
}
.form-note {
  font-size: var(--fs-tiny);
  text-align: center;
  color: var(--text-muted);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  position: relative;
  overflow: hidden;
}
.info-card-dark {
  background: var(--surface-2);
  border-color: transparent;
}
.info-card-dark h3,
.info-card-dark p,
.info-card-dark .info-label,
.info-card-dark .info-value { color: var(--text-inverse); }
.info-card-dark .info-lead { color: rgba(245, 241, 234, 0.75); }
.info-card-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--surface-3) 100%);
  border-color: transparent;
  color: var(--text-inverse);
}
.info-lead { margin-bottom: var(--space-md); }
.info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.info-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}
.info-list .material-symbols-outlined {
  color: var(--accent-2);
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}
.info-label {
  display: block;
  font-size: var(--fs-tiny);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}
.info-value {
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--text);
}
.info-value:hover { color: var(--accent); }

.contact-person {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}
.person-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--text-inverse);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.2rem;
}
.person-name {
  display: block;
  font-weight: 600;
  font-size: 1rem;
}
.person-role {
  font-size: var(--fs-small);
  color: var(--text-muted);
}
.person-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.5;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border);
}

.info-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  text-align: center;
}
.info-stat .stat-number-lg {
  font-size: 3rem;
  color: var(--text-inverse);
}
.info-stat .stat-unit {
  font-size: 1.5rem;
  color: var(--accent-2);
}
.info-stat .stat-label {
  font-size: var(--fs-tiny);
  color: rgba(245, 241, 234, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.map-wrap { max-width: 1100px; margin: 0 auto; }
.map-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-md);
}
.map-container iframe { display: block; }
.map-districts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.section-thanks {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  padding: var(--space-xl) 0;
}
.thanks-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.thanks-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thanks-icon .material-symbols-outlined {
  font-size: 48px;
  color: var(--text-inverse);
}
.thanks-wrap h1 { margin-bottom: var(--space-sm); }
.thanks-lead {
  font-size: 1.125rem;
  margin-bottom: var(--space-lg);
}
.thanks-steps {
  text-align: left;
  margin-bottom: var(--space-lg);
  padding: var(--space-md);
  background: var(--bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.thanks-steps h2 { font-size: 1.5rem; margin-bottom: var(--space-md); }
.steps-list { display: flex; flex-direction: column; gap: var(--space-md); }
.steps-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-sm);
}
.step-number {
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: var(--text-inverse);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.step-content h3 { font-size: 1.15rem; margin-bottom: 0.3rem; }
.step-content p { font-size: var(--fs-small); margin: 0; }
.step-content strong { color: var(--accent); }

.thanks-extra {
  margin-bottom: var(--space-lg);
  padding: var(--space-md);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-md);
}
.thanks-extra h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.site-footer {
  background: var(--surface-2);
  color: var(--text-inverse);
  padding: var(--space-xl) 0 var(--space-md);
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}
.footer-tagline {
  font-size: var(--fs-small);
  color: rgba(245, 241, 234, 0.6);
  margin-top: var(--space-sm);
}
.site-footer h4 {
  font-size: 0.9rem;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-sm);
  color: var(--text-inverse);
}
.footer-nav ul,
.footer-legal-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-nav a,
.footer-legal-nav span {
  font-size: var(--fs-small);
  color: rgba(245, 241, 234, 0.7);
  transition: color 0.3s ease;
}
.footer-nav a:hover { color: var(--accent-2); }
.footer-legal-nav span { cursor: default; }
.footer-contact address {
  font-style: normal;
  font-size: var(--fs-small);
  color: rgba(245, 241, 234, 0.7);
  line-height: 1.6;
}
.footer-contact strong {
  color: var(--text-inverse);
  font-weight: 600;
  display: block;
  margin-bottom: 0.3rem;
}
.footer-contact a {
  color: var(--accent-2);
  transition: color 0.3s ease;
}
.footer-contact a:hover { color: var(--text-inverse); }

.footer-bottom {
  padding-top: var(--space-md);
  border-top: 1px solid rgba(245, 241, 234, 0.15);
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: rgba(245, 241, 234, 0.5);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}
.footer-copyright {
  font-size: 0.85rem;
  color: rgba(245, 241, 234, 0.7);
}

[data-aos="fade-right"]:not(.aos-animate) {
  transform: translate3d(-32px, 0, 0) !important;
}
[data-aos="fade-left"]:not(.aos-animate) {
  transform: translate3d(32px, 0, 0) !important;
}
[data-aos="zoom-in"]:not(.aos-animate) {
  transform: scale(0.96) !important;
}

@media (max-width: 900px) {
  [data-aos] {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }
  .hero-grid > *,
  .about-grid > *,
  .detail-grid > *,
  .contact-grid > *,
  .why-grid > *,
  .faq-grid > *,
  .testimonials-grid > *,
  .services-grid > *,
  .intro-grid > *,
  .footer-grid > * {
    min-width: 0;
    max-width: 100%;
  }
}

@media (max-width: 960px) {
  .hero-grid,
  .about-grid,
  .detail-grid,
  .contact-grid,
  .why-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .detail-reverse .detail-image { order: 0; }
  .services-grid,
  .testimonials-grid,
  .intro-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-img-main { height: 400px; }
  .hero-image-wide img { height: 360px; }
  .timeline-line { display: none; }
  .timeline-item {
    grid-template-columns: auto 1fr;
    gap: var(--space-sm);
  }
  .timeline-reverse .timeline-content { order: 0; text-align: left; }
  .timeline-reverse .timeline-meta { justify-content: flex-start; }
  .timeline-reverse .timeline-marker { order: 0; }
  .why-intro,
  .faq-intro { position: static; }
}

@media (max-width: 640px) {
  :root {
    --space-xl: 3rem;
    --space-2xl: 4rem;
  }
  .timeline-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }
  .timeline-marker {
    order: -1;
  }
  .timeline-content {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .timeline-reverse .timeline-content {
    order: 0;
    text-align: left;
  }
  .timeline-reverse .timeline-marker {
    order: -1;
  }
  .timeline-reverse .timeline-meta {
    justify-content: flex-start;
  }
  .header-inner {
    position: relative;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .header-inner .logo {
    flex: 0 1 auto;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
  }
  .header-inner .logo-text {
    flex: none;
    word-break: break-all;
  }
  .main-nav {
    position: static;
    flex-shrink: 0;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    max-width: 100vw;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    flex-direction: column;
    padding: var(--space-md) var(--space-md);
    gap: var(--space-sm);
    z-index: 101;
  }
  .nav-list.is-open { display: flex; }
  .nav-list li {
    width: 100%;
  }
  .nav-link {
    width: 100%;
    text-align: center;
    padding: 1rem var(--space-sm);
  }
  
  .services-grid,
  .testimonials-grid,
  .intro-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .form-row-double {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
  .about-stats {
    gap: var(--space-sm);
  }
  .stat-ring {
    aspect-ratio: auto;
    min-height: 0;
    padding: var(--space-sm);
  }
  .stat-content {
    min-width: 0;
    width: 100%;
  }
  .stat-number-lg {
    font-size: 2.25rem;
  }
  .stat-percent {
    font-size: 1.5rem;
  }
  .stat-unit {
    font-size: 0.95rem;
  }
  .stat-ring .stat-label {
    font-size: 0.6875rem;
    word-break: break-word;
    hyphens: auto;
  }
  .footer-col,
  .footer-contact,
  .footer-disclaimer {
    word-break: break-all;
  }
  .hero-img-main { height: 320px; }
  .hero-image-wide img { height: 280px; }
  .hero-image-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .hero-floating-card {
    position: static;
    left: auto;
    bottom: auto;
    margin-top: 0;
    width: auto;
    max-width: 100%;
  }
  .hero-floating-tag {
    position: static;
    top: auto;
    right: auto;
    display: inline-flex;
    margin-top: 0;
    max-width: 100%;
  }
  .price-row {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
  .price-range { text-align: left; }
  .detail-meta {
    grid-template-columns: 1fr;
    gap: var(--space-xs);
  }
  .thanks-wrap { padding: var(--space-md); }
  .site-footer { font-size: 0.85rem; }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-sm);
  }
  .contact-form-wrap,
  .info-card {
    padding: var(--space-md);
  }
  .hero-content h1 {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }
  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.8125rem;
    white-space: normal;
  }
  .about-stats {
    grid-template-columns: 1fr;
  }
  .stat-ring {
    padding: var(--space-md);
  }
  .stat-number-lg {
    font-size: 2.75rem;
  }
}

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

.hero-centered {
  padding: var(--space-xl) 0 var(--space-xl);
}
.hero-content-centered {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.hero-content-centered .overline-badge {
  margin-left: auto;
  margin-right: auto;
}
.hero-content-centered h1 {
  margin-left: auto;
  margin-right: auto;
}
.hero-content-centered .hero-lead {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.hero-supporting-centered {
  justify-content: center;
  margin-top: var(--space-lg);
}

.legal-hero {
  padding: var(--space-xl) 0 var(--space-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.legal-hero .overline-badge {
  margin-left: auto;
  margin-right: auto;
}
.legal-hero h1 {
  margin-bottom: var(--space-xs);
}
.legal-stand {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--fs-small);
  color: var(--text-muted);
  margin-top: var(--space-sm);
}
.legal-stand .material-symbols-outlined {
  font-size: 18px;
  color: var(--accent);
}
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px var(--space-2xl);
  word-break: break-word;
}
.legal-content h2 {
  font-size: 1.8rem;
  margin: var(--space-xl) 0 var(--space-sm);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.legal-content h2 .jahresring {
  flex-shrink: 0;
}
.legal-content h3 {
  font-size: 1.4rem;
  margin: var(--space-md) 0 var(--space-xs);
}
.legal-content p {
  margin-bottom: var(--space-sm);
}
.legal-band {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.legal-band .legal-content {
  padding-top: var(--space-sm);
  padding-bottom: var(--space-lg);
}
.legal-toc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-lg);
}
.legal-band .legal-toc {
  background: var(--bg);
}
.legal-toc h3 {
  margin-bottom: var(--space-sm);
}
.legal-toc ol {
  list-style: decimal;
  padding-left: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.legal-toc a {
  color: var(--accent);
  font-weight: 600;
  font-size: var(--fs-small);
  transition: color 0.3s ease;
}
.legal-toc a:hover {
  color: var(--accent-2);
  text-decoration: underline;
}
.legal-callout {
  background: linear-gradient(135deg, rgba(45, 95, 79, 0.08), rgba(184, 135, 91, 0.1));
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin: var(--space-md) 0;
}
.legal-callout p {
  color: var(--text);
}
.legal-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: var(--space-sm) 0 var(--space-md);
}
.legal-list li {
  padding-left: 1.4rem;
  position: relative;
  color: var(--text-muted);
}
.legal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-sm) 0 var(--space-md);
}
.legal-table th,
.legal-table td {
  text-align: left;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid var(--border);
  font-size: var(--fs-small);
  vertical-align: top;
}
.legal-table th {
  font-weight: 700;
  color: var(--text);
  background: var(--bg);
}
.legal-band .legal-table th {
  background: var(--surface-2);
  color: var(--text-inverse);
}
.legal-table td {
  color: var(--text-muted);
}
.footer-legal-nav a {
  font-size: var(--fs-small);
  color: rgba(245, 241, 234, 0.7);
  transition: color 0.3s ease;
}
.footer-legal-nav a:hover {
  color: var(--accent-2);
}
@media (max-width: 640px) {
  .legal-content {
    padding: var(--space-md) var(--space-sm) var(--space-xl);
  }
  .legal-content h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 700px) {
  .legal-table thead {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .legal-table tbody tr {
    display: block;
    margin-bottom: var(--space-md);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
    background: var(--bg);
  }
  .legal-table td {
    display: block;
    border-bottom: none;
    padding: 0.5rem 0;
    font-size: var(--fs-small);
    word-break: break-word;
  }
  .legal-table td:not(:last-child) {
    border-bottom: 1px solid var(--border);
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .legal-table td::before {
    display: block;
    font-weight: 700;
    font-size: var(--fs-tiny);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text);
    margin-bottom: 0.25rem;
  }
  .legal-table td:nth-child(1)::before { content: 'Bezeichnung'; }
  .legal-table td:nth-child(2)::before { content: 'Typ'; }
  .legal-table td:nth-child(3)::before { content: 'Zweck'; }
  .legal-table td:nth-child(4)::before { content: 'Speicherdauer'; }
}