/* ============================================
   BerlinMediation – Kirby CMS Styles
   Original-Design-Nachbau
   ============================================ */

/* CSS Variables – Farben & Schriften von www.berlinmediation.com */
:root {
  --color-navy: #126FA4;
  --color-navy-dark: #052030;
  --color-navy-light: #1680b8;
  --color-orange: #F25A29;
  --color-orange-hover: #d94d20;
  --color-white: #FFFFFF;
  --color-bg: #F7F9FB;
  --color-bg-warm: #F0EAE6;
  --color-text: #242424;
  --color-text-light: #545454;
  --color-text-muted: #7a7a7a;
  --color-border: #dcdcdc;
  --color-card-bg: #f5f5f5;

  --font-heading: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-full: 9999px;

  --container-max: 1280px;
  --container-padding: 1.5rem;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0px;
  color: var(--color-text);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-navy);
  text-decoration: none;
  transition: color 0.2s ease;
}

.text-orange {
  color: var(--color-orange);
}

a:hover {
  color: var(--color-orange);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.3px;
  color: var(--color-text);
}

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-sm);
  background: var(--color-text);
  color: var(--color-white);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  z-index: 10000;
  font-size: 0.875rem;
}

.skip-link:focus {
  top: var(--space-sm);
}

/* ============================================
   Header
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--color-white);
  box-shadow: 0 1px 0 var(--color-border);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}

.logo:hover {
  text-decoration: none;
  color: var(--color-navy);
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
}

.nav-menu a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
  padding: 0.25rem 0;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--color-navy);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: all 0.3s ease;
}

.header-cta {
  font-size: 0.8125rem;
  padding: 0.5rem 1rem;
  background: var(--color-orange);
  border-color: var(--color-orange);
}

.header-cta:hover {
  background: var(--color-orange-hover);
  border-color: var(--color-orange-hover);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-orange);
  color: var(--color-white);
  border-color: var(--color-orange);
}

.btn-primary:hover {
  background: var(--color-orange-hover);
  border-color: var(--color-orange-hover);
  color: var(--color-white);
  text-decoration: none;
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.4);
}

.btn-secondary:hover {
  background: var(--color-white);
  color: var(--color-navy);
  border-color: var(--color-white);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-navy);
}

.btn-outline:hover {
  background: var(--color-navy);
  color: var(--color-white);
  text-decoration: none;
}

.btn-large {
  padding: 1.125rem 2.25rem;
  font-size: 1.0625rem;
}

/* ============================================
   Sections
   ============================================ */
.section {
  padding: var(--space-3xl) 0;
}

.section-problems {
  padding: var(--space-3xl) 0;
  background: var(--color-white);
}

.section-benefits {
  padding: var(--space-3xl) 0;
  background: var(--color-bg);
}

.section-skills {
  padding: var(--space-3xl) 0;
  background: var(--color-bg-warm);
}

.section-process {
  padding: var(--space-3xl) 0;
  background: var(--color-white);
}

.section-philosophy {
  padding: var(--space-3xl) 0;
  background: var(--color-white);
}

.section-philosophy--blue {
  background: var(--color-navy);
  color: var(--color-white);
}

.section-philosophy--blue h2,
.section-philosophy--blue p {
  color: var(--color-white);
}

.section-team {
  padding: var(--space-3xl) 0;
  background: var(--color-bg-warm);
}

.section-testimonials {
  padding: var(--space-3xl) 0;
  background: var(--color-white);
}

.section-faq {
  padding: var(--space-3xl) 0;
  background: var(--color-bg-warm);
}

.section-contact {
  padding: var(--space-3xl) 0;
  background: var(--color-navy);
  color: var(--color-white);
}

.section-contact h2,
.section-contact label,
.section-contact h4 {
  color: var(--color-white);
}

