:root {
  --petrol: #0B5657;
  --petrol-dark: #0B5657;
  --orange: #FE7743;
  --grey: #9B9B9B;
  --mint: #94D0CB;
  --cream: #FFFDF8;
  --on-petrol-soft: rgba(255, 253, 248, 0.82);
  --soft: var(--service-surface);
  --petrol-rgb: 11, 86, 87;
  --orange-rgb: 254, 119, 67;
  --grey-rgb: 155, 155, 155;
  --mint-rgb: 148, 208, 203;
  --site-header-block: 5.5rem;
  --home-editorial-margin: clamp(1.25rem, 3vw, 2.25rem);
  --home-editorial-vh-offset: calc(var(--site-header-block) + var(--home-editorial-margin));
  --service-surface: #E4EDEE;
  --font-sans: Inter, Arial, sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
  --text-h1: clamp(2.35rem, 3.55vw, 4.25rem);
  --text-h1-mobile: 2.15rem;
  --text-h2: clamp(1.75rem, 2.4vw, 2.6rem);
  --text-h2-mobile: 1.5rem;
  --text-h3: clamp(1.15rem, 1.5vw, 1.35rem);
  --text-h3-mobile: 1.15rem;
  --text-body: clamp(1.05rem, 1.18vw, 1.2rem);
  --text-footer-nav: 1.12rem;
  --line-height-h1: 1.1;
  --layout-max-wide: 92rem;
  --layout-pad-x: clamp(1.25rem, 4vw, 4rem);
  --content-area-pad-inline-mobile: 10px;
  --footer-divider: 1px solid rgba(255, 253, 248, 0.14);
  --home-editorial-pad-x: clamp(2rem, 4vw, 4rem);
  --home-editorial-pad-y: clamp(1.75rem, 3.5vw, 3.25rem);
  --home-editorial-offset-x: calc((100vw - min(var(--layout-max-wide), 100vw)) / 2);
  --home-hero-shell-inset-x: calc(var(--home-editorial-offset-x) + var(--layout-pad-x));
  --service-hero-inner-pad: clamp(1.5rem, 3vw, 2.35rem);
  --service-hero-col-gap: 1rem;
  --service-hero-shell-margin: clamp(1.25rem, 2.5vw, 2rem) var(--layout-pad-x) 1rem;
  --bp-layout-stack: 1080px;
  --bp-nav-stack: 860px;
  --bp-compact: 520px;
  --orange-spur-border: 1px solid rgba(var(--petrol-rgb), 0.12);
  --orange-spur-border-left: 3px solid var(--orange);
  --orange-spur-radius: 0.625rem;
  --orange-spur-bg-color: var(--cream);
  --orange-spur-bg-image:
    linear-gradient(
      92deg,
      rgba(var(--orange-rgb), 0.14) 0%,
      rgba(var(--orange-rgb), 0.04) 16%,
      transparent 30%
    ),
    radial-gradient(
      ellipse 62% 88% at 100% 48%,
      rgba(var(--mint-rgb), 0.26) 0%,
      rgba(var(--mint-rgb), 0.1) 45%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 50% 40% at 100% 0%,
      rgba(var(--mint-rgb), 0.14) 0%,
      transparent 55%
    ),
    linear-gradient(
      168deg,
      rgba(255, 253, 248, 1) 0%,
      rgba(var(--mint-rgb), 0.06) 48%,
      rgba(255, 253, 248, 0.97) 100%
    );
  --orange-spur-bg-image-soft:
    linear-gradient(
      92deg,
      rgba(var(--orange-rgb), 0.14) 0%,
      rgba(var(--orange-rgb), 0.04) 16%,
      transparent 30%
    ),
    radial-gradient(
      ellipse 58% 82% at 100% 48%,
      rgba(var(--mint-rgb), 0.17) 0%,
      rgba(var(--mint-rgb), 0.07) 45%,
      transparent 72%
    ),
    radial-gradient(
      ellipse 46% 36% at 100% 0%,
      rgba(var(--mint-rgb), 0.09) 0%,
      transparent 58%
    ),
    linear-gradient(
      168deg,
      rgba(255, 253, 248, 1) 0%,
      rgba(var(--mint-rgb), 0.035) 48%,
      rgba(255, 253, 248, 0.98) 100%
    );
  --orange-spur-shadow: 0 1px 0 rgba(255, 255, 255, 0.78) inset;
  --offer-surface: #E9F5F5;
  --offer-surface-bg-image:
    radial-gradient(
      ellipse 85% 65% at 8% 0%,
      rgba(var(--mint-rgb), 0.42) 0%,
      transparent 58%
    ),
    radial-gradient(
      ellipse 55% 45% at 100% 100%,
      rgba(var(--petrol-rgb), 0.07) 0%,
      transparent 52%
    ),
    linear-gradient(
      168deg,
      rgba(255, 255, 255, 0.72) 0%,
      #E9F5F5 40%,
      rgba(var(--mint-rgb), 0.14) 100%
    );
  --offer-surface-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 12px 32px rgba(var(--petrol-rgb), 0.09);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--soft);
}

@view-transition {
  navigation: auto;
}

@media (prefers-reduced-motion: reduce) {
  @view-transition {
    navigation: none;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--petrol);
  background: var(--soft);
  line-height: 1.6;
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
  padding:
    1rem
    clamp(1.25rem, 4vw, 4rem)
    1rem
    max(var(--layout-pad-x), var(--home-hero-shell-inset-x));
  background: var(--petrol);
  color: var(--cream);
  border-bottom: 1px solid rgba(255, 253, 248, 0.14);
}

body:has(.home-editorial) .site-header {
  align-items: flex-end;
  padding:
    1rem
    clamp(1.25rem, 4vw, 4rem)
    0
    max(var(--layout-pad-x), var(--home-hero-shell-inset-x));
}

body:has(.home-editorial) .site-header .brand {
  align-self: flex-end;
}

.brand {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: grid;
  gap: .45rem;
  text-decoration: none;
}

.brand img {
  width: 9.25rem;
  height: auto;
  display: block;
}

body:has(.home-editorial) .site-header .brand img {
  padding-bottom: 0.75rem;
}

.brand span {
  max-width: 17rem;
  color: rgba(255, 253, 248, 0.88);
  font-size: .76rem;
  font-weight: 800;
  line-height: 1.18;
}

.site-nav {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.15rem clamp(0.75rem, 2.2vw, 1.75rem);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.15rem;
  border: 0;
  border-radius: 0;
  color: var(--on-petrol-soft);
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.25;
  text-decoration: none;
  white-space: nowrap;
  pointer-events: auto;
  transition:
    color 0.22s ease,
    opacity 0.22s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.site-nav a.is-active {
  color: var(--cream);
  font-weight: 700;
}

.site-nav a:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .site-nav a {
    transition: none;
  }
}

main { overflow-x: clip; }

