
:root {
  --c-anthrazit: #252525;
  --c-champagner: #d6c6ab;
  --c-offwhite: #faf7f2;
  --c-bronze: #a9825a;
  --c-schwarzbraun: #2b211b;
  --c-marine: #0d1e33;
  --c-ozeanblau: #1f4e79;
  --c-himmelblau: #a5c7e6;
  --c-gold: #d4b98b;

  --bg: var(--c-offwhite);
  --surface: #ffffff;
  --text: var(--c-anthrazit);
  --muted: #5c5650;

  --brand: #8c6a45;
  --brand-hover: #74563a;
  --accent: var(--c-champagner);
  --border: #e6ddcf;

  --error: #a63d35;

  --cta-blau: #1565c0;
  --cta-blau-hover: #0d47a1;
  --max-width: 1140px;
  --footer-bg: var(--c-schwarzbraun);
  --footer-text: var(--c-champagner);
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("fonts/inter-variable.woff2") format("woff2");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("fonts/playfair-display-variable.woff2") format("woff2");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.error-page a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 3.25rem);
}

h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.heading-as-h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h3 {
  margin: 1.5rem 0 0.6rem;
  font-size: 1.125rem;

}

p {
  margin: 0 0 1rem;
  max-width: 65ch;
  color: var(--text);
}

p:last-child {
  margin-bottom: 0;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.page-home header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: transparent;
  border-bottom-color: transparent;
}

.page-home header.header-solid,
.page-home header.nav-open {
  background: var(--surface);
  border-bottom-color: var(--border);
}

.page-home header:not(.header-solid):not(.nav-open) .nav a,
.page-home header:not(.header-solid):not(.nav-open) .cta-link {
  color: #fff !important;
}

.page-home header:not(.header-solid):not(.nav-open) .nav a::after {
  background-color: #fff;
}

.page-home header:not(.header-solid):not(.nav-open) .cta-link {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.page-home header:not(.header-solid):not(.nav-open) .cta-link:hover {
  background: #fff;
  color: var(--text) !important;
}

.page-home header:not(.header-solid):not(.nav-open) .nav-toggle .bar {
  background-color: #fff;
}

.nav-toggle .bar {
  transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.3s ease;
}

header .container {
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 5.25rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

.logo {
  position: static;
  display: flex;
  align-items: center;

}

.logo img {
  display: block;
  width: 270px;
  height: 56px;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  background: transparent;
}

.page-home header:not(.header-solid):not(.nav-open) #header-logo {
  width: 270px;
  height: 56px;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
  gap: 1.8rem;
}

.nav a {
  position: relative;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.4px;
  padding: 0.25rem 0;
  transition: color 0.25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background-color: var(--brand);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

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

.cta-link,
.cta-secondary,
.hilfe-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  padding: 0 1.3rem;
  border-radius: 0.6rem;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  line-height: 1;
}

.cta-link {
  background: var(--brand);
  color: #fff !important;
  border: 1.5px solid var(--brand);
  transition: all 0.25s ease;
}

.cta-secondary {
  border: 1.5px solid var(--brand);
  color: var(--brand);
  background: transparent;
  transition: background 0.25s ease, color 0.25s ease;
}

.cta-secondary:hover {
  background: var(--brand);
  color: #fff;
}

header .cta-link {
  margin-left: 2rem;
  white-space: nowrap;
  cursor: pointer;
}

.cta-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 14rem;
  padding: 0.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.6rem;
  box-shadow: 0 1rem 2rem -0.5rem rgba(37, 37, 37, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.cta-dropdown-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cta-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.75rem;
  border-radius: 0.4rem;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.cta-dropdown-menu a:hover {
  background: var(--bg);
  color: var(--brand);
}

.cta-dropdown-menu svg {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

.cta-link:hover {
  background: var(--brand-hover);
  border-color: var(--brand-hover);
}

.cta-dropdown {
  position: relative;
}

.cta-dropdown-menu {
  max-width: calc(100vw - 2rem);
}

@media (min-width: 801px) and (max-width: 1099px) {
  header .cta-link {
    margin-left: clamp(0.75rem, 2vw, 2rem);
  }
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 40rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(43, 33, 27, 0.45) 0%,
    rgba(43, 33, 27, 0.3) 40%,
    rgba(43, 33, 27, 0.8) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 8rem 0 3.5rem;
}

.ai-badge {
  position: absolute;
  right: 1.5rem;
  bottom: 1.25rem;
  z-index: 2;
  padding: 0.4em 1.1em;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  cursor: help;
}

.ai-badge-tip {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.5rem);
  width: max-content;
  max-width: min(20rem, 80vw);
  padding: 0.6em 0.9em;
  border-radius: 0.5rem;
  background: rgba(43, 33, 27, 0.96);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.4;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease;
}

.ai-badge:hover .ai-badge-tip,
.ai-badge:focus-visible .ai-badge-tip {
  opacity: 1;
  visibility: visible;
}

.tile-credit {
  position: absolute;
  z-index: 3;
  top: 0.7rem;
  right: 0.7rem;
  padding: 0.35em 0.75em;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.62);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
  pointer-events: none;
}

.hero-text {
  max-width: 52rem;
}

.hero-text h1 {
  color: #fff;
}

.hero-text > p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-subheadline {
  margin-bottom: 0.75rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: #fff;
}

.hero-text > .hero-programs {
  margin-bottom: 1rem;
  color: var(--c-champagner);
}

.hero-text > .hero-copy {
  margin-bottom: 0;
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.4rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-benefits li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.2rem 0;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.2;
}

.hero-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1rem;
  flex: 0 0 1.1rem;
  color: var(--c-champagner);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
}

.hero-cta-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.6rem;
  align-items: center;
  margin-top: 1.75rem;
}

.hero-cta-row .cta-link,
.hero-cta-row .cta-secondary {
  padding-right: 1rem;
  padding-left: 1rem;
  white-space: nowrap;
  font-size: 0.84rem;
}

@media (max-width: 760px) {
  .hero-cta-row {
    flex-wrap: wrap;
  }
}

.hero-text .cta-secondary {
  border-color: #fff;
  color: #fff;
}

.hero-text .cta-secondary:hover {
  background: #fff;
  color: var(--text);
}

.qualification-section {
  padding: 5rem 0;
  background: var(--bg);
}

.qualification-layout {
  display: grid;
  grid-template-columns: minmax(400px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.qualification-intro {
  max-width: 460px;
}

.qualification-intro h2 {
  margin: 0;
  font-size: clamp(1.65rem, 2.85vw, 2.25rem);
  line-height: 1.2;
}

.qualification-heading-line {
  display: block;
  white-space: nowrap;
}

.qualification-brand {
  color: var(--brand);
}

.qualification-panel {
  max-width: 680px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: 0 1.25rem 3rem -2.25rem rgba(37, 37, 37, 0.28);
}

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

.qualification-list li {
  display: grid;
  grid-template-columns: 1.7rem 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  line-height: 1.55;
}

.qualification-list li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 1.45rem;
  height: 1.45rem;
  margin-top: 0.05rem;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
}

.qualification-list li:last-child {
  border-bottom: 0;
}

.qualification-cta {
  margin: 1.4rem 0 0;
  max-width: none;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  color: var(--text);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 600;
}

.qualification-cta a {
  color: var(--brand);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.qualification-cta a:hover {
  color: var(--brand-hover);
}

@media (max-width: 980px) {
  .qualification-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .qualification-intro,
  .qualification-panel {
    max-width: none;
  }
}

@media (max-width: 520px) {
  .qualification-intro h2 {
    font-size: clamp(1.4rem, 7vw, 1.7rem);
  }
}

main > section:not(.hero) {
  padding: 4rem 0;
}

main > .band-white { background: var(--surface); }
main > .band-tint { background: var(--bg); }

main > section:not(.hero) { border-top: 1px solid var(--border); }
main > section:not(.hero):last-child { border-bottom: 1px solid var(--border); }

.kicker {
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}

main blockquote {
  margin: 0 0 1rem;
  padding: 0.75rem 1.25rem;
  max-width: 65ch;
  border-left: 3px solid var(--accent);
  background: var(--surface);
  font-style: italic;
  color: var(--muted);
}

main blockquote.testimonial footer {
  margin-top: 0.6rem;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--muted);
}

.wie-wir-arbeiten {
  position: relative;
  width: min(1480px, calc(100vw - 2.5rem));
  margin-left: 50%;
  transform: translateX(-50%);
  margin-top: 5rem;
  padding: 2.25rem clamp(1.75rem, 4vw, 3.5rem) 2rem;
  overflow: hidden;
  background: linear-gradient(145deg, #25211e 0%, #342a23 100%);
  border: 1px solid rgba(214, 198, 171, 0.18);
  border-radius: 1.25rem;
  box-shadow: 0 2rem 4rem -3rem rgba(37, 37, 37, 0.8);
}

.wie-wir-arbeiten::before {
  content: "";
  position: absolute;
  top: -12rem;
  right: -10rem;
  width: 30rem;
  height: 30rem;
  border: 1px solid rgba(214, 198, 171, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 5rem rgba(214, 198, 171, 0.025);
  pointer-events: none;
}

.wie-wir-arbeiten .kicker {
  position: relative;
  margin-bottom: 0.6rem;
  color: var(--c-champagner);
  text-align: center;
}

.wie-wir-arbeiten h3 { color: #fff; }

.zeitstrahl-headline {
  position: relative;
  margin: 0;
  color: #fff;
  font-size: clamp(1.9rem, 3.6vw, 2.85rem);
  font-weight: 600;
  line-height: 1.08;
  text-align: center;
}

.zeitstrahl-sub {
  position: relative;
  max-width: none;
  margin: 0.6rem auto 1.65rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  text-align: center;
}

.zeitstrahl {
  position: relative;
  overflow-x: auto;
  padding: 0.2rem 0 0.35rem;
  scrollbar-color: rgba(214, 198, 171, 0.55) rgba(255, 255, 255, 0.08);
}

.zeitstrahl-steps {
  --timeline-gap: 0.9rem;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: var(--timeline-gap);
  position: relative;
  min-width: 1040px;
  height: 650px;
  padding: 0 5rem;
}

.zeitstrahl-steps::before {
  content: "";
  position: absolute;
  z-index: 0;
  right: 13.8%;
  top: 50%;
  left: 13.8%;
  height: 2px;
  background: linear-gradient(90deg, var(--c-champagner), #fff 48%, var(--c-champagner));
  opacity: 0.75;
}

.zeitstrahl-steps::after {
  content: "";
  position: absolute;
  right: calc(13.8% - 1px);
  top: calc(50% - 0.28rem);
  width: 0.65rem;
  height: 0.65rem;
  border-top: 2px solid var(--c-champagner);
  border-right: 2px solid var(--c-champagner);
  transform: rotate(45deg);
}

.zeitstrahl-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-self: center;
  width: min(270px, calc(200% - 0.5rem));
  height: 295px;
  min-height: 0;
  padding: 1rem 1.15rem 1.1rem;
  overflow: visible;
  background-color: rgba(255, 255, 255, 0.98);
  background-image: linear-gradient(90deg, var(--brand), var(--c-champagner));
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 100% 3px;
  border: 1px solid rgba(214, 198, 171, 0.7);
  border-radius: 0.45rem;
  box-shadow: 0 1.2rem 2.5rem -1.8rem rgba(0, 0, 0, 0.7);
  text-align: left;
}

.zeitstrahl-step:nth-child(odd) {
  align-self: start;
}

.zeitstrahl-step:nth-child(even) {
  align-self: end;
}

.zeitstrahl-step::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  width: 1px;
  height: 30px;
  background: rgba(214, 198, 171, 0.8);
  transform: translateX(-50%);
}

.zeitstrahl-step:nth-child(odd)::before {
  top: 100%;
}

.zeitstrahl-step:nth-child(even)::before {
  bottom: 100%;
}

.zeitstrahl-step::after {
  content: "";
  position: absolute;
  z-index: 2;
  right: 50%;
  width: 0.9rem;
  height: 0.9rem;
  background: var(--c-champagner);
  border: 4px solid #302820;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(214, 198, 171, 0.24);
  transform: translateX(50%);
}

.zeitstrahl-step:nth-child(odd)::after {
  bottom: -2.325rem;
}

.zeitstrahl-step:nth-child(even)::after {
  top: -2.325rem;
}

.zs-circle {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.75rem;
  color: #fff;
  background: var(--brand);
  border-radius: 50%;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.zs-icon {
  position: absolute;
  top: 0.95rem;
  right: 1.15rem;
  display: grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  color: var(--brand);
  background: rgba(169, 130, 90, 0.08);
  border: 1px solid rgba(169, 130, 90, 0.2);
  border-radius: 0.45rem;
}

.zs-icon svg {
  width: 1.65rem;
  height: 1.65rem;
}

.zs-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text);
  font-family: "Playfair Display", Georgia, serif;
  min-height: 2.6em;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
  text-wrap: balance;
  overflow-wrap: normal;
  hyphens: manual;
}

.zs-card p {
  position: relative;
  z-index: 1;
  max-width: none;
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.42;
  overflow-wrap: normal;
  hyphens: auto;
}

.zeitstrahl-step.reveal {
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.75, 0.25, 1), box-shadow 0.25s ease;
  transform: translateY(-72px);
}

.zeitstrahl-step.reveal--visible {
  transform: none;
}

.zeitstrahl-step.reveal--visible:hover {
  transform: translateY(-6px);
  box-shadow: 0 1.6rem 3rem -1.8rem rgba(0, 0, 0, 0.85);
}

@media (max-width: 960px) {
  .wie-wir-arbeiten {
    width: calc(100vw - 1.5rem);
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

@media (max-width: 640px) {
  .wie-wir-arbeiten {
    margin-top: 3.5rem;
    border-radius: 0.9rem;
  }

  .zeitstrahl-sub {
    margin-bottom: 2.25rem;
  }

  .zeitstrahl-steps {
    min-width: 980px;
    height: 620px;
    padding-right: 4rem;
    padding-left: 4rem;
  }

  .zeitstrahl-step {
    width: min(250px, calc(200% - 0.5rem));
    height: 280px;
  }

  .zeitstrahl-step:nth-child(n).reveal {
    transform: translateY(-52px);
  }

  .zeitstrahl-step.reveal--visible,
  .zeitstrahl-step.reveal--visible:hover {
    transform: none;
  }
}

@media (max-width: 720px) {
  .zeitstrahl-steps {
    grid-template-columns: 1fr;
    min-width: 0;
    height: auto;
    padding: 0.5rem 0;
  }

  .zeitstrahl-steps::before,
  .zeitstrahl-steps::after {
    display: none;
  }

  .zeitstrahl-step {
    width: 100%;
    height: auto;
    justify-self: stretch;
  }

  .zeitstrahl-step:nth-child(odd),
  .zeitstrahl-step:nth-child(even) {
    align-self: auto;
  }

  .zeitstrahl-step::before,
  .zeitstrahl-step::after {
    display: none;
  }
}

.section-sub {
  max-width: 60ch;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.section-sub--nowrap {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(0.62rem, 2.3vw, 1rem);
}

.gruppenbild-platzhalter {
  aspect-ratio: 16 / 9;
  background: rgba(214, 198, 171, 0.25);
  border: 1px dashed var(--border);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  margin-bottom: 2rem;
}

.erfolgsformel {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: 1.375rem;
  color: var(--brand);
  margin-bottom: 2.5rem;
}

.kennen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 280px;
  grid-auto-rows: 1fr;
  gap: 1.25rem;
}

.kennen-card--cta {
  grid-column: 4;
  grid-row: 1 / span 2;
  align-self: center;
}

@media (max-width: 1024px) {
  .kennen-grid { grid-template-columns: repeat(2, 1fr); }
  .kennen-card--cta { grid-column: auto; grid-row: auto; }
}

.hilfe-cta {
  position: absolute;
  left: 50%;
  bottom: -1.5rem;
  transform: translateX(-50%);
  z-index: 2;
  width: fit-content;
  white-space: nowrap;
  background: var(--cta-blau);
  color: #fff !important;
  border: 1.5px solid var(--cta-blau);
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.hilfe-cta:hover {
  background: var(--cta-blau-hover);
  border-color: var(--cta-blau-hover);
}

.hilfe-cta:focus-visible {
  outline: 3px solid #a5c7e6;
  outline-offset: 2px;
}

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

.kennen-card {
  position: relative;
  border-radius: 0.75rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.kennen-card:not(.kennen-card--cta) {
  perspective: 1200px;
  cursor: pointer;
}

.kennen-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.9rem 2rem -0.9rem rgba(37, 37, 37, 0.25);
}

.kennen-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 240px;
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
}

.kennen-card.is-flipped .kennen-card-inner {
  transform: rotateY(180deg);
}

@media (hover: hover) and (pointer: fine) {
  .kennen-card:not(.kennen-card--cta):hover .kennen-card-inner,
  .kennen-card:not(.kennen-card--cta):focus-visible .kennen-card-inner {
    transform: rotateY(180deg);
  }
}

.kennen-card-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 0.75rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.kennen-card-face--front {
  background: var(--surface);
  border: 1px solid var(--border);
}

.kennen-card-face--back {
  background: var(--c-anthrazit);
  border: 1px solid var(--c-anthrazit);
  transform: rotateY(180deg);
}

.kennen-card-face--back p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
}

.kennen-card h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  text-align: center;
}

.kennen-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--c-champagner);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0 auto;
  color: var(--c-schwarzbraun);
}

.kennen-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.kennen-card--cta {
  min-height: 300px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(145deg, var(--cta-blau), var(--cta-blau-hover));
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 1.25rem 2.5rem -1.5rem rgba(13, 71, 161, 0.65);
  color: #fff;
  text-decoration: none;
}

.kennen-card--cta:hover {
  background: linear-gradient(145deg, #1e73cc, var(--cta-blau-hover));
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 1.5rem 3rem -1.25rem rgba(13, 71, 161, 0.75);
}

.kennen-card--cta h3 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  text-align: center;
}

.kennen-card--cta p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  flex: 1;
  text-align: center;
}

.kennen-icon--cta {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

.kennen-cta-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  align-self: center;
  margin-top: 0.35rem;
  padding: 0.65rem 1rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.kennen-card--cta:hover .kennen-cta-action {
  background: rgba(255, 255, 255, 0.22);
  transform: translateX(2px);
}

.kennen-card--cta:focus-visible {
  outline: 3px solid #a5c7e6;
  outline-offset: 3px;
}

.btn-cta-light {
  display: inline-block;
  margin-top: auto;
  padding: 0.55rem 1.1rem;
  border: 1.5px solid #fff;
  border-radius: 0.4rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  align-self: center;
}

.btn-cta-light:hover {
  background: #fff;
  color: var(--c-bronze);
}

.feature-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.feature-list li {
  position: relative;
  padding: 0.3rem 0 0.3rem 1.6rem;
  color: var(--muted);
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 700;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.6rem;
  padding: 1.25rem 1.1rem;
}

.stat-number {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--text);
}

.stat-card p {
  margin: 0.2rem 0 0;
  font-size: 0.85rem;
}

.success-formula {
  max-width: 1120px;
  margin: 3rem auto 0;
  padding: clamp(1rem, 2.2vw, 1.5rem);
  background: #f4efe8;
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: 0 1.4rem 3rem -2.7rem rgba(43, 33, 27, 0.45);
}

.formula-panel {
  padding: clamp(1.15rem, 2.4vw, 1.75rem);
  background: #fff;
  border: 1px solid #dfd2c0;
  border-radius: 0.8rem;
}

.success-formula-header {
  max-width: 820px;
  margin: 0 auto 1.55rem;
  text-align: center;
}

.success-formula-header .kicker {
  margin-bottom: 0.45rem;
  color: var(--brand);
}

.success-formula-header h3 {
  margin: 0 0 0.65rem;
  color: var(--text);
  font-size: clamp(1.55rem, 2.8vw, 2.05rem);
  line-height: 1.12;
}

.success-formula-header .formula-intro {
  max-width: 78ch;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.formula-intro strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--text);
  font-size: 0.92rem;
}

.formula-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.formula-card {
  position: relative;
  min-height: 215px;
  padding: 1.3rem 1.15rem 1.2rem;
  background: #fff;
  border: 1px solid #e3d9cb;
  border-radius: 0.75rem;
  box-shadow: 0 1rem 2rem -1.8rem rgba(43, 33, 27, 0.6);
}

.formula-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.15rem;
  width: 2.4rem;
  height: 2px;
  background: var(--brand);
}

.formula-card-meta {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
  justify-content: space-between;
}

.formula-icon {
  display: inline-flex;
  width: 2.45rem;
  height: 2.45rem;
  align-items: center;
  justify-content: center;
  color: #17384d;
  background: #eef3f5;
  border-radius: 0.65rem;
}