.section-contact a {
  color: var(--color-white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.section-contact a:hover {
  color: var(--color-bg-warm);
}

.section-header {
  max-width: 720px;
  margin-bottom: var(--space-xl);
}

.section-header-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-header-center .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.section-header-narrow {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header-narrow .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: var(--space-md);
}

.section-title span {
  color: var(--color-orange);
}

.section-lead {
  font-size: 1.0625rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ============================================
   Hero – 1:1 Nachbau www.berlinmediation.com
   ============================================ */
.hero {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  min-height: 720px;
  max-width: var(--container-max);
  margin: 0 auto;
  align-items: stretch;
  gap: 0;
  border-radius: 0;
  overflow: visible;
}

.hero-spacer {
  display: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--space-3xl) + 72px) var(--container-padding) var(--space-3xl) var(--container-padding);
}

.hero-label {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: var(--space-md);
  letter-spacing: -0.3px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.75rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.3px;
  margin-bottom: var(--space-md);
  color: var(--color-white);
}

.hero-highlight-line-wrap {
  position: relative;
  display: inline-block;
  padding-bottom: 0.18em;
  color: var(--color-white);
}

.hero-highlight-line {
  position: absolute;
  left: -0.05em;
  right: -0.05em;
  bottom: 0;
  width: calc(100% + 0.1em);
  height: 0.12em;
  color: var(--color-white);
  display: block;
  pointer-events: none;
}

.hero-lead {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.55;
  margin-bottom: var(--space-lg);
  max-width: 460px;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.hero-actions .btn {
  min-height: 48px;
  padding: 0.5rem 1.5rem;
  font-size: 0.9375rem;
  border-radius: 8px;
}

.hero-actions .btn-secondary {
  border-color: rgba(240,234,230,0.85);
  color: rgba(240,234,230,1);
}

.hero-actions .btn-secondary:hover {
  background: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-navy);
}

.hero-badge {
  position: relative;
  border: none;
  padding: 0 0 0 1.25rem;
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
}

.hero-badge::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.2em;
  bottom: 0.2em;
  width: 3px;
  background: var(--color-white);
  border-radius: 2px;
}

.hero-visual {
  position: absolute;
  top: 0;
  bottom: 0;
  left: min(60%, calc(50% + var(--container-max) * 0.1));
  right: 0;
  overflow: hidden;
}

.hero-visual img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  transform: none;
}

/* Logos bar */
.logos-bar {
  background: var(--color-white);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border);
}

.logos-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logos-track {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
  max-width: 800px;
}

.logo-img {
  height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.logo-img:hover {
  opacity: 1;
}

.logo-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.logo-mark {
  font-weight: 800;
  color: var(--color-navy);
  font-size: 1.25rem;
}

.logo-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* ============================================
   Problems
   ============================================ */
.section-problems {
  background: var(--color-white);
}

.section-problems .section-title {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-problems .section-lead {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-xl);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.problem-card {
  background: var(--color-navy);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: none;
  color: var(--color-white);
}

.problem-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.problem-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.problem-card-content {
  padding: var(--space-md);
  border-top: none;
}

.problem-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-xs);
  color: var(--color-white);
  font-weight: 500;
  line-height: 1.25;
}

.problem-card p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.65;
}

/* ============================================
   Benefits
   ============================================ */
.section-benefits {
  background: var(--color-bg);
}

.section-benefits .section-header-left {
  text-align: left;
  max-width: 640px;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: var(--space-xl);
}

.section-benefits .section-header-left .section-title {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.section-benefits .section-header-left .section-lead {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.benefits-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.benefit-card {
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  grid-column: span 1;
  border: none;
}

.benefit-card:first-child {
  grid-column: span 1;
}

.benefit-card--blue {
  background: var(--color-navy);
  color: var(--color-white);
}

.benefit-card--dark {
  background: #3a3a3a;
  color: var(--color-white);
}

.benefit-card--blue h3,
.benefit-card--dark h3 {
  color: var(--color-white);
}

.benefit-card--blue p,
.benefit-card--dark p {
  color: rgba(255,255,255,0.9);
}

.benefit-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 220px;
}

.benefit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefit-image--large {
  grid-column: span 2;
}

.benefit-image--tall {
  grid-row: span 2;
  min-height: 460px;
}

.benefit-badge {
  display: none;
}

.benefit-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.benefit-card p {
  font-size: 0.9375rem;
  line-height: 1.65;
}

.benefits-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  flex-wrap: wrap;
}

/* ============================================
   Skills
   ============================================ */
.section-skills {
  background: var(--color-bg-warm);
}

.section-skills .section-header-left {
  text-align: left;
  max-width: 640px;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: var(--space-xl);
}