main:has(.home-editorial) {
  width: min(100%, var(--layout-max-wide));
  max-width: var(--layout-max-wide);
  margin-inline: auto;
  overflow: visible;
  background: var(--service-surface);
}

main:has(.home-editorial) > .about-section,
main:has(.contact-hero--atelier) > .about-section {
  width: auto;
  max-width: none;
  margin-left: var(--layout-pad-x);
  margin-right: var(--layout-pad-x);
  border-color: rgba(var(--petrol-rgb), 0.12);
  border-radius: 0.5rem;
  box-sizing: border-box;
}

.home-editorial {
  display: flex;
  flex-direction: column;
  width: min(100%, var(--layout-max-wide));
  max-width: var(--layout-max-wide);
  min-width: 0;
  height: calc(100svh - var(--home-editorial-vh-offset));
  max-height: calc(100svh - var(--home-editorial-vh-offset));
  margin: 0 auto var(--home-editorial-margin);
  padding: 0;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.home-editorial > .home-editorial-main {
  min-width: 0;
}

.home-editorial-main {
  --hero-visual-inset: clamp(1.25rem, 2.8vh, 2rem);
  --service-bento-col-right: 1.15fr;
  position: relative;
  display: grid;
  flex: 1 1 auto;
  grid-template-columns: minmax(0, 1fr) minmax(0, var(--service-bento-col-right));
  grid-template-rows: minmax(0, 1fr);
  column-gap: var(--service-hero-col-gap);
  row-gap: clamp(1.5rem, 3.5vw, 3rem);
  align-items: stretch;
  align-self: stretch;
  min-height: clamp(30rem, 56vh, 36rem);
  height: auto;
  margin: var(--service-hero-shell-margin);
  padding: var(--service-hero-inner-pad);
  border: 1px solid rgba(var(--petrol-rgb), 0.12);
  border-radius: 0.5rem;
  box-sizing: border-box;
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 28px 80px rgba(var(--petrol-rgb), .14);
}

.home-editorial-main.home-editorial-main--atelier {
  padding-block: var(--service-hero-inner-pad);
  padding-inline: clamp(4.5rem, 9vw, 7.5rem);
}

.home-editorial-main > .hero-copy,
.home-editorial-main > .hero-visual {
  min-width: 0;
}

.home-editorial-main > .hero-visual {
  grid-column: 2;
  grid-row: 1;
  align-self: stretch;
}

.home-editorial .hero-copy {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(0.85rem, 1.8vw, 1.2rem);
  width: 100%;
  max-width: none;
  min-width: 0;
  min-height: 100%;
  align-self: stretch;
  padding-left: clamp(1rem, 1.8vw, 1.25rem);
  padding-right: clamp(0.75rem, 2vw, 1.5rem);
  box-sizing: border-box;
}

.home-editorial .hero-copy .hero-accent {
  width: 100%;
  max-width: 100%;
  height: 2px;
  border-radius: 1px;
  background: linear-gradient(
    90deg,
    var(--orange) 0%,
    rgba(var(--orange-rgb), 0.52) 55%,
    rgba(var(--orange-rgb), 0.1) 100%
  );
}

.hero-accent {
  display: block;
  width: 2rem;
  height: 2px;
  border-radius: 1px;
  background: var(--orange);
}

.hero-lead {
  margin: 0;
  max-width: 28rem;
  color: rgba(var(--petrol-rgb), 0.72);
  font-size: var(--text-body);
  font-weight: 600;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-width: 0;
  min-height: 0;
  height: 100%;
  overflow: visible;
  isolation: isolate;
}

.hero-visual-backdrop {
  position: absolute;
  top: 16%;
  right: 0;
  bottom: var(--hero-visual-inset);
  z-index: 0;
  width: min(86%, 18.5rem);
  height: auto;
  border-radius: 0.75rem 0 0 0.75rem;
  background: rgba(var(--mint-rgb), 0.35);
  pointer-events: none;
}

.home-editorial h1 {
  max-width: min(13ch, 100%);
  color: var(--petrol);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.home-editorial-main .cta-row {
  margin-top: 0.25rem;
}

.hero-person {
  position: absolute;
  right: 0;
  bottom: var(--hero-visual-inset);
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 27rem;
  height: auto;
  max-height: calc(100% - var(--hero-visual-inset));
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 22px 42px rgba(var(--petrol-rgb), .16));
  pointer-events: none;
}

.home-editorial .quote {
  max-width: 42rem;
  margin-top: 1rem;
  color: rgba(var(--petrol-rgb), .76);
  font-size: var(--text-body);
  font-weight: 800;
  line-height: 1.45;
}

.hero-intro {
  max-width: 44rem;
  margin: 1.2rem 0 0;
  color: rgba(var(--petrol-rgb), .74);
  font-size: var(--text-body);
  font-weight: 600;
}

.case-list {
  display: grid;
  gap: .8rem;
  max-width: 48rem;
  margin-top: 1.7rem;
}

.case-list div {
  display: grid;
  grid-template-columns: 2.8rem 1fr;
  gap: .85rem;
  align-items: start;
  padding-top: .85rem;
  border-top: 1px solid rgba(var(--petrol-rgb), .16);
  color: var(--petrol-dark);
  font-weight: 800;
}

.case-list span {
  color: var(--orange);
  font-weight: 800;
}

.portrait-stack {
  display: grid;
  gap: 1rem;
  align-content: center;
}

.portrait-stack .page-visual {
  margin: 0;
}

.quote-card {
  padding: 1rem;
  border-left: 4px solid var(--orange);
  background: rgba(var(--mint-rgb), .22);
  color: var(--petrol-dark);
  font-weight: 800;
}

.hero,
.subpage-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, .68fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  max-width: 86rem;
  min-height: calc(100vh - 8rem);
  margin: 0 auto;
  padding: clamp(3rem, 5vw, 5rem) clamp(1.25rem, 4vw, 4rem) clamp(2.25rem, 4vw, 4rem);
}

.subpage-hero {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.72fr);
  gap: clamp(1.75rem, 4vw, 4rem);
  align-items: stretch;
  min-height: 36rem;
  padding-bottom: clamp(2rem, 4vw, 4rem);
}

.subpage-hero > .subpage-copy,
.subpage-hero > .subpage-image {
  min-width: 0;
}

.subpage-hero .subpage-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  min-height: 100%;
}

.subpage-hero .subpage-copy .cta-row {
  flex-shrink: 0;
}

.subpage-hero .subpage-image {
  position: relative;
  z-index: 1;
  align-self: end;
  justify-self: end;
  width: 100%;
  max-width: min(100%, 22rem);
}