.formula-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.formula-number {
  display: inline-flex;
  width: 1.85rem;
  height: 1.85rem;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--brand);
  border-radius: 50%;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
}

.formula-card h4 {
  margin: 0 0 0.55rem;
  color: var(--text);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.25;
}

.formula-card p {
  max-width: none;
  margin: 0;
  color: var(--muted);
  font-size: 0.77rem;
  line-height: 1.5;
}

.difference-panel {
  position: relative;
  margin-top: 1rem;
  padding: clamp(1.1rem, 2.4vw, 1.65rem);
  overflow: hidden;
  background: #17384d;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.8rem;
  color: #fff;
}

.difference-panel::before {
  content: "";
  position: absolute;
  top: -7rem;
  right: -6rem;
  width: 18rem;
  height: 18rem;
  border: 1px solid rgba(214, 198, 171, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.difference-panel-header {
  position: relative;
  margin-bottom: 1rem;
  text-align: center;
}

.difference-eyebrow {
  margin: 0 0 0.4rem;
  color: var(--c-champagner);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.difference-panel-header h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.difference-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}

.difference-card {
  position: relative;
  min-height: 225px;
  background: transparent;
  perspective: 1200px;
  cursor: pointer;
}

.difference-card:focus-visible {
  outline: 2px solid var(--c-champagner);
  outline-offset: 4px;
}

.difference-card-inner {
  position: absolute;
  inset: 0;
  transition: transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1);
  transform-style: preserve-3d;
}

.difference-card.is-flipped .difference-card-inner {
  transform: rotateY(180deg);
}

@media (hover: hover) and (pointer: fine) {
  .difference-card:hover .difference-card-inner,
  .difference-card:focus-visible .difference-card-inner {
    transform: rotateY(180deg);
  }
}

.difference-card-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: clamp(0.95rem, 1.8vw, 1.25rem);
  overflow: hidden;
  backface-visibility: hidden;
}

.difference-card-face--front {
  justify-content: center;
  background: rgba(10, 33, 49, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.55rem;
}

.difference-card-face--front::after {
  content: "";
  position: absolute;
  right: -3.5rem;
  bottom: -3.5rem;
  width: 7rem;
  height: 7rem;
  border: 1px solid rgba(214, 198, 171, 0.16);
  border-radius: 50%;
}

.difference-card-face--back {
  justify-content: center;
  background: var(--c-offwhite);
  border-radius: 0.55rem;
  color: var(--text);
  transform: rotateY(180deg);
}

.difference-number {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--c-champagner);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 0.8;
}

.difference-card-face--front h4 {
  max-width: 24ch;
  margin: 0;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  line-height: 1.3;
}

.difference-hint {
  position: absolute;
  right: clamp(0.95rem, 1.8vw, 1.25rem);
  bottom: clamp(0.95rem, 1.8vw, 1.25rem);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.difference-back-label {
  margin: 0 0 0.65rem;
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.difference-card-face--back ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.difference-card-face--back li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.4rem;
  color: var(--text);
  border-top: 1px solid var(--border);
  font-size: 0.7rem;
  line-height: 1.38;
}

.difference-card-face--back li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {
  .difference-card-inner {
    transition: none;
  }
}

@media (max-width: 1050px) {
  .formula-grid,
  .difference-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .difference-card {
    min-height: 220px;
  }
}

@media (max-width: 780px) {
  .formula-grid,
  .difference-grid {
    grid-template-columns: 1fr;
  }

  .formula-card {
    min-height: 0;
    text-align: left;
  }

  .difference-card {
    min-height: 230px;
  }
}

@media (max-width: 520px) {
  .success-formula {
    margin-top: 2.5rem;
    padding: 0.65rem;
  }

  .formula-card {
    padding: 1.2rem 0.9rem 1rem;
  }

  .difference-panel {
    padding: 0.85rem;
    border-radius: 0.75rem;
  }

  .difference-card {
    min-height: 235px;
  }
}

.reisearten-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.85rem;
  margin: 3rem 0 0;
}

@media (max-width: 900px) {
  .reisearten-grid { grid-template-columns: repeat(3, 1fr); }
}

.reiseart-card {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.reiseart-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.reiseart-card:hover img {
  transform: scale(1.05);
}

.reiseart-card span {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1rem 1rem;
  background: linear-gradient(to top, rgba(37,37,37,0.8) 0%, transparent 100%);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.reiseart-hover {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  padding-bottom: 3.25rem;
  background: linear-gradient(to top, rgba(37,37,37,0.9) 0%, rgba(37,37,37,0.5) 60%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.reiseart-card:hover .reiseart-hover,
.reiseart-card:focus-within .reiseart-hover,
.reiseart-card.is-active .reiseart-hover {
  opacity: 1;
}

.reiseart-hover-brand {
  display: block;
  color: var(--c-champagner);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.reiseart-hover p {
  margin: 0;
  color: #fff;
  font-size: 0.82rem;
  line-height: 1.5;
  max-width: none;
}

.reisearten-nav {
  display: none;
}

@media (max-width: 640px) {
  .reisearten-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 78%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 0;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
  }

  .reiseart-card {
    scroll-snap-align: start;
  }

  .reisearten-nav {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
  }

  .reisearten-arrow {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1.5px solid var(--brand);
    background: var(--surface);
    color: var(--brand);
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
  }

  .reisearten-arrow:hover {
    background: var(--brand);
    color: #fff;
  }
}

.ref-card--photo {
  padding: 0;
  overflow: hidden;
  position: relative;
  min-height: 340px;
  border-left: none;
  border-color: transparent;
  cursor: zoom-in;
}

.ref-card--photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(37,37,37,0.97) 0%, rgba(37,37,37,0.75) 45%, rgba(37,37,37,0.1) 100%);
  z-index: 1;
  pointer-events: none;
}

.ref-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.8) saturate(0.65);
  transition: transform 0.65s ease;
}

.ref-card--photo:hover .ref-photo {
  transform: scale(1.06);
}

.ref-card-body {
  padding: 1.75rem;
}

.ref-card--photo .ref-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.75rem;
  z-index: 2;
}

.ref-card--photo h3 {
  color: #fff;
}

.ref-card--photo .ref-type {
  color: var(--c-champagner);
}

.ref-card--photo .ref-card-body p:not(.ref-type) {
  color: #fff !important;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 0.5rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.8);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.pricing-card {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--surface);
}

.pricing-card.featured {
  border-color: var(--brand);
  background: #fbf8f3;
  box-shadow: 0 8px 24px rgba(169, 130, 90, 0.15);
}

.pricing-label {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text);
}

.pricing-label .star {
  color: var(--brand);
  font-size: 1rem;
}

.pricing-price {
  margin: 0.2rem 0 0.75rem;
  font-weight: 600;
  color: var(--brand);
}

.pricing-included {
  max-width: 48rem;
  margin: 0 0 1.75rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.pricing-included::first-letter {
  color: var(--brand);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 0 0 2.5rem;
}

.team-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  font-size: 0.88rem;
  text-align: center;
}

.team-photo {
  display: block;
  width: 100%;
  height: auto;
}

.team-photo--placeholder {
  background: var(--c-champagner);
  opacity: 0.5;
  height: 220px;
  border-radius: 0.5rem;
}

.team-card strong {
  display: block;
  padding: 0.75rem 1rem 0.2rem;
  color: var(--text);
}

.team-card span {
  display: block;
  padding: 0 1rem 0.9rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.team-group-block {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
}
.team-group-photo {
  background: var(--c-champagner);
  opacity: 0.45;
  border-radius: 0.75rem;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--c-schwarzbraun);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.team-group-caption {
  margin-top: 1.25rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  color: var(--c-schwarzbraun);
  opacity: 0.7;
}

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

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

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  margin-top: 2rem;
  align-items: start;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-list li {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 0.5rem;
}

.contact-list li span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
  padding-top: 0.1rem;
}

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

.contact-list a:hover {
  color: var(--brand);
}

.kontakt-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--text);
}

.kontakt-form input,
.kontakt-form select,
.kontakt-form textarea {
  display: block;
  width: 100%;
  padding: 0.65rem 0.9rem;
  margin-bottom: 1.1rem;
  border: 1px solid var(--border);
  border-radius: 0.4rem;
  background: var(--surface);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  transition: border-color 0.15s, outline-color 0.15s;
}

.kontakt-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%238c6a45' stroke-width='1.6' d='M1 1.5 6 6.5l5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.4rem;
  cursor: pointer;
}

.kontakt-form input:focus,
.kontakt-form select:focus,
.kontakt-form textarea:focus {
  outline: 2px solid var(--brand);
  outline-offset: 0;
  border-color: var(--brand);
}

.kontakt-form textarea {
  resize: vertical;
  min-height: 130px;
}

button.cta-link {
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  width: 100%;
}

.form-hint {
  margin: 0.6rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}

.form-status {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.5;
}

.form-status:empty {
  display: none;
}

.form-status--success {
  color: var(--brand);
}

.form-status--error {
  color: var(--error);
}

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

.feature-row {
  padding: 5rem 0;
}

.feature-row--alt {
  background: var(--surface);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.feature-img {
  position: relative;
}

.feature-img::before {
  content: "";
  position: absolute;
  inset: -1.25rem -1.25rem 1.25rem 1.25rem;
  background: var(--c-champagner);
  border-radius: 0.75rem;
  opacity: 0.35;
  z-index: 0;
}

.feature-row--alt .feature-img::before {
  inset: -1.25rem 1.25rem 1.25rem -1.25rem;
}

.feature-img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 1.5rem 3rem -1rem rgba(37, 37, 37, 0.22);
  position: relative;
  z-index: 1;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.feature-img img.feature-img-focus-right {
  object-position: right center;
}

.family-callout {
  display: grid;
  grid-template-columns: 2.8rem minmax(0, 1fr);
  gap: 0.8rem;
  align-items: center;
  margin-top: 2rem;
  padding: 1.05rem 1.3rem;
  background: rgba(36, 108, 160, 0.08);
  border: 1px solid rgba(36, 108, 160, 0.24);
  border-radius: 0.85rem;
}

.family-callout p {
  max-width: none;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.88rem, 1.6vw, 0.98rem);
  line-height: 1.5;
}

.family-callout strong {
  color: var(--text);
}

.family-callout-icon {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--cta-blau);
}

.family-callout-icon::before {
  content: "";
  position: absolute;
  top: 0.1rem;
  left: 0.55rem;
  width: 0.75rem;
  height: 0.75rem;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.family-callout-icon::after {
  content: "";
  position: absolute;
  bottom: 0.1rem;
  left: 0.1rem;
  width: 1.6rem;
  height: 0.85rem;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 1rem 1rem 0 0;
}

.family-callout-icon span {
  position: absolute;
  top: 0.78rem;
  right: 0.05rem;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1;
}

@media (max-width: 600px) {
  .family-callout {
    grid-template-columns: 2.35rem minmax(0, 1fr);
    padding: 1rem;
  }

  .family-callout-icon {
    transform: scale(0.88);
    transform-origin: left center;
  }
}

.feature-text .kicker {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.feature-text h3 {
  margin-top: 0;
  font-size: 1.03rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 1rem;
}

.feature-text > p {
  max-width: 52ch;
  font-size: 1rem;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .feature-img::before { display: none; }
  .feature-row--alt .feature-grid .feature-text { order: 1; }
  .feature-row--alt .feature-grid .feature-img  { order: 2; }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.ref-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}

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

.ref-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.75rem;
  transition: box-shadow 0.2s;
}

.ref-card:hover {
  box-shadow: 0 0.5rem 1.5rem -0.5rem rgba(37,37,37,0.12);
}

.ref-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
}

.ref-type {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 0.9rem;
  max-width: none;
}

.ref-card p:last-child {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
}

#referenzen {
  background: #fbfaf8;
}

.references-intro {
  max-width: 62ch;
  margin-top: 0.45rem;
  color: var(--muted);
}

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 58rem);
  gap: 1.15rem;
  margin: 1.75rem auto 0;
}

.ref-card.case-study-card {
  height: 23rem;
  min-width: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 0.55rem;
  box-shadow: 0 1.1rem 2.4rem -2rem rgba(37, 37, 37, 0.38);
}

.case-study-photo {
  display: block;
  flex: 0 0 11.25rem;
  width: 100%;
  height: 11.25rem;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.case-study-card:hover .case-study-photo {
  transform: scale(1.025);
}

.case-study-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1rem 1.1rem 1.05rem;
}

.case-study-label {
  max-width: none;
  margin: 0 0 0.4rem;
  color: var(--brand);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ref-card.case-study-card h3 {
  min-height: 4.45rem;
  margin: 0;
  color: var(--text);
  font-size: clamp(1.08rem, 1.65vw, 1.32rem);
  line-height: 1.18;
}

.case-study-sub {
  min-height: 2.2rem;
  max-width: none;
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.case-study-open {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding: 0.6rem 0;
  align-items: center;
  gap: 0.55rem;
  color: #17384d;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--brand);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
}

.case-study-open span {
  transition: transform 0.2s ease;
}

.case-study-open:hover span {
  transform: translateX(0.25rem);
}

.references-placeholder-label {
  margin: 2.2rem 0 0;
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-study-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 1rem 0;
  padding: 0.75rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.case-study-facts div {
  min-width: 0;
  padding: 0 0.65rem;
  text-align: center;
}

.case-study-facts div + div {
  border-left: 1px solid var(--border);
}

.case-study-facts dt {
  color: #17384d;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
}

.case-study-facts dd {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.65rem;
  line-height: 1.25;
}

.case-study-summary,
.case-study-result {
  max-width: none;
  font-size: 0.78rem;
  line-height: 1.48;
}

.case-study-summary {
  margin: 0;
  color: var(--text);
}

.ref-card.case-study-card .case-study-result {
  margin: 0.8rem 0 0;
  padding-left: 0.75rem;
  color: var(--muted);
  border-left: 2px solid var(--brand);
  font-size: 0.75rem;
  line-height: 1.45;
}

.case-study-result strong {
  color: var(--text);
}

@media (max-width: 820px) {
  .case-study-grid {
    grid-template-columns: 1fr;
    width: min(100%, 32rem);
  }
}

@media (max-width: 480px) {
  .case-study-body {
    padding: 1rem;
  }

  .case-study-facts div {
    padding: 0 0.35rem;
  }
}

.case-study-dialog {
  width: min(1080px, calc(100% - 2rem));
  max-height: 92vh;
  margin: auto;
  padding: 0;
  overflow: auto;
  color: var(--text);
  background: #fff;
  border: 0;
  border-radius: 0.85rem;
  box-shadow: 0 2rem 5rem rgba(18, 27, 33, 0.38);
}

.case-study-dialog::backdrop {
  background: rgba(13, 28, 38, 0.78);
  backdrop-filter: blur(3px);
}

.case-study-dialog-shell {
  position: relative;
  padding: clamp(1.3rem, 3vw, 2.3rem);
}

.case-study-dialog-close {
  position: sticky;
  z-index: 3;
  top: 0;
  float: right;
  width: 2.45rem;
  height: 2.45rem;
  margin: -0.5rem -0.5rem 0.5rem 1rem;
  color: #fff;
  background: #17384d;
  border: 0;
  border-radius: 50%;
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
}

.case-study-dialog h2 {
  max-width: 25ch;
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.08;
}

.case-study-dialog-sub {
  max-width: none;
  margin: 0.55rem 0 1.15rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.case-study-dialog-hero {
  display: block;
  width: 100%;
  max-height: 310px;
  object-fit: cover;
  border-radius: 0.55rem;
}

.case-study-dialog-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--border);
}

.case-study-dialog-facts div {
  padding: 0 0.75rem;
  text-align: center;
}

.case-study-dialog-facts div + div {
  border-left: 1px solid var(--border);
}

.case-study-dialog-facts dt {
  color: var(--brand);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.case-study-dialog-facts dd {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.25;
}

.case-study-dialog-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 1rem;
  margin-top: 1rem;
}

.case-study-dialog-grid > section,
.case-study-dialog-details section {
  padding: 1rem;
  background: #faf7f2;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
}

.case-study-dialog-grid h3 {
  margin: 0 0 0.45rem;
  color: #17384d;
  font-size: 0.9rem;
}

.case-study-dialog-grid p,
.case-study-dialog-grid li {
  max-width: none;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.45;
}

.case-study-dialog-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.case-study-dialog-grid li {
  position: relative;
  padding: 0.32rem 0 0.32rem 1.1rem;
  border-top: 1px solid rgba(140, 106, 69, 0.14);
}

.case-study-dialog-grid li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 700;
}

.case-study-dialog-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.case-study-dialog-details p {
  margin: 0;
}

.case-study-dialog-details .case-study-dialog-result {
  grid-column: 1 / -1;
  background: #eef3f5;
  border-color: #cbd9df;
}

@media (max-width: 760px) {
  .case-study-dialog-grid,
  .case-study-dialog-details {
    grid-template-columns: 1fr;
  }

  .case-study-dialog-details .case-study-dialog-result {
    grid-column: auto;
  }

  .case-study-dialog-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem 0;
  }

  .case-study-dialog-facts div:nth-child(3) {
    border-left: 0;
  }
}

.ref-photo-zoom {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(37,37,37,0.55);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.6rem;
  border-radius: 0.35rem;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
  z-index: 3;
}
.ref-card--photo:hover .ref-photo-zoom { opacity: 1; }
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(37,37,37,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  animation: lbFade 0.25s ease;
}
.lightbox--open { display: flex; }
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 0.75rem;
  object-fit: contain;
  box-shadow: 0 2rem 5rem rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.15s;
}
.lightbox-close:hover { opacity: 1; }

.expertenstimme {
  background: var(--c-offwhite);
  padding: 5rem 0;
  border-top: 1px solid var(--border);
}

.expertenstimme-grid {
  display: grid;
  grid-template-columns: minmax(13rem, 28%) 1fr;
  gap: 3rem;
  align-items: center;
}

.expertenstimme-photo {
  width: min(100%, 17rem);
  justify-self: center;
}

.expertenstimme-photo-crop {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 0.75rem;
  box-shadow: 0 1.5rem 3rem -1rem rgba(37, 37, 37, 0.22);
}

.expertenstimme-photo-crop img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  transform: scale(1.55);
  transform-origin: 58% 22%;
}

.expertenstimme-photo-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(212, 185, 139, 0.42);
  border-radius: 1.1rem;
  background: linear-gradient(145deg, rgba(255,255,255,0.13), rgba(212,185,139,0.12));
  color: rgba(255,255,255,0.78);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.expertenstimme-text blockquote {
  margin: 0.5rem 0 1.5rem;
  padding: 0;
  max-width: 62ch;
  border-left: none;
  background: none;
  font-style: normal;
  color: var(--c-schwarzbraun);
}

.expertenstimme-text .quote-mark {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3.5rem;
  line-height: 0.85;
  color: var(--c-champagner);
  margin: -0.35rem 0 0.45rem;
}

.expertenstimme-text .quote-mark--close {
  display: inline;
  margin: 0 0 0 0.12rem;
  font-size: 3.5rem;
  line-height: 0;
  vertical-align: -0.62em;
}

@media (max-width: 900px) {
  .expertenstimme-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .expertenstimme-photo {
    width: min(100%, 15rem);
  }
}

#team {
  padding: 4rem 0;
}

.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);

  padding: 2.5rem 0 calc(3rem + env(safe-area-inset-bottom, 0px));
}

.site-footer p {
  color: var(--footer-text);
}

.site-footer .container {
  display: grid;
  gap: 1rem;
}

.site-footer a {
  color: var(--footer-text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(214, 198, 171, 0.25);
  font-size: 0.9rem;
  text-align: center;
  color: #b8ab98;
}

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

.nav-toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

header.nav-open .nav-toggle .bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
header.nav-open .nav-toggle .bar:nth-child(2) { opacity: 0; }
header.nav-open .nav-toggle .bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 1099px) {

  header .container {
    flex-wrap: wrap;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
    min-height: auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .logo img,
  .page-home header:not(.header-solid):not(.nav-open) #header-logo {
    width: 220px;
    height: 52px;
  }

  header > .container > .cta-link { display: none; }

  header.nav-open > .container::after {
    content: "";
    order: 1;
    flex: 0 0 100%;
    height: 0;
  }

  header.nav-open > .container::before {
    content: "";
    order: 3;
    flex: 0 0 100%;
    height: 0;
  }

  header.nav-open > .container > .nav-toggle {
    order: 4;
    margin-left: auto;
  }

  header.nav-open > .container > .cta-link {
    display: flex;
    align-items: center;
    justify-content: center;
    order: 2;
    flex: 0 0 auto;
    width: auto;
    min-height: 0;
    padding: 0.7rem 1.4rem;
    margin: 0.7rem auto 0.3rem;
    line-height: 1.2;
  }

  .nav-toggle { display: flex; }

  .nav {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    margin: 0;
    padding-bottom: 0.75rem;
    border-top: 1px solid var(--border);
  }

  header.nav-open .nav { display: flex; }

  .nav a {
    padding: 0.85rem 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
  }

  .nav a::after { display: none; }
}