.section-skills .section-header-left .section-title {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.section-skills .section-header-left .section-lead {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  text-align: left;
}

.skill-card {
  background: #3a3a3a;
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  border: none;
  color: var(--color-white);
}

.skill-card--light {
  background: #3a3a3a;
}

.skill-icon {
  width: 64px;
  height: 64px;
  margin-bottom: var(--space-lg);
}

.skill-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.skill-card h3 {
  font-size: 1.75rem;
  margin-bottom: var(--space-sm);
  color: var(--color-white);
  font-weight: 500;
  line-height: 1.25;
}

.skill-card p {
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  font-size: 0.9375rem;
}

/* ============================================
   Process
   ============================================ */
.section-process {
  background: var(--color-white);
}

.process-steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.process-steps::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--color-border) 5%, var(--color-border) 95%, transparent);
  transform: translateX(-50%);
  z-index: 0;
}

.process-timeline-progress {
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--color-orange);
  transform: translateX(-50%) scaleY(var(--timeline-progress, 0));
  transform-origin: top;
  z-index: 1;
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.process-step::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  background: var(--color-white);
  border: 2px solid var(--color-orange);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.process-step:nth-child(even) .process-step-image {
  order: 2;
}

.process-step:nth-child(even) .process-step-content {
  order: 1;
}

.process-step.is-observed {
  opacity: 0;
  transform: translateY(24px);
}

.process-step.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.process-step-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}

.process-step-image img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.process-step-content {
  padding: var(--space-md) 0;
}

.process-step-label {
  display: inline-block;
  background: var(--color-orange);
  color: var(--color-white);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
}

.process-step-content h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.process-step-content p {
  color: var(--color-text-light);
  line-height: 1.7;
}

.process-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
  flex-wrap: wrap;
}

/* ============================================
   Philosophy
   ============================================ */
.section-philosophy {
  background: var(--color-navy);
  color: var(--color-white);
  padding: var(--space-3xl) 0;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  background: var(--color-navy);
  border: 2px solid var(--color-orange);
  border-radius: 24px;
  padding: var(--space-2xl);
}

.philosophy-content .section-title {
  color: var(--color-white);
  margin-bottom: var(--space-md);
  text-wrap: balance;
}

.philosophy-content p {
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.philosophy-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.philosophy-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: grayscale(100%);
  display: block;
}

/* ============================================
   Team
   ============================================ */
.section-team {
  background: var(--color-bg-warm);
}

.team-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  margin-bottom: var(--space-3xl);
}

.team-intro-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.team-intro-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.team-intro-content .section-title {
  margin-bottom: var(--space-md);
  text-align: left;
}

.team-intro-content p {
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.team-intro-content p:last-child {
  margin-bottom: 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  text-align: left;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-full);
  overflow: hidden;
  margin: 0 0 var(--space-md) 0;
  background: var(--color-bg);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h3 {
  font-size: 1rem;
  margin-bottom: 0.125rem;
}

.team-role {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-orange);
  margin-bottom: var(--space-xs);
}

.team-bio {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================
   Testimonials
   ============================================ */
.section-testimonials {
  background: var(--color-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.testimonial {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-xl) var(--space-lg);
  border: 1px solid var(--color-border);
}

.testimonial:nth-child(1),
.testimonial:nth-child(4) {
  grid-column: 1 / -1;
  padding: var(--space-2xl);
}

.testimonial:nth-child(1) p,
.testimonial:nth-child(4) p {
  font-size: 1.0625rem;
  max-width: 65ch;
}

.stars {
  color: var(--color-orange);
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
  letter-spacing: 0.125em;
}

.testimonial p {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.7;
  font-style: italic;
}

/* ============================================
   CTA Section
   ============================================ */
.section-cta-large {
  background: var(--color-navy);
  padding: var(--space-3xl) 0;
}

.cta-box {
  background: var(--color-navy);
  border-radius: var(--radius-lg);
  padding: var(--space-3xl);
  color: var(--color-white);
}

.cta-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.cta-content .section-title {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.cta-content .section-lead {
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--space-lg);
}

.cta-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.cta-box .btn-secondary {
  color: var(--color-white);
  border-color: rgba(255,255,255,0.4);
}

.cta-box .btn-secondary:hover {
  background: var(--color-white);
  color: var(--color-navy);
  border-color: var(--color-white);
}

.cta-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.cta-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.cta-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  padding: var(--space-xl) 0 0;
  margin-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.15);
}