/* A — Atelier Editorial (Leistungs-Unterseiten) */
main:has(.service-chapter) {
  display: flex;
  flex-direction: column;
  min-height: calc(100dvh - var(--site-header-block));
  background: var(--service-surface);
  --service-page-width: var(--layout-max-wide);
  --service-page-pad-x: var(--layout-pad-x);
  --service-bento-col-right: 1.15fr;
  --service-hero-h1-min: clamp(7.65rem, 11.5vw, 13.8rem);
  --service-closing-cta-pad-y: clamp(0.85rem, 1.5vw, 1.15rem);
  --service-closing-cta-row-h: 3.15rem;
  --service-closing-cta-block-h: calc(var(--service-closing-cta-row-h) + (2 * var(--service-closing-cta-pad-y)));
}

main:has(.service-chapter) .service-chapter {
  flex: 1 1 auto;
  margin-bottom: 0;
}

main:has(.service-chapter) > .closing-cta {
  position: sticky;
  bottom: 0;
  z-index: 40;
  flex-shrink: 0;
  margin-top: auto;
  width: 100%;
  max-width: none;
  padding: var(--service-closing-cta-pad-y) 0;
  background: var(--petrol);
  border-top: var(--footer-divider);
  border-bottom: var(--footer-divider);
}

main:has(.service-chapter) > .closing-cta .cta-row {
  margin-top: 0;
  width: min(100%, var(--service-page-width));
  max-width: var(--service-page-width);
  min-height: var(--service-closing-cta-row-h);
  margin-inline: auto;
  padding-inline: var(--service-page-pad-x);
  box-sizing: border-box;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0.9rem;
}

/* Option A — Hero + Bento: ein Kapitel mit gemeinsamem Außenrahmen */
.service-chapter {
  width: min(100%, var(--service-page-width));
  max-width: var(--service-page-width);
  min-width: 0;
  margin: 0 auto clamp(1.25rem, 2.5vw, 2rem);
  padding-top: 0;
  border: none;
  border-radius: 0;
  overflow: visible;
  background: transparent;
}

.subpage-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
  padding: clamp(1.5rem, 3vw, 2.35rem);
  background: var(--cream);
  border: 1px solid rgba(var(--petrol-rgb), 0.08);
  border-radius: 0.55rem;
}

.service-chapter > .subpage-hero-inner {
  width: auto;
  max-width: none;
  min-width: 0;
  margin: clamp(1.25rem, 2.5vw, 2rem) var(--service-page-pad-x) 1rem;
  padding: var(--service-hero-inner-pad);
  background: var(--cream);
  border: 1px solid rgba(var(--petrol-rgb), 0.12);
  border-radius: 0.5rem;
  box-sizing: border-box;
  grid-template-columns: minmax(0, 1fr) minmax(0, var(--service-bento-col-right));
  grid-template-rows: minmax(28rem, 1fr);
  align-items: stretch;
  column-gap: var(--service-hero-col-gap);
  min-height: clamp(30rem, 56vh, 36rem);
}

.service-chapter .subpage-copy {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  width: 100%;
  max-width: none;
  min-width: 0;
  min-height: 100%;
  align-self: stretch;
  padding-left: clamp(1rem, 1.8vw, 1.25rem);
  padding-right: clamp(0.75rem, 2vw, 1.5rem);
}

.service-chapter .subpage-hero-lead {
  display: flex;
  flex: 0 1 auto;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}

.service-chapter .subpage-hero-lead h1 {
  flex: 0 0 auto;
  width: 100%;
  min-height: var(--service-hero-h1-min);
}

.service-chapter .subpage-hero-lead .hero-accent {
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  height: 2px;
  margin: 2rem 0 1.15rem;
  border-radius: 1px;
  background: linear-gradient(
    90deg,
    var(--petrol) 0%,
    rgba(var(--petrol-rgb), 0.52) 55%,
    rgba(var(--petrol-rgb), 0.1) 100%
  );
}