@media (max-width: 800px) {
  .hero {
    min-height: 34rem;
  }

  .hero-inner {
    padding: 6rem 0 2.5rem;
  }

  main > section:not(.hero) { padding: 3rem 0; }
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal--visible {
  opacity: 1;
  transform: none;
}

@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;
  }
}

.hero-badges {
  padding-top: 1.5rem;
}

.hero-badges-label {
  margin: 0 0 1.25rem;
  max-width: none;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.marquee-wrapper {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  padding: 0.5rem 0;
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee-scroll 35s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-right: 4.5rem;
}

.marquee-item img {
  height: 88px;
  width: auto;
  object-fit: contain;
  filter: grayscale(15%);
  transition: filter 0.25s ease;
}

.marquee-item:hover img {
  filter: grayscale(0%);
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.impressum-content h2 {
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 2rem 0 0.4rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.3rem;
}

.impressum-content h3 {
  font-family: inherit;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text);
  margin: 1.6rem 0 0.4rem;
}

.impressum-content h4 {
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  margin: 1.15rem 0 0.3rem;
}

.kontakt-popup {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1200;
  max-width: 320px;
  width: calc(100vw - 2rem);
  padding: 1.5rem 1.25rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  box-shadow: 0 1.5rem 3rem -1rem rgba(37, 37, 37, 0.22);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.kontakt-popup[hidden] {
  display: none;
}

.kontakt-popup.is-open {
  opacity: 1;
  transform: translateY(0);
}

.kontakt-popup-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
}

.kontakt-popup-close:hover {
  color: var(--brand);
}

.kontakt-popup-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.kontakt-popup-avatar {
  display: block;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.kontakt-popup-text {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.kontakt-popup-name {
  margin: 0;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.kontakt-popup-role {
  margin: 0;
  font-weight: 400;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.3;
}

.kontakt-popup-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
}

.kontakt-popup-contact li {
  margin-bottom: 0.2rem;
}

.kontakt-popup-contact a {
  color: var(--brand);
  text-decoration: underline;
}

.kontakt-popup-contact a:hover {
  color: var(--brand-hover);
}

.kontakt-popup-icon {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1200;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  border: none;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 1rem 2rem -0.5rem rgba(37, 37, 37, 0.3);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.25s ease;
  cursor: pointer;
}

.kontakt-popup-icon[hidden] {
  display: none;
}

.kontakt-popup-icon.is-open {
  opacity: 1;
  transform: translateY(0);
}

.kontakt-popup-icon:hover {
  background: var(--brand-hover);
}

.kontakt-popup-icon svg {
  width: 24px;
  height: 24px;
}

.servicepakete-hinweis {
  margin-top: 2.5rem;
  padding: 2rem;
  background: rgba(214, 198, 171, 0.18);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  text-align: center;
}

.servicepakete-hinweis h3 {
  margin-top: 0;
}

.servicepakete-hinweis p {
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}

.servicepakete-hinweis a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: underline;
}

.servicepakete-hinweis a:hover {
  color: var(--brand-hover);
}

.hero {
  min-height: 47rem;
  justify-content: center;
  background: #f7f4ee;
}

.hero-bg {
  inset: 0 0 0 37%;
}

.hero-bg img {
  object-position: 58% center;
}

.hero-scrim {
  background: linear-gradient(90deg, #f7f4ee 0%, rgba(247, 244, 238, 0.97) 18%, rgba(247, 244, 238, 0.72) 43%, rgba(247, 244, 238, 0.15) 68%, transparent 82%);
}

.hero-inner {
  width: 100%;
  padding: 7rem 0 2.6rem;
}

.hero-text {
  max-width: 69rem;
}

.hero-text h1 {
  max-width: 46rem;
  margin-bottom: 0.9rem;
  color: var(--c-schwarzbraun);
}

.hero-subheadline {
  max-width: 47rem;
  margin: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.42;
  color: var(--c-marine);
}

.hero-subheadline-event {
  white-space: nowrap;
}

.hero-subheadline-programs {
  white-space: nowrap;
}

.hero-text > p.hero-audience {
  max-width: 43rem;
  margin: 0.55rem 0 0;
  color: var(--c-marine);
  font-size: clamp(1rem, 1.45vw, 1.15rem);
  line-height: 1.5;
}

.page-home main {
  display: flex;
  flex-direction: column;
}

#start { order: 1; }
#einordnung { order: 2; }
#weiche { order: 3; }
#ueber-uns { order: 4; }
.qualification-section { order: 6; }
#ablauf { order: 7; }
#leistungen { order: 8; }
#reisehighlights { order: 9; }
#versprechen { order: 10; }
#erfolgsformel { order: 11; }
#zusammenarbeit { order: 12; }
#pakete { order: 13; }
#referenzen { order: 14; }
#team { order: 15; }
.expertenstimme { order: 16; }
.hero-badges-section { order: 17; }
#faq { order: 18; }
#kontakt { order: 19; }

#ablauf,
#ueber-uns .success-formula,
#leistungen .wie-wir-arbeiten,
#leistungen .service-highlights-preview {
  display: none;
}

#erfolgsformel {
  background: var(--c-offwhite);
}

.formula-section-shell {
  padding-top: clamp(0.5rem, 1.5vw, 1.25rem);
}

#erfolgsformel .success-formula-header {
  max-width: 820px;
  margin-bottom: 2rem;
}

#erfolgsformel .success-formula-header h2 {
  margin-bottom: 0.7rem;
}

#erfolgsformel .formula-card {
  min-height: 13rem;
}

#erfolgsformel .formula-card h3 {
  margin: 0.8rem 0 0.45rem;
  color: var(--c-marine);
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

#ueber-uns {
  background: var(--c-offwhite);
}

#ueber-uns .about-copy {
  max-width: 67rem;
  display: grid;
  gap: 0.45rem;
}

#ueber-uns .about-copy p {
  max-width: none;
  font-size: clamp(1.03rem, 1.4vw, 1.2rem);
  line-height: 1.75;
}

.about-team-mosaic {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 2.4rem 0 1.25rem;
  min-height: 24rem;
  overflow: hidden;
  border-radius: 1.25rem;
}

.about-team-mosaic img,
.about-team-placeholder {
  width: 100%;
  height: 100%;
  min-height: 24rem;
  object-fit: cover;
}

.about-group-photo {
  margin: 2.4rem 0 1.25rem;
}

.about-group-photo h3 {
  margin: 0 0 0.75rem;
  text-align: left;
  color: var(--strang-accent);
}

.about-group-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.25rem;
}

.about-team-mosaic img:nth-child(even) { object-position: center 25%; }

.about-team-placeholder {
  display: grid;
  place-items: center;
  color: var(--c-bronze);
  background: linear-gradient(145deg, var(--c-champagner), #fff);
  font-family: var(--font-heading);
  font-size: clamp(4rem, 9vw, 8rem);
}

#ueber-uns .stats-grid,
.qualification-section .stats-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.7rem;
}

#ueber-uns .stat-card,
.qualification-section .stat-card {
  min-height: 9rem;
  padding: 1.2rem 0.85rem;
}

#ueber-uns .stat-number,
.qualification-section .stat-number { font-size: clamp(1.35rem, 2.4vw, 2rem); }

.qualification-section {
  position: relative;
  background-image:
    linear-gradient(rgba(250, 247, 242, 0.8), rgba(250, 247, 242, 0.7)),
    url("../Fotos/Villa_seitlich.webp") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.qualification-section .qualification-layout {
  grid-template-columns: 1fr;
  gap: 1.7rem;
  max-width: 70rem;
  margin: 0 auto;
}

.qualification-section .qualification-intro {
  display: block;
  max-width: 62rem;
  text-align: left;
}

.partner-team-card {
  width: min(100%, 430px);
  margin: 0;
  padding: 8px;
  border: 1px solid rgba(166, 119, 73, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(44, 34, 24, 0.08);
}

.partner-team-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 54% 50%;
  border-radius: 12px;
}

.partner-team-card figcaption {
  padding: 0.8rem 0.35rem 0.3rem;
  text-align: left;
}

.partner-team-card figcaption strong {
  display: block;
  color: var(--c-marine);
  font-size: 0.98rem;
  font-weight: 700;
}

.partner-team-card figcaption span {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.82rem;
}

@media (max-width: 860px) {
  .qualification-section .qualification-intro {
    grid-template-columns: 1fr;
  }
  .partner-team-card {
    order: -1;
    max-width: 520px;
    margin: 0 auto;
  }
}

.qualification-intro > p:not(.kicker) {
  max-width: 46rem;
  margin: 1rem 0 0;
}

.qualification-panel {
  max-width: none;
  padding: clamp(1.25rem, 2.6vw, 2rem);
}

.qualification-section .qualification-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.qualification-section .qualification-list li {
  min-height: 5.4rem;
  padding: 1rem;
  border: 1px solid rgba(169,130,90,0.2);
  border-radius: 0.75rem;
  background: rgba(250,247,242,0.74);
  line-height: 1.48;
}

.qualification-section .qualification-list strong {
  color: var(--c-marine);
}

.qualification-section .qualification-cta {
  margin-top: 1rem;
  padding-top: 1rem;
  text-align: center;
}

@media (max-width: 760px) {
  .qualification-section .qualification-list {
    grid-template-columns: 1fr;
  }

  .qualification-section .qualification-list li:last-child {
    grid-column: auto;
  }
}

#versprechen { background: #fff; }

.business-services {
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;

  background: transparent;
}

.business-services-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.27fr) minmax(20rem, 0.93fr);
  align-items: stretch;
  gap: clamp(2rem, 4vw, 4.5rem);
}

.business-services-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.business-services-copy h3 {
  margin: 0 0 0.85rem;
  color: var(--c-marine);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 4.15vw, 4.15rem);
  line-height: 1.02;
}

.business-services-copy > p:last-of-type {
  max-width: 43rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.65;
}

.business-services-image {
  min-height: 24rem;
  overflow: hidden;
  border-radius: 1.2rem;
  box-shadow: 0 1.5rem 3.5rem -2rem rgba(13, 30, 51, 0.38);
}

.business-services-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.business-trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 2rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(169, 130, 90, 0.26);
}

.business-trust-row > div {
  padding: 0 1rem;
  border-right: 1px solid rgba(169, 130, 90, 0.24);
}

.business-trust-row > div:first-child { padding-left: 0; }
.business-trust-row > div:last-child { padding-right: 0; border-right: 0; }

.business-trust-row strong,
.business-trust-row span {
  display: block;
}

.business-trust-row strong {
  margin-bottom: 0.28rem;
  color: var(--c-bronze);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.business-trust-row span {
  color: var(--c-marine);
  font-size: 0.84rem;
  line-height: 1.4;
}

.business-service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: clamp(2.5rem, 4vw, 4rem);
  overflow: hidden;
  border: 1px solid rgba(169, 130, 90, 0.2);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 1.25rem 3rem -2.5rem rgba(13, 30, 51, 0.28);
}

.business-service-grid article {
  min-width: 0;
  padding: clamp(1.35rem, 2vw, 2rem) clamp(1rem, 1.5vw, 1.45rem);
  border-right: 1px solid rgba(169, 130, 90, 0.18);
  text-align: center;
}

.business-service-grid article:last-child { border-right: 0; }

.business-service-icon {
  display: grid;
  place-items: center;
  width: 3.7rem;
  height: 3.7rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  color: var(--c-bronze);
  background: #f7f1e9;
}

.business-service-icon svg {
  width: 1.9rem;
  height: 1.9rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.business-service-grid h4 {
  min-height: 2.8em;
  margin: 0 0 0.7rem;
  color: var(--c-marine);
  font-size: clamp(0.86rem, 1.1vw, 1rem);
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.business-service-grid p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.78rem, 0.9vw, 0.9rem);
  line-height: 1.55;
}

.business-service-footer {
  margin-top: clamp(2rem, 4vw, 3.25rem);
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border: 1px solid rgba(169, 130, 90, 0.18);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 1.25rem 3rem -2.5rem rgba(13, 30, 51, 0.28);
}

.business-service-footer h4 {
  margin: 0 0 1.35rem;
  color: var(--c-marine);
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.75rem);
  font-weight: 500;
  text-align: left;
}

.business-service-footer ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.business-service-footer li {
  display: grid;
  min-height: 4.4rem;
  padding: 0.9rem 1rem;
  place-items: center;
  color: var(--c-marine);
  border: 1px solid rgba(169, 130, 90, 0.2);
  border-radius: 0.7rem;
  background: var(--c-offwhite);
  font-size: clamp(0.86rem, 1.1vw, 0.98rem);
  font-weight: 750;
  text-align: center;
}

.business-service-footer li::before {
  content: none;
}

.business-service-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 1rem;
  padding: 0.9rem 1rem;
  border-left: 1px solid rgba(169, 130, 90, 0.28);
  color: var(--c-marine);
  text-decoration: none;
}

.business-service-cta span,
.business-service-cta strong { grid-column: 1; }
.business-service-cta span { font-size: 0.82rem; }
.business-service-cta strong { margin-top: 0.15rem; color: var(--c-bronze); font-size: 0.88rem; letter-spacing: 0.04em; text-transform: uppercase; }
.business-service-cta b { grid-column: 2; grid-row: 1 / span 2; display: grid; place-items: center; width: 2.45rem; height: 2.45rem; border-radius: 50%; color: #fff; background: var(--c-bronze); }

@media (max-width: 1100px) {
  .business-service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .business-service-grid article { border-bottom: 1px solid rgba(169, 130, 90, 0.18); }
  .business-service-grid article:nth-child(3n) { border-right: 0; }
  .business-service-grid article:nth-child(n+4) { border-bottom: 0; }
}

@media (max-width: 860px) {
  .business-services-intro { grid-template-columns: 1fr; }
  .business-services-image { min-height: 20rem; order: -1; }
  .business-service-footer { grid-template-columns: 1fr; gap: 1rem; }
  .business-service-cta { border-top: 1px solid rgba(169, 130, 90, 0.28); border-left: 0; }
}

@media (max-width: 640px) {
  .business-trust-row { grid-template-columns: 1fr; gap: 0.8rem; }
  .business-trust-row > div { padding: 0 0 0.8rem; border-right: 0; border-bottom: 1px solid rgba(169, 130, 90, 0.18); }
  .business-trust-row > div:last-child { padding-bottom: 0; border-bottom: 0; }
  .business-service-grid { grid-template-columns: 1fr 1fr; }
  .business-service-grid article:nth-child(3n) { border-right: 1px solid rgba(169, 130, 90, 0.18); }
  .business-service-grid article:nth-child(2n) { border-right: 0; }
  .business-service-grid article:nth-child(n+4) { border-bottom: 1px solid rgba(169, 130, 90, 0.18); }
  .business-service-grid article:nth-child(n+5) { border-bottom: 0; }
  .business-service-grid h4 { min-height: auto; }
  .business-service-footer ul { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 430px) {
  .section-sub--nowrap {
    white-space: normal;
    font-size: 0.95rem;
  }

  .business-service-grid { grid-template-columns: 1fr; }
  .business-service-grid article { border-right: 0 !important; border-bottom: 1px solid rgba(169, 130, 90, 0.18) !important; }
  .business-service-grid article:last-child { border-bottom: 0 !important; }
}

.bonus-services {
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  background: linear-gradient(135deg, #fff 0%, #fbf7f1 52%, #f0e3d3 100%);
  border-bottom: 1px solid rgba(169, 130, 90, 0.18);
}

.bonus-services-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(20rem, 0.9fr);
  align-items: stretch;
  gap: clamp(2rem, 4vw, 4.5rem);
}

.bonus-services-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bonus-services-copy h3 {
  margin: 0 0 0.85rem;
  color: var(--c-marine);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 4.15vw, 4.15rem);
  line-height: 1.02;
}

.service-promise-title {
  margin: 0 0 1.15rem !important;
  color: var(--c-marine) !important;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.15vw, 2.05rem) !important;
  line-height: 1.12 !important;
}

.service-promise-title span { color: var(--c-bronze); }

.bonus-services-copy > p:last-of-type {
  max-width: 44rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.65;
}

.bonus-services-image {
  min-height: 0;
  aspect-ratio: 3 / 2;
  align-self: center;
  overflow: hidden;
  border-radius: 1.2rem;
  box-shadow: 0 1.5rem 3.5rem -2rem rgba(13, 30, 51, 0.38);
}

.bonus-services-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bonus-benefit-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 1rem;
  padding: 0.9rem 0.75rem;
  border: 1px solid rgba(31, 78, 121, 0.28);
  border-radius: 0.75rem;
  background: linear-gradient(90deg, rgba(165, 199, 230, 0.24), rgba(250, 247, 242, 0.72));
}

.bonus-benefit-row > div {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 0.7rem;
  align-items: center;
  padding: 0.15rem 0.85rem;
  border-right: 1px solid rgba(31, 78, 121, 0.2);
}

.bonus-benefit-row > div:first-child { padding-left: 0; }
.bonus-benefit-row > div:last-child { padding-right: 0; border-right: 0; }

.bonus-benefit-icon {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  color: var(--c-ozeanblau);
}

.bonus-benefit-icon svg,
.bonus-service-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bonus-benefit-row p {
  margin: 0;
}
.bonus-benefit-row strong,
.bonus-benefit-row span { display: block; }
.bonus-benefit-row strong {
  margin: 0 0 0.2rem;
  color: var(--c-marine);
  font-size: 0.78rem;
  line-height: 1.25;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}
.bonus-benefit-row p > span {
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.38;
}

.bonus-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(2.5rem, 4vw, 4rem);
}

.service-core-grid {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(3rem, 5vw, 4.5rem);
}

.service-core-grid article {
  padding-block: clamp(1.15rem, 2vw, 1.55rem);
}

.service-core-grid .bonus-service-icon {
  width: 3.65rem;
  height: 3.65rem;
  margin-bottom: 0.8rem;
}

.service-core-grid h4 {
  margin-bottom: 0.5rem;
}

.bonus-service-grid article {
  padding: clamp(1.75rem, 3vw, 2.7rem) clamp(1.35rem, 2vw, 2rem);
  border: 1px solid rgba(169, 130, 90, 0.2);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 1.25rem 3rem -2.55rem rgba(13, 30, 51, 0.28);
  text-align: center;
}

.bonus-service-icon {
  display: grid;
  place-items: center;
  width: 4.25rem;
  height: 4.25rem;
  margin: 0 auto 1.15rem;
  padding: 1.05rem;
  border-radius: 50%;
  color: var(--c-bronze);
  background: #f7f1e9;
}

.bonus-service-grid h4 {
  margin: 0 0 0.75rem;
  color: var(--c-marine);
  font-size: clamp(0.92rem, 1.2vw, 1.08rem);
  line-height: 1.35;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.bonus-service-grid p {
  max-width: 24rem;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  line-height: 1.55;
}

.bonus-service-footer {
  margin-top: clamp(2rem, 4vw, 3.25rem);
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border: 1px solid rgba(169, 130, 90, 0.18);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 1.25rem 3rem -2.5rem rgba(13, 30, 51, 0.28);
}

.bonus-service-footer h4 {
  margin: 0 0 1.35rem;
  color: var(--c-marine);
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.75rem);
  font-weight: 500;
  text-align: left;
}

.bonus-service-footer ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bonus-service-footer li {
  display: grid;
  min-height: 4.4rem;
  padding: 0.9rem 1rem;
  place-items: center;
  color: var(--c-marine);
  border: 1px solid rgba(169, 130, 90, 0.2);
  border-radius: 0.7rem;
  background: var(--c-offwhite);
  font-size: clamp(0.86rem, 1.1vw, 0.98rem);
  font-weight: 750;
  text-align: center;
}

.bonus-service-footer li::before {
  content: none;
}

.bonus-service-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 1rem;
  padding: 0.9rem 1rem;
  border-left: 1px solid rgba(169, 130, 90, 0.28);
  color: var(--c-marine);
  text-decoration: none;
}