.cta-info h4 {
  color: rgba(255,255,255,0.5);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-sm);
}

.cta-info p {
  color: rgba(255,255,255,0.85);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.cta-info a {
  color: rgba(255,255,255,0.85);
}

.cta-info a:hover {
  color: var(--color-white);
}

/* ============================================
   FAQ
   ============================================ */
.section-faq {
  background: var(--color-bg-warm);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  border: 1px solid var(--color-border);
}

.faq-item summary {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xs) 0;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-orange);
  flex-shrink: 0;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  padding-top: var(--space-sm);
  padding-bottom: var(--space-xs);
  color: var(--color-text-light);
  line-height: 1.7;
  font-size: 0.9375rem;
}

/* ============================================
   Termine
   ============================================ */
.section-termine {
  background: var(--color-white);
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.termine-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.termine-dates h3 {
  font-size: 1.125rem;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.dates-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dates-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 1.0625rem;
  color: var(--color-text);
}

.dates-list li:first-child {
  padding-top: 0;
}

.dates-list li:last-child {
  border-bottom: none;
}

.termine-meta {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--color-border);
}

.status-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-lg);
}

.status--aktuell .status-badge {
  background: #F25A29;
  color: var(--color-white);
}

.status--ausgebucht .status-badge {
  background: #126FA4;
  color: var(--color-white);
}

.status--vergangen .status-badge {
  background: var(--color-border);
  color: var(--color-text-muted);
}

.meta-block {
  margin-bottom: var(--space-lg);
}

.meta-block:last-child {
  margin-bottom: 0;
}

.meta-block h4 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xs);
}

.meta-block p {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: var(--space-xs);
}

.meta-block--price p:first-of-type {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-navy);
}