.service-chapter .subpage-hero-lead .subpage-hero-audience {
  flex: 0 0 auto;
  margin: 0;
  width: 100%;
  max-width: 100%;
  text-wrap: balance;
  padding-left: 0.9rem;
  border-left: 2px solid rgba(var(--orange-rgb), 0.45);
  color: rgba(var(--petrol-rgb), 0.72);
  font-family: var(--font-sans);
  font-size: clamp(1.08rem, 1.3vw, 1.22rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.service-chapter .subpage-hero-lead .cta-row {
  flex: 0 0 auto;
  width: 100%;
  margin-top: 0;
}

.service-chapter .subpage-hero-inner > .subpage-image {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  justify-self: center;
}

.service-chapter .subpage-copy h1 {
  margin: 0;
  width: 100%;
  max-width: min(18ch, 100%);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: auto;
  text-wrap: balance;
}

.service-chapter .subpage-image {
  position: relative;
  width: 100%;
  max-width: min(100%, 26rem);
  margin-inline: 0;
  padding: clamp(0.55rem, 1.2vw, 0.85rem);
  padding-left: clamp(0.75rem, 1.35vw, 0.9rem);
  border: var(--orange-spur-border);
  border-left: var(--orange-spur-border-left);
  border-radius: var(--orange-spur-radius);
  overflow: hidden;
  background-color: var(--orange-spur-bg-color);
  background-image: var(--orange-spur-bg-image);
  box-shadow: var(--orange-spur-shadow);
}

.service-chapter .subpage-image img {
  border-radius: 0.45rem;
}

/* Atelier — Bento: Problematik + Leistung links, Zielbild rechts (2 Zeilen) */
.service-chapter > .content-grid.content-grid--atelier {
  width: auto;
  max-width: none;
  margin: 0 var(--service-page-pad-x);
  padding:
    clamp(1.25rem, 2.5vw, 2rem)
    clamp(1rem, 1.8vw, 1.25rem)
    calc(clamp(1.25rem, 2.5vw, 2rem) + var(--service-closing-cta-block-h, 0px));
  background: var(--cream);
  border: 1px solid rgba(var(--petrol-rgb), 0.12);
  border-radius: 0.5rem;
}

.content-grid--atelier .content-spur-panels {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, var(--service-bento-col-right));
  grid-template-rows: auto auto;
  gap: 1rem;
  align-items: stretch;
  min-width: 0;
}

.content-grid--atelier .content-spur-cell {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  min-height: 0;
  padding: clamp(1rem, 1.8vw, 1.25rem);
  border: 1px solid rgba(var(--petrol-rgb), 0.12);
  border-radius: 0.5rem;
}

.content-grid--atelier .content-spur-cell--problem {
  grid-column: 1;
  grid-row: 1;
  background: #EBEBEB;
}

.content-grid--atelier .content-spur-cell--goal {
  grid-column: 2;
  grid-row: 1 / 3;
  padding: clamp(1.15rem, 2vw, 1.5rem);
  padding-left: clamp(1.25rem, 2.1vw, 1.65rem);
  border: var(--orange-spur-border);
  border-left: var(--orange-spur-border-left);
  border-radius: var(--orange-spur-radius);
  background-color: var(--orange-spur-bg-color);
  background-image: var(--orange-spur-bg-image-soft);
  box-shadow: var(--orange-spur-shadow);
}

.content-grid--atelier .content-spur-cell--offer {
  grid-column: 1;
  grid-row: 2;
  border: 1px solid rgba(var(--mint-rgb), 0.38);
  border-radius: var(--orange-spur-radius);
  background-color: var(--offer-surface);
  background-image: var(--offer-surface-bg-image);
  box-shadow: var(--offer-surface-shadow);
}

.content-grid--atelier .content-spur-phase {
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0;
  text-align: left;
}

.content-grid--atelier .content-spur-phase:not(:first-child)::before,
.content-grid--atelier .content-spur-phase:not(:last-child)::after {
  display: none;
}

.content-grid--atelier .content-spur-icon {
  margin-inline: 0;
  flex-shrink: 0;
}

.content-grid--atelier .content-spur-phase--problem .content-spur-icon svg {
  width: 1.55rem;
  height: 1.55rem;
}

.content-grid--atelier .content-spur-phase--goal .content-spur-icon svg {
  width: 1.55rem;
  height: 1.55rem;
}

.content-grid--atelier .content-spur-label {
  margin-inline: 0;
  max-width: none;
  text-align: left;
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
  font-weight: 800;
  line-height: 1.2;
}

.content-grid--atelier .content-spur-phase--goal .content-spur-label {
  font-size: clamp(1.12rem, 1.4vw, 1.32rem);
}

.content-grid--atelier .content-spur-panel {
  flex: 1;
  min-height: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.content-grid--atelier .content-spur-panel--goal {
  padding: 0;
  border: 0;
  background: transparent;
}

.content-spur-list[data-preview="2"]:not(.is-expanded) > li:nth-child(n+3) {
  display: none;
}

.contact-hero {
  grid-template-columns: minmax(0, 1fr);
  min-height: auto;
}

/* Kontakt-Hero mit Portrait (Atelier-Anmutung) */
main:has(.contact-hero--atelier) {
  width: min(100%, var(--layout-max-wide));
  max-width: var(--layout-max-wide);
  margin-inline: auto;
  background: var(--service-surface);
  --contact-page-pad-x: var(--layout-pad-x);
  --contact-options-gap: clamp(2.25rem, 4vw, 3.25rem);
}

.contact-hero.contact-hero--atelier {
  display: block;
  width: min(100%, var(--layout-max-wide));
  max-width: var(--layout-max-wide);
  min-height: auto;
  margin-inline: auto;
  padding: clamp(2rem, 4vw, 3.25rem) var(--contact-page-pad-x) 0;
}

.contact-hero--atelier .subpage-hero-inner {
  min-width: 0;
  margin: 0;
  padding: clamp(1.5rem, 3vw, 2.35rem);
  background: var(--cream);
  border: 1px solid rgba(var(--petrol-rgb), 0.12);
  border-radius: 0.5rem 0.5rem 0 0;
  box-sizing: border-box;
  grid-template-columns: minmax(0, 1fr) minmax(0, 26rem);
  grid-template-rows: auto;
  align-items: start;
  column-gap: clamp(1.75rem, 4vw, 3rem);
  min-height: auto;
}

.contact-hero--atelier .subpage-copy {
  width: 100%;
  max-width: none;
  min-width: 0;
  padding-right: clamp(0.75rem, 2vw, 1.5rem);
}

.contact-hero--atelier .subpage-copy .hero-accent {
  width: 100%;
  max-width: 100%;
  height: 2px;
  margin: 0.85rem 0 1.35rem;
  border-radius: 1px;
  background: linear-gradient(
    90deg,
    var(--orange) 0%,
    rgba(var(--orange-rgb), 0.52) 55%,
    rgba(var(--orange-rgb), 0.1) 100%
  );
}

.contact-hero--atelier .contact-copy {
  margin-top: 0;
  max-width: 100%;
  font-size: var(--text-body);
}

.contact-hero--atelier .contact-hero-image {
  align-self: start;
  justify-self: end;
  width: 100%;
  max-width: min(100%, 26rem);
  margin-inline: 0;
}

.hero-copy,
.subpage-copy {
  max-width: 48rem;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 1.1rem;
  color: var(--petrol);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.home-editorial .eyebrow {
  color: var(--petrol);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--petrol);
  letter-spacing: 0;
  overflow-wrap: break-word;
  hyphens: auto;
}

h1 {
  max-width: 49rem;
  font-family: var(--font-serif);
  font-size: var(--text-h1);
  font-weight: 700;
  line-height: var(--line-height-h1);
}

h2,
h3 {
  font-family: var(--font-sans);
  font-weight: 800;
  line-height: 1.08;
}

h2 {
  font-size: var(--text-h2);
}

h3 {
  font-size: var(--text-h3);
}

/* Nur H1 serif; ab H2 durchgängig Sans */
.subpage-copy h1 {
  max-width: min(20ch, 100%);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: auto;
  text-wrap: balance;
}

.contact-hero--atelier .subpage-copy h1 {
  max-width: min(24ch, 100%);
}

.quote {
  max-width: 45rem;
  margin: 1.6rem 0 0;
  color: var(--petrol);
  font-size: var(--text-body);
  font-weight: 600;
  line-height: 1.45;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .9rem;
  margin-top: 2rem;
}

.button,
.contact-card,
.service-card {
  border-radius: .5rem;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 3.15rem;
  height: 3.15rem;
  padding: 0 1.3rem;
  border: 1px solid transparent;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
}

.button:hover,
.contact-card:hover,
.service-card:hover {
  transform: translateY(-2px);
}

.button-primary {
  gap: 0.55rem;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 1.3rem;
  padding-right: 1.2rem;
  background: var(--orange);
  color: var(--cream);
}

.button-primary::after {
  content: "";
  flex-shrink: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  opacity: 0.92;
  transform: rotate(-45deg) translateX(0);
  transition: transform 0.28s ease, opacity 0.28s ease;
  animation: button-primary-arrow-nudge 2.4s ease-in-out infinite;
}

.button-primary:hover::after,
.button-primary:focus-visible::after {
  opacity: 1;
  transform: rotate(-45deg) translateX(4px);
  animation: none;
}

@keyframes button-primary-arrow-nudge {
  0%,
  100% {
    transform: rotate(-45deg) translateX(0);
    opacity: 0.82;
  }

  50% {
    transform: rotate(-45deg) translateX(3px);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .button-primary::after {
    animation: none;
    opacity: 1;
  }

  .button-primary:hover::after,
  .button-primary:focus-visible::after {
    transform: rotate(-45deg) translateX(3px);
  }
}

.button-secondary {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 1.3rem;
  padding-right: 1.3rem;
  background: var(--cream);
  color: var(--petrol);
  border-color: rgba(var(--petrol-rgb), .28);
}

.page-visual {
  position: relative;
  margin: 0;
  max-width: 100%;
  border-radius: .5rem;
  overflow: hidden;
  background: rgba(var(--mint-rgb), .38);
  border: 1px solid rgba(var(--petrol-rgb), .13);
  aspect-ratio: 4 / 5;
}

.hero-image { aspect-ratio: 1 / 1; }
.contact-hero .page-visual,
.subpage-image { aspect-ratio: 4 / 5; }

.page-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(.96) contrast(1.02);
}

.subpage-image img {
  object-position: center 32%;
}

.subpage-image img[src*="coaching"] {
  object-position: 38% 32%;
}

.subpage-image img[src*="beratung"] {
  object-position: center 20%;
}

.subpage-image img[src*="trainings"] {
  object-position: top center;
}

/* Kontakt-Portrait — .page-visual zurücksetzen, Rahmen wie .about-image */
.contact-hero--atelier figure.contact-hero-image {
  align-self: start;
  justify-self: end;
  width: 100%;
  max-width: min(100%, 26rem);
  margin-inline: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0.5rem;
  overflow: visible;
  aspect-ratio: 4 / 5;
  box-shadow:
    0 10px 28px rgba(var(--petrol-rgb), 0.14),
    0 2px 8px rgba(var(--petrol-rgb), 0.08);
}

.contact-hero--atelier figure.contact-hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 0.5rem;
}

.section,
.content-grid,
.closing-cta {
  max-width: 86rem;
  margin: 0 auto;
  padding: clamp(3.5rem, 6vw, 6.5rem) clamp(1.25rem, 4vw, 4rem);
}

.section {
  background: var(--soft);
}

.services-overview {
  display: grid;
  grid-template-columns: .32fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  border-top: 1px solid rgba(var(--petrol-rgb), .13);
}

.section-heading h2 {
  overflow-wrap: break-word;
}

.about-content h1,
.contact-options-panel h1 {
  margin: 0 0 0.65rem;
  max-width: min(20ch, 100%);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: auto;
  text-wrap: balance;
}

.contact-options-panel h1 {
  max-width: min(26ch, 100%);
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}

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

.service-card {
  display: flex;
  align-items: flex-end;
  min-height: 10rem;
  padding: 1.25rem;
  background: rgba(var(--mint-rgb), .42);
  border: 1px solid rgba(var(--petrol-rgb), .14);
}

.service-card span {
  max-width: 29rem;
  color: var(--petrol);
  font-size: var(--text-body);
  font-weight: 800;
  line-height: 1.45;
}

.contact-options-cards {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  width: min(100%, var(--layout-max-wide));
  max-width: var(--layout-max-wide);
  margin-inline: auto;
  margin-top: 0;
  min-height: 0;
  padding: 0 var(--layout-pad-x) var(--contact-options-gap);
  background: transparent;
}

.contact-options-cards + .about-section {
  margin-top: var(--contact-options-gap, 2.25rem);
}

.contact-options-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(1.75rem, 3.2vw, 2.75rem) clamp(1.5rem, 3.5vw, 3rem);
  overflow: hidden;
  border: 1px solid rgba(var(--petrol-rgb), .12);
  border-radius: 0 0 0.55rem 0.55rem;
  background-color: var(--cream);
  background-image:
    radial-gradient(
      ellipse 90% 75% at 4% 0%,
      rgba(var(--mint-rgb), 0.32) 0%,
      transparent 62%
    ),
    radial-gradient(
      ellipse 55% 45% at 98% 8%,
      rgba(var(--orange-rgb), 0.12) 0%,
      transparent 56%
    ),
    linear-gradient(
      168deg,
      rgba(255, 253, 248, 1) 0%,
      rgba(var(--mint-rgb), 0.16) 42%,
      rgba(255, 253, 248, 0.94) 100%
    );
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 12px 36px rgba(var(--petrol-rgb), 0.08);
}