.bonus-service-cta span,
.bonus-service-cta strong { grid-column: 1; }
.bonus-service-cta span { font-size: 0.82rem; }
.bonus-service-cta strong { margin-top: 0.15rem; color: var(--c-bronze); font-size: 0.82rem; line-height: 1.35; letter-spacing: 0.035em; text-transform: uppercase; }
.bonus-service-cta b { grid-column: 2; grid-row: 1 / span 2; display: grid; place-items: center; width: 2.45rem; height: 2.45rem; border-radius: 50%; color: #fff; background: var(--c-bronze); }

@media (max-width: 900px) {
  .bonus-services-intro { grid-template-columns: 1fr; }
  .bonus-services-image { min-height: 0; order: -1; }
  .bonus-service-footer { grid-template-columns: 1fr; gap: 1rem; }
  .bonus-service-cta { border-top: 1px solid rgba(169, 130, 90, 0.28); border-left: 0; }
}

@media (max-width: 700px) {
  .bonus-benefit-row { grid-template-columns: 1fr; gap: 0.85rem; }
  .bonus-benefit-row > div { padding: 0 0 0.8rem; border-right: 0; border-bottom: 1px solid rgba(31, 78, 121, 0.18); }
  .bonus-benefit-row > div:last-child { padding-bottom: 0; border-bottom: 0; }
  .bonus-service-grid { grid-template-columns: 1fr; }
  .bonus-service-grid article { padding-block: 1.6rem; }
  .bonus-service-footer ul { grid-template-columns: 1fr 1fr; }
}

#versprechen {
  background: radial-gradient(circle at 50% 0%, #fff 0%, #fcfaf7 44%, #f8f3ec 100%);
}

.promise-shell {
  padding-top: clamp(2.5rem, 4vw, 3.75rem);
  padding-bottom: clamp(2rem, 3vw, 3rem);
}

.promise-heading {
  max-width: 48rem;
  margin: 0 0 clamp(1.8rem, 3vw, 2.5rem);
  text-align: left;
}

.promise-heading h2 {
  margin: 0;
  color: var(--c-marine);

  line-height: 1.1;
}

.promise-heading > p:last-child {
  max-width: 39rem;
  margin: 0.75rem 0 0;
  color: var(--c-marine);
  font-size: 0.96rem;
  line-height: 1.55;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.4vw, 1.15rem);
}

.promise-card {
  position: relative;
  min-height: 16.3rem;
  padding: 1.25rem 1.15rem 1.3rem;
  overflow: visible;
  text-align: center;
  border: 1px solid rgba(169, 130, 90, 0.12);
  border-radius: 0.45rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 1.35rem 3rem -2.35rem rgba(13, 30, 51, 0.28);
}

.promise-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 5.2rem;
  height: 5.2rem;
  margin: 0 auto 1rem;
  color: var(--c-bronze);
  border-radius: 50%;
  background: #f8f3ec;
}

.promise-icon svg { width: 3rem; height: 3rem; stroke-width: 1.25; }

.promise-card h3 {
  margin: 0 0 0.8rem;
  color: var(--c-marine);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 500;
}

.promise-card h3::after {
  content: "";
  display: block;
  width: 1.7rem;
  height: 1px;
  margin: 0.55rem auto 0;
  background: var(--c-bronze);
}

.promise-card p {
  max-width: 16rem;
  margin: 0 auto;
  color: #465367;
  font-size: 0.82rem;
  line-height: 1.55;
}

.collaboration-shell > .section-sub { margin-bottom: 2rem; }

.collaboration-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  counter-reset: workflow;
}

.collaboration-steps article {
  position: relative;
  min-height: 14rem;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  perspective: 1200px;
  cursor: pointer;
}

.collaboration-card-inner {
  position: relative;
  width: 100%;
  min-height: 14rem;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.collaboration-card.is-flipped .collaboration-card-inner { transform: rotateY(180deg); }

.collaboration-card-face {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.6rem;
  border-radius: 0.85rem;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  text-align: center;
}

.collaboration-card-front {
  border: 1px solid rgba(169,130,90,0.24);
  border-top: 3px solid var(--c-bronze);
  background: #fff;
  box-shadow: 0 1.1rem 2.5rem -2rem rgba(13,30,51,0.4);
}

.collaboration-card-back {
  color: #fff;
  border: 1px solid rgba(169,130,90,0.72);
  background: linear-gradient(145deg, var(--c-marine), #172f4d);
  box-shadow: 0 1.2rem 2.7rem -1.7rem rgba(13,30,51,0.6);
  transform: rotateY(180deg);
}

.collaboration-steps h3 {
  max-width: 15rem;
  margin: 0;
  color: var(--c-marine);
  font-size: 1.3rem;
  line-height: 1.25;
  text-wrap: balance;
}

.collaboration-card-back p {
  max-width: 18rem;
  margin: 0;
  color: rgba(255,255,255,0.9);
  font-size: 0.96rem;
  line-height: 1.58;
}

.collaboration-card:focus-visible { outline: 3px solid rgba(169,130,90,0.55); outline-offset: 4px; }

@media (hover: hover) and (pointer: fine) {
  .collaboration-card:hover .collaboration-card-inner { transform: rotateY(180deg); }
}

@media (prefers-reduced-motion: reduce) {
  .collaboration-card-inner { transition-duration: 0.01ms; }
}

#team .team-intro {
  max-width: 48rem;
  margin-bottom: 2.25rem;
  font-size: 1.08rem;
}

#team .team-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

#team .team-card {
  overflow: hidden;
  padding: 0;
  text-align: left;
  border-radius: 1rem;
  background: #fff;
}

#team .team-photo {
  width: 100%;
  height: 18rem;
  border-radius: 0;
  object-fit: cover;
  object-position: center 24%;
}

.team-photo-crop {
  overflow: hidden;
}

#team .team-photo--nicole {
  transform: scale(1.05);
}

#team .team-photo--nicole {
  transform: scale(1.15);
}

#team .team-photo--placeholder {
  display: grid;
  place-items: center;
  color: var(--c-bronze);
  background: linear-gradient(145deg, var(--c-champagner), #fff);
  font-family: var(--font-heading);
  font-size: 5rem;
}

.team-card-body { padding: 1rem 1rem 1.2rem; }
.team-card-body strong { display: block; margin-left: -1rem; color: var(--c-marine); font-size: 1.3rem; }
.team-card-body span { display: block; margin-top: 0.15rem; color: var(--c-bronze); font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; }
.team-card-body p { min-height: 2.8rem; margin: 0.6rem 0; font-size: 0.9rem; }
.team-links { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.team-links a { color: var(--c-marine); font-size: 0.82rem; font-weight: 800; text-decoration: underline; text-underline-offset: 0.2rem; }

.expertenstimme {
  background: var(--c-marine);
  color: #fff;
}

.expertenstimme h3 { color: #fff; }

.expertenstimme .kicker,
.page-strang main .expertenstimme .kicker { color: var(--c-gold); }
.expertenstimme .testimonial,
.expertenstimme .feature-list { color: rgba(255,255,255,0.82); }

.expertenstimme .expertenstimme-text,
.expertenstimme .expertenstimme-text blockquote,
.expertenstimme .expertenstimme-text p,
.expertenstimme .expertenstimme-text cite,
.expertenstimme .expertenstimme-text figcaption { color: rgba(255,255,255,0.86); }
.expertenstimme .expertenstimme-text footer { color: rgba(255,255,255,0.7); }
.expertenstimme-photo img { border-radius: 1.1rem; }

.page-strang--b .expertenstimme .expertenstimme-person {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-top: 1.4rem;
  font-size: 0.92rem;
}
.page-strang--b .expertenstimme .expertenstimme-person strong { color: #fff; font-weight: 700; }
.page-strang--b .expertenstimme .expertenstimme-person span { color: rgba(255, 255, 255, 0.62); }
.page-strang--b .expertenstimme .expertenstimme-link { margin: 1rem 0 0; }
.page-strang--b .expertenstimme .expertenstimme-link a {
  color: var(--c-gold);
  font-size: 0.92rem;
  font-weight: 700;
}
.page-strang--b .expertenstimme .expertenstimme-link a:hover { text-decoration: underline; text-underline-offset: 0.2em; }
.page-strang--b .expertenstimme .quote-mark { color: var(--c-gold); }
.page-strang--b .expertenstimme .expertenstimme-text h3 {
  font-size: clamp(1.65rem, 2.6vw, 2.15rem);
  line-height: 1.25;
  margin-bottom: 1.1rem;
}

.page-strang--a .expertenstimme {
  background: var(--c-champagner);
  color: var(--c-schwarzbraun);
}
.page-strang--a .expertenstimme h3,
.page-strang--a .expertenstimme .expertenstimme-text,
.page-strang--a .expertenstimme .expertenstimme-text blockquote,
.page-strang--a .expertenstimme .expertenstimme-text p,
.page-strang--a .expertenstimme .expertenstimme-text cite,
.page-strang--a .expertenstimme .expertenstimme-text figcaption { color: var(--c-schwarzbraun); }
.page-strang--a .expertenstimme .quote-mark { color: var(--brand); }
.page-strang--a .expertenstimme .expertenstimme-text h3 {
  font-size: clamp(1.65rem, 2.6vw, 2.15rem);
  line-height: 1.25;
  margin-bottom: 1.1rem;
}
.page-strang--a .expertenstimme .expertenstimme-person {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-top: 1.4rem;
  font-size: 0.92rem;
}
.page-strang--a .expertenstimme .expertenstimme-person strong { color: var(--c-schwarzbraun); font-weight: 700; }

.page-strang--a .expertenstimme .expertenstimme-person span { color: rgba(43, 33, 27, 0.72); }
.page-strang--a .expertenstimme .expertenstimme-link { margin: 1rem 0 0; }
.page-strang--a .expertenstimme .expertenstimme-link a {
  color: var(--c-schwarzbraun);
  font-size: 0.92rem;
  font-weight: 700;
}
.page-strang--a .expertenstimme .expertenstimme-link a:hover { text-decoration: underline; text-underline-offset: 0.2em; }

.page-strang--a .expertenstimme .expertenstimme-photo-crop img {
  transform: none;
  object-fit: cover;
  object-position: 50% 12%;
}

.highlights-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(15.5rem, 19vw);
  grid-template-rows: 15rem;
  gap: 0.8rem;
  margin-top: 2.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 0;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.6rem;
}

.highlights-gallery figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 1rem;
  scroll-snap-align: start;
}

.highlights-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.highlights-gallery figure:hover img { transform: scale(1.035); }
.highlights-gallery figcaption {
  position: absolute;
  z-index: 2;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  width: fit-content;
  max-width: calc(100% - 2rem);
  padding: 0.6rem 0.9rem;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 1rem;
  background: rgba(13,30,51,0.88);
  box-shadow: 0 0.8rem 2rem -1.3rem rgba(0,0,0,0.75);
  transition: width 0.25s ease, background 0.25s ease;
}
.highlights-gallery figcaption strong { display: block; font-size: 0.92rem; }
.highlights-gallery figcaption p {
  max-width: 32rem;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  line-height: 1.45;
  opacity: 0;
  transition: max-height 0.3s ease, margin 0.3s ease, opacity 0.25s ease;
}
.highlights-gallery figure:hover figcaption,
.highlights-gallery figure:focus figcaption {
  width: calc(100% - 2rem);
  background: rgba(13,30,51,0.94);
}
.highlights-gallery figure:hover figcaption p,
.highlights-gallery figure:focus figcaption p {
  max-height: 5rem;
  margin-top: 0.35rem;
  opacity: 1;
}

.highlight-icon-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
}

.highlight-icon-visual svg { width: 34%; height: 34%; }