.price-note {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.termine-cta {
  text-align: center;
  margin-top: var(--space-2xl);
}

.termine-overview {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.termine-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: var(--space-xl);
}

.termine-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.termine-card-header h2 {
  font-size: 1.5rem;
}

/* ============================================
   Contact Form Section
   ============================================ */
.section-contact {
  background: var(--color-navy);
  color: var(--color-white);
  padding: var(--space-3xl) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.contact-form-wrap {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  color: var(--color-text);
}

.contact-form-wrap h2 {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  color: var(--color-navy);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--color-white);
  color: var(--color-text);
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-navy);
  box-shadow: 0 0 0 3px rgba(18,111,164,0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-message {
  border-radius: var(--radius-sm);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.form-message--success {
  background: #e6f4ea;
  color: #1e7e34;
  border: 1px solid #b7e4c7;
}

.form-message--error {
  background: #fbeaea;
  color: #c41e3a;
  border: 1px solid #f5c6cb;
}

#mosparo-box {
  min-height: 80px;
}

.contact-info h2 {
  color: var(--color-white);
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

.contact-info-item {
  margin-bottom: var(--space-lg);
}

.contact-info-item h4 {
  color: var(--color-white);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-xs);
}

.contact-info-item p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.contact-info-item a {
  color: var(--color-white);
}

.contact-info-item a:hover {
  color: var(--color-orange);
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--color-white);
  color: var(--color-text);
  padding: var(--space-md) 0;
  border-top: 1px solid var(--color-border);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
}

.footer-logo:hover {
  color: var(--color-orange);
  text-decoration: none;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.footer-bottom a {
  color: var(--color-text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-bottom a:hover {
  color: var(--color-navy);
}

.footer-legal {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
}

.footer-legal a {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--color-navy);
  text-decoration: underline;
}

/* ============================================
   Content Pages (Impressum, Datenschutz)
   ============================================ */
.content-page {
  padding: calc(var(--space-2xl) + 72px) 0 var(--space-3xl);
}

.page-header {
  margin-bottom: var(--space-xl);
}

.page-header h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.page-content {
  max-width: 720px;
}

.text-content h2,
.text-content h3,
.text-content h4 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.text-content p {
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
  line-height: 1.7;
}

.text-content ul,
.text-content ol {
  margin-bottom: var(--space-md);
  padding-left: 1.5rem;
}

.text-content li {
  margin-bottom: var(--space-xs);
  color: var(--color-text-light);
}

.text-content strong {
  color: var(--color-text);
  font-weight: 600;
}

.text-content a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .hero {
    display: flex;
    flex-direction: column;
  }

  .hero-container {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    padding: calc(var(--space-2xl) + 72px) var(--space-md) var(--space-xl);
    text-align: left;
    align-items: flex-start;
  }

  .hero-lead {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-badge {
    padding-left: 1.25rem;
    text-align: left;
  }

  .hero-badge::before {
    left: 0;
  }

  .hero-visual {
    position: relative;
    min-height: 320px;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
  }

  .hero-visual img {
    position: relative;
    width: 100%;
    height: 100%;
    transform: none;
  }

  .benefits-bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-card:first-child {
    grid-column: span 2;
  }

  .benefit-image--tall {
    grid-row: span 1;
    min-height: 220px;
  }

  .cta-main,
  .philosophy-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cta-image {
    order: -1;
  }

  .cta-info--inline {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-step {
    grid-template-columns: 1fr;
  }

  .process-step:nth-child(even) .process-step-image,
  .process-step:nth-child(even) .process-step-content {
    order: unset;
  }

  .process-steps::before,
  .process-step::after,
  .process-timeline-progress {
    display: none;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --space-3xl: 4rem;
    --space-2xl: 3rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    padding: var(--space-md);
    gap: var(--space-sm);
  }

  .nav-menu.is-open {
    display: flex;
    animation: navSlideIn 0.3s ease forwards;
  }

  .nav-menu a {
    color: var(--color-text-light);
  }

  .nav-menu a:hover {
    color: var(--color-navy);
  }

  .nav-toggle span {
    background: var(--color-text);
  }

  .header-cta {
    display: none;
  }

  @keyframes navSlideIn {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .problems-grid,
  .skills-grid,
  .testimonials-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .benefits-bento {
    grid-template-columns: 1fr;
  }

  .benefit-image--large {
    grid-column: auto;
  }

  .benefit-card,
  .benefit-card:first-child {
    grid-column: auto;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }

  .team-intro {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
  }

  .team-intro-image {
    order: -1;
  }

  .team-intro-content .section-title {
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--space-sm);
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    max-width: 320px;
  }

  .cta-info--inline {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .hero-title {
    font-size: 2rem;
  }
}

/* ============================================
   Modal – Termine & Preise
   ============================================ */
.modal-termine {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  background: transparent;
  border: none;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-termine[open] {
  opacity: 1;
  visibility: visible;
}

.modal-termine__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 32, 48, 0.55);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.modal-termine__content {
  position: relative;
  z-index: 1;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 800px;
  max-height: calc(100dvh - var(--space-xl));
  display: flex;
  flex-direction: column;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.18);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-termine[open] .modal-termine__content {
  transform: translateY(0) scale(1);
}

.modal-termine__close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease, color 0.2s ease;
}

.modal-termine__close:hover {
  background: var(--color-text);
  color: var(--color-white);
}

.modal-termine__body {
  padding: var(--space-xl);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.modal-termine__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.3px;
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.modal-termine__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.modal-termine__card {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
}

.modal-termine__card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}

.modal-termine__card-header h3 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-text);
}

.modal-termine__status {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-sm);
}

.status-badge--aktuell {
  background: #F25A29;
  color: var(--color-white);
}

.status-badge--ausgebucht {
  background: #126FA4;
  color: var(--color-white);
}

.status-badge--vergangen {
  background: var(--color-border);
  color: var(--color-text-muted);
}

.modal-termine__details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.modal-termine__detail h4 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xs);
}

.modal-termine__detail ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modal-termine__detail li {
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.6;
  padding: 0.15rem 0;
}

.modal-termine__detail p {
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.6;
}

.modal-termine__price {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-navy);
}

.modal-termine__empty {
  color: var(--color-text-muted);
  text-align: center;
  padding: var(--space-xl) 0;
}

.modal-termine__footer {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
  text-align: center;
}

@media (max-width: 640px) {
  .modal-termine__details {
    grid-template-columns: 1fr;
  }

  .modal-termine__body {
    padding: var(--space-lg) var(--space-md);
  }

  .modal-termine__content {
    max-height: calc(100dvh - var(--space-md) * 2);
    border-radius: var(--radius-md);
  }
}

/* Modal trigger – inline link style */
.modal-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 500;
  color: var(--color-navy);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.modal-trigger:hover {
  color: var(--color-orange);
}

.modal-trigger svg {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
}