.contact-options-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(var(--mint-rgb), 0.06) 38%,
    transparent 68%,
    rgba(var(--petrol-rgb), 0.1) 100%
  );
  pointer-events: none;
}

.contact-options-panel > * {
  position: relative;
  z-index: 1;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 1.75vw, 1.35rem);
}

.contact-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: .75rem;
  min-height: 0;
  padding: .65rem .95rem;
  background: var(--cream);
  border: 1px solid rgba(var(--petrol-rgb), .13);
  border-radius: .5rem;
  color: var(--petrol);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: left;
  hyphens: none;
  box-shadow: 0 8px 24px rgba(var(--petrol-rgb), .08);
}

.contact-options-panel .contact-card {
  border-color: rgba(var(--petrol-rgb), 0.17);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.92) inset,
    0 10px 26px rgba(var(--petrol-rgb), 0.11);
  transition:
    transform 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.contact-options-panel .contact-card:hover {
  border-color: rgba(var(--petrol-rgb), 0.26);
  background: rgba(var(--mint-rgb), 0.18);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.88) inset,
    0 14px 30px rgba(var(--petrol-rgb), 0.15);
}

.contact-options-panel .contact-card:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.contact-card:hover {
  border-color: rgba(var(--petrol-rgb), .22);
  background: var(--cream);
}

.contact-card-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(var(--petrol-rgb), 0.22);
  border-radius: 0.4rem;
  background: var(--cream);
  color: var(--petrol);
}

.contact-options-panel .contact-card:hover .contact-card-icon {
  border-color: rgba(var(--petrol-rgb), 0.34);
  background: rgba(255, 253, 248, 0.95);
}

.contact-card-icon svg {
  width: 1.3rem;
  height: 1.3rem;
  display: block;
  color: var(--petrol);
}

/* Outline-Icons (Podcast, Webinar, Telefon) */
.contact-card-icon svg[fill="none"] {
  fill: none;
  stroke: currentColor;
}

/* Gefüllte Icons (LinkedIn, WhatsApp, E-Mail — wie Footer) */
.contact-card-icon svg:not([fill="none"]) {
  fill: currentColor;
}

.contact-card-label {
  display: block;
  min-width: 0;
  flex: 1;
}