.highlight-icon-visual--segeln { background: linear-gradient(145deg, #1f4e79, #4a7fa8); }
.highlight-icon-visual--ski { background: linear-gradient(145deg, #2b5f6e, #5b98a3); }
.highlight-icon-visual--berg { background: linear-gradient(145deg, var(--c-schwarzbraun), #6b5642); }
.highlight-icon-visual--sport { background: linear-gradient(145deg, var(--c-bronze), #c9a876); }

.highlights-nav {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.highlights-arrow {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1.5px solid var(--brand);
  background: var(--surface);
  color: var(--brand);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.highlights-arrow:hover {
  background: var(--brand);
  color: #fff;
}

#faq { background: var(--c-offwhite); }
.faq-layout { display: block; }
.faq-intro { margin: 0 0 clamp(1.75rem, 3.5vw, 2.5rem); }
.faq-intro h2 + p { max-width: 42rem; }
.faq-list { border-top: 1px solid rgba(13,30,51,0.18); }
.faq-group { border-bottom: 1px solid rgba(13,30,51,0.18); }
.faq-group-title,
.faq-group-items > details > summary {
  position: relative;
  padding-right: 2.5rem;
  color: var(--c-marine);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}
.faq-group-title::-webkit-details-marker,
.faq-group-items > details > summary::-webkit-details-marker { display: none; }
.faq-group-title {
  padding-block: 1.2rem;
  color: var(--c-bronze);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.faq-group-title::after,
.faq-group-items > details > summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  color: var(--c-bronze);
  font-size: 1.5rem;
  line-height: 1;
  transform: translateY(-50%);
}
.faq-group[open] > .faq-group-title::after,
.faq-group-items > details[open] > summary::after { content: "–"; }
.faq-group-items { padding: 0 0 0.35rem 1rem; border-left: 2px solid rgba(169,130,90,0.22); }
.faq-group-items > details { padding: 1rem 0; border-top: 1px solid rgba(13,30,51,0.12); }
.faq-group-items > details:first-child { border-top: 0; }
.faq-group-items > details p { margin: 0.8rem 2rem 0 0; }

.contact-cta-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  color: #fff;
  border-radius: 1.1rem;
  background: var(--c-marine);
}

.contact-cta-heading .cta-link {
  align-self: flex-start;
}

.contact-cta-heading h2 { margin-bottom: 0.45rem; color: #fff; }
.contact-cta-heading p { margin: 0; color: rgba(255,255,255,0.78); }
.contact-cta-heading .cta-link { flex: 0 0 auto; }

@media (max-width: 1050px) {
  #ueber-uns .stats-grid,
  .qualification-section .stats-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  #team .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .promise-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .about-team-mosaic { grid-template-columns: repeat(2, minmax(0, 1fr)); min-height: 0; }
  .about-team-mosaic img,
  .about-team-placeholder { min-height: 15rem; }
  #ueber-uns .stats-grid,
  .qualification-section .stats-grid,
  .customer-types-grid,
  .promise-grid,
  .collaboration-steps,
  #team .team-grid,
  .faq-layout { grid-template-columns: 1fr; }
  .customer-types-layout { grid-template-columns: 1fr; }
  .highlights-gallery { grid-auto-columns: 78%; }
  .contact-cta-heading { align-items: flex-start; flex-direction: column; }
}

:root {
  --section-space: clamp(4.5rem, 6.5vw, 6rem);
  --section-space-compact: clamp(3.5rem, 5vw, 4.75rem);
  --section-title-size: clamp(2.05rem, 3.6vw, 2.9rem);
  --section-copy-size: clamp(0.98rem, 1.35vw, 1.08rem);
  --card-radius: 1rem;
}

.page-home main > section:not(#start) {
  padding-block: var(--section-space);
}

.page-home main > section#leistungen {
  padding-top: 0;
  padding-bottom: var(--section-space-compact);
}

.page-home main > section#einordnung {
  padding-top: 2.5rem;
  padding-bottom: 1.5rem;
}

.page-home #einordnung > .about-editorial-intro {
  max-width: var(--max-width);
}
.page-home #einordnung > .about-editorial-intro > h2,
.page-home #einordnung > .about-editorial-intro > p {
  max-width: 46rem;
}

.page-home main > section#ueber-uns {
  padding-bottom: 2.5rem;
}

.page-home #pakete .pakete-more {
  margin-top: clamp(2rem, 4vw, 3.25rem);
}

.page-home .bonus-services,
.page-home .business-services {
  padding-block: var(--section-space-compact);
}

.page-home main .kicker {
  margin: 0 0 0.75rem;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.page-home main > section:not(#start) > .container > :is(h1, h2),
.page-home .qualification-intro h2,
.page-home .customer-types-intro h2,
.page-home .customer-types-panel-heading h2,
.page-home .promise-heading h2,
.page-home .faq-intro h2,
.page-home .contact-cta-heading h2 {
  margin: 0;
  font-size: var(--section-title-size);
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.page-home .section-sub,
.page-home .references-intro,
.page-home .team-intro,
.page-home .promise-heading p,
.page-home .qualification-intro > p:not(.kicker),
.page-home .customer-types-intro > p:last-child,
.page-home .customer-types-panel-heading p,
.page-home #pakete > .container > h2 + p,
.page-home .faq-intro h2 + p,
.page-home .contact-cta-heading h2 + p {
  max-width: 62ch;
  margin-top: 0.9rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: var(--section-copy-size);
  line-height: 1.68;
}

.page-home .section-sub--nowrap {
  max-width: 62ch;
  white-space: normal;
  font-size: var(--section-copy-size);
}

.page-home .service-core-grid,
.page-home .promise-grid,
.page-home .collaboration-steps,
.page-home .case-study-grid,
.page-home #team .team-grid,
.page-home .highlights-gallery,
.page-home .pricing-grid {
  margin-top: clamp(2.25rem, 4vw, 3rem);
}

.page-home .expertenstimme-text h3,
.page-home .zeitstrahl-headline {
  margin: 0 0 0.8rem;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.page-home .bonus-services-copy h3,
.page-home .business-services-copy h3 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.5rem, 2.3vw, 1.75rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.page-home .service-promise-title {
  margin: 0 0 1rem;
  font-size: clamp(1.65rem, 3.2vw, 2.65rem);
  line-height: 1.08;
  text-wrap: balance;
}

.page-home .qualification-panel,
.page-home .service-core-grid article,
.page-home .bonus-service-footer,
.page-home .business-service-footer,
.page-home .promise-card,
.page-home .collaboration-steps article,
.page-home .ref-card,
.page-home .team-card,
.page-home .pricing-card {
  border-radius: var(--card-radius);
}

.page-home .references-intro,
.page-home .team-intro {
  margin-bottom: 0;
}

.page-home .references-intro {
  max-width: none;
}

@media (max-width: 760px) {
  :root {
    --section-space: 3.75rem;
    --section-space-compact: 3rem;
    --section-title-size: clamp(1.85rem, 9vw, 2.45rem);
  }

  .page-home main .kicker {
    margin-bottom: 0.6rem;
  }

  .page-home .service-core-grid,
  .page-home .promise-grid,
  .page-home .collaboration-steps,
  .page-home .case-study-grid,
  .page-home #team .team-grid,
  .page-home .highlights-gallery,
  .page-home .pricing-grid {
    margin-top: 2rem;
  }
}

.hero-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: 68rem;
  margin-top: 1.65rem;
}

.hero-service-card {
  position: relative;
  min-height: 13.2rem;
  padding: 1.1rem 1.2rem 0.95rem;
  border: 1px solid rgba(23, 54, 80, 0.12);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 32px rgba(43, 33, 27, 0.08);
  backdrop-filter: blur(9px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(43, 33, 27, 0.14);
}

.hero-service-card--business {
  border-color: rgba(31, 78, 121, 0.22);
  background: linear-gradient(135deg, rgba(165, 199, 230, 0.42), rgba(250, 247, 242, 0.94));
}

.hero-service-card--bonus {
  border-color: rgba(169, 130, 90, 0.28);
  background: linear-gradient(135deg, rgba(214, 198, 171, 0.58), rgba(250, 247, 242, 0.94));
}

.hero-service-card-head {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.hero-service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  flex: 0 0 2.7rem;
  border-radius: 50%;
  background: #25639a;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.hero-service-card--bonus .hero-service-number {
  background: #6d8e57;
}

.hero-service-card h3 {
  margin: 0 0 0.15rem;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.25;
  color: var(--c-marine);
}

.hero-service-card--bonus h3 {
  color: var(--c-schwarzbraun);
}

.hero-service-card-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.35;
}

.hero-service-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.28rem 0.8rem;
  margin: 0.8rem 0 0.65rem 3.55rem;
  padding: 0;
  list-style: none;
}

.hero-service-card li {
  position: relative;
  padding-left: 0.9rem;
  color: #34424c;
  font-size: 0.72rem;
  line-height: 1.35;
}

.hero-service-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--c-ozeanblau);
  font-weight: 700;
}

.hero-service-card--bonus li::before {
  color: var(--c-bronze);
}

.hero-service-card > a {
  margin-left: 3.55rem;
  color: var(--c-ozeanblau);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  cursor: pointer;
}

.hero-service-card > a::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero-service-card--bonus > a {
  color: var(--c-bronze);
}

.hero-service-card > a:hover {
  text-decoration: underline;
}

.hero-text .cta-secondary {
  border-color: var(--brand);
  background: rgba(255, 255, 255, 0.72);
  color: var(--brand);
}

.hero-text .cta-secondary:hover {
  background: var(--brand);
  color: #fff;
}

@media (max-width: 920px) {
  .hero {
    min-height: auto;
  }

  .hero-bg {
    inset: 0;
  }

  .hero-bg img {
    object-position: 62% center;
  }

  .hero-scrim {
    background: linear-gradient(180deg, rgba(247, 244, 238, 0.98) 0%, rgba(247, 244, 238, 0.93) 52%, rgba(247, 244, 238, 0.76) 100%);
  }

  .hero-service-grid {
    grid-template-columns: 1fr;
    max-width: 38rem;
  }

  .hero-service-card {
    min-height: 0;
  }
}

.page-home header {
  background: rgba(250, 247, 242, 0.94);
  border-bottom-color: rgba(13, 30, 51, 0.08);
  backdrop-filter: blur(10px);
}

.page-home header:not(.header-solid):not(.nav-open) .nav a,
.page-home header:not(.header-solid):not(.nav-open) .cta-link {
  color: var(--c-marine) !important;
}

.page-home header:not(.header-solid):not(.nav-open) .nav a::after,
.page-home header:not(.header-solid):not(.nav-open) .nav-toggle .bar {
  background-color: var(--c-marine);
}

.page-home header:not(.header-solid):not(.nav-open) .cta-link {
  background: transparent;
  border-color: var(--c-marine);
}

.page-home header:not(.header-solid):not(.nav-open) .cta-link:hover {
  background: var(--c-marine);
  color: #fff !important;
}

.hero {
  min-height: 0;
  display: block;
  overflow: hidden;
  background: var(--c-offwhite);
}

.hero-inner {
  width: 100%;
  padding: 8.4rem 0 4rem;
}

.hero-text {
  max-width: none;
}

.hero-copy-block {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  margin-bottom: clamp(2.2rem, 4vw, 3.8rem);
}

.hero-text .hero-copy-block h1 {
  max-width: 60rem;
  margin: 0;
  color: var(--c-marine);
  font-size: clamp(3.2rem, 6.2vw, 6.8rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.hero-copy-block .hero-subheadline {
  max-width: 32rem;
  margin: 0 0 0.35rem;
  color: var(--c-marine);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
  font-weight: 600;
  line-height: 1.45;
}

.hero-bg {
  position: relative;
  inset: auto;
  width: 100%;
  height: clamp(22rem, 41vw, 38rem);
  overflow: hidden;
  border-radius: 0.25rem;
  background: var(--c-champagner);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  transform: none;
}

.hero-service-grid {
  position: relative;
  z-index: 2;
  max-width: 72rem;
  margin: -4.2rem auto 0;
  gap: 1rem;
}

.hero-service-card {
  min-height: 14.5rem;
  padding: 1.25rem 1.4rem 1.15rem;
  border-radius: 0.65rem;
  box-shadow: 0 1.15rem 2.5rem rgba(13, 30, 51, 0.13);
}

.hero-service-card h3 {
  font-size: clamp(1.15rem, 1.5vw, 1.38rem);
}

.hero-service-card-head p {
  font-size: 0.78rem;
}

.hero-service-card li {
  font-size: 0.85rem;
}

@media (max-width: 920px) {
  .hero-inner {
    padding: 7.2rem 0 3rem;
  }

  .hero-copy-block {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
  }

  .hero-text .hero-copy-block h1 {
    font-size: clamp(2.7rem, 10vw, 4.8rem);
  }

  .hero-bg {
    inset: auto;
    height: clamp(20rem, 62vw, 31rem);
  }

  .hero-bg img {
    object-position: 60% center;
    transform: none;
  }

  .hero-service-grid {
    margin-top: -2.4rem;
  }
}

@media (max-width: 560px) {
  .hero-copy-block .hero-subheadline br {
    display: none;
  }

  .hero-bg {
    height: 19rem;
  }

  .hero-service-grid {
    margin-top: 1rem;
  }
}

.hero-service-card h3 {
  font-size: 1rem;
}

.hero-service-card-head p {
  font-size: 0.73rem;
  line-height: 1.4;
}

.hero-service-card li {
  font-size: 0.76rem;
  line-height: 1.34;
}

.hero-service-card > a {
  font-size: 0.69rem;
}

.hero-service-card {
  min-height: 0;
  padding: 1rem 1.1rem 0.9rem;
}

.hero-service-card h3 {
  font-size: 1.12rem;
  line-height: 1.22;
}

.hero-service-card-head p {
  font-size: 0.82rem;
  line-height: 1.42;
}

.hero-service-card ul {
  gap: 0.26rem;
  margin-top: 0.72rem;
  margin-bottom: 0.62rem;
}

.hero-service-card li {
  font-size: 0.86rem;
  line-height: 1.38;
}

.hero-service-card > a {
  font-size: 0.76rem;
}

.hero-bg {
  inset: 0 0 0 29%;
}

.hero-bg img {
  object-position: 66% center;
}

.hero-scrim {
  background: linear-gradient(90deg, #f7f4ee 0%, rgba(247, 244, 238, 0.94) 14%, rgba(247, 244, 238, 0.52) 34%, rgba(247, 244, 238, 0.12) 54%, transparent 68%);
}

.hero-service-grid {
  max-width: 58rem;
  gap: 0.65rem;
}

.hero-service-card {
  min-height: 12.5rem;
  padding: 0.85rem 1rem 0.75rem;
  border-radius: 0.42rem;
  box-shadow: 0 8px 22px rgba(43, 33, 27, 0.07);
}

.hero-service-card-head {
  gap: 0.7rem;
}

.hero-service-symbol {
  width: 2.55rem;
  height: 2.55rem;
  flex-basis: 2.55rem;
  transform: scale(0.9);
  transform-origin: top left;
}

.hero-service-card h3 {
  font-size: 0.9rem;
  line-height: 1.2;
}

.hero-service-card-head p {
  font-size: 0.66rem;
}

.hero-service-card ul {
  gap: 0.2rem;
  margin: 0.62rem 0 0.48rem 3.15rem;
}

.hero-service-card li {
  font-size: 0.67rem;
  line-height: 1.28;
}

.hero-service-card > a {
  margin-left: 3.15rem;
  font-size: 0.64rem;
}

@media (max-width: 920px) {
  .hero-bg {
    inset: 0;
  }

  .hero-bg img {
    object-position: 68% center;
  }

  .hero-service-grid {
    max-width: 34rem;
  }

  .hero-service-card {
    min-height: 0;
  }
}

.hero-service-card ul {
  gap: 0.42rem;
  margin-top: 0.85rem;
  margin-bottom: 0.78rem;
}

.hero-service-card li {
  padding-left: 1.1rem;
  font-size: 0.9rem;
  line-height: 1.42;
}

.hero-service-card li::before {
  font-size: 0.95rem;
}

.hero-service-card > a {
  font-size: 0.72rem;
}

@media (max-width: 560px) {
  .hero-service-card ul {
    grid-template-columns: 1fr;
  }

  .hero-cta-row {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-cta-row a {
    justify-content: center;
    text-align: center;
  }
}

.hero {
  min-height: 53rem;
  justify-content: flex-end;
}

.hero-inner {
  padding: 10.5rem 0 2.8rem;
}

.hero-cta-row {
  margin-top: 1.4rem;
}

.hero-service-grid {
  margin-top: 1rem;
}

.hero-service-card {
  min-height: 15rem;
}

.hero-service-card ul {
  grid-template-columns: 1fr;
  gap: 0.32rem;
}

.hero-service-symbol {
  position: relative;
  display: inline-block;
  width: 2.9rem;
  height: 2.9rem;
  flex: 0 0 2.9rem;
  border-radius: 50%;
  background-color: var(--c-ozeanblau);
  color: #fff;
}

.hero-service-symbol--group i {
  position: absolute;
  width: 0.52rem;
  height: 0.52rem;
  border: 1.7px solid currentColor;
  border-radius: 50%;
}

.hero-service-symbol--group i::after {
  content: "";
  position: absolute;
  top: 0.54rem;
  left: 50%;
  width: 0.82rem;
  height: 0.5rem;
  border: 1.7px solid currentColor;
  border-top: 0;
  border-radius: 0 0 0.55rem 0.55rem;
  transform: translateX(-50%);
}

.hero-service-symbol--group i:nth-child(1) {
  top: 0.82rem;
  left: 0.48rem;
}

.hero-service-symbol--group i:nth-child(2) {
  top: 0.52rem;
  left: 1.19rem;
}

.hero-service-symbol--group i:nth-child(3) {
  top: 0.82rem;
  right: 0.48rem;
}

.hero-service-symbol--gift {
  background-color: var(--c-bronze);
  background-image:
    linear-gradient(#fff, #fff),
    linear-gradient(#fff, #fff);
  background-position: center 0.72rem, center 1.13rem;
  background-size: 2px 1.55rem, 1.62rem 2px;
  background-repeat: no-repeat;
}

.hero-service-symbol--gift::before {
  content: "";
  position: absolute;
  left: 0.66rem;
  top: 1.05rem;
  width: 1.58rem;
  height: 1.15rem;
  border: 1.8px solid #fff;
  border-radius: 0.12rem;
}

.hero-service-symbol--gift::after {
  content: "";
  position: absolute;
  top: 0.59rem;
  left: 1.12rem;
  width: 0.64rem;
  height: 0.45rem;
  border: 1.6px solid #fff;
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
}

@media (max-width: 920px) {
  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 8.5rem 0 2.6rem;
  }

  .hero-service-card {
    min-height: 0;
  }
}

@media (min-width: 921px) {
  .hero-bg {
    inset: 0;
  }

  .hero-bg img {
    object-position: 56% center;
    transform: scale(1.04) scaleX(-1) translateX(-2%);
  }

  .hero-scrim {
    background: linear-gradient(90deg, #f7f4ee 0%, rgba(247, 244, 238, 0.99) 28%, rgba(247, 244, 238, 0.94) 39%, rgba(247, 244, 238, 0.56) 51%, rgba(247, 244, 238, 0.12) 63%, transparent 75%);
  }
}

.hero-service-card h3 {
  font-size: clamp(1.2rem, 1.7vw, 1.42rem);
  line-height: 1.2;
}

.hero-text > p.hero-audience {
  display: table;
  width: fit-content;
  padding: 0.42rem 0.72rem;
  border: 1px solid rgba(31,78,121,0.12);
  border-radius: 0.45rem;
  background: rgba(250,247,242,0.9);
  box-shadow: 0 0.45rem 1.25rem rgba(43,33,27,0.06);
  backdrop-filter: blur(5px);
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  line-height: 1;
}

.brand-logo-mark {
  color: #a9825a;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3.55rem;
  font-weight: 500;
  line-height: 0.82;
}

.brand-logo-divider {
  width: 1px;
  height: 3.15rem;
  background: #a9825a;
}

.brand-logo-wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  color: #0d1e33;
}

.brand-logo-wordmark strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.brand-logo-wordmark span {
  margin-top: 0.34rem;
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}

@media (max-width: 800px) {
  .brand-logo {
    gap: 0.5rem;
  }

  .brand-logo-mark {
    font-size: 2.75rem;
  }

  .brand-logo-divider {
    height: 2.45rem;
  }

  .brand-logo-wordmark strong {
    font-size: 1.1rem;
  }

  .brand-logo-wordmark span {
    font-size: 0.56rem;
    letter-spacing: 0.28em;
  }
}

.hero {
  min-height: 46rem;
}

.hero-inner {
  padding: 8.5rem 0 2.8rem;
}

.hero-service-grid {
  margin-top: 1.8rem;
}

@media (min-width: 921px) {
  .hero-bg img {
    object-position: 52% center;
  }

  .hero-scrim {
    background: linear-gradient(90deg, #f7f4ee 0%, rgba(247,244,238,0.98) 31%, rgba(247,244,238,0.82) 45%, rgba(247,244,238,0.25) 66%, transparent 82%);
  }
}

@media (max-width: 920px) {
  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 7.5rem 0 2.5rem;
  }
}

.hero {
  min-height: 0;
  display: block;
}

.hero-inner {
  padding: 8.4rem 0 4rem;
}

.hero-bg {
  position: relative;
  inset: auto;
  width: 100%;
  height: clamp(22rem, 41vw, 38rem);
}

.hero-bg img {
  object-position: center 52%;
  transform: none;
}

.hero-service-grid {
  max-width: 72rem;
  margin: -4.2rem auto 0;
  gap: 1rem;
}

.hero-service-card {
  min-height: 14.5rem;
  padding: 1.25rem 1.4rem 1.15rem;
  border-radius: 0.65rem;
}

@media (max-width: 920px) {
  .hero-inner {
    padding: 7.2rem 0 3rem;
  }

  .hero-bg {
    inset: auto;
    height: clamp(20rem, 62vw, 31rem);
  }

  .hero-bg img {
    object-position: 60% center;
    transform: none;
  }

  .hero-service-grid {
    margin-top: -2.4rem;
  }

  .hero-service-card {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .hero-bg {
    height: 19rem;
  }

  .hero-service-grid {
    margin-top: 1rem;
  }
}

.hero-inner {
  padding: 7.7rem 0 3rem;
}

.hero-copy-block {
  grid-template-columns: minmax(0, 1.5fr) minmax(17rem, 0.5fr);
  gap: clamp(2rem, 4.5vw, 4.5rem);
  margin-bottom: 1.8rem;
}

.hero-text .hero-copy-block h1 {
  font-size: clamp(2.75rem, 4.65vw, 5.05rem);
  line-height: 1.02;
}

.hero-text .hero-copy-block h1 span {
  display: block;
}

@media (min-width: 921px) {
  .hero-text .hero-copy-block h1 span {
    white-space: nowrap;
  }
}

.hero-subheadline-wrap {
  position: relative;
  padding: 0.3rem 0 0.25rem 1.25rem;
  border-left: 2px solid var(--c-bronze);
}

.hero-subheadline-label {
  margin: 0 0 0.45rem;
  color: var(--c-bronze);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-copy-block .hero-subheadline {
  max-width: 25rem;
  margin: 0;
  font-size: clamp(1rem, 1.28vw, 1.2rem);
  line-height: 1.45;
}

.hero-bg {
  height: clamp(18rem, 29vw, 27rem);
  border-radius: 0;
  -webkit-mask-image: radial-gradient(ellipse 96% 96% at center, #000 72%, transparent 100%);
  mask-image: radial-gradient(ellipse 96% 96% at center, #000 72%, transparent 100%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 1.8rem 2.5rem rgba(250, 247, 242, 0.48), inset 0 -1.8rem 2.5rem rgba(250, 247, 242, 0.48);
}

.hero-bg img {
  object-position: center 55%;
}

.hero-service-grid {
  margin: 1.35rem auto 0;
}

.hero-service-card {
  min-height: 0;
  padding: 1rem 1.2rem 0.95rem;
  box-shadow: 0 0.6rem 1.6rem rgba(13, 30, 51, 0.08);
}

.hero-service-card ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.28rem 0.75rem;
  margin-top: 0.7rem;
  margin-bottom: 0.6rem;
}

@media (max-width: 920px) {
  .hero-inner {
    padding: 6.8rem 0 2.6rem;
  }

  .hero-copy-block {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .hero-text .hero-copy-block h1 {
    font-size: clamp(2.25rem, 7.5vw, 4rem);
  }

  .hero-bg {
    height: clamp(17rem, 52vw, 25rem);
  }

  .hero-service-grid {
    margin-top: 1rem;
  }
}

@media (max-width: 620px) {
  .hero-text .hero-copy-block h1 {
    font-size: clamp(1.85rem, 8.2vw, 2.8rem);
  }

  .hero-service-card ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .hero-text .hero-copy-block h1 {
    font-size: clamp(1.55rem, 7.3vw, 1.95rem);
  }
}

.hero-inner {
  padding: 6.9rem 0 3rem;
}

.hero-text {
  position: relative;
}

.hero-copy-block {
  position: absolute;
  z-index: 3;
  top: clamp(2.3rem, 5vw, 4.6rem);
  left: clamp(1.5rem, 4vw, 4.5rem);
  display: block;
  width: min(66%, 56rem);
  margin: 0;
}

.hero-text .hero-copy-block h1 {
  max-width: none;
  font-size: clamp(2.65rem, 3.75vw, 4.35rem);
  line-height: 1.03;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.hero-text .hero-copy-block h1 span:first-child {
  color: var(--c-marine);
}

.hero-text .hero-copy-block h1 span:last-child {
  color: var(--c-bronze);
}

.hero-subheadline-wrap {
  max-width: 29rem;
  margin-top: 1.35rem;
  padding: 0;
  border-left: 0;
}

.hero-subheadline-label {
  margin-bottom: 0.22rem;
  color: var(--c-marine);
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.hero-copy-block .hero-subheadline {
  max-width: 29rem;
  color: var(--c-marine);
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  font-weight: 600;
  line-height: 1.42;
}

.hero-bg {
  height: auto;
  aspect-ratio: 1718 / 918;
  overflow: hidden;
  background: var(--c-offwhite);
  -webkit-mask-image: radial-gradient(ellipse 100% 100% at center, #000 80%, rgba(0, 0, 0, 0.82) 88%, transparent 100%);
  mask-image: radial-gradient(ellipse 100% 100% at center, #000 80%, rgba(0, 0, 0, 0.82) 88%, transparent 100%);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.hero-bg::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(250, 247, 242, 0.99) 0%, rgba(250, 247, 242, 0.96) 22%, rgba(250, 247, 242, 0.72) 38%, rgba(250, 247, 242, 0.18) 56%, transparent 72%);
}

.hero-bg::after {
  z-index: 2;
  box-shadow: inset 0 1.2rem 2.2rem rgba(250, 247, 242, 0.55), inset 0 -1.2rem 2.2rem rgba(250, 247, 242, 0.55);
}

.hero-service-grid {
  position: relative;
  z-index: 4;
  margin: 1.25rem auto 0;
}

@media (max-width: 1050px) {
  .hero-copy-block {
    top: 2.1rem;
    width: 68%;
  }

  .hero-text .hero-copy-block h1 {
    font-size: clamp(2.35rem, 4.35vw, 3.85rem);
  }
}

@media (max-width: 760px) {
  .hero-inner {
    padding: 6.6rem 0 2.5rem;
  }

  .hero-copy-block {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    margin-bottom: 1.35rem;
  }

  .hero-text .hero-copy-block h1 {
    font-size: clamp(1.85rem, 7.5vw, 3.25rem);
  }

  .hero-subheadline-wrap {
    margin-top: 0.95rem;
  }

  .hero-bg::before {
    background: linear-gradient(180deg, rgba(250, 247, 242, 0.22), transparent 30%, transparent 78%, rgba(250, 247, 242, 0.3));
  }
}

@media (max-width: 430px) {
  .hero-text .hero-copy-block h1 {
    font-size: clamp(1.5rem, 7vw, 1.9rem);
  }
}

@media (min-width: 921px) {
  .hero-text {
    column-gap: clamp(1.5rem, 3vw, 3rem);
  }

  .hero-bg {
    width: 100%;
    margin-left: 0;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.16) 8%, rgba(0, 0, 0, 0.68) 18%, #000 30%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.16) 8%, rgba(0, 0, 0, 0.68) 18%, #000 30%, #000 100%);
  }

  .hero-bg::before {
    background: linear-gradient(90deg, rgba(250, 247, 242, 0.5) 0%, rgba(250, 247, 242, 0.14) 16%, transparent 34%);
  }
}

.about-editorial {
  margin-top: 0.75rem;
}

.about-editorial-intro {
  max-width: 46rem;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.about-editorial-intro h2 {
  max-width: none;
  margin-bottom: 1.2rem;
}

#ueber-uns .about-editorial-intro .about-lead {
  margin: 0 0 1rem;
  color: var(--c-marine);
  font-size: clamp(1.08rem, 1.45vw, 1.24rem);
  line-height: 1.68;
}

.about-specializations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.about-specialization {
  position: relative;
  padding: 1.6rem 1.7rem 1.5rem;
  border: 1px solid rgba(23, 54, 80, 0.12);
  border-radius: 1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-specialization:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(43, 33, 27, 0.1);
}

.about-specialization--business {
  border-color: rgba(31, 78, 121, 0.22);
  background: linear-gradient(135deg, rgba(165, 199, 230, 0.28), rgba(250, 247, 242, 0.9));
}

.about-specialization--bonus {
  border-color: rgba(169, 130, 90, 0.28);
  background: linear-gradient(135deg, rgba(214, 198, 171, 0.4), rgba(250, 247, 242, 0.9));
}

.about-specialization .hero-service-symbol {
  margin-bottom: 0.9rem;
}

.about-specialization-label {
  margin: 0 0 0.35rem;
  color: var(--c-bronze);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.about-specialization h3 {
  margin: 0 0 0.55rem;
  color: var(--c-marine);
  font-size: clamp(1.28rem, 1.8vw, 1.68rem);
  line-height: 1.22;
}

.about-specialization p:last-of-type {
  max-width: 32rem;
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.6;
}

.about-specialization > a {
  color: var(--c-ozeanblau);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.about-specialization--bonus > a {
  color: var(--c-bronze);
}

.about-specialization > a::after {
  content: "";
  position: absolute;
  inset: 0;
}

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

.about-promise-band {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  margin: clamp(2rem, 4vw, 3.5rem) 0 1.5rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(31, 78, 121, 0.3);
  border-radius: 0.75rem;
  background: linear-gradient(90deg, rgba(165, 199, 230, 0.24), rgba(250, 247, 242, 0.72));
}

.about-promise-band p {
  margin: 0;
  max-width: none;
  color: var(--muted);
  line-height: 1.55;
}

.about-promise-band strong {
  color: var(--c-marine);
  font-weight: 800;
}

.about-promise-icon {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  color: var(--c-ozeanblau);
}

.about-promise-icon svg {
  width: 2.8rem;
  height: 2.8rem;
}

@media (max-width: 920px) {
  .hero-bg {
    width: 100%;
    margin-left: 0;
  }

  .about-editorial {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .about-promise-band {
    grid-template-columns: 2.75rem minmax(0, 1fr);
    gap: 0.85rem;
  }

  .about-promise-icon {
    width: 2.75rem;
    height: 2.75rem;
  }

  .about-editorial-intro h2 {
    max-width: 18ch;
  }
}

.page-home .contact-cta-heading h2 + p {
  color: rgba(255, 255, 255, 0.86);
}

#ueber-uns .stat-card--iata,
.qualification-section .stat-card--iata {
  position: relative;
  cursor: help;
  outline: none;
}

#ueber-uns .stat-card--iata:focus-visible,
.qualification-section .stat-card--iata:focus-visible {
  box-shadow: 0 0 0 3px rgba(31, 78, 121, 0.24);
}

.stat-info-hint {
  display: grid;
  place-items: center;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.35rem;
  border: 1px solid rgba(31, 78, 121, 0.42);
  border-radius: 50%;
  color: var(--c-ozeanblau);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
}

.iata-tooltip {
  position: absolute;
  z-index: 20;
  top: calc(100% + 0.75rem);
  right: 0;
  display: block;
  width: min(24rem, calc(100vw - 2rem));
  padding: 1rem 1.1rem;
  border: 1px solid rgba(31, 78, 121, 0.25);
  border-radius: 0.75rem;
  color: var(--muted);
  background: #fff;
  box-shadow: 0 1rem 2.4rem rgba(13, 30, 51, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.35rem);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  pointer-events: none;
  text-align: left;
}

.iata-tooltip::before {
  content: "";
  position: absolute;
  right: 2rem;
  bottom: 100%;
  border: 0.5rem solid transparent;
  border-bottom-color: #fff;
}

.iata-tooltip strong,
.iata-tooltip > span {
  display: block;
}

.iata-tooltip strong {
  margin-bottom: 0.4rem;
  color: var(--c-marine);
  font-size: 0.94rem;
}

.iata-tooltip > span {
  font-size: 0.84rem;
  line-height: 1.55;
}

#ueber-uns .stat-card--iata:hover .iata-tooltip,
#ueber-uns .stat-card--iata:focus .iata-tooltip,
#ueber-uns .stat-card--iata:focus-within .iata-tooltip,
.qualification-section .stat-card--iata:hover .iata-tooltip,
.qualification-section .stat-card--iata:focus .iata-tooltip,
.qualification-section .stat-card--iata:focus-within .iata-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.page-home main > section.hero-badges-section:not(#start) {
  display: block;

  padding: clamp(1.6rem, 2.6vw, 2.4rem) 0;
  background: linear-gradient(180deg, var(--c-offwhite), #fff);
}

.hero-badges-section .hero-badges {
  padding-top: 0;
}

.hero-badges-section .hero-badges-label {
  margin-bottom: 1.5rem;
  color: var(--c-bronze);
}

.case-study-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 72rem);
}

.ref-card.case-study-card {
  height: 23rem;
}

.case-study-photo {
  object-position: center;
}

.case-study-sheet {
  display: block;
  width: min(100%, 50rem);
  height: auto;
  margin: 1rem auto 0;
  border: 1px solid var(--border);
  border-radius: 0.45rem;
  box-shadow: 0 0.8rem 2.1rem rgba(13, 30, 51, 0.1);
}

.case-study-dialog--sheet .case-study-dialog-hero,
.case-study-dialog--sheet .case-study-dialog-facts,
.case-study-dialog--sheet .case-study-dialog-grid {
  display: none;
}

@media (max-width: 1050px) {
  .case-study-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 48rem);
  }
}

@media (max-width: 680px) {
  .case-study-grid {
    grid-template-columns: 1fr;
    width: min(100%, 32rem);
  }
}

.page-strang--b #referenzen .case-study-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 48rem);

  margin-inline: 0 auto;
}

@media (max-width: 680px) {
  .page-strang--b #referenzen .case-study-grid {
    grid-template-columns: 1fr;
    width: min(100%, 32rem);
  }
}

#versprechen .promise-shell {
  padding-top: 0;
}

.hero-inner {
  padding: 7rem 0 3rem;
}

.hero-text {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1.4rem clamp(1.5rem, 3.5vw, 3.5rem);
  align-items: center;
}

.hero-copy-block {
  position: relative;
  z-index: 3;
  top: auto;
  left: auto;
  grid-column: 1;
  grid-row: 1;
  width: 100%;
}

.hero-text .hero-copy-block h1 {
  font-size: clamp(2.45rem, 3.65vw, 4rem);
}

.hero-bg {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 1718 / 918;
  min-height: 0;
  -webkit-mask-image: radial-gradient(ellipse 100% 100% at center, #000 78%, rgba(0, 0, 0, 0.82) 88%, transparent 100%);
  mask-image: radial-gradient(ellipse 100% 100% at center, #000 78%, rgba(0, 0, 0, 0.82) 88%, transparent 100%);
}

.hero-bg img {
  object-fit: contain;
  object-position: center;
}

.hero-bg::before {
  background: linear-gradient(90deg, rgba(250, 247, 242, 0.72) 0%, rgba(250, 247, 242, 0.18) 18%, transparent 42%);
}

.hero-service-grid {
  grid-column: 1 / -1;
  grid-row: 2;
  width: min(100%, 72rem);
  margin: 0.15rem auto 0;
}

#ueber-uns .about-lead {
  max-width: 58rem;
  margin: 0.7rem 0 1.6rem;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.35vw, 1.17rem);
  line-height: 1.65;
}

.about-specializations {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 0 0 1.6rem;
}

.about-specialization {
  min-height: 17rem;
  padding: clamp(1.3rem, 2.3vw, 2rem);
  border: 1px solid rgba(13, 30, 51, 0.12);
  border-radius: 1rem;
  box-shadow: 0 0.8rem 2rem rgba(13, 30, 51, 0.06);
}

.about-specialization--groups {
  background: linear-gradient(145deg, rgba(165, 199, 230, 0.32), rgba(255, 255, 255, 0.96));
}

.about-specialization--loyalty {
  background: linear-gradient(145deg, rgba(214, 198, 171, 0.48), rgba(255, 255, 255, 0.96));
}

.about-specialization-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.about-specialization-head .hero-service-symbol {
  flex: 0 0 3.2rem;
  width: 3.2rem;
  height: 3.2rem;
  transform: none;
}

.about-specialization-label {
  display: block;
  margin-bottom: 0.28rem;
  color: var(--c-bronze);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about-specialization h3 {
  margin: 0;
  color: var(--c-marine);
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  line-height: 1.2;
}

.about-specialization > p {
  max-width: 47rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.62;
}

.about-specialization .about-specialization-examples {
  margin-top: 1rem;
  padding-top: 0.85rem;
  color: var(--c-marine);
  border-top: 1px solid rgba(13, 30, 51, 0.1);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

#ueber-uns .about-copy {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.5vw, 2.4rem);
  max-width: none;
  padding: 1.35rem 0 0;
  border-top: 1px solid rgba(169, 130, 90, 0.28);
}

#ueber-uns .about-copy p {
  font-size: 0.97rem;
  line-height: 1.68;
}

@media (max-width: 920px) {
  .hero-text {
    grid-template-columns: 1fr;
  }

  .hero-copy-block,
  .hero-bg,
  .hero-service-grid {
    grid-column: 1;
  }

  .hero-copy-block { grid-row: 1; }
  .hero-bg { grid-row: 2; }
  .hero-service-grid { grid-row: 3; }

  .hero-text .hero-copy-block h1 {
    font-size: clamp(2.15rem, 7vw, 3.7rem);
  }

  .about-specializations,
  #ueber-uns .about-copy {
    grid-template-columns: 1fr;
  }

  .about-specializations::after {
    display: none;
  }

  .about-specialization {
    min-height: 0;
  }
}

@media (max-width: 430px) {
  .hero-text .hero-copy-block h1 {
    font-size: clamp(1.5rem, 7vw, 1.9rem);
  }
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  aspect-ratio: auto;
  border-radius: 0;
  -webkit-mask-image: none;
  mask-image: none;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 30%;
}

.hero-bg::before {
  background: linear-gradient(
    90deg,
    rgba(13, 30, 51, 0.58) 0%,
    rgba(13, 30, 51, 0.42) 36%,
    rgba(13, 30, 51, 0.2) 58%,
    rgba(13, 30, 51, 0.06) 76%,
    transparent 88%
  );
}

.hero-bg::after {

  box-shadow: inset 0 5rem 4rem -3.2rem rgba(13, 30, 51, 0.45),
    inset 0 -1.6rem 2.6rem rgba(43, 33, 27, 0.28);
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-text {
  min-height: clamp(22rem, 32vw, 29rem);
  align-items: center;
}

@media (max-width: 920px) {

  .hero-bg {
    position: absolute;
    inset: 0;
    height: 100%;
  }

  .hero-bg::before {
    background: linear-gradient(
      180deg,
      rgba(13, 30, 51, 0.62) 0%,
      rgba(13, 30, 51, 0.48) 45%,
      rgba(13, 30, 51, 0.32) 72%,
      rgba(13, 30, 51, 0.24) 100%
    );
  }
}

.page-home #ueber-uns .about-editorial-intro h2 {
  font-size: var(--section-title-size);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.qualification-section {
  padding-block: clamp(6rem, 13vw, 12rem);
}

.service-core-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1rem;
  align-items: center;
  padding: 1.2rem 1.35rem;
  text-align: left;
}

.service-core-grid .bonus-service-icon {
  grid-row: 1 / span 2;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.65rem;
  margin: 0;
}

.service-core-grid h4 {
  margin: 0 0 0.3rem;
}

.service-core-grid p {
  margin: 0;
  max-width: none;
}

.highlights-gallery figcaption {
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: none;
  padding: 2.4rem 1.1rem 0.95rem;
  border: 0;
  border-radius: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(13, 30, 51, 0.74) 100%);
  box-shadow: none;
}

.highlights-gallery figure:hover figcaption,
.highlights-gallery figure:focus figcaption {
  width: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(13, 30, 51, 0.88) 100%);
}

.highlights-gallery figcaption strong {
  font-size: 1rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.page-home .expertenstimme-text h3 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.15;

  color: var(--c-schwarzbraun);
}

.expertenstimme-photo {
  width: min(100%, 21rem);
}

.page-home main .servicepakete-hinweis + .kicker {
  margin-top: 3rem;
}

.page-home header:not(.header-solid):not(.nav-open) {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
}

.page-home header:not(.header-solid):not(.nav-open) .nav a,
.page-home header:not(.header-solid):not(.nav-open) .cta-link {
  color: #fff !important;
}

.page-home header:not(.header-solid):not(.nav-open) .nav a::after,
.page-home header:not(.header-solid):not(.nav-open) .nav-toggle .bar {
  background-color: #fff;
}

.page-home header:not(.header-solid):not(.nav-open) .cta-link {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.page-home header:not(.header-solid):not(.nav-open) .cta-link:hover {
  background: #fff;
  color: var(--c-marine) !important;
}

header {
  transition: background 0.3s ease, border-color 0.3s ease;
}

.hero-text .hero-copy-block h1 span:first-child {
  color: #fff;
}

.hero-text .hero-copy-block h1 span:last-child {
  color: var(--c-champagner);
}

.hero-copy-block .hero-subheadline {
  color: #fff;
}

.hero-subheadline-label {
  color: rgba(255, 255, 255, 0.85);
}

.page-home header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.logo img {
  width: auto;
  height: 80px;
  object-fit: contain;
}

.page-home header:not(.header-solid):not(.nav-open) #header-logo {
  width: auto;
  height: 50px;
  object-fit: contain;
  object-position: left center;
  transform: translateX(14px);
}

.page-home .qualification-intro .kicker {
  margin-left: 0;
  margin-right: 0;
}

.page-home header {
  position: sticky;
  backdrop-filter: none;
}

.hero-service-grid {
  align-items: stretch;
}

.hero-service-card {
  display: flex;
  flex-direction: column;
}

.hero-service-card > a {
  margin-top: auto;
}

#ueber-uns .about-editorial-intro {
  max-width: none;
  margin-bottom: clamp(2.25rem, 4vw, 3.25rem);
}

#ueber-uns .about-editorial-intro .about-lead {
  max-width: 46rem;
  margin: 0;
  color: var(--c-marine);
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
  line-height: 1.6;
}

#ueber-uns .about-tagline {
  margin: 1rem 0 0;
  color: var(--c-bronze);
  font-family: var(--font-heading);
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  font-style: italic;
  letter-spacing: 0.005em;
}

#ueber-uns .about-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.6rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

#ueber-uns .about-trust li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

#ueber-uns .about-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--c-bronze);
}

#ueber-uns .about-specializations {
  gap: clamp(1rem, 2vw, 1.6rem);
  margin: clamp(1.5rem, 3vw, 2.5rem) 0 clamp(2rem, 4vw, 3rem);
}

#ueber-uns .about-specialization {
  display: flex;
  flex-direction: column;
  min-height: 21rem;
  padding: clamp(2.3rem, 3.6vw, 3.4rem);
  border-radius: var(--card-radius);
  box-shadow: 0 1rem 2.4rem rgba(13, 30, 51, 0.07);
}

#ueber-uns .about-specialization .hero-service-symbol {
  width: 3.3rem;
  height: 3.3rem;
  flex: 0 0 3.3rem;
  margin-bottom: 1.2rem;
  transform: none;
}

#ueber-uns .about-specialization-label {
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

#ueber-uns .about-specialization--business .about-specialization-label {
  color: var(--c-ozeanblau);
}

#ueber-uns .about-specialization--bonus .about-specialization-label {
  color: var(--c-bronze);
}

#ueber-uns .about-specialization h3 {
  margin: 0 0 0.7rem;
  color: var(--c-marine);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

#ueber-uns .about-specialization > p {
  max-width: 34rem;
  margin: 0 0 1.8rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

#ueber-uns .about-specialization-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  align-self: flex-start;
  margin-top: auto;
  height: 2.9rem;
  padding: 0 1.35rem;
  border: 1.5px solid;
  border-radius: 0.6rem;
  background: transparent;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-transform: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

#ueber-uns .about-specialization--business .about-specialization-btn {
  color: var(--c-ozeanblau);
  border-color: rgba(31, 78, 121, 0.5);
}

#ueber-uns .about-specialization--business .about-specialization-btn:hover {
  background: var(--c-ozeanblau);
  border-color: var(--c-ozeanblau);
  color: #fff;
}

#ueber-uns .about-specialization--bonus .about-specialization-btn {
  color: var(--c-bronze);
  border-color: rgba(169, 130, 90, 0.55);
}

#ueber-uns .about-specialization--bonus .about-specialization-btn:hover {
  background: var(--c-bronze);
  border-color: var(--c-bronze);
  color: #fff;
}

#ueber-uns .about-consult {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  margin: 0 0 clamp(2rem, 4vw, 3rem);
  padding: clamp(1.6rem, 2.8vw, 2.4rem);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  background: var(--surface);
  box-shadow: 0 1rem 2.4rem rgba(13, 30, 51, 0.05);
}

#ueber-uns .about-consult-copy {
  max-width: 46rem;
}

#ueber-uns .about-consult h3 {
  margin: 0 0 0.45rem;
  color: var(--c-marine);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.2;
}

#ueber-uns .about-consult p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

#ueber-uns .about-consult .cta-link {
  flex-shrink: 0;
}

@media (max-width: 720px) {
  #ueber-uns .about-consult {
    flex-direction: column;
    align-items: flex-start;
  }
}

.service-highlights-section {
  max-width: 1240px;
}

.service-highlights-section .section-sub {
  max-width: 42rem;
  margin-top: 1.3rem;
}

.service-highlights-trust {
  margin: 0.9rem 0 0;
  color: var(--c-bronze);
  font-size: 0.95rem;
  font-weight: 600;
}

.benefit-list {
  column-count: 2;
  column-gap: 3.5rem;
  margin: clamp(1.75rem, 3vw, 2.25rem) 0 0;
  padding: 0;
  list-style: none;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.1rem 0;
  break-inside: avoid;
}

.benefit-item:nth-child(even) {
  border-top: 1px solid rgba(169, 130, 90, 0.16);
}

.benefit-icon {
  display: grid;
  flex-shrink: 0;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  color: var(--c-bronze);
  background: #f7f1e9;
  transition: color 0.2s ease;
}

.benefit-icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

.benefit-item:hover .benefit-icon {
  color: var(--c-marine);
}

.benefit-copy {
  min-width: 0;
  max-width: 26rem;
}

.benefit-copy h3 {
  margin: 0 0 0.3rem;
  color: var(--c-marine);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
}

.benefit-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.service-companion-note {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-top: clamp(1.5rem, 2.5vw, 1.85rem);
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(36, 108, 160, 0.24);
  border-radius: 0.85rem;
  background: rgba(36, 108, 160, 0.08);
}

.service-companion-note > div {
  flex: 1;
  min-width: 0;
}

.service-companion-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.6rem;
  color: var(--cta-blau);
  background: rgba(21, 101, 192, 0.1);
}

.service-companion-icon svg {
  width: 1.05rem;
  height: 1.05rem;
}

.service-companion-note h3 {
  margin: 0 0 0.2rem;
  color: var(--c-marine);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
}

.service-companion-note p {
  max-width: none;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

@media (max-width: 620px) {
  .benefit-list {
    column-count: 1;
  }
  .benefit-item:not(:first-child) {
    border-top: 1px solid rgba(169, 130, 90, 0.16);
  }
  .service-companion-note {
    flex-direction: column;
  }
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: clamp(2.5rem, 4vw, 3rem);
}

@media (min-width: 700px) {
  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1050px) {
  .process-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
  }
}

.process-step {
  position: relative;
  min-height: clamp(14.5rem, 21vw, 17.5rem);
  perspective: 1200px;
  cursor: pointer;
}

.process-step-inner {
  position: absolute;
  inset: 0;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
  transform-style: preserve-3d;
}

@media (hover: hover) and (pointer: fine) {
  .process-step:hover .process-step-inner,
  .process-step:focus-visible .process-step-inner {
    transform: rotateY(180deg);
  }
}

.process-step:focus-visible {
  outline: none;
}

.process-step-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: clamp(1.6rem, 2.5vw, 2.1rem);
  border: 1px solid rgba(169, 130, 90, 0.2);
  border-top: 3px solid var(--c-bronze);
  border-radius: var(--card-radius);
  background: #faf5ec;
  box-shadow: 0 0.5rem 1.5rem -1.1rem rgba(13, 30, 51, 0.18);
  text-align: left;
  backface-visibility: hidden;
}

.process-step-face--front {
  justify-content: space-between;
}

.process-step-face--back {
  justify-content: center;
  transform: rotateY(180deg);
}

.process-step--execution .process-step-face {
  border-top-color: var(--c-ozeanblau);
}

.process-step-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.process-step-number {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-bronze);
  letter-spacing: 0.02em;
}

.process-step--execution .process-step-number {
  color: var(--c-ozeanblau);
}

.process-step-face--back .process-step-number {
  display: block;
  margin-bottom: 0.5rem;
}

.process-step-icon {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border-radius: 0.7rem;
  color: var(--c-bronze);
  background: rgba(169, 130, 90, 0.12);
}

.process-step--execution .process-step-icon {
  color: var(--c-ozeanblau);
  background: rgba(31, 78, 121, 0.1);
}

.process-step-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.process-step h3 {
  margin: 0 0 0.9rem;
  color: var(--c-marine);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
}

.process-step-face--back h3 {
  margin-bottom: 0.6rem;
}

.process-step-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--c-bronze);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.process-step--execution .process-step-hint {
  color: var(--c-ozeanblau);
}