.contact-card-keyword {
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.12em;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(18rem, .42fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  width: min(100%, var(--layout-max-wide));
  max-width: var(--layout-max-wide);
  min-width: 0;
  margin-top: clamp(2rem, 5vw, 4.5rem);
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
  padding: clamp(1rem, 2vw, 1.5rem);
  border: 1px solid rgba(var(--petrol-rgb), .14);
  border-radius: .55rem;
  background: var(--cream);
  box-shadow: 0 22px 64px rgba(var(--petrol-rgb), .1);
}

.about-image {
  justify-self: center;
  align-self: center;
  min-width: 0;
  width: min(100%, 22rem);
  max-width: 22rem;
  min-height: 0;
  border-radius: .5rem;
  overflow: hidden;
  background: rgba(var(--mint-rgb), .24);
  aspect-ratio: 4 / 5;
  box-shadow:
    0 10px 28px rgba(var(--petrol-rgb), 0.14),
    0 2px 8px rgba(var(--petrol-rgb), 0.08);
}

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

.about-content {
  min-width: 0;
  padding: clamp(1rem, 4vw, 3rem) clamp(.5rem, 3vw, 2rem);
}

.about-content .text-block {
  min-width: 0;
  overflow-wrap: break-word;
}

.about-section--editorial .about-accent {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 2px;
  margin-bottom: 1.35rem;
  border-radius: 1px;
  background: linear-gradient(
    90deg,
    var(--orange) 0%,
    rgba(var(--orange-rgb), 0.52) 55%,
    rgba(var(--orange-rgb), 0.1) 100%
  );
}

.about-section--editorial .about-lead {
  margin-bottom: 1.15rem;
  color: rgba(var(--petrol-rgb), 0.78);
  font-weight: 400;
  line-height: 1.5;
}

.about-section--editorial .text-block p:not(.about-lead) {
  color: rgba(var(--petrol-rgb), 0.78);
}

.about-section--editorial .text-block strong {
  color: var(--petrol);
  font-weight: 800;
}

.about-section--editorial .about-strength-label {
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.12em;
}

.text-block {
  max-width: 57rem;
  color: var(--petrol);
  font-size: var(--text-body);
}

.text-block p {
  margin: 0 0 1.1rem;
}

.text-block ul {
  margin: 0 0 1.4rem;
  padding-left: 1.25rem;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.content-section {
  min-height: 100%;
  padding: 1.35rem;
  background: rgba(var(--mint-rgb), .34);
  border: 1px solid rgba(var(--petrol-rgb), .13);
  border-radius: .5rem;
}

.content-section h2 {
  margin-bottom: 1rem;
}

.content-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.content-section li {
  position: relative;
  padding: .8rem 0 .8rem 1.35rem;
  border-top: 1px solid rgba(var(--petrol-rgb), .13);
  color: var(--petrol);
}

.content-section li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.35rem;
  width: .45rem;
  height: .45rem;
  background: var(--orange);
  border-radius: 50%;
}

.content-grid--spur {
  display: block;
}

.content-spur-head {
  margin-bottom: clamp(1.1rem, 2.5vw, 1.6rem);
}

.content-spur-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  /* Muss mit .content-spur-panels gap übereinstimmen, sonst sind Icons/Labels nicht über den Spalten zentriert */
  gap: 1rem;
}

.content-spur-phase {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .55rem;
  padding: 0 .4rem;
  text-align: center;
}

.content-spur-phase:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 1.3rem;
  left: 0;
  width: 50%;
  height: 2px;
  background: rgba(var(--petrol-rgb), .14);
}

.content-spur-phase:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 1.3rem;
  right: 0;
  width: 50%;
  height: 2px;
  background: rgba(var(--petrol-rgb), .14);
}

.content-spur-icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid rgba(var(--petrol-rgb), .16);
  background: var(--cream);
  color: var(--petrol);
}

.content-spur-label {
  max-width: 13.5rem;
  color: var(--petrol);
  font-size: clamp(.88rem, 1.05vw, 1.02rem);
  font-weight: 800;
  line-height: 1.28;
}

.content-spur-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.content-spur-panel {
  min-height: 0;
  padding: 1.15rem 1.05rem 1.2rem;
  background: rgba(var(--mint-rgb), .22);
  border: 1px solid rgba(var(--petrol-rgb), .13);
  border-radius: .5rem;
}

.content-spur-panel--goal {
  background: rgba(var(--mint-rgb), .34);
  border-color: rgba(var(--petrol-rgb), .18);
}

.content-spur-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.content-spur-panel li {
  position: relative;
  padding: .75rem 0 .75rem 1.3rem;
  border-top: 1px solid rgba(var(--petrol-rgb), .12);
  color: var(--petrol);
  font-size: var(--text-body);
  line-height: 1.45;
}

.content-spur-panel li:first-child {
  border-top: 0;
  padding-top: 0;
}

.content-spur-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: .45rem;
  height: .45rem;
  background: var(--orange);
  border-radius: 50%;
}

.content-spur-panel li:first-child::before {
  top: .35rem;
}

.content-spur-list:not(.is-expanded):not(.content-spur-list--full) > li:nth-child(n+4) {
  display: none;
}

.content-spur-list--full > li {
  display: block;
}

.content-spur-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: .85rem;
  padding: .55rem 1.05rem;
  border: 1px solid rgba(var(--petrol-rgb), .22);
  border-radius: .45rem;
  background: transparent;
  color: var(--petrol);
  font-family: inherit;
  font-size: .92rem;
  font-weight: 400;
  line-height: 1.2;
  cursor: pointer;
  transition: border-color .18s ease;
}

.content-spur-more:hover {
  border-color: rgba(var(--petrol-rgb), .3);
}

.content-spur-more:focus-visible {
  outline: 2px solid rgba(var(--petrol-rgb), .45);
  outline-offset: 2px;
}

.closing-cta {
  padding-top: 0;
  background: var(--petrol);
}

.closing-cta .cta-row {
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.closing-cta .cta-row .button {
  flex-shrink: 0;
}

.contact-copy {
  max-width: 44rem;
  margin-top: 1.5rem;
  font-size: var(--text-body);
  font-weight: 600;
}

.contact-copy p { margin: 0 0 1rem; }

.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--petrol);
  color: var(--on-petrol-soft);
  padding: clamp(3rem, 5vw, 4rem) clamp(1.25rem, 4vw, 4rem);
  font-size: .9rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(2rem, 6vw, 5rem);
  max-width: 80rem;
  margin: 0 auto;
}

.footer-left > a {
  display: inline-block;
  text-decoration: none;
}

.footer-logo {
  width: 12rem;
  height: auto;
  display: block;
  margin-bottom: 1.2rem;
}

.footer-left p {
  max-width: 20rem;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.45;
}

.footer-nav,
.footer-contact,
.footer-socials {
  display: flex;
}

.footer-nav {
  flex: 1;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.footer-nav-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 2.2vw, 1.75rem);
  text-align: center;
}

.footer-nav a {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.25;
  color: var(--on-petrol-soft);
}

.footer-nav a,
.footer-contact a,
.footer-socials a {
  text-decoration: none;
  transition: color 0.22s ease;
  line-height: 1.4;
}

.footer-nav a:hover,
.footer-contact a:hover,
.footer-socials a:hover {
  color: var(--cream);
}

.footer-nav a {
  line-height: 1.25;
}

.footer-contact {
  flex-direction: column;
  align-items: flex-end;
  gap: .35rem;
  text-align: right;
}

.footer-contact-name {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--text-footer-nav);
  font-weight: 800;
  line-height: 1.3;
}

.footer-socials {
  gap: 1.5rem;
  justify-content: flex-end;
  margin-top: 1rem;
  font-weight: 800;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-socials span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.footer-socials svg {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  flex: 0 0 auto;
  fill: currentColor;
}

body.legal-page {
  background: var(--soft);
  color: var(--petrol);
}

body.legal-page .site-header {
  background: var(--petrol);
}

.legal-hero {
  max-width: 92rem;
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 7rem) clamp(1.25rem, 4vw, 4rem) 2rem;
}

.legal-content {
  max-width: 72rem;
  margin: 0 auto clamp(4rem, 6vw, 7rem);
  padding: clamp(1.5rem, 4vw, 3rem);
  background: rgba(var(--mint-rgb), .34);
  border: 1px solid rgba(var(--petrol-rgb), .14);
  border-radius: .5rem;
}

.legal-block + .legal-block {
  margin-top: .5rem;
  padding-top: .25rem;
  border-top: 1px solid rgba(var(--petrol-rgb), .1);
}

.legal-block:first-child {
  border-top: 0;
  padding-top: 0;
  margin-top: 0;
}

.legal-content h2 {
  margin: 2rem 0 .8rem;
}

.legal-content h3 {
  margin: 1.4rem 0 .6rem;
}

.legal-content h4 {
  margin: 1rem 0 .4rem;
  color: var(--petrol);
}

.legal-content p,
.legal-content address,
.legal-content li {
  margin: 0 0 1rem;
  color: var(--petrol);
  font-size: var(--text-body);
  line-height: 1.65;
}

.legal-content address {
  font-style: normal;
}

.legal-content ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.legal-content a {
  color: var(--petrol);
  font-weight: inherit;
}

.legal-content a:hover {
  color: var(--petrol);
}

.legal-title {
  max-width: none;
  width: max-content;
  color: var(--petrol);
  font-family: var(--font-serif);
  font-size: var(--text-h1);
  font-weight: 700;
  line-height: var(--line-height-h1);
  white-space: nowrap;
  hyphens: none;
  word-break: keep-all;
  overflow-wrap: normal;
}

.legal-content .text-primary {
  color: var(--petrol);
  font-weight: inherit;
}

.legal-content .border-b,
.legal-content svg,
.legal-content script {
  display: none;
}

@media (max-width: 1180px) {
  .about-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-image {
    grid-column: auto;
    max-width: min(100%, 20rem);
    justify-self: center;
  }

  .about-content {
    grid-column: auto;
  }
}

@media (max-width: 1080px) {
  .subpage-hero {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: auto;
    gap: clamp(1.5rem, 4vw, 2.5rem);
  }

  .subpage-hero-inner {
    grid-template-columns: 1fr;
    align-items: start;
    gap: clamp(1.5rem, 4vw, 2.5rem);
  }

  .service-chapter > .subpage-hero-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: auto;
  }

  .service-chapter .subpage-copy {
    min-height: auto;
    max-width: 100%;
  }

  .home-editorial-main {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    align-items: start;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    min-height: auto;
  }

  .home-editorial-main > .hero-visual {
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
  }

  .home-editorial .hero-copy {
    min-height: auto;
    max-width: 100%;
  }

  .service-chapter .subpage-hero-lead {
    flex: 0 1 auto;
  }

  .service-chapter .subpage-hero-lead h1 {
    min-height: 0;
  }

  .service-chapter .subpage-hero-lead .cta-row {
    margin-top: 1rem;
  }

  .contact-options-cards {
    margin-top: 0;
    padding-top: 0;
  }

  .contact-hero.contact-hero--atelier {
    padding-bottom: 0;
  }

  .service-chapter .subpage-hero-inner > .subpage-image {
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
  }

  .contact-hero--atelier .subpage-hero-inner {
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 4vw, 2.5rem);
  }

  .contact-hero--atelier .subpage-hero-inner > .subpage-image,
  .contact-hero--atelier .contact-hero-image {
    grid-column: 1;
    grid-row: 2;
    max-width: min(22rem, 100%);
    justify-self: center;
    align-self: center;
  }

  .subpage-hero .subpage-copy {
    min-height: auto;
  }

  .subpage-hero .subpage-image {
    max-width: min(20rem, 100%);
    justify-self: end;
  }

  .service-chapter .subpage-image {
    max-width: min(22rem, 100%);
    justify-self: center;
  }

  .service-chapter .subpage-copy h1,
  .contact-hero--atelier .subpage-copy h1 {
    max-width: 100%;
    overflow-wrap: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
    text-wrap: wrap;
  }

  .about-content h1,
  .contact-options-panel h1 {
    max-width: min(22ch, 100%);
  }
}

@media (max-width: 1040px) {
  .hero-visual {
    width: 100%;
    max-width: 22rem;
    min-height: min(20rem, 48vw);
    justify-self: end;
  }

  .hero-visual-backdrop {
    top: 12%;
    bottom: var(--hero-visual-inset);
    width: min(100%, 18rem);
    right: 0;
  }

  .hero-person {
    top: auto;
    bottom: var(--hero-visual-inset);
    right: 0;
    width: 100%;
    max-width: 21rem;
    max-height: calc(100% - var(--hero-visual-inset));
    object-position: right bottom;
  }
}

@media (max-width: 1040px) {
  :root {
    --site-header-block: 5rem;
  }

  .site-header {
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem 0;
    padding-top: 0.6rem;
    padding-bottom: 0.5rem;
    padding-left: max(var(--layout-pad-x), var(--home-hero-shell-inset-x));
  }

  body:has(.home-editorial) .site-header {
    align-items: center;
    padding-bottom: 0.5rem;
  }

  body:has(.home-editorial) .site-header .brand {
    align-self: center;
  }

  body:has(.home-editorial) .site-header .brand img {
    padding-bottom: 0;
  }

  .brand img {
    width: 7rem;
  }

  .site-nav {
    position: static;
    flex: 1 1 100%;
    justify-content: space-between;
    gap: 0;
    transform: none;
    pointer-events: auto;
    flex-wrap: nowrap;
    border-top: 1px solid rgba(255, 253, 248, 0.12);
    padding-top: 0.4rem;
    padding-bottom: 0.1rem;
  }

  .site-nav a {
    font-size: clamp(0.72rem, 2.6vw, 0.95rem);
    padding: 0.3rem 0.05rem;
    white-space: nowrap;
  }

  .footer-nav a {
    font-size: clamp(0.72rem, 2.6vw, 0.95rem);
  }
}