.process-step-desc {
  margin: 0;
  color: var(--text);
  font-weight: bolder;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 699px), (hover: none), (pointer: coarse) {
  .process-step {
    min-height: 0;
    perspective: none;
    cursor: default;
  }
  .process-step-inner {
    position: static;
    display: block;
    transform: none !important;
    transition: none;
  }
  .process-step-face {
    position: static;
    inset: auto;
    transform: none;
    backface-visibility: visible;
  }
  .process-step-face--back {
    margin-top: 0.75rem;
    border-top-width: 1px;
    box-shadow: none;
  }
  .process-step-face--back .process-step-number,
  .process-step-face--back h3 {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-step-inner {
    transition: none;
  }
}

.hero-text .hero-copy-block h1 span.hero-headline-line3 {
  display: block;
  margin-top: 0.4em;
  margin-left: 0.15em;
  font-size: clamp(1.05rem, 1.7vw, 1.4rem);
  font-weight: 500;
  letter-spacing: 0.015em;
  color: #fff !important;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
  white-space: nowrap;
}

.hero-text .hero-copy-block h1 span:nth-child(2) {
  color: var(--c-champagner) !important;
}

.page-strang { --strang-accent: var(--c-gold); --strang-accent-text: var(--brand); }
.page-strang--a { --strang-accent: var(--c-gold); --strang-accent-text: var(--brand); }
.page-strang--b { --strang-accent: var(--c-marine); --strang-accent-text: var(--c-marine); }

.nav a.is-active { color: var(--brand); font-weight: 600; }
.nav a.is-active::after { width: 100%; }

#zielgruppen h2 .headline-accent {
  display: block;
  color: var(--c-bronze);
}

.page-strang main .kicker { color: var(--strang-accent-text); }

.strang-subnav {
  position: sticky;
  top: 5.5rem;
  z-index: 40;
  background: var(--c-marine);
  border-top: 2px solid var(--c-gold);
}
.strang-subnav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3rem;
}
.strang-subnav-label { color: #fff; font-weight: 600; font-size: 0.95rem; white-space: nowrap; }
.strang-subnav-links { display: flex; flex-wrap: wrap; gap: 1.1rem; margin: 0; padding: 0; list-style: none; }
.strang-subnav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  text-decoration: none;
  padding: 0.2rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.strang-subnav-links a:hover { color: #fff; border-color: var(--c-gold); }
@media (max-width: 720px) {
  .strang-subnav-inner { flex-direction: column; align-items: flex-start; gap: 0.4rem; padding-top: 0.5rem; padding-bottom: 0.5rem; }
  .strang-subnav-links { overflow-x: auto; flex-wrap: nowrap; width: 100%; -webkit-overflow-scrolling: touch; }
  .strang-subnav-links a { white-space: nowrap; }
}

.page-strang .hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13, 30, 51, 0.15) 0%, rgba(13, 30, 51, 0.35) 55%, rgba(13, 30, 51, 0.72) 100%);
}
.page-strang .hero-text h1 { color: #fff; text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5); }

.page-strang .hero-text .hero-copy-block h1 span:first-child { color: #fff; }

.page-strang .hero-text { align-items: center; }
@media (min-width: 901px) {
  .page-strang .hero-inner { padding-top: 9rem; padding-bottom: 1rem; }

  .page-strang--b .hero-inner { padding-top: 5rem; padding-bottom: 5rem; }
}

.page-strang .hero-copy-block {
  margin-left: clamp(-120px, calc((var(--max-width) - 100vw) / 2 + 14px), 0px);
}

.page-strang--a .hero-text {
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
}

.page-strang--a .hero-copy-block {
  grid-column: 1;
  width: min(100%, 62rem);
  margin-left: 0;
  text-align: center;
}

@media (min-width: 901px) {
  .page-strang .hero-text .hero-copy-block h1 {
    font-size: clamp(2.1rem, 3.05vw, 3.35rem);
  }
}

.page-strang--b #einordnung .about-editorial-intro h2 {
  width: max-content;
  max-width: min(100vw - 2.5rem, var(--max-width));
}

.page-strang main .kicker--onhero { color: var(--c-gold); }
.page-strang .hero-subline {
  max-width: 46rem;
  margin: 1.1rem 0 0;
  color: #fff;
  font-size: clamp(1.02rem, 1.6vw, 1.25rem);
  line-height: 1.5;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; margin-top: 1.6rem; }
.hero-action-secondary { color: #fff; font-weight: 600; text-decoration: none; border-bottom: 2px solid var(--c-gold); padding-bottom: 2px; }
.hero-action-secondary:hover { color: var(--c-gold); }
.hero-contact-card {
  display: flex; gap: 1rem; align-items: flex-start;
  max-width: 23rem; margin-top: 2rem;
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--card-radius, 1rem);
  padding: 1rem 1.2rem;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.2);
}
.hero-contact-card img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; flex: none; }
.hero-contact-name { font-weight: 700; margin: 0; }
.hero-contact-role { margin: 0 0 0.4rem; color: var(--muted); font-size: 0.9rem; }
.hero-contact-text { margin: 0 0 0.5rem; font-size: 0.9rem; }
.hero-contact-links { list-style: none; margin: 0; padding: 0; font-size: 0.9rem; }
.hero-contact-links a { color: var(--brand); text-decoration: none; }

.strang-banner { color: #fff; padding: var(--section-space, 4.5rem) 0; }
.strang-banner h2 { color: var(--text); max-width: 40rem; }
.strang-banner p { max-width: 46rem; color: var(--c-anthrazit) }

.page-strang main .strang-banner .kicker,
.strang-banner .strang-banner-kicker { color: var(--brand); }
.strang-banner .strang-banner-close { color: var(--c-gold); font-weight: 600; }

#einordnung .strang-banner {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 1.1rem;
  margin-top: 2.5rem;

  border: 3px solid var(--c-marine);
}

#einordnung .strang-banner .kicker { margin-top: 0; margin-bottom: 0.4rem; }

#einordnung .about-lead a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}
#einordnung .about-lead a:hover { text-decoration-thickness: 2px; }

#einordnung .strang-banner h2,
#einordnung .strang-banner p { max-width: none; }

#einordnung .stats-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 1.5rem;
}
#einordnung .stat-card { text-align: center; }

#einordnung .stat-number {
  font-size: clamp(1.25rem, 1.9vw, 1.6rem);
  white-space: nowrap;
}
#einordnung .stat-card p { min-height: 2.4em; }

@media (max-width: 1050px) {
  #einordnung .stats-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  #einordnung .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.75rem; }
  #einordnung .strang-banner { margin-top: 1.75rem; }
}

.responsibility-note { margin-top: 1.5rem; max-width: 55rem; color: var(--muted); }

#ausgangssituation .service-companion-note,
#zielgruppen .service-companion-note {
  gap: 1.1rem;
  padding: 1.35rem 1.6rem;
  border-radius: 1rem;
}
#ausgangssituation .service-companion-icon,
#zielgruppen .service-companion-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
}
#ausgangssituation .service-companion-icon svg,
#zielgruppen .service-companion-icon svg { width: 1.45rem; height: 1.45rem; }
#ausgangssituation .service-companion-note p,
#zielgruppen .service-companion-note p { font-size: 0.95rem; line-height: 1.6; }

#ausgangssituation .service-companion-note > div,
#zielgruppen .service-companion-note > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
}
#ausgangssituation .service-companion-note p + p,
#zielgruppen .service-companion-note p + p { margin-top: 0; flex: 0 0 auto; }

#ausgangssituation .service-companion-note p:first-child { flex: 1 1 24rem; }

.audience-grid, .service-blocks { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; margin-top: 1.5rem; }
.audience-card, .service-block { background: var(--surface); border: 1px solid var(--border); border-top: 3px solid var(--strang-accent); border-radius: var(--card-radius, 1rem); padding: 1.4rem; }
.audience-card h3, .service-block h3 { margin: 0 0 0.6rem; }
.service-block ul { margin: 0; padding-left: 1.1rem; }
.service-block li { margin-bottom: 0.45rem; }
.audience-close { margin-top: 1.5rem; max-width: 55rem; font-weight: 500; }

.page-strang--a #leistungen .master-timeline-graphic {
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid var(--border);
  border-radius: var(--card-radius, 1rem);
  background: var(--surface);
  box-shadow: 0 1rem 2.5rem -2rem rgba(13, 30, 51, 0.28);
}

.master-timeline-intro {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.master-timeline-intro .kicker { margin-bottom: 0.25rem; }

.master-timeline-intro h3 {
  margin: 0;
  color: var(--c-marine);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.master-timeline-icon {
  display: grid;
  place-items: center;
  flex: 0 0 3.5rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  color: var(--c-ozeanblau);
  background: color-mix(in srgb, var(--c-himmelblau) 28%, var(--surface));
}

.master-timeline-icon svg {
  width: 1.8rem;
  height: 1.8rem;
}

.master-timeline-lead {
  margin: 1rem 0 0;
  color: var(--muted);
}

.master-timeline-points {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 1.75rem 0;
  padding: 0;
  list-style: none;
}

.master-timeline-points::before {
  content: "";
  position: absolute;
  top: 1.25rem;
  right: 10%;
  left: 10%;
  height: 1px;
  background: var(--c-champagner);
}

.master-timeline-points li {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 0.65rem;
  padding-inline: 0.4rem;
  color: var(--c-marine);
  text-align: center;
}

.master-timeline-points li span {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--c-bronze);
  border-radius: 50%;
  color: var(--surface);
  background: var(--c-ozeanblau);
  font-size: 0.72rem;
  font-weight: 700;
}

.master-timeline-points strong {
  font-size: clamp(0.78rem, 1.1vw, 0.95rem);
  line-height: 1.35;
}

.master-timeline-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 0.8fr);
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 1.15rem;
  border-radius: 0.75rem;
  color: var(--muted);
  background: var(--c-offwhite);
}

.master-timeline-flow p { margin: 0; line-height: 1.55; }
.master-timeline-flow strong { color: var(--c-marine); }
.master-timeline-flow > span { color: var(--c-bronze); font-size: 1.6rem; }

.master-timeline-note {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--c-himmelblau);
  border-radius: 0.85rem;
  color: var(--c-marine);
  background: color-mix(in srgb, var(--c-himmelblau) 24%, var(--surface));
}

.master-timeline-note p { margin: 0; }

.master-timeline-note-icon {
  display: grid;
  place-items: center;
  flex: 0 0 2.5rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  color: var(--c-ozeanblau);
  background: var(--surface);
}

.master-timeline-note-icon svg { width: 1.35rem; height: 1.35rem; }

@media (max-width: 760px) {
  .master-timeline-points {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    margin-block: 1.4rem;
  }

  .master-timeline-points::before {
    top: 1.25rem;
    bottom: 1.25rem;
    left: 1.25rem;
    width: 1px;
    height: auto;
  }

  .master-timeline-points li {
    grid-template-columns: 2.5rem 1fr;
    justify-items: start;
    align-items: center;
    padding: 0;
    text-align: left;
  }

  .master-timeline-flow { grid-template-columns: 1fr; gap: 0.6rem; }
  .master-timeline-flow > span { transform: rotate(90deg); justify-self: center; }
}

#zielgruppen .audience-card {
  background: transparent;
  border: 0;
  border-top: 0;
  padding: 0;
  height: 16rem;
  perspective: 1200px;
  cursor: pointer;
}
#zielgruppen .audience-card:focus-visible {
  outline: 3px solid var(--c-gold);
  outline-offset: 3px;
}
#zielgruppen .audience-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.5s;
  transform-style: preserve-3d;
}
#zielgruppen .audience-card.is-flipped .audience-card-inner {
  transform: rotateY(180deg);
}
#zielgruppen .audience-card-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 1.4rem;
  background: var(--c-marine);
  border-radius: var(--card-radius, 1rem);
  backface-visibility: hidden;
}
#zielgruppen .audience-card-back {
  transform: rotateY(180deg);
}
#zielgruppen .audience-card h3 {
  margin: 0 0 0.6rem;
  color: #fff;
}
#zielgruppen .audience-card-back p {
  margin: auto;
  text-align: center;
  color: rgba(255, 255, 255, 0.82);
  overflow-y: auto;
}
#zielgruppen .audience-card-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.9rem;
  border: 1px solid rgba(212, 185, 139, 0.5);
  border-radius: 50%;
  color: var(--c-gold);
}
#zielgruppen .audience-card-icon svg {
  width: 1.1rem;
  height: 1.1rem;
}
#zielgruppen .audience-card-more {
  margin-top: auto;
  padding-top: 0.9rem;
  color: var(--c-gold);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

#zielgruppen .audience-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

@media (max-width: 1050px) {
  #zielgruppen .audience-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  #zielgruppen .audience-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  #zielgruppen .audience-card-inner { transition: none; }
}

.page-strang #leistungen { padding: 6rem 0; }
.page-strang #leistungen .section-sub { max-width: 44rem; }

.page-strang--b #verantwortung .section-sub { max-width: 55rem; }

.page-strang #leistungen .service-blocks::before {
  content: "";
  grid-column: 1 / -1;
  height: 2px;
  width: 3.5rem;
  background: var(--c-bronze);
  opacity: 0.5;
  margin-bottom: 0.5rem;
}

.page-strang #leistungen .service-blocks {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
  margin-top: 2.75rem;

  align-items: stretch;
}

.page-strang #leistungen .service-blocks:has(.service-block.is-open) {
  align-items: start;
}

.page-strang #leistungen .service-block { min-height: 30rem; }

.page-strang #leistungen .service-block h3 { min-height: 3.8rem; }

.page-strang--a #leistungen .service-block { min-height: 35rem; }

.page-strang #leistungen .service-block {
  display: flex;
  flex-direction: column;
  padding: 1.9rem;
  border: 1px solid var(--border);
  border-top: 1px solid var(--border);
  border-radius: 1.15rem;
  background: var(--surface);
  box-shadow: 0 1px 2px rgba(13, 30, 51, 0.04), 0 8px 24px rgba(13, 30, 51, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
  .page-strang #leistungen .service-block:hover {
    transform: translateY(-4px);
    border-color: rgba(169, 130, 90, 0.45);
    box-shadow: 0 2px 4px rgba(13, 30, 51, 0.05), 0 14px 34px rgba(13, 30, 51, 0.09);
  }
}

.page-strang #leistungen .service-block-icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.1rem;
  border-radius: 0.8rem;
  color: var(--c-bronze);
  background: rgba(169, 130, 90, 0.1);
}
.page-strang #leistungen .service-block-icon svg { width: 1.4rem; height: 1.4rem; }

.page-strang #leistungen .service-block h3 {
  margin: 0 0 0.9rem;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.3;
  color: var(--c-marine);
}

.page-strang #leistungen .service-list { margin: 0; padding: 0; list-style: none; }
.page-strang #leistungen .service-list li {
  position: relative;
  margin-bottom: 0.7rem;
  padding-left: 1.75rem;
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--muted);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9825a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0 0.28em;
  background-size: 1.05rem 1.05rem;
}
.page-strang #leistungen .service-list li:last-child { margin-bottom: 0; }

.page-strang #leistungen .service-list .service-sublist {
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
}
.page-strang #leistungen .service-list .service-sublist li {
  margin-bottom: 0.3rem;
  padding-left: 0;
  background-image: none;
  font-size: 0.87rem;
}

.page-strang #leistungen .service-extra {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s ease;
}
.page-strang #leistungen .service-extra-inner {
  min-height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: visibility 0.32s;
}
.page-strang #leistungen .service-block.is-open .service-extra { grid-template-rows: 1fr; }
.page-strang #leistungen .service-block.is-open .service-extra-inner { visibility: visible; }
.page-strang #leistungen .service-block.is-open .service-list + .service-extra .service-list { margin-top: 0.7rem; }

.page-strang #leistungen .service-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  align-self: flex-start;
  margin-top: auto;
  padding: 0.85rem 0 0;
  border: 0;
  background: none;
  color: var(--brand);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}
.page-strang #leistungen .service-more:hover .service-more-label { text-decoration: underline; text-underline-offset: 0.2em; }
.page-strang #leistungen .service-more:focus-visible { outline: 2px solid var(--c-marine); outline-offset: 3px; border-radius: 0.25rem; }
.page-strang #leistungen .service-more-chevron { display: inline-flex; transition: transform 0.25s ease; }
.page-strang #leistungen .service-more-chevron svg { width: 0.95rem; height: 0.95rem; }
.page-strang #leistungen .service-block.is-open .service-more-chevron { transform: rotate(180deg); }

@media (max-width: 1000px) {
  .page-strang #leistungen .service-blocks { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .page-strang #leistungen { padding: 4rem 0; }
  .page-strang #leistungen .service-blocks { grid-template-columns: 1fr; }

  .page-strang #leistungen .service-block { padding: 1.5rem; min-height: 0; }
  .page-strang #leistungen .service-block h3 { min-height: 0; }
}

.pa-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-template-rows: 1fr 1fr;
  gap: 0 1rem;
  margin: 3rem 0 0;
  padding: 0;
  min-height: 27rem;
  max-width: none;
  list-style: none;
}

.pa-steps::before {
  content: "";
  position: absolute;
  left: 8.33%;
  right: 8.33%;
  top: 50%;
  height: 1px;
  background: var(--border);
}

.pa-step {
  position: relative;
  justify-self: center;
  width: min(250px, 200%);
  padding: 0;
}

.pa-step:nth-child(odd) { grid-row: 1; align-self: end; margin-bottom: 2.2rem; }
.pa-step:nth-child(even) { grid-row: 2; align-self: start; margin-top: 2.2rem; }

.pa-step:nth-child(1) { grid-column: 1; }
.pa-step:nth-child(2) { grid-column: 2; }
.pa-step:nth-child(3) { grid-column: 3; }
.pa-step:nth-child(4) { grid-column: 4; }
.pa-step:nth-child(5) { grid-column: 5; }
.pa-step:nth-child(6) { grid-column: 6; }

.pa-step::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  height: 2.7rem;
  background: var(--c-bronze);
  opacity: 0.55;
}

.pa-step:nth-child(odd)::before { top: calc(100% - 0.5rem); }
.pa-step:nth-child(even)::before { bottom: calc(100% - 0.5rem); }

.pa-step::after {
  content: "";
  position: absolute;
  left: calc(50% - 0.275rem);
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--c-bronze);
}

.pa-step:nth-child(odd)::after { top: calc(100% + 1.925rem); }
.pa-step:nth-child(even)::after { bottom: calc(100% + 1.925rem); }

.pa-step-no {
  display: block;
  color: var(--c-bronze);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.pa-step-title {
  display: block;
  margin-top: 0.15rem;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
}

.pa-step p {
  margin: 0.35rem 0 0;
  max-width: none;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

@media (max-width: 880px) {
  .pa-steps {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 1.7rem;
    min-height: 0;
    margin-top: 2.5rem;
    max-width: 46rem;
  }

  .pa-steps::before { display: none; }

  .pa-step::before,
  .pa-step:nth-child(odd)::before,
  .pa-step:nth-child(even)::before {
    display: block;
    left: 0.95rem;
    top: 1.9rem;
    bottom: -1.8rem;
    width: 1px;
    height: auto;
    background: var(--c-bronze);
    opacity: 0.35;
  }

  .pa-step:last-child::before { display: none; }

  .pa-step::after,
  .pa-step:nth-child(odd)::after,
  .pa-step:nth-child(even)::after { display: none; }

  .pa-step,
  .pa-step:nth-child(odd),
  .pa-step:nth-child(even) {
    grid-column: 1;
    grid-row: auto;
    align-self: stretch;
    justify-self: stretch;
    width: auto;
    margin: 0;
    padding: 0 0 0 3.4rem;
  }

  .pa-step-no {
    position: absolute;
    left: 0;
    top: -0.1rem;
    display: grid;
    place-items: center;
    width: 1.9rem;
    height: 1.9rem;
    border: 1px solid var(--c-bronze);
    border-radius: 50%;
    background: var(--bg);
    font-size: 0.7rem;
    letter-spacing: 0.04em;
  }

  .pa-step-title {
    margin-top: 0;
    font-size: 1.05rem;
    line-height: 1.35;
  }

  .pa-step p { font-size: 0.95rem; }
}

#produktanlage { padding-bottom: 0; }
#produktanlage-details {
  padding-top: 0;
  background: transparent;
  border-top: 0;
}

.pa-panels {
  display: grid;
  gap: 0.9rem;
  margin-top: 2.75rem;
}

.pa-panel {
  padding: 1.25rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--card-radius, 1rem);
}

.pa-panel > summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text);
  font-weight: 600;
  list-style: none;
  cursor: pointer;
}

.pa-panel > summary::-webkit-details-marker { display: none; }

.pa-panel > summary::after {
  content: "+";
  color: var(--c-bronze);
  font-size: 1.25rem;
  line-height: 1;
}

.pa-panel[open] > summary::after { content: "–"; }

.pa-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem 2.5rem;
  margin-top: 1.1rem;
}

.pa-panel-grid p {
  margin: 0;
  max-width: none;
  color: var(--muted);
  font-size: 0.95rem;
}

.pa-panel-grid strong { color: var(--text); }

@media (max-width: 720px) {
  .pa-panel-grid { grid-template-columns: 1fr; }
}

.process-strip-note { max-width: none; margin: 0.75rem 0 0; font-size: 0.9rem; color: var(--muted); }