@media (max-width: 860px) {
  .site-nav a {
    font-size: clamp(0.85rem, 3.4vw, 1.05rem);
  }

  .footer-nav a {
    font-size: clamp(0.85rem, 3.4vw, 1.05rem);
  }

  .hero,
  .subpage-hero,
  .home-editorial,
  .home-editorial-main,
  .services-overview,
  .about-section,
  .content-grid:not(.content-grid--spur) {
    grid-template-columns: 1fr;
  }

  .content-spur-track,
  .content-spur-panels,
  .content-grid--atelier .content-spur-panels {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .content-grid--atelier .content-spur-cell--problem,
  .content-grid--atelier .content-spur-cell--goal,
  .content-grid--atelier .content-spur-cell--offer {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    max-width: 100%;
  }

  .content-spur-phase:not(:first-child)::before,
  .content-spur-phase:not(:last-child)::after {
    display: none;
  }

  .cta-row {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: stretch;
    gap: clamp(0.5rem, 2vw, 0.9rem);
  }

  .cta-row .button,
  .closing-cta .cta-row .button {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    padding-inline: clamp(0.55rem, 2.8vw, 1.1rem);
    font-size: clamp(0.82rem, 3.2vw, 1rem);
  }

  .home-editorial {
    height: auto;
    max-height: none;
    margin: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .home-editorial-main {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
    margin: 0.75rem var(--layout-pad-x) 0.75rem;
    padding: 1.25rem 1.25rem;
    min-height: auto;
    align-items: start;
  }

  .home-editorial-main.home-editorial-main--atelier {
    padding-block: 1.25rem;
    padding-inline: 1.25rem;
  }

  .home-editorial-main > .hero-visual {
    display: none;
  }

  .home-editorial .hero-copy,
  .service-chapter .subpage-copy,
  .contact-hero--atelier .subpage-copy {
    padding-inline: var(--content-area-pad-inline-mobile);
  }

  .home-editorial .hero-copy {
    width: 100%;
    max-width: 100%;
    min-height: auto;
  }

  .service-chapter > .subpage-hero-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: auto;
  }

  .service-chapter .subpage-copy,
  .service-chapter .subpage-hero-lead {
    width: 100%;
    max-width: 100%;
  }

  .service-chapter .subpage-copy h1,
  .contact-hero--atelier .subpage-copy h1 {
    max-width: 100%;
    overflow-wrap: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
    text-wrap: wrap;
  }

  .service-chapter > .content-grid.content-grid--atelier {
    padding-inline: var(--content-area-pad-inline-mobile);
  }

  main:has(.service-chapter) {
    --service-page-pad-x: var(--content-area-pad-inline-mobile);
  }

  main:has(.contact-hero--atelier) {
    --contact-page-pad-x: var(--content-area-pad-inline-mobile);
  }

  .contact-options-cards {
    padding-inline: var(--content-area-pad-inline-mobile);
  }

  .hero,
  .subpage-hero {
    min-height: auto;
    padding-top: 3.5rem;
  }

  .subpage-hero .subpage-image {
    max-width: min(18rem, 100%);
    justify-self: start;
  }

  .service-chapter .subpage-image {
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
  }

  .service-chapter .subpage-hero-inner > .subpage-image {
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
    padding: 0;
    padding-inline: var(--content-area-pad-inline-mobile);
    border: 0;
    background: none;
    box-shadow: none;
    box-sizing: border-box;
  }

  .contact-hero--atelier .subpage-hero-inner > .subpage-image,
  .contact-hero--atelier .contact-hero-image {
    width: 100%;
    max-width: 100%;
    padding-inline: var(--content-area-pad-inline-mobile);
    justify-self: stretch;
    box-sizing: border-box;
  }

  .hero-image,
  .subpage-image {
    aspect-ratio: 4 / 3;
  }

  /* 4:3 crop: keep head visible, trim from bottom (service pages only) */
  .service-chapter .subpage-image img {
    object-position: top center;
  }

  .service-chapter .subpage-image img[src*="coaching"] {
    object-position: 38% top;
  }

  .service-chapter .subpage-image img[src*="beratung"],
  .service-chapter .subpage-image img[src*="interim"] {
    object-position: 50% 0;
  }

  .service-chapter .subpage-image img[src*="trainings"] {
    object-position: top center;
  }

  .contact-hero--atelier .subpage-image img,
  .contact-hero--atelier .contact-hero-image img {
    object-position: center 18%;
  }

  .content-grid {
    padding-top: 1.5rem;
  }

  .service-grid,
  .contact-card-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 7.5rem;
  }

  .about-section {
    margin-top: 0;
    border-radius: 0;
    border-right: 0;
    border-left: 0;
    grid-template-columns: 1fr;
  }

  main:has(.home-editorial) > .about-section,
  main:has(.contact-hero--atelier) > .about-section {
    margin-left: var(--layout-pad-x);
    margin-right: var(--layout-pad-x);
    border-left: 1px solid rgba(var(--petrol-rgb), 0.12);
    border-right: 1px solid rgba(var(--petrol-rgb), 0.12);
    border-radius: 0.5rem;
  }

  .about-image {
    grid-column: auto;
    max-width: min(100%, 18rem);
    justify-self: center;
  }

  .about-content {
    grid-column: auto;
    padding-inline: 20px;
  }

  .site-footer {
    padding-block: 2.5rem 2.75rem;
    padding-inline: 20px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .footer-left {
    padding-bottom: 1.5rem;
    border-bottom: var(--footer-divider);
  }

  .footer-logo {
    width: min(10rem, 72vw);
    margin-bottom: 0.85rem;
  }

  .footer-left p {
    max-width: none;
  }

  .footer-nav {
    width: 100%;
    flex: none;
    padding-block: 1.35rem;
    border-bottom: var(--footer-divider);
    justify-content: center;
  }

  .footer-contact {
    align-items: flex-start;
    width: 100%;
    padding-top: 1.35rem;
    text-align: left;
  }

  .footer-contact a {
    overflow-wrap: anywhere;
    line-height: 1.45;
  }

  .footer-socials {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1.1rem 1.35rem;
    width: 100%;
    margin-top: 1.15rem;
  }
}

@media (max-width: 860px) {
  h1,
  .legal-title {
    font-size: var(--text-h1-mobile);
  }

  .legal-title {
    width: auto;
    max-width: 100%;
    white-space: normal;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: var(--text-h2-mobile);
  }

  h3 {
    font-size: var(--text-h3-mobile);
  }
}

@media (max-width: 520px) {
  :root {
    --layout-pad-x: 0.85rem;
  }

  .home-editorial h1 {
    white-space: normal;
    max-width: 100%;
  }

  .hero-person {
    max-width: 17rem;
  }

  .case-list div {
    grid-template-columns: 2.3rem 1fr;
  }

  .section,
  .content-grid,
  .closing-cta {
    padding-left: var(--content-area-pad-inline-mobile);
    padding-right: var(--content-area-pad-inline-mobile);
  }

  main:has(.service-chapter) > .closing-cta {
    padding-left: 0;
    padding-right: 0;
  }

  main:has(.service-chapter) > .closing-cta .cta-row {
    padding-inline: var(--service-page-pad-x);
  }
}