@media (prefers-reduced-motion: reduce) {
  .page-strang #leistungen .service-block,
  .page-strang #leistungen .service-extra,
  .page-strang #leistungen .service-extra-inner,
  .page-strang #leistungen .service-more-chevron { transition: none; }
}

.page-strang--b #team .team-usp {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0 2.25rem;
}
.page-strang--b #team .team-usp-card {
  padding: 1.35rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--surface);
}
.page-strang--b #team .team-usp-card h3 {
  margin: 0 0 0.45rem;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  line-height: 1.3;
  color: var(--c-marine);
}
.page-strang--b #team .team-usp-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}
@media (max-width: 700px) {
  .page-strang--b #team .team-usp { grid-template-columns: 1fr; }
}

.strang-switch { border-top: 1px solid var(--border); padding: 1.5rem 0; text-align: center; }
.strang-switch p { max-width: 40rem; margin: 0 auto; color: var(--muted); }
.strang-switch a { color: var(--brand); font-weight: 600; text-decoration: none; }

.audience-grid--two { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.audience-card-kicker { margin: 0 0 0.4rem; }
.audience-typical { margin-top: 1rem; color: var(--muted); }

.model-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 1.25rem 0 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  list-style: none;
}

.model-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  min-height: 14rem;
  margin: 0;
  padding: 1.5rem 1.15rem;
  color: var(--muted);
  background: var(--surface);
  border-left: 1px solid var(--border);
  font-size: 0.9rem;
  line-height: 1.55;
  text-align: center;
}

.model-list li:first-child { border-left: 0; }

.model-list strong {
  color: var(--c-marine);
  font-size: 0.95rem;
  line-height: 1.35;
}

.model-list-icon {
  display: grid;
  place-items: center;
  flex: 0 0 2.75rem;
  width: 2.75rem;
  height: 2.75rem;
  color: var(--c-marine);
  background: var(--c-offwhite);
  border-radius: 50%;
}

.model-list-icon svg {
  width: 1.45rem;
  height: 1.45rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 1050px) {
  .model-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .model-list li {
    min-height: 0;
    border-top: 1px solid var(--border);
  }
}

@media (max-width: 620px) {
  .model-list { grid-template-columns: 1fr; }
  .model-list li { border-left: 0; }
}

.process-strip { width: max-content; max-width: 100%; margin: 1.5rem 0 0; padding: 0.9rem 1.2rem; background: var(--surface); border: 1px solid var(--border); border-left: 3px solid var(--strang-accent); border-radius: var(--card-radius, 1rem); font-weight: 600; color: var(--muted); line-height: 2; }
.process-strip span { color: var(--strang-accent-text); margin: 0 0.35rem; }

.anf-lead { margin-bottom: 0; }
.anf-bullets { margin: 0.85rem 0 0; padding: 0.1rem 0 0; list-style: none; display: grid; gap: 0.6rem; }
.anf-bullets li { position: relative; padding-left: 2.1rem; font-weight: 700; font-size: 1.2rem; color: var(--text); line-height: 1.4; }
.anf-bullets li::before { content: ""; position: absolute; left: 0; top: 0.02em; width: 1.5rem; height: 1.5rem; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238c6a45' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat; }

.anforderungen { list-style: none; margin: 2rem 0 0; padding: 1.5rem; display: grid; grid-template-columns: repeat(3, 1fr); background: rgba(13, 30, 51, 0.05); border-radius: var(--card-radius, 1rem); }
.anforderungen li { display: flex; gap: 0.9rem; padding: 0.25rem 1.5rem; align-items: flex-start; }
.anforderungen li + li { border-left: 1px solid rgba(13, 30, 51, 0.12); }
.anf-icon { flex: none; color: var(--c-marine); line-height: 0; margin-top: 0.1rem; }
.anf-icon svg { width: 28px; height: 28px; }
.anforderungen strong { display: block; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-marine); margin-bottom: 0.35rem; }
.anforderungen p { margin: 0; font-size: 0.9rem; color: var(--muted); line-height: 1.5; }
@media (max-width: 720px) {
  .anforderungen { grid-template-columns: 1fr; padding: 1.25rem; }
  .anforderungen li { padding: 0; }
  .anforderungen li + li { border-left: 0; border-top: 1px solid rgba(13, 30, 51, 0.12); margin-top: 1rem; padding-top: 1rem; }
}

.strang-table-wrap { margin-top: 1.5rem; overflow-x: auto; }
.strang-table { width: 100%; border-collapse: collapse; min-width: 520px; }
.strang-table th, .strang-table td { text-align: left; vertical-align: top; padding: 0.85rem 1rem; border-bottom: 1px solid var(--border); }
.strang-table thead th { background: var(--surface); border-bottom: 2px solid var(--strang-accent); font-weight: 700; }
.strang-table tbody tr:last-child td { border-bottom: none; }

.page-strang--a #team .team-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 260px)); justify-content: center; }
.page-strang--a #team .team-card { text-align: center; }
.page-strang--a #team .team-card-body strong { margin-left: 0; }
.page-strang--a #team .team-links { justify-content: center; }

#ueber-uns .about-editorial-intro { margin-bottom: 0; }

#positionierung .about-editorial-intro { margin-bottom: 0; }
#ueber-uns .about-tagline {
  margin: clamp(1.75rem, 3.2vw, 2.5rem) 0 0;
  padding: 0.15rem 0 0.15rem 1.15rem;
  border-left: 3px solid var(--c-bronze);
  color: var(--c-bronze);
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.6rem);
  font-style: italic;
  line-height: 1.32;
  letter-spacing: 0.005em;
}
#ueber-uns .about-trust {
  gap: 0.6rem 2.5rem;
  margin: clamp(1.75rem, 3.2vw, 2.5rem) 0 0;
  padding: clamp(1.25rem, 2.5vw, 1.6rem) 0 0;
  border-top: 1px solid var(--border);
}
#ueber-uns .about-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: clamp(1.4rem, 2.8vw, 1.9rem);
  color: var(--c-bronze);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
}
#ueber-uns .about-more-link:hover { text-decoration: underline; }
#ueber-uns .about-more-link span { transition: transform 0.2s ease; }
#ueber-uns .about-more-link:hover span { transform: translateX(3px); }
#ueber-uns .about-consult {
  margin: clamp(2.75rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
  padding: clamp(1.25rem, 2.2vw, 1.75rem) clamp(1.4rem, 2.5vw, 2rem);
}
#ueber-uns .about-consult h3 { font-size: clamp(1.25rem, 1.8vw, 1.55rem); }
#ueber-uns .about-consult p { font-size: 0.94rem; }
.weiche-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.weiche-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--border); border-top: 4px solid var(--weiche-accent); border-radius: var(--card-radius, 1rem); padding: 2rem; }
.weiche-card--a { --weiche-accent: var(--c-gold); }
.weiche-card--b { --weiche-accent: var(--c-marine); }
#weiche .weiche-card .kicker { color: var(--weiche-accent); }
.weiche-card h3 { margin: 0.4rem 0 0.9rem; font-size: 1.5rem; color: var(--c-marine); }
.weiche-card p { margin: 0; color: var(--muted); }
.weiche-card p:not(.kicker) { flex: 1; }
.weiche-card .weiche-cta { align-self: flex-start; margin-top: 1.5rem; color: var(--weiche-accent); font-weight: 700; text-decoration: none; }
.weiche-card .weiche-cta:hover { text-decoration: underline; }

#weiche .weiche-card--a .kicker,
.weiche-card--a .weiche-cta { color: var(--brand); }

.audience-card h3 {
  color: var(--text);
}

@media (max-width: 430px) {
  .nav-toggle {
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }

  .case-study-open,
  #ueber-uns .about-more-link {
    min-height: 44px;
  }

  .faq-group-items > details > summary {
    display: flex;
    align-items: center;
    min-height: 44px;
  }

  .team-links a,
  .site-footer a,
  .servicepakete-hinweis a {
    display: inline-block;
    padding: 0.55rem 0;
  }
}

@media (max-width: 1279px) {
  .case-study-label,
  .hero-badges-label {
    font-size: 0.75rem;
  }
}

.stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(9rem, 100%), 1fr));
}

.hero-text .hero-copy-block h1 span.hero-headline-line3 {
  white-space: normal;
}
@media (min-width: 921px) {
  .hero-text .hero-copy-block h1 span.hero-headline-line3 {
    white-space: nowrap;
  }
}

@media (max-width: 920px) {
  .hero-text {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (min-width: 801px) and (max-width: 1099px) {
  .nav { gap: 0.9rem; }
  .nav a { font-size: 0.88rem; }
  header .cta-link { margin-left: 0.75rem; }
}

.model-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.model-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 2rem;
  box-shadow: 0 1px 2px rgba(13, 30, 51, 0.04),
              0 1rem 2rem -1.5rem rgba(13, 30, 51, 0.28);
  transition: transform 0.35s cubic-bezier(0.2, 0.75, 0.25, 1),
              box-shadow 0.35s ease, border-color 0.35s ease;
}

.model-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8rem;
  border-radius: var(--card-radius) var(--card-radius) 0 0;
  background: linear-gradient(180deg, rgba(13, 30, 51, 0.035), rgba(13, 30, 51, 0));
  pointer-events: none;
}
.model-card--brand::before {
  background: linear-gradient(180deg, rgba(140, 106, 69, 0.05), rgba(140, 106, 69, 0));
}

.model-card > * { position: relative; }

.model-card-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.model-card-num {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: #fff;
}
.model-card--marine .model-card-num {
  background: var(--c-marine);
  box-shadow: 0 0 0 1px rgba(13, 30, 51, 0.08), 0 0.5rem 1rem -0.75rem rgba(13, 30, 51, 0.6);
}
.model-card--brand .model-card-num {
  background: var(--brand);
  box-shadow: 0 0 0 1px rgba(140, 106, 69, 0.12), 0 0.5rem 1rem -0.75rem rgba(140, 106, 69, 0.6);
}

.model-card-titles { min-width: 0; }

.model-card-kicker {
  margin: 0 0 0.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.model-card h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.15;
  font-weight: 700;
}
.model-card--marine h3 { color: var(--c-marine); }

.model-card--brand h3 { color: var(--brand); }

.model-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.7;
}
.model-card-lead { color: var(--text); }

.model-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.5rem;
  margin: 1rem 0 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--border);
  list-style: none;
}
.model-steps li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--text);
  hyphens: auto;
}
.model-step-icon {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(13, 30, 51, 0.045);
  color: var(--c-marine);
  transition: background 0.35s ease, color 0.35s ease;
}
.model-card--brand .model-step-icon {
  background: rgba(212, 185, 139, 0.22);
  color: var(--brand);
}
.model-step-icon svg { width: 1.15rem; height: 1.15rem; }

.model-typical {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.model-typical-title {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.model-typical-list { margin: 0; padding: 0; list-style: none; }
.model-typical-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text);
}
.model-typical-list li:last-child { margin-bottom: 0; }
.model-check {
  flex: 0 0 auto;
  margin-top: 0.15rem;
  color: var(--brand);
}
.model-card--marine .model-check { color: var(--c-ozeanblau); }
.model-check svg { width: 1rem; height: 1rem; }

@media (hover: hover) and (min-width: 901px) {
  .model-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 185, 139, 0.75);
    box-shadow: 0 1px 2px rgba(13, 30, 51, 0.05),
                0 1.75rem 3rem -1.75rem rgba(13, 30, 51, 0.4);
  }
  .model-card--marine:hover .model-step-icon { background: rgba(13, 30, 51, 0.08); }
  .model-card--brand:hover .model-step-icon { background: rgba(212, 185, 139, 0.34); }
}

@media (min-width: 901px) {
  .model-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto auto auto auto;
    column-gap: 2rem;
    row-gap: 0;
  }
  .model-card {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
    row-gap: 0;
    padding: 2.5rem;
  }
}
@media (max-width: 560px) {
  .model-card { padding: 1.5rem; }
  .model-card-head { gap: 0.75rem; }
  .model-card-num { width: 3rem; height: 3rem; font-size: 1.05rem; }
  .model-steps { gap: 0.25rem; }
  .model-steps li { font-size: 0.68rem; }
  .model-step-icon { width: 2.25rem; height: 2.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  .model-card { transition: none; }
  .model-card:hover { transform: none; }
  .model-step-icon { transition: none; }
}

.model-close {
  display: grid;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.model-close p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.model-close .model-close-title {
  color: var(--c-marine);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

@media (min-width: 901px) {
  .model-close {
    grid-template-columns: minmax(0, 14rem) minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
    padding: 0;
  }
}

#einsatzmodelle .stats-grid--strip {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
#einsatzmodelle .stats-grid--strip .stat-card {
  padding: 1.25rem 1rem;
  text-align: center;
}
#einsatzmodelle .stats-grid--strip .stat-number {
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  line-height: 1.15;
  color: var(--c-marine);
}
#einsatzmodelle .stats-grid--strip .stat-card p {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

@media (max-width: 900px) {
  #einsatzmodelle .stats-grid--strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

#zusammenarbeit .responsibility-control {
  width: min(100%, 56rem);
  margin: 2.25rem auto 2.5rem;
  padding: 0;
  background: transparent;
}

#zusammenarbeit > .container > .kicker,
#zusammenarbeit > .container > h2,
#zusammenarbeit > .container > .section-sub,
#verantwortung > .container > .kicker,
#verantwortung > .container > h2,
#verantwortung > .container > .section-sub {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

#zusammenarbeit > .container > .section-sub { max-width: 48rem; }

#zusammenarbeit .responsibility-control-labels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 0.9rem;
  color: var(--c-marine);
  font-size: 0.88rem;
  font-weight: 700;
}

#zusammenarbeit .responsibility-control-labels span:nth-child(2) { text-align: center; }
#zusammenarbeit .responsibility-control-labels span:last-child { text-align: right; }

#zusammenarbeit .responsibility-control input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  height: 2px;
  margin: 0;
  border-radius: 999px;
  background: var(--c-marine);
  accent-color: var(--c-bronze);
  cursor: ew-resize;
}

#zusammenarbeit .responsibility-control input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 1.55rem;
  height: 1.55rem;
  border: 0;
  border-radius: 50%;
  background: var(--c-bronze);
  cursor: ew-resize;
}

#zusammenarbeit .responsibility-control input[type="range"]::-moz-range-thumb {
  width: 1.55rem;
  height: 1.55rem;
  border: 0;
  border-radius: 50%;
  background: var(--c-bronze);
  cursor: ew-resize;
}

.responsibility-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.9fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--strang-accent);
  border-radius: var(--card-radius);
  background: var(--surface);
}

.responsibility-panel {
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.responsibility-panel + .responsibility-panel {
  border-left: 1px solid var(--border);
}

.responsibility-panel-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.responsibility-panel h3 {
  margin: 0;
  color: var(--c-marine);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
}

.responsibility-panel-icon,
.responsibility-panel-mark {
  display: grid;
  place-items: center;
  flex: 0 0 3.5rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
}

.responsibility-panel-icon {
  color: var(--c-schwarzbraun);
  background: var(--c-champagner);
}

.responsibility-panel-icon svg {
  width: 1.8rem;
  height: 1.8rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.responsibility-panel-mark {
  color: var(--c-champagner);
  background: var(--c-marine);
  font-family: var(--font-heading);
  font-size: 1.8rem;
}

.responsibility-panel ul {
  display: grid;
  gap: 1.1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.responsibility-panel li {
  position: relative;
  padding-left: 2rem;
  color: var(--text);
  line-height: 1.5;
}

.responsibility-panel li::before {
  content: "✓";
  position: absolute;
  top: -0.1rem;
  left: 0;
  color: var(--c-bronze);
  font-size: 1.35rem;
}

.responsibility-panel--shared {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle, var(--c-offwhite), var(--surface) 72%);
}

.responsibility-panel--shared p {
  max-width: 17rem;
  margin: 1rem auto 0;
  color: var(--muted);
  line-height: 1.7;
}

.responsibility-shared-icon {
  display: grid;
  place-items: center;
  width: 5rem;
  height: 5rem;
  margin-bottom: 1.5rem;
  color: var(--c-bronze);
}

.responsibility-shared-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;

  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#zusammenarbeit .communication-title {
  margin: 3rem 0 1.25rem;
  color: var(--c-marine);
  text-align: center;
}

#zusammenarbeit .responsibility-note,
#verantwortung .responsibility-note {
  max-width: 48rem;
  margin: 1.75rem auto 0;
  text-align: center;
}

#zusammenarbeit .responsibility-project-note {
  gap: 1.1rem;
  margin-top: 1.25rem;
  padding: 1.15rem 1.35rem;
  border-radius: 1rem;
}

#zusammenarbeit .responsibility-project-note .service-companion-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
}

#zusammenarbeit .responsibility-project-note .service-companion-icon svg {
  width: 1.45rem;
  height: 1.45rem;
}

#zusammenarbeit .responsibility-project-note > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
}

#zusammenarbeit .responsibility-project-note p {
  font-size: 0.95rem;
  line-height: 1.6;
}

#zusammenarbeit .responsibility-project-note p:first-child {
  flex: 1 1 24rem;
}

#zusammenarbeit .responsibility-project-note p + p {
  flex: 0 0 auto;
  margin-top: 0;
}

.responsibility-alt {
  display: block;
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .responsibility-board { grid-template-columns: 1fr; }
  .responsibility-panel + .responsibility-panel {
    border-top: 1px solid var(--border);
    border-left: 0;
  }
}

@media (max-width: 620px) {
  #zusammenarbeit .responsibility-control-labels {
    grid-template-columns: 1fr 1fr;
  }

  #zusammenarbeit .responsibility-control-labels span:nth-child(2) {
    display: none;
  }
}

.responsibility-more { margin-top: 0.75rem; }
.responsibility-more > ul { margin-top: 0.75rem; }
.responsibility-more summary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0;
  color: var(--strang-accent-text);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.responsibility-more summary::-webkit-details-marker { display: none; }
.responsibility-more summary::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.25s ease;
}
.responsibility-more[open] summary::after { transform: translateY(1px) rotate(-135deg); }
.responsibility-more summary:hover { text-decoration: underline; text-underline-offset: 0.2em; }
.responsibility-more summary:focus-visible {
  outline: 2px solid var(--strang-accent-text);
  outline-offset: 3px;
  border-radius: 0.25rem;
}

@media (prefers-reduced-motion: reduce) {
  .responsibility-more summary::after { transition: none; }
}

#ausgangssituation .section-sub { margin-bottom: 1rem; }

.situation-toolbar {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}

.situation-toggle-all {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.situation-toggle-all:hover,
.situation-toggle-all:focus-visible {
  border-color: var(--brand);
  color: var(--brand);
}

.situation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.situation-grid.is-list { grid-template-columns: 1fr; }

.situation-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(13, 30, 51, 0.04);
}

.situation-card h3 {
  margin: 0 0 0.5rem;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  line-height: 1.25;
  font-weight: 700;
  color: var(--c-marine);
}

.situation-teaser {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.situation-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  margin-top: auto;
  padding: 1.5rem 0 0;
  border: 0;
  border-top: 1px solid var(--border);
  background: none;
  color: var(--brand);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}
.situation-more-icon::after { content: "+"; font-size: 1.1rem; line-height: 1; }
.situation-card.is-open .situation-more-icon::after { content: "\2212"; }

.situation-panel { display: none; }
.situation-card.is-open .situation-panel { display: block; margin-top: 1rem; }

.situation-lead { margin: 0 0 0.75rem; color: var(--text); line-height: 1.7; }
.situation-panel p { margin: 0 0 0.75rem; color: var(--muted); font-size: 0.95rem; line-height: 1.7; }
.situation-panel p:last-child { margin-bottom: 0; }

.situation-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.situation-compare-box {
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 1.5rem;
}
.situation-compare-box--after {
  background: rgba(212, 185, 139, 0.12);
  border-color: rgba(212, 185, 139, 0.5);
}
.situation-compare-title {
  margin: 0 0 0.75rem;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 700;
}
.situation-compare-box ul { margin: 0; padding: 0; list-style: none; }
.situation-compare-box li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.55;
}
.situation-compare-box li:last-child { margin-bottom: 0; }
.situation-mark { flex: 0 0 auto; color: var(--muted); }
.situation-mark--check { color: var(--brand); }
.situation-compare-arrow { color: var(--brand); font-size: 1.25rem; }

.situation-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.situation-details p { margin: 0; color: var(--muted); font-size: 0.95rem; line-height: 1.6; }
.situation-details strong { color: var(--text); }

@media (max-width: 1100px) {
  .situation-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .situation-grid { grid-template-columns: 1fr; }
  .situation-compare { grid-template-columns: 1fr; }
  .situation-compare-arrow { transform: rotate(90deg); justify-self: center; }
  .situation-details { grid-template-columns: 1fr; }
}
