﻿:root {
  --ink: #101F78;
  --muted: #1f2d70;
  --paper: #FFFAF0;
  --cream: #FFFAF0;
  --lilac: #101F78;
  --lilac-deep: #101F78;
  --peach: #101F78;
  --orange: #101F78;
  --orange-soft: #1f2d70;
  --rose: #101F78;
  --sage: #101F78;
  --line: rgba(16, 31, 120, 0.14);
  --shadow: 0 24px 70px rgba(16, 31, 120, 0.14);
  --about-offset: clamp(8px, 2.4vw, 42px);
}

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

@font-face {
  font-family: "Instrument Serif";
  src: url("assets/fonts/instrument-serif-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Serif";
  src: url("assets/fonts/instrument-serif-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#systemische-beratung,
#workshops-seminare {
  scroll-margin-top: 82px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
}

main > section {
  animation: contentEnter 620ms ease both;
}

main > section:nth-child(2) {
  animation-delay: 120ms;
}

main > section:nth-child(3) {
  animation-delay: 220ms;
}

main > section:nth-child(4) {
  animation-delay: 320ms;
}

.offer-card,
.thought-grid article,
.topic-list span {
  animation: contentEnter 560ms ease both;
}

.offer-card:nth-child(2),
.thought-grid article:nth-child(2),
.topic-list span:nth-child(2) {
  animation-delay: 100ms;
}

.thought-grid article:nth-child(3),
.topic-list span:nth-child(3) {
  animation-delay: 160ms;
}

.thought-grid article:nth-child(4),
.topic-list span:nth-child(4) {
  animation-delay: 220ms;
}

.thought-grid article:nth-child(5),
.topic-list span:nth-child(5) {
  animation-delay: 280ms;
}

.thought-grid article:nth-child(6),
.topic-list span:nth-child(6) {
  animation-delay: 340ms;
}

@keyframes contentEnter {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes offerTextReveal {
  from {
    opacity: 0;
    filter: blur(6px);
    transform: scale(0.985);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  main > section,
  .offer-card,
  .thought-grid article,
  .topic-list span,
  .handwritten-quote {
    animation: none;
  }
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 12px clamp(14px, 4vw, 54px);
  background: var(--paper);
  border-bottom: 1px solid rgba(16, 31, 120, 0.1);
}

.brand {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 26px;
  color: var(--lilac-deep);
}

.nav-links {
  display: flex;
  gap: clamp(12px, 2.6vw, 34px);
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 40;
  display: grid;
  min-width: 240px;
  padding: 10px;
  background: rgba(255, 250, 240, 0.97);
  border: 1px solid rgba(16, 31, 120, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(23, 35, 63, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.dropdown-menu::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 14px;
  content: "";
}

.dropdown-menu a {
  padding: 11px 12px;
  border-radius: 6px;
  color: var(--ink);
  font-size: 13px;
  text-align: left;
}

.dropdown-menu a:hover {
  background: #97B7E6;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-split,
.nav-home {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  width: 100%;
  gap: clamp(18px, 3vw, 44px);
}

.nav-side {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
}

.nav-side-left {
  justify-content: flex-end;
}

.nav-side-right {
  width: 100%;
  justify-content: flex-start;
}

.nav-side-right .nav-cta {
  margin-left: auto;
}

.home-page .site-header {
  background: var(--paper);
  border-bottom-color: rgba(16, 31, 120, 0.1);
}

.nav-name {
  color: #101F78;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(18px, 2.1vw, 28px);
  font-weight: 500;
  line-height: 1;
  pointer-events: none;
}

.mobile-nav-toggle {
  display: none;
}

.nav-links a,
.site-footer a {
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active,
.site-footer a:hover {
  color: #0f2348;
}

.nav-links a.is-active {
  text-decoration: underline;
  text-underline-offset: 6px;
}

.nav-links .nav-cta {
  padding: 10px 15px;
  border: 1px solid rgba(16, 31, 120, 0.18);
  border-radius: 999px;
  background: var(--ink);
  color: #FFFAF0;
  font-weight: 800;
  text-decoration: none;
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta.is-active {
  background: #DCEEFF;
  color: var(--ink);
  text-decoration: none;
}

.header-action {
  justify-self: end;
  padding: 10px 16px;
  border: 1px solid rgba(87, 67, 115, 0.3);
  border-radius: 999px;
  color: var(--lilac-deep);
  font-size: 13px;
  font-weight: 800;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  min-height: calc(100vh - 74px);
  padding: clamp(44px, 7vw, 86px) clamp(18px, 5vw, 72px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 24%, rgba(16, 31, 120, 0.15), transparent 31%),
    linear-gradient(145deg, #FFFAF0 0%, #FFFAF0 48%, rgba(16, 31, 120, 0.11) 100%);
}

.autumn-hero {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  height: calc(100svh - 62px);
  min-height: 520px;
  padding: 0;
  background: var(--ink);
}

.autumn-hero::after {
  display: none;
}

.home-name-wrap {
  position: relative;
  z-index: 3;
  display: grid;
  align-content: center;
  place-content: center;
  justify-items: center;
  width: auto;
  min-height: 100%;
  padding: clamp(46px, 6vw, 92px);
  background: var(--ink);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}

.home-visual-panel {
  position: relative;
  inset: auto;
  min-height: 100%;
  overflow: hidden;
  background: var(--ink);
}

.home-visual-panel::before {
  display: none;
}

.home-visual-panel img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 82% center;
  filter: none;
}

.home-hero-title {
  max-width: 620px;
  margin: clamp(24px, 4vh, 48px) 0 clamp(22px, 3vh, 34px);
  color: var(--cream);
  font-size: clamp(54px, 6.4vw, 104px);
  line-height: 0.92;
}

.autumn-hero .eyebrow {
  position: relative;
  z-index: 4;
  margin-bottom: clamp(10px, 1.6vw, 18px);
  color: var(--orange);
}

.home-credential {
  position: relative;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: clamp(10px, 1.5vw, 18px);
  margin: 0 0 clamp(18px, 2.8vh, 34px);
  color: #26327A;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(10px, 0.95vw, 13px);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.home-credential::before,
.home-credential::after {
  width: clamp(22px, 5vw, 72px);
  height: 1px;
  content: "";
  background: currentColor;
  opacity: 0.45;
}

.home-hero-credential {
  justify-self: center;
  text-align: center;
  margin: 0 0 clamp(42px, 7vh, 88px);
  color: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(11px, 1vw, 14px);
  font-weight: 500;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.stacked-name {
  position: relative;
  z-index: 1;
  display: grid;
  row-gap: clamp(18px, 3vh, 38px);
  max-width: none;
  margin: 0;
  color: #101F78;
  font-size: clamp(68px, 10.2vw, 138px);
  line-height: 0.9;
  text-align: center;
  text-shadow: 0 8px 32px rgba(87, 67, 115, 0.14);
}

.stacked-name span {
  display: block;
}

.quote-marquee {
  position: relative;
  z-index: 6;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.handwritten-quote {
  display: flex;
  width: max-content;
  margin: 0;
  color: #101F78;
  font-family: "Segoe Print", "Bradley Hand ITC", "Comic Sans MS", cursive;
  font-size: clamp(20px, 2.8vw, 38px);
  font-weight: 500;
  line-height: 1.06;
  text-transform: lowercase;
  animation: quoteMarquee 13s linear infinite;
}

.handwritten-quote span {
  display: inline-block;
  min-width: max-content;
  padding-right: clamp(52px, 8vw, 110px);
  white-space: nowrap;
}

.quote-strip {
  padding: clamp(28px, 4vw, 48px) clamp(18px, 5vw, 72px);
  background: #FFFAF0;
  border-top: 1px solid rgba(16, 31, 120, 0.1);
  text-align: center;
}

.static-handwritten-quote {
  display: grid;
  gap: 4px;
  margin: 0 auto;
  color: #101F78;
  font-family: "Segoe Print", "Bradley Hand ITC", "Comic Sans MS", cursive;
  font-size: clamp(16px, 2.1vw, 30px);
  font-weight: 500;
  line-height: 1.1;
  text-transform: lowercase;
}

.static-handwritten-quote span {
  display: block;
}

@keyframes quoteMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}


.home-tagline {
  position: relative;
  z-index: 4;
  display: flex;
  max-width: min(860px, 88vw);
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.18em 0.32em;
  margin: clamp(24px, 4vh, 46px) auto 0;
  color: #101F78;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(20px, 2.45vw, 36px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.05;
}

.home-tagline span {
  display: inline-block;
  transform-origin: center;
}

.home-tagline span:nth-child(1) {
  transform: translateY(8px) rotate(5deg);
}

.home-tagline span:nth-child(2) {
  transform: translateY(1px) rotate(-2deg);
}

.home-tagline span:nth-child(3) {
  transform: translateY(-8px) rotate(4deg);
}

.home-tagline span:nth-child(4) {
  transform: translateY(-2px) rotate(-3deg);
}

.home-tagline span:nth-child(5) {
  transform: translateY(7px) rotate(3deg);
}

.home-tagline-wave {
  position: relative;
  z-index: 4;
  display: block;
  width: min(600px, 82vw);
  height: clamp(84px, 12vw, 128px);
  margin: 0 auto -4px;
  overflow: visible;
}

.home-tagline-wave path {
  fill: none;
  stroke: none;
}

.home-tagline-wave text {
  fill: #101F78;
  font-family: "Segoe Print", "Bradley Hand ITC", "Comic Sans MS", cursive;
  font-size: 31px;
  font-style: italic;
}

.wave-support {
  position: relative;
  z-index: 6;
  max-width: 660px;
  margin: 0;
  color: rgba(255, 250, 240, 0.86);
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 600;
  line-height: 1.5;
}

.home-intro {
  position: relative;
  z-index: 9;
  display: grid;
  justify-items: center;
  gap: clamp(34px, 5vh, 64px);
  width: min(820px, 100%);
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.home-intro p {
  margin: 0;
  color: var(--paper);
  font-size: clamp(15px, 1.35vw, 19px);
  font-weight: 600;
  line-height: 1.45;
}

.home-intro .home-soft-note {
  max-width: 620px;
  color: var(--paper);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(24px, 2.6vw, 38px);
  font-weight: 400;
  line-height: 1.08;
}

.home-copy-panel .button-primary {
  justify-self: center;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  min-height: 54px;
  padding: 16px 26px;
  font-size: clamp(17px, 1.25vw, 21px);
  letter-spacing: 0.02em;
  box-shadow: none;
}

.home-minimal-line {
  margin-right: auto;
  margin-left: auto;
  max-width: 980px;
  color: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(68px, 7vw, 136px);
  font-weight: 800;
  letter-spacing: 0.015em;
  line-height: 1.02;
  text-align: center;
}

.mental-health-section {
  padding: clamp(74px, 10vw, 136px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 88% 18%, rgba(16, 31, 120, 0.12), transparent 28%),
    linear-gradient(145deg, #FFFAF0 0%, #FFFAF0 100%);
  color: var(--ink);
}

.mental-health-copy {
  max-width: 940px;
}

.mental-health-copy h2 {
  max-width: 780px;
  margin-bottom: clamp(24px, 4vw, 42px);
  color: var(--ink);
}

.mental-health-copy p:not(.section-kicker) {
  max-width: 760px;
  color: #34415e;
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.65;
}

.autumn-hero .hero-lead {
  position: relative;
  z-index: 4;
  max-width: 520px;
  margin-top: clamp(22px, 4vw, 42px);
  color: var(--orange);
}

.autumn-hero .home-portrait {
  position: absolute;
  inset: 0;
  z-index: 8;
  min-height: 0;
  pointer-events: none;
}

.autumn-hero .home-portrait img {
  position: absolute;
  right: auto;
  top: 38%;
  bottom: auto;
  left: 50%;
  width: min(430px, 33vw);
  max-height: 62%;
  object-fit: contain;
  clip-path: none;
  transform: translate(-50%, -8%);
  filter: drop-shadow(0 26px 34px rgba(52, 34, 52, 0.24));
}

.autumn-hero .side-note {
  display: none;
}

.autumn-hero .side-note-left {
  left: clamp(20px, 10vw, 150px);
  bottom: 30%;
}

.autumn-hero .side-note-right {
  right: clamp(20px, 10vw, 150px);
  bottom: 24%;
}

.hero::after {
  position: absolute;
  right: -8vw;
  bottom: -22vw;
  width: 52vw;
  height: 52vw;
  min-width: 520px;
  min-height: 520px;
  content: "";
  border: 1px solid rgba(255, 250, 240, 0.34);
  border-radius: 50%;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 760px;
  padding-bottom: clamp(38px, 8vw, 92px);
}

.eyebrow,
.section-kicker,
.offer-label {
  margin: 0 0 16px;
  color: var(--lilac-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--lilac-deep);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(76px, 12vw, 176px);
  font-weight: 400;
  line-height: 0.82;
}

h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 400;
  line-height: 0.94;
}

h3 {
  font-size: 24px;
  line-height: 1.1;
}

.hero-lead {
  max-width: 560px;
  color: #463941;
  font-size: clamp(18px, 2vw, 22px);
}

.hero-lead.short {
  max-width: 470px;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  line-height: 1.18;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 900;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--ink);
  color: #FFFAF0;
  box-shadow: 0 14px 26px rgba(16, 31, 120, 0.18);
}

.button-secondary {
  background: rgba(255, 250, 240, 0.62);
  border: 1px solid rgba(36, 27, 33, 0.14);
  color: var(--ink);
}

.hero-portrait {
  position: relative;
  z-index: 2;
  align-self: end;
  min-height: 580px;
}

.hero-portrait img {
  position: absolute;
  right: 4%;
  bottom: -5px;
  width: min(620px, 67vw);
  max-height: 88vh;
  object-fit: contain;
  filter: drop-shadow(0 28px 36px rgba(36, 27, 33, 0.22));
}

.side-note {
  position: absolute;
  z-index: 3;
  max-width: 210px;
  margin: 0;
  color: #FFFAF0;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.15;
}

.side-note-left {
  left: 0;
  bottom: 30%;
}

.side-note-right {
  right: 0;
  bottom: 19%;
}

.section,
.band {
  padding: clamp(70px, 9vw, 124px) clamp(18px, 5vw, 72px);
}

.band {
  background: var(--cream);
}

.home-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}

.home-links a {
  display: grid;
  min-height: 190px;
  align-content: end;
  gap: 8px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--cream);
  transition:
    background 180ms ease,
    color 180ms ease;
}

.home-links a:hover {
  background: #DCEEFF;
  color: var(--ink);
}

.home-links span,
.home-links p {
  color: var(--muted);
}

.home-links a:hover span,
.home-links a:hover p {
  color: var(--ink);
}

.home-links strong {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 400;
  line-height: 0.95;
}

.home-links p {
  max-width: 260px;
  margin: 0;
}

.page-hero {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 86% 14%, rgba(16, 31, 120, 0.14), transparent 26%),
    linear-gradient(145deg, #FFFAF0, rgba(16, 31, 120, 0.11));
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.48fr);
  gap: clamp(30px, 6vw, 88px);
  align-items: end;
  background:
    radial-gradient(circle at 22% 18%, rgba(16, 31, 120, 0.16), transparent 30%),
    linear-gradient(135deg, #FFFAF0 0%, #FFFAF0 48%, rgba(16, 31, 120, 0.14) 100%);
  overflow: hidden;
}

.about-hero-copy {
  max-width: 780px;
  padding-left: var(--about-offset);
  transform: translateY(clamp(-42px, -4vw, -18px));
}

.about-eyebrow {
  margin-bottom: 22px;
  color: #5c8fc9;
  font-size: clamp(10px, 0.85vw, 13px);
  font-weight: 500;
  letter-spacing: 0.14em;
}

.about-hero-copy h1 {
  max-width: 620px;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.05;
}

.about-credential {
  max-width: none;
  margin: 0 0 42px;
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.6;
  white-space: nowrap;
  text-transform: none;
}

.about-hero-copy > p:not(.eyebrow):not(.about-credential) {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 500;
  line-height: 1.65;
}

.about-credential::before,
.about-credential::after {
  display: none;
}

.about-portrait {
  position: relative;
  align-self: end;
  --portrait-frame-width: min(390px, 92%);
  --portrait-image-width: min(350px, 84%);
  --portrait-image-left: 0;
  --portrait-bottom: -36px;
  min-height: 360px;
  margin: 0;
}

.about-portrait::before {
  position: absolute;
  right: auto;
  left: 0;
  bottom: var(--portrait-bottom);
  width: var(--portrait-frame-width);
  height: min(440px, calc(100% + 48px));
  content: "";
  background:
    linear-gradient(rgba(157, 195, 237, 0.9), rgba(157, 195, 237, 0.9)) top / 100% 2px no-repeat,
    linear-gradient(rgba(157, 195, 237, 0.9), rgba(157, 195, 237, 0.9)) left top / 2px 34% no-repeat,
    linear-gradient(rgba(157, 195, 237, 0.9), rgba(157, 195, 237, 0.9)) right top / 2px 48% no-repeat,
    linear-gradient(rgba(157, 195, 237, 0.18), rgba(157, 195, 237, 0.18));
  border: 0;
  border-radius: 0;
  transform: none;
  z-index: 0;
}

.about-portrait img {
  position: absolute;
  right: auto;
  left: var(--portrait-image-left);
  bottom: var(--portrait-bottom);
  width: var(--portrait-image-width);
  max-height: 408px;
  object-fit: contain;
  transform: none;
  z-index: 1;
  filter: drop-shadow(0 22px 34px rgba(52, 34, 52, 0.18));
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(66px, 10vw, 132px);
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 25px);
}

.page-hero.about-hero .about-hero-copy h1 {
  max-width: 620px;
  margin-bottom: clamp(18px, 3vw, 34px);
  color: var(--ink);
  font-size: clamp(46px, 5.8vw, 86px);
  line-height: 1.08;
}

.page-hero.about-hero .about-credential {
  max-width: none;
  margin-top: 0;
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(16px, 1.35vw, 21px);
  white-space: nowrap;
}

.page-hero.about-hero .about-hero-copy > p:not(.eyebrow):not(.about-credential) {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.65;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
}

.intro-grid p,
.about-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 19px;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.45fr minmax(0, 0.95fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 42px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.offers-overview {
  min-height: 0;
  display: grid;
  align-items: center;
  gap: clamp(28px, 4vw, 48px);
  background: var(--paper);
}

.offers-overview-heading {
  max-width: 980px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.offers-overview-heading h1 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(46px, 5.8vw, 86px);
  font-weight: 700;
  line-height: 1.08;
}

.two-offers {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
}

.offer-card {
  display: flex;
  min-height: 500px;
  flex-direction: column;
  padding: clamp(24px, 3vw, 34px);
  background: #FFFAF0;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(16, 31, 120, 0.08);
}

a.offer-card {
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.offer-card-summary {
  cursor: pointer;
  transition:
    min-height 220ms ease,
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

a.offer-card:hover,
.offer-card-summary:hover {
  transform: translateY(-6px);
  background: #DCEEFF;
  border-color: rgba(16, 31, 120, 0.28);
  color: var(--ink);
  box-shadow: 0 24px 60px rgba(16, 31, 120, 0.16);
}

.offer-card-summary[open] {
  transform: translateY(-6px);
  background: #FFFAF0;
  border-color: rgba(16, 31, 120, 0.28);
  color: var(--ink);
  box-shadow: 0 24px 60px rgba(16, 31, 120, 0.16);
}

a.offer-card:hover p,
a.offer-card:hover .offer-title-main,
a.offer-card:hover .offer-link,
.offer-card-summary:hover p,
.offer-card-summary:hover .offer-title-main,
.offer-card-summary:hover .offer-link,
.offer-card-summary[open] p,
.offer-card-summary[open] .offer-title-main,
.offer-card-summary[open] .offer-link {
  color: var(--ink);
}

.offer-card-large {
  min-height: 620px;
}

.offer-card.highlighted {
  background: var(--lilac-deep);
  color: #FFFAF0;
  transform: translateY(-18px);
  box-shadow: var(--shadow);
}

.offer-card.highlighted .offer-label,
.offer-card.highlighted p,
.offer-card.highlighted li {
  color: rgba(255, 250, 240, 0.84);
}

.offer-card h2 {
  margin-bottom: 16px;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(25px, 2.6vw, 34px);
  font-weight: 800;
  line-height: 1.02;
}

.offer-title-main {
  color: var(--ink);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 900;
  line-height: 0.95;
}


.offer-card p {
  color: var(--muted);
}

.offer-card ul {
  display: grid;
  gap: 12px;
  margin: 20px 0 30px;
  padding: 0;
  list-style: none;
}

.offer-card li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.offer-card li::before {
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--rose);
  border-radius: 50%;
}

.offer-card a {
  margin-top: auto;
  color: inherit;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.offer-link {
  margin-top: auto;
  color: inherit;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.offer-card summary {
  display: grid;
  gap: 10px;
  list-style: none;
}

.two-offers .offer-card-summary:not([open]) summary {
  height: 100%;
  grid-template-rows: auto auto auto 1fr auto;
}

.offer-card summary::-webkit-details-marker {
  display: none;
}

.offer-card summary::after {
  justify-self: center;
  align-self: end;
  grid-row: -1;
  margin-top: auto;
  content: "Mehr";
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.two-offers .offer-card-summary:not([open]):hover summary::after {
  content: ">";
  font-size: 20px;
  font-weight: 400;
  text-decoration: none;
  transform: rotate(90deg);
}

.offer-card[open] summary::after {
  content: "";
}

.offer-card summary > span:not(.offer-title-main) {
  color: var(--muted);
}

.offer-card-more {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.offer-info-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.offer-info-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  background: rgba(16, 31, 120, 0.08);
  border: 1px solid rgba(16, 31, 120, 0.12);
  border-radius: 999px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.offer-note {
  max-width: 820px;
  padding-top: 14px;
  border-top: 1px solid rgba(16, 31, 120, 0.14);
  color: rgba(16, 31, 120, 0.72);
  font-size: clamp(12px, 0.9vw, 14px);
  font-style: italic;
}

.offer-card-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-top: 2px;
}

.offer-card[open] .offer-card-more {
  animation: offerTextReveal 520ms ease both;
}

.offer-consultation-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0;
  margin-top: 4px;
  padding: 12px 18px;
  background: #FFFAF0;
  border: 1px solid rgba(16, 31, 120, 0.18);
  border-radius: 999px;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  text-underline-offset: 0;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.offer-consultation-link span {
  font-size: 26px;
  line-height: 0.7;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-4px);
  transition:
    max-width 180ms ease,
    opacity 180ms ease,
    transform 180ms ease,
    margin-left 180ms ease;
}

.offer-consultation-link:hover {
  background: #DCEEFF;
  color: var(--ink);
  text-decoration: none;
  transform: translateY(-2px);
}

.offer-consultation-link:hover span {
  max-width: 18px;
  margin-left: 8px;
  opacity: 1;
  transform: translateX(0);
}

.topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 34px;
}

.topic-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  background: rgba(16, 31, 120, 0.08);
  border: 1px solid rgba(16, 31, 120, 0.12);
  border-radius: 999px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.offer-card.highlighted .topic-list span {
  background: rgba(255, 250, 240, 0.12);
  border-color: rgba(255, 250, 240, 0.24);
  color: rgba(255, 250, 240, 0.88);
}

.detail-section {
  padding: clamp(70px, 9vw, 124px) clamp(18px, 5vw, 72px);
  background: var(--cream);
}

.thought-section,
.themes-section {
  padding: clamp(70px, 9vw, 124px) clamp(18px, 5vw, 72px);
  background: #FFFAF0;
}

.simple-heading {
  display: block;
  max-width: 900px;
}

.simple-heading h2 {
  margin-bottom: clamp(30px, 5vw, 58px);
}

.thought-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.thought-grid article {
  min-height: 180px;
  padding: clamp(22px, 3vw, 34px);
  background: #FFFAF0;
  border: 1px solid rgba(16, 31, 120, 0.1);
  border-radius: 8px;
  color: var(--ink);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.02;
}

.themes-heading {
  max-width: 820px;
  margin: 0 auto clamp(44px, 6vw, 74px);
  text-align: center;
}

.themes-heading h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(48px, 6vw, 82px);
}

.themes-heading p:not(.section-kicker) {
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 20px);
}

.theme-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.3vw, 28px);
  max-width: 1180px;
  margin: 0 auto;
}

.theme-card {
  min-height: 250px;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(255, 250, 240, 0.72);
  border: 1px solid rgba(16, 31, 120, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(16, 31, 120, 0.06);
}

.theme-card span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  background: rgba(16, 31, 120, 0.14);
  border-radius: 8px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 800;
}

.theme-card h3 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 500;
  line-height: 1.2;
}

.theme-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.stance-section {
  padding: clamp(70px, 9vw, 124px) clamp(18px, 5vw, 72px);
  background: rgba(16, 31, 120, 0.12);
}

.stance-copy {
  max-width: 900px;
}

.stance-copy h2 {
  max-width: 760px;
  margin-bottom: 28px;
}

.stance-copy p:not(.section-kicker) {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 600;
  line-height: 1.5;
}

.service-cta {
  padding: clamp(70px, 9vw, 124px) clamp(18px, 5vw, 72px);
  background: #FFFAF0;
  text-align: center;
}

.service-cta > div {
  max-width: 840px;
  margin: 0 auto;
}

.service-cta h2 {
  margin-bottom: 18px;
  color: var(--ink);
}

.service-cta p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 24px);
}

.service-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 0.92fr);
  gap: clamp(42px, 8vw, 128px);
  align-items: center;
  min-height: calc(100vh - 70px);
  padding: clamp(82px, 10vw, 150px) clamp(18px, 8vw, 150px);
}

.service-intro-warm {
  background:
    radial-gradient(circle at 78% 18%, rgba(16, 31, 120, 0.14), transparent 28%),
    linear-gradient(145deg, #FFFAF0 0%, rgba(16, 31, 120, 0.12) 100%);
}

.service-title {
  align-self: start;
  padding-top: clamp(12px, 4vw, 62px);
}

.service-title h1 {
  max-width: 620px;
  margin: 0;
  color: var(--ink);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(64px, 7vw, 118px);
  font-weight: 400;
  line-height: 0.9;
}

.service-text {
  display: grid;
  gap: 20px;
  color: var(--ink);
  font-size: clamp(16px, 1.18vw, 19px);
  line-height: 1.62;
}

.service-text p {
  margin: 0;
}

.service-text .button {
  justify-self: start;
  margin-top: 12px;
  background: #101F78;
  color: #FFFAF0;
  box-shadow: none;
}

.service-intro-stacked {
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 0.92fr);
  align-items: start;
  min-height: 0;
}

.service-heading-wide {
  max-width: 720px;
}

.service-heading-wide h1 {
  max-width: 720px;
  margin: 0 0 16px;
  color: var(--ink);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(42px, 4.7vw, 72px);
  font-weight: 400;
  line-height: 0.98;
}

.service-heading-wide p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 600;
  line-height: 1.35;
}

.service-text-narrow {
  max-width: 760px;
}

.detail-copy {
  max-width: 980px;
}

.belief-block {
  max-width: 920px;
  margin-bottom: clamp(44px, 7vw, 86px);
  padding: clamp(28px, 4vw, 48px);
  background: rgba(16, 31, 120, 0.11);
  border: 1px solid rgba(16, 31, 120, 0.1);
  border-radius: 8px;
}

.belief-block p {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(17px, 1.65vw, 23px);
  font-weight: 600;
  line-height: 1.5;
}

.detail-topics {
  max-width: 880px;
  margin-bottom: 36px;
}

.detail-topics span {
  min-height: 40px;
  padding: 10px 14px;
  font-size: 14px;
}

.workshop-topic-heading {
  margin-bottom: 6px;
}

.workshop-topic-list {
  margin: 4px 0 6px;
}

.workshop-topic-list details {
  padding: 0;
  border-bottom: 1px solid rgba(16, 31, 120, 0.12);
}

.workshop-topic-list details[open] {
  padding-bottom: 8px;
  border-bottom-color: rgba(16, 31, 120, 0.2);
}

.workshop-topic-list summary {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 0;
  padding: 7px 10px;
  color: var(--ink);
  font-size: clamp(14px, 1.08vw, 16px);
  font-weight: 400;
  line-height: 1.7;
  cursor: pointer;
  list-style: none;
  border-radius: 6px;
  transition:
    color 180ms ease,
    background 180ms ease,
    padding 180ms ease;
}

.workshop-topic-list summary::-webkit-details-marker {
  display: none;
}

.workshop-topic-list summary::after {
  content: "";
  display: inline;
  color: rgba(16, 31, 120, 0.72);
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease;
}

.workshop-topic-list details:not([open]) summary:hover::after {
  content: " ∨";
  text-decoration: none;
}

.workshop-topic-list summary:hover {
  background: #97B7E6;
  color: var(--ink);
  text-decoration: none;
}

.workshop-topic-list details[open] summary::after {
  content: "";
}

.workshop-topic-list p {
  max-width: calc(100% - 28px);
  margin: 0 0 16px 28px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.workshop-more-topics {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-style: italic;
}

.workshop-topic-close {
  display: block;
  margin: 4px 0 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.workshop-topic-close:hover {
  color: var(--muted);
  transform: translateY(-2px);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
}

.about-list {
  display: grid;
  gap: 14px;
}

.about-list div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.about-list span {
  color: var(--rose);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 42px;
}

.about-list p {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
}

.about-profile {
  align-items: start;
}

.about-placeholder {
  max-width: 720px;
}

.about-note {
  align-self: stretch;
  padding: clamp(24px, 3vw, 36px);
  background: rgba(16, 31, 120, 0.08);
  border: 1px solid rgba(16, 31, 120, 0.12);
  border-radius: 8px;
}

.about-note p {
  margin: 0;
  color: var(--ink);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.08;
}

.qualifications-section {
  padding: clamp(78px, 9vw, 118px) clamp(18px, 5vw, 72px);
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper) 88%, rgba(157, 195, 237, 0.14) 100%);
}

.qualification-list-section {
  padding: clamp(32px, 4.6vw, 58px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(180deg, rgba(157, 195, 237, 0.38) 0%, rgba(157, 195, 237, 0.3) 72%, rgba(157, 195, 237, 0.18) 100%);
  border-top: 1px solid rgba(16, 31, 120, 0.1);
  border-bottom: 1px solid rgba(16, 31, 120, 0.08);
}

.qualifications-heading {
  max-width: 1180px;
  margin: 0 auto;
}

.qualification-list-section .qualifications-heading {
  margin-left: var(--about-offset);
}

.qualifications-intro {
  max-width: 1080px;
  margin: 0 auto 36px;
  color: var(--ink);
  font-size: clamp(17px, 1.4vw, 22px);
  font-weight: 400;
  line-height: 1.55;
  text-align: center;
}

.qualifications-intro-secondary {
  margin-bottom: 0;
}

.qualifications-kicker {
  color: #5c8fc9;
  font-size: clamp(10px, 0.85vw, 13px);
  font-weight: 500;
  letter-spacing: 0.14em;
}

.qualification-list {
  display: grid;
  gap: 20px;
  max-width: 980px;
  margin: 0 auto 0 var(--about-offset);
  padding: 0;
  list-style: none;
}

.qualification-list li {
  position: relative;
  padding-left: 20px;
  color: var(--ink);
  font-size: clamp(14px, 1.05vw, 17px);
  font-weight: 400;
  line-height: 1.55;
}

.qualification-list li::before {
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 5px;
  height: 5px;
  content: "";
  background: var(--ink);
  border-radius: 50%;
}

.qualifications-heading h2 {
  max-width: 780px;
  color: var(--ink);
  font-size: clamp(52px, 7vw, 96px);
}

.qualification-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  max-width: 1180px;
  margin: 0 auto;
}

.qualification-grid article {
  display: grid;
  align-content: start;
  min-height: 260px;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(255, 250, 240, 0.76);
  border: 1px solid rgba(16, 31, 120, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(16, 31, 120, 0.06);
}

.qualification-grid span {
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.qualification-grid h3 {
  margin: 0 0 16px;
  color: var(--ink);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 400;
  line-height: 1;
}

.qualification-grid p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 600;
  line-height: 1.5;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.steps article {
  padding: 30px;
  border-top: 2px solid var(--ink);
}

.steps span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  background: var(--sage);
  border-radius: 50%;
  color: #FFFAF0;
  font-weight: 900;
}

.steps p {
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.52fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  padding: clamp(70px, 9vw, 124px) clamp(18px, 5vw, 72px);
  background: #101F78;
  color: #FFFAF0;
}

.booking-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.52fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  padding: clamp(76px, 10vw, 142px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 82% 18%, rgba(16, 31, 120, 0.11), transparent 28%),
    #101F78;
  color: #FFFAF0;
}

.booking-hero h1 {
  color: #FFFAF0;
  font-size: clamp(62px, 9vw, 126px);
}

.booking-hero .section-kicker,
.booking-hero .contact-copy p {
  color: rgba(255, 250, 240, 0.74);
}

.contact .section-kicker,
.contact-copy p {
  color: rgba(255, 250, 240, 0.74);
}

.contact-panel {
  display: grid;
  gap: 12px;
  padding: clamp(22px, 3vw, 32px);
  background: rgba(255, 250, 240, 0.12);
  border: 1px solid rgba(255, 250, 240, 0.24);
  border-radius: 8px;
}

.contact-panel .button-primary {
  background: #FFFAF0;
  color: var(--ink);
  box-shadow: none;
}

.contact-panel .button-secondary {
  background: transparent;
  border-color: rgba(255, 250, 240, 0.34);
  color: #FFFAF0;
}

.wide {
  width: 100%;
}

.contact-panel p {
  margin: 6px 0 0;
  color: rgba(255, 250, 240, 0.68);
  font-size: 14px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  gap: 10px;
  padding: 24px clamp(18px, 5vw, 72px);
  background: var(--cream);
  border-top: 1px solid rgba(16, 31, 120, 0.12);
  color: var(--ink);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.footer-disclaimer {
  color: var(--ink);
  font-size: 11px;
  text-align: center;
  line-height: 1.35;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: center;
  max-width: min(760px, 100%);
}

.site-footer div a {
  padding: 0;
  font-size: 12px;
  line-height: 1.2;
}

.site-footer div a + a {
  border-left: 0;
}

@media (max-width: 980px) {
  .site-header {
    padding-right: 12px;
    padding-left: 12px;
  }

  .nav-links {
    justify-content: center;
    overflow-x: auto;
    gap: clamp(12px, 3vw, 24px);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 52px;
    background:
      radial-gradient(circle at 18% 18%, rgba(16, 31, 120, 0.15), transparent 35%),
      linear-gradient(160deg, #FFFAF0 0%, #FFFAF0 52%, rgba(16, 31, 120, 0.2) 100%);
  }

  .autumn-hero {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
    padding: 0;
    background: var(--ink);
  }

  .home-name-wrap {
    min-height: 52vh;
    width: auto;
    padding: clamp(30px, 8vw, 56px) clamp(18px, 6vw, 44px);
  }

  .home-visual-panel {
    min-height: 44vh;
  }

  .home-visual-panel img {
    width: 100%;
    max-height: none;
  }

  .hero-copy {
    padding-bottom: 20px;
  }

  .hero-portrait {
    min-height: 520px;
  }

  .hero-portrait img {
    right: 50%;
    width: min(520px, 94vw);
    transform: translateX(50%);
  }

  .autumn-hero .home-portrait img {
    right: auto;
    left: 50%;
    top: 40%;
    bottom: auto;
    width: min(380px, 50vw);
    max-height: 60%;
    transform: translate(-50%, -6%);
  }

  .side-note-left {
    left: 2%;
  }

  .side-note-right {
    right: 2%;
  }

  .autumn-hero .side-note-left {
    left: 4%;
  }

  .autumn-hero .side-note-right {
    right: 4%;
  }

  .intro-grid,
  .section-heading,
  .about,
  .about-hero,
  .service-intro,
  .contact,
  .booking-hero {
    grid-template-columns: 1fr;
  }

  .service-intro {
    min-height: 0;
    padding-top: 72px;
    padding-bottom: 82px;
  }

  .service-intro-stacked {
    grid-template-columns: 1fr;
  }

  .about-portrait {
    min-height: 360px;
  }

  .about-portrait img {
    --portrait-image-width: min(360px, 78vw);
  }

  .offer-grid,
  .two-offers,
  .thought-grid,
  .theme-card-grid,
  .qualification-grid,
  .steps,
  .home-links {
    grid-template-columns: 1fr;
  }

  .offer-card {
    min-height: 0;
  }

  .offer-card.highlighted {
    transform: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 10px 12px;
  }

  .brand {
    font-size: 23px;
  }

  .header-action {
    padding: 9px 12px;
    font-size: 12px;
  }

  .hero {
    padding-right: 16px;
    padding-left: 16px;
  }

  h1 {
    font-size: clamp(64px, 23vw, 96px);
  }

  .stacked-name {
    font-size: clamp(52px, 15vw, 78px);
    line-height: 0.96;
    row-gap: 16px;
  }


  .home-credential {
    max-width: 86vw;
    font-size: 11px;
  }

  .home-credential::before,
  .home-credential::after {
    width: 20px;
  }

  h2 {
    font-size: 42px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
    text-align: center;
  }

  .footer-disclaimer {
    text-align: center;
  }

  .site-footer div {
    justify-content: center;
    max-width: none;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-portrait {
    min-height: 440px;
  }

  .autumn-hero .home-portrait {
    min-height: 0;
  }

  .autumn-hero .home-portrait img {
    top: 43%;
    bottom: auto;
    width: min(300px, 64vw);
    max-height: 55%;
    transform: translate(-50%, -4%);
  }

  .side-note {
    max-width: 155px;
    font-size: 12px;
  }

  .side-note-left {
    bottom: 28%;
  }

  .side-note-right {
    bottom: 12%;
  }

  .autumn-hero .side-note {
    max-width: 136px;
    font-size: 11px;
  }

  .autumn-hero .side-note-left {
    bottom: 29%;
  }

  .autumn-hero .side-note-right {
    bottom: 16%;
  }

  .section,
  .band,
  .contact {
    padding-right: 16px;
    padding-left: 16px;
  }

  .steps article {
    padding-right: 0;
    padding-left: 0;
  }
}

/* Separate dark contact-page preview, opened with ?design=dunkel. */
html.contact-dark-preview .contact-page main,
html.contact-dark-preview .contact-page .consultation-hero {
  background: var(--ink);
}

html.contact-dark-preview .contact-page .consultation-form-section {
  background: var(--paper);
}

html.contact-dark-preview .contact-page .consultation-hero {
  border-bottom-color: rgba(255, 250, 240, 0.18);
}

html.contact-dark-preview .contact-page .consultation-hero .contact-hero-title {
  color: var(--paper);
}

html.contact-dark-preview .contact-page .consultation-form-card {
  background: var(--ink);
  border-color: rgba(16, 31, 120, 0.24);
  box-shadow: 0 24px 70px rgba(16, 31, 120, 0.18);
}

html.contact-dark-preview .contact-page .consultation-form-card input,
html.contact-dark-preview .contact-page .consultation-form-card textarea,
html.contact-dark-preview .contact-page .consultation-form-card select,
html.contact-dark-preview .contact-page .consultation-form-card select:focus {
  background: var(--paper);
  border-color: rgba(255, 250, 240, 0.55);
  color: var(--ink);
}

html.contact-dark-preview .contact-page .consultation-form-card label > span,
html.contact-dark-preview .contact-page .consultation-form-card .privacy-consent,
html.contact-dark-preview .contact-page .consultation-form-card .privacy-link,
html.contact-dark-preview .contact-page .contact-direct-email,
html.contact-dark-preview .contact-page .contact-direct-email a {
  color: var(--paper);
}

html.contact-dark-preview .contact-page .consultation-form-card .contact-submit-row button {
  background: var(--paper);
  color: var(--ink);
}

html.contact-dark-preview .contact-page .consultation-form-card .contact-submit-row button:hover {
  background: #DCEEFF;
  color: var(--ink);
}

/* Calm, solid background for the regular contact page. */
html:not(.contact-dark-preview):not(.contact-beige-preview) .contact-page .consultation-form-section {
  overflow: hidden;
  background: #97B7E6;
}

html:not(.contact-dark-preview):not(.contact-beige-preview) .contact-page .consultation-form-section::before {
  display: none;
}

html.contact-beige-preview .contact-page main,
html.contact-beige-preview .contact-page .consultation-hero {
  background: var(--paper);
}

html.contact-beige-preview .contact-page .consultation-form-section {
  background: #97B7E6;
}

html.contact-beige-preview .contact-page .consultation-form-card {
  background: var(--paper);
  border-color: rgba(16, 31, 120, 0.2);
  box-shadow: 0 24px 70px rgba(16, 31, 120, 0.14);
}

html.contact-beige-preview .contact-page .consultation-form-card label > span,
html.contact-beige-preview .contact-page .consultation-form-card .privacy-consent,
html.contact-beige-preview .contact-page .consultation-form-card .privacy-link,
html.contact-beige-preview .contact-page .contact-direct-email,
html.contact-beige-preview .contact-page .contact-direct-email a {
  color: var(--ink);
}

html.contact-beige-preview .contact-page .consultation-form-card input,
html.contact-beige-preview .contact-page .consultation-form-card textarea,
html.contact-beige-preview .contact-page .consultation-form-card select,
html.contact-beige-preview .contact-page .consultation-form-card select:focus {
  background: var(--paper);
  border-color: rgba(255, 250, 240, 0.55);
  color: var(--ink);
}

html.contact-beige-preview .contact-page .consultation-form-card .contact-submit-row button {
  background: var(--paper);
  color: var(--ink);
}

.contact-page .consultation-form-card select,
.contact-page .consultation-form-card select option {
  font-family: "Inter", Arial, sans-serif !important;
  font-weight: 400;
}

.contact-page .consultation-form-card select:hover {
  background: #97B7E6;
  border-color: rgba(16, 31, 120, 0.34);
  color: var(--ink);
}

.contact-page .consultation-form-card select option:hover,
.contact-page .consultation-form-card select option:focus,
.contact-page .consultation-form-card select option:checked {
  background: #97B7E6;
  color: var(--ink);
}

@media (max-width: 1180px) {
  .page-hero,
  .offers-overview,
  .service-intro,
  .qualifications-section,
  .qualification-list-section {
    padding-right: clamp(22px, 4vw, 56px);
    padding-left: clamp(22px, 4vw, 56px);
  }

  .about-hero {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.54fr);
    gap: clamp(28px, 4vw, 56px);
  }

  .about-hero-copy {
    padding-left: clamp(10px, 2vw, 36px);
  }

  .page-hero.about-hero .about-credential,
  .home-hero-credential {
    white-space: normal;
  }
}

@media (max-width: 820px) {
  .nav-links {
    justify-content: flex-start;
    padding-bottom: 4px;
    overflow-x: auto;
  }

  .nav-split,
  .nav-home {
    grid-template-columns: auto auto auto;
    width: max-content;
    min-width: 100%;
    gap: 20px;
  }

  .nav-side {
    gap: 18px;
  }

  .about-hero {
    grid-template-columns: 1fr;
    padding-top: 64px;
    padding-bottom: 0;
  }

  .about-hero-copy {
    max-width: 100%;
    padding-left: 0;
    transform: none;
  }

  .about-portrait {
    min-height: 340px;
  }

  .about-portrait::before {
    --portrait-frame-width: min(350px, 88vw);
    height: 400px;
  }

  .about-portrait img {
    --portrait-image-width: min(330px, 84vw);
  }

  .page-hero.about-hero .about-hero-copy h1 {
    font-size: clamp(46px, 13vw, 72px);
  }

  .page-hero.about-hero .about-credential {
    max-width: 100%;
    font-size: clamp(15px, 4vw, 18px);
    line-height: 1.45;
  }

  .qualifications-intro,
  .qualification-list {
    max-width: 100%;
  }

  .qualification-list-section .qualifications-heading,
  .qualification-list {
    margin-left: 0;
  }
}

@media (max-width: 520px) {
  .home-name-wrap {
    min-height: 48vh;
    padding: 34px 18px;
  }

  .home-visual-panel {
    min-height: 38vh;
  }

  .home-minimal-line {
    font-size: clamp(26px, 8vw, 36px);
  }

  .button {
    max-width: 100%;
    white-space: normal;
  }

  .offers-overview {
    gap: 28px;
  }

  .offer-card {
    padding: 24px 20px;
  }

  .service-intro {
    padding-top: 58px;
    padding-bottom: 64px;
  }

  .service-title h1,
  .service-heading-wide h1,
  .offers-overview-heading h1 {
    font-size: clamp(46px, 13vw, 72px);
  }
}

.offers-overview-heading h1 {
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.08;
}

.two-offers .offer-title-main {
  font-size: clamp(17px, 1.55vw, 23px);
  font-weight: 400;
  line-height: 1.08;
  text-transform: uppercase;
  white-space: nowrap;
}

.two-offers .offer-card-summary {
  display: grid;
  grid-template-rows: 1fr;
  align-content: start;
  min-height: 150px;
  padding: clamp(18px, 2.4vw, 26px);
}

.two-offers .offer-card-summary[open] {
  grid-column: 1 / -1;
  min-height: 0;
}

.two-offers:has(#systemische-beratung[open]) #workshops-card,
.two-offers:has(#workshops-card[open]) #systemische-beratung {
  display: none;
}

.two-offers .offer-card-summary:not([open]):hover {
  background: #DCEEFF;
  border-color: #DCEEFF;
  color: var(--ink);
}

.two-offers .offer-card-summary:not([open]):hover .offer-title-main,
.two-offers .offer-card-summary:not([open]):hover summary > span:not(.offer-title-main),
.two-offers .offer-card-summary:not([open]):hover summary::after {
  color: var(--ink);
}

.two-offers .offer-card-summary .offer-title-main {
  margin-bottom: 2px;
}

.two-offers .offer-card-summary summary > span:nth-child(3) {
  margin-top: 2px;
}

#systemische-beratung summary > span:not(.offer-title-main) {
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 700;
  line-height: 1.15;
}

#systemische-beratung summary > span:nth-child(3) {
  margin-top: 10px;
  font-size: clamp(15px, 1.18vw, 18px);
  font-weight: 400;
  line-height: 1.35;
}

#systemische-beratung .offer-meta-line {
  font-weight: 700;
  white-space: normal;
}

.two-offers .offer-card-summary p {
  margin: 0;
}

.two-offers .offer-card-summary p + p {
  margin-top: 10px;
}

.offer-card-close {
  margin-top: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  text-decoration: underline;
}

.legal-section {
  min-height: calc(100vh - 70px);
  padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 72px);
  background: var(--paper);
  color: var(--ink);
}

.legal-section h1 {
  margin: 0 0 clamp(28px, 4vw, 52px);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(46px, 7vw, 86px);
  font-weight: 400;
  line-height: 1.05;
}

.legal-copy {
  max-width: 760px;
  padding: clamp(24px, 4vw, 44px);
  background: #FFFAF0;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.legal-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 19px);
}

.legal-copy ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 19px);
}

.legal-copy li {
  font-weight: 400;
}

.legal-copy p + p {
  margin-top: 22px;
}

.legal-copy h2 {
  margin: 30px 0 10px;
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(16px, 1.3vw, 18px);
  font-weight: 700;
}

.legal-copy a {
  color: var(--ink);
  font-weight: 700;
}

.contact-form-section {
  min-height: calc(100vh - 70px);
  padding: clamp(42px, 5.5vw, 78px) clamp(18px, 5vw, 72px) clamp(46px, 6vw, 84px);
  background:
    radial-gradient(circle at 78% 16%, rgba(157, 195, 237, 0.34), transparent 30%),
    linear-gradient(145deg, #FFFAF0 0%, rgba(157, 195, 237, 0.32) 100%);
  color: var(--ink);
}

.contact-form-section h1 {
  margin: 0 0 clamp(32px, 5vw, 58px);
  color: var(--ink);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 400;
  line-height: 1.08;
}

.contact-form {
  display: grid;
  gap: clamp(22px, 3vw, 36px);
}

.contact-field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 44px);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1.5px solid var(--ink);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font: inherit;
  font-size: clamp(15px, 1.15vw, 19px);
  outline: none;
}

.contact-form input {
  min-height: 56px;
  padding: 15px 20px;
}

.contact-form textarea {
  min-height: 170px;
  padding: 18px 20px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--ink);
  opacity: 1;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: #FFFAF0;
  box-shadow: 0 0 0 4px rgba(16, 31, 120, 0.12);
}

.contact-submit-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
}

.captcha-field {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: clamp(18px, 1.5vw, 24px);
}

.captcha-field input {
  width: 76px;
  min-height: 76px;
  padding: 0;
  border-radius: 999px;
  text-align: center;
}

.contact-submit-row button {
  min-height: 58px;
  padding: 0 30px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #FFFAF0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(20px, 1.55vw, 26px);
  cursor: pointer;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.contact-submit-row button:hover {
  background: #DCEEFF;
  color: var(--ink);
  transform: translateY(-1px);
}

@media (max-width: 760px) {
  .contact-field-row {
    grid-template-columns: 1fr;
  }

  .contact-form-section h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .contact-submit-row {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 520px) {
  .offer-card-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .offers-overview-heading h1 {
    font-size: clamp(34px, 10vw, 48px);
  }
}

.offers-overview {
  padding-top: clamp(24px, 3.5vw, 46px);
  padding-bottom: clamp(46px, 6vw, 78px);
}

.contact-page .contact-form-section {
  background:
    radial-gradient(circle at 18% 14%, rgba(87, 132, 230, 0.18), transparent 28%),
    linear-gradient(135deg, #FFFAF0 0%, #FFFAF0 58%, #d1e8ff 100%);
}

.contact-page .contact-form-section h1 {
  color: var(--ink);
}

.contact-choice-section {
  padding: clamp(34px, 5vw, 62px) clamp(18px, 5vw, 72px) clamp(44px, 6vw, 76px);
  background: var(--paper);
  color: var(--ink);
}

.contact-choice-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.contact-choice-section h1 {
  margin: 0 0 clamp(26px, 4vw, 48px);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(46px, 5.8vw, 86px);
  font-weight: 400;
  line-height: 1.08;
}

.contact-email-link {
  display: inline-block;
  margin: 0 0 clamp(26px, 4vw, 44px);
  color: rgba(16, 31, 120, 0.78);
  font-size: clamp(16px, 1.45vw, 20px);
  font-weight: 500;
  text-decoration: none;
}

.contact-email-link:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.contact-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 22px);
  max-width: 760px;
}

.contact-choice-grid a {
  display: grid;
  min-height: 112px;
  place-items: center;
  padding: 20px;
  background: #FFFAF0;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-size: clamp(16px, 1.45vw, 20px);
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.contact-choice-grid a:hover {
  background: #DCEEFF;
  color: var(--ink);
  transform: translateY(-4px);
}

.contact-page .consultation-hero {
  position: relative;
  min-height: clamp(90px, 12vw, 150px);
  align-items: start;
  padding: clamp(26px, 3.8vw, 46px) clamp(18px, 5vw, 72px) clamp(12px, 2vw, 24px);
  background: var(--ink);
  color: #FFFAF0;
}

.contact-page main {
  background: #d1e8ff;
  color: var(--ink);
}

.contact-hero-title {
  position: absolute;
  top: clamp(28px, 4vw, 48px);
  left: clamp(18px, 5vw, 72px);
  margin: 0;
  color: #FFFAF0;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.08;
  text-transform: uppercase;
}

.contact-page .consultation-hero h2,
.contact-page .consultation-hero p {
  color: #FFFAF0;
}

.contact-page .consultation-hero p {
  color: rgba(255, 250, 240, 0.78);
}

.contact-page .consultation-hero .button-primary {
  background: #FFFAF0;
  color: var(--ink);
}

.contact-page .consultation-hero .button-primary:hover {
  background: #DCEEFF;
  color: var(--ink);
}

.contact-page .consultation-hero .contact-hero-title {
  color: #FFFAF0;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.08;
  text-transform: uppercase;
}

.contact-page .contact-choice-section,
.contact-page .consultation-form-section {
  background: var(--ink);
  padding-top: clamp(8px, 1.5vw, 18px);
}

.contact-page .contact-choice-section {
  padding-top: 0;
  padding-bottom: clamp(24px, 4vw, 44px);
}

.contact-page .contact-email-link {
  color: #FFFAF0;
}

.contact-page .contact-email-link:hover {
  color: rgba(255, 250, 240, 0.78);
}

.contact-page .consultation-form-card {
  background: #FFFAF0;
  color: var(--ink);
  border: 1px solid rgba(255, 250, 240, 0.48);
}

.contact-page .consultation-form-card input,
.contact-page .consultation-form-card textarea,
.contact-page .consultation-form-card select {
  background: rgba(255, 250, 240, 0.72);
  color: var(--ink);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.88fr);
  gap: clamp(34px, 7vw, 104px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.contact-intro .section-kicker {
  margin-bottom: 16px;
  color: rgba(16, 31, 120, 0.72);
  font-weight: 500;
  letter-spacing: 0.16em;
}

.contact-intro h1 {
  max-width: 600px;
  margin-bottom: 24px;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(44px, 5.5vw, 78px);
  font-weight: 400;
  line-height: 1;
}

.contact-intro > p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.6;
}

.contact-methods {
  display: grid;
  gap: 16px;
  margin-top: clamp(30px, 4vw, 46px);
}

.contact-methods a,
.contact-methods p {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.2vw, 17px);
  text-decoration: none;
}

.contact-methods span {
  display: inline-grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: var(--ink);
  font-weight: 700;
}

.contact-page .contact-form-card {
  gap: 24px;
  max-width: none;
  padding: clamp(26px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.76);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(11, 25, 87, 0.08);
}

.contact-form-card label {
  display: grid;
  gap: 9px;
}

.contact-form-card label > span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.contact-page .contact-form input,
.contact-page .contact-form textarea {
  border-color: rgba(11, 25, 87, 0.16);
  background: rgba(248, 243, 234, 0.72);
}

.contact-page .contact-form input {
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 5px;
  font-size: 14px;
}

.contact-page .contact-form textarea {
  min-height: 118px;
  padding: 12px;
  border-radius: 5px;
  font-size: 14px;
}

.contact-page .contact-form input::placeholder,
.contact-page .contact-form textarea::placeholder {
  color: rgba(16, 31, 120, 0.72);
}

.contact-form-card .privacy-consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
}

.contact-form-card .privacy-consent > span {
  font-weight: 400;
}

.contact-page .contact-form .privacy-consent input {
  width: 16px;
  min-width: 16px;
  height: 16px;
  min-height: 16px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--ink);
}

.privacy-consent a {
  color: inherit;
}

.contact-page .contact-submit-row {
  justify-content: flex-start;
}

.contact-page .contact-submit-row button {
  min-height: 48px;
  padding: 0 32px;
  border-radius: 8px;
  background: #0b1957;
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.contact-page .contact-submit-row button:hover {
  background: #DCEEFF;
  color: var(--ink);
}

.contact-page .contact-submit-row button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.contact-page .contact-submit-row button:disabled:hover {
  background: #0b1957;
  color: #fff;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status {
  margin: -6px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(16, 31, 120, 0.22);
  border-radius: 6px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
}

.form-status.is-success {
  background: rgba(220, 238, 255, 0.72);
}

.form-status.is-error {
  border-color: rgba(139, 36, 36, 0.3);
  background: rgba(255, 235, 235, 0.72);
  color: #6f1f1f;
}

.contact-form.is-sent {
  min-height: 220px;
  place-items: center;
  align-content: center;
  text-align: center;
}

.contact-form.is-sent > :not(.form-status) {
  display: none;
}

.contact-form.is-sent .form-status.is-success {
  max-width: 560px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: clamp(21px, 2.1vw, 30px);
  font-weight: 600;
  line-height: 1.4;
}

.contact-form-note {
  max-width: 440px;
  margin: -2px 0 0;
  color: rgba(16, 31, 120, 0.72);
  font-size: 12px;
  line-height: 1.4;
}

@media (max-width: 860px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-choice-grid,
  .contact-topic-section {
    grid-template-columns: 1fr;
  }

  .contact-topic-copy {
    width: min(620px, 100%);
  }
}

.consultation-hero {
  display: grid;
  min-height: clamp(390px, 52vw, 560px);
  place-items: start center;
  padding: clamp(64px, 8vw, 110px) clamp(18px, 5vw, 72px);
  background: #d1e8ff;
  color: var(--ink);
  text-align: center;
}

.consultation-hero > div {
  max-width: 860px;
}

.consultation-hero .section-kicker,
.consultation-hero h2,
.consultation-hero h1,
.consultation-hero p {
  color: var(--ink);
}

.consultation-hero h2,
.consultation-hero h1 {
  margin-bottom: 18px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 400;
  line-height: 0.98;
}

.consultation-hero p {
  max-width: 680px;
  margin: 0 auto 30px;
  color: rgba(16, 31, 120, 0.72);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.6;
}

.consultation-note {
  display: grid;
  gap: 6px;
  max-width: 620px;
  margin: 0 auto 30px;
  padding: clamp(18px, 2.6vw, 28px);
  background: #FFFAF0;
  border-radius: 8px;
}

.consultation-hero .consultation-note p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(16px, 1.25vw, 19px);
}

.consultation-hero .button-primary {
  background: #0b1957;
  color: #FFFAF0;
  box-shadow: none;
}

.consultation-hero .button-primary:hover {
  background: #DCEEFF;
  color: var(--ink);
}

.consultation-form-section {
  display: grid;
  place-items: center;
  padding: clamp(44px, 6vw, 82px) clamp(18px, 5vw, 72px);
  background: #FFFAF0;
}

.contact-panel-section,
.contact-topic-section {
  scroll-margin-top: 82px;
}

.contact-topic-section {
  grid-template-columns: minmax(220px, 420px) minmax(320px, 620px);
  gap: clamp(24px, 5vw, 76px);
  align-items: start;
  justify-content: center;
  background: #FFFAF0;
}

.contact-topic-copy {
  width: min(420px, 100%);
}

.contact-topic-copy h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(34px, 4.8vw, 62px);
  font-weight: 400;
  line-height: 1.08;
}

.contact-topic-copy p {
  margin: 0;
  color: rgba(16, 31, 120, 0.74);
  font-size: clamp(16px, 1.35vw, 19px);
}

.consultation-form-card {
  width: min(486px, 100%);
  gap: 24px;
  padding: clamp(26px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.82);
  border-radius: 8px;
}

.consultation-form-card label {
  display: grid;
  gap: 9px;
}

.consultation-form-card label > span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.consultation-form-card input,
.consultation-form-card textarea {
  border-color: rgba(11, 25, 87, 0.18);
  background: rgba(252, 248, 241, 0.72);
  color: var(--ink);
}

.consultation-form-card input {
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 5px;
  font-size: 14px;
}

.consultation-form-card textarea {
  min-height: 172px;
  padding: 12px;
  border-radius: 5px;
  font-size: 14px;
}

.consultation-form-card select {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border: 1.5px solid rgba(11, 25, 87, 0.18);
  border-radius: 5px;
  background: rgba(252, 248, 241, 0.72);
  color: var(--ink);
  font: inherit;
  font-size: 14px;
}

.consultation-form-card select:focus {
  border-color: var(--ink);
  outline: none;
  background: rgba(252, 248, 241, 0.72);
  color: var(--ink);
  box-shadow: 0 0 0 4px rgba(16, 31, 120, 0.12);
}

.consultation-form-card select option {
  background: #FFFAF0;
  color: var(--ink);
}

.consultation-form-card select option:checked {
  background: var(--ink);
  color: #FFFAF0;
}

.consultation-form-card select option:hover {
  background: #DCEEFF;
  color: var(--ink);
}

.contact-page .consultation-form-card input,
.contact-page .consultation-form-card textarea,
.contact-page .consultation-form-card select,
.contact-page .consultation-form-card select:focus {
  background: #FFFAF0;
  color: var(--ink);
}

.contact-page .consultation-form-card .contact-submit-row button {
  background: #FFFAF0;
  border: 1.5px solid var(--ink);
  color: var(--ink);
}

.contact-page .consultation-form-card .contact-submit-row button:hover {
  background: #DCEEFF;
  color: var(--ink);
}

.workshop-form-card {
  width: min(620px, 100%);
}

.contact-page main,
.contact-page .consultation-hero,
.contact-page .contact-choice-section,
.contact-page .consultation-form-section {
  color: var(--ink);
}

.contact-page .consultation-hero {
  border-bottom: 1px solid rgba(16, 31, 120, 0.1);
}

.contact-page .consultation-hero .contact-hero-title,
.contact-page .consultation-hero h2,
.contact-page .consultation-hero p {
  color: var(--ink);
}

.contact-page .consultation-form-card {
  background: #FFFAF0;
  border: 1px solid rgba(16, 31, 120, 0.14);
  box-shadow: 0 22px 54px rgba(16, 31, 120, 0.08);
}

.contact-page .consultation-form-card input,
.contact-page .consultation-form-card textarea,
.contact-page .consultation-form-card select,
.contact-page .consultation-form-card select:focus {
  background: #FFFAF0;
  border-color: rgba(16, 31, 120, 0.2);
  color: var(--ink);
}

.contact-page .contact-direct-email,
.contact-page .contact-direct-email a {
  color: var(--ink);
}

.contact-single-form {
  width: min(620px, 100%);
}

.conditional-fields {
  display: grid;
  gap: 24px;
  margin: 0;
  padding: 0;
  border: 0;
  animation: offerTextReveal 260ms ease both;
}

.conditional-fields[hidden] {
  display: none;
}

.consultation-form-card input::placeholder,
.consultation-form-card textarea::placeholder {
  color: rgba(16, 31, 120, 0.72);
}

.consultation-form-card .contact-submit-row {
  justify-content: flex-start;
}

.consultation-form-card .contact-submit-row button {
  min-height: 48px;
  padding: 0 32px;
  border-radius: 8px;
  background: #0b1957;
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.consultation-form-card .contact-submit-row button:hover {
  background: #DCEEFF;
  color: var(--ink);
}

.contact-direct-email {
  margin: 18px auto 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.contact-direct-email a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.offer-detail-page .page-hero,
.offer-detail-page .service-intro-warm,
.offer-detail-page .detail-section,
.offer-detail-page .themes-section,
.offer-detail-page .stance-section,
.offer-detail-page .service-cta {
  background: #FFFAF0;
  color: #0b1957;
}

.offer-detail-page .themes-section,
.offer-detail-page .service-cta {
  background: #d1e8ff;
}

.offer-detail-page .stance-section {
  background: #5784e6;
}

.offer-detail-page .page-hero h1,
.offer-detail-page .page-hero p,
.offer-detail-page .page-hero .eyebrow,
.offer-detail-page .service-heading-wide h1,
.offer-detail-page .service-heading-wide p,
.offer-detail-page .service-text,
.offer-detail-page .themes-heading h2,
.offer-detail-page .themes-heading p,
.offer-detail-page .themes-heading .section-kicker,
.offer-detail-page .stance-copy,
.offer-detail-page .stance-copy h2,
.offer-detail-page .stance-copy p,
.offer-detail-page .stance-copy .section-kicker,
.offer-detail-page .service-cta h2,
.offer-detail-page .service-cta p,
.offer-detail-page .detail-copy .section-kicker {
  color: #0b1957;
}

.offer-detail-page .service-heading-wide p,
.offer-detail-page .service-text,
.offer-detail-page .themes-heading p:not(.section-kicker),
.offer-detail-page .stance-copy p,
.offer-detail-page .service-cta p {
  color: rgba(11, 25, 87, 0.76);
}

.offer-detail-page .theme-card {
  border-color: rgba(11, 25, 87, 0.08);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 22px 50px rgba(11, 25, 87, 0.08);
}

.offer-detail-page .theme-card h3,
.offer-detail-page .theme-card p {
  color: var(--ink);
}

.offer-detail-page .theme-card span {
  background: rgba(87, 132, 230, 0.18);
  color: #0b1957;
}

.offer-detail-page .topic-list span {
  border-color: rgba(11, 25, 87, 0.12);
  background: rgba(255, 255, 255, 0.52);
  color: #0b1957;
}

.offer-detail-page .button-primary {
  background: #0b1957;
  color: #FFFAF0;
  box-shadow: none;
}

.offer-detail-page .button-primary:hover {
  background: #DCEEFF;
  color: var(--ink);
}

.contact-page main {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--paper);
}

.contact-page main::before,
.contact-page main::after {
  display: none;
}

.contact-page .consultation-hero,
.contact-page .consultation-form-section {
  position: relative;
  z-index: 1;
}

.contact-page .consultation-hero {
  background: var(--paper);
}

.contact-page .consultation-form-section {
  background:
    linear-gradient(180deg, rgba(175, 210, 250, 0.96) 0%, rgba(175, 210, 250, 0.82) 72%, rgba(175, 210, 250, 0.66) 100%);
}

.faq-section {
  padding: clamp(34px, 4.5vw, 62px) clamp(18px, 5vw, 72px) clamp(70px, 9vw, 124px);
  background: #FFFAF0;
  color: #0b1957;
}

.faq-heading {
  margin: 0 auto clamp(34px, 4.5vw, 56px);
  text-align: center;
}

.faq-heading .section-kicker {
  margin-bottom: 12px;
  color: rgba(16, 31, 120, 0.72);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
}

.faq-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(24px, 2.4vw, 38px);
  font-weight: 400;
  line-height: 1.08;
}

.faq-list {
  max-width: 980px;
  margin: 0 auto;
}

.faq-list details {
  border-bottom: 1px solid rgba(16, 31, 120, 0.12);
}

.faq-list summary {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--ink);
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 400;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "⌄";
  color: rgba(16, 31, 120, 0.72);
  font-size: 24px;
  line-height: 1;
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(180deg);
}

.faq-list p {
  max-width: 940px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.offers-overview-heading h1,
.contact-page .consultation-hero .contact-hero-title {
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.08;
  text-transform: uppercase;
}

body * {
  font-family: "Inter", Arial, sans-serif !important;
}

.page-hero.about-hero .about-hero-copy h1 {
  font-family: "Instrument Serif", Georgia, serif !important;
}

.qualifications-section {
  padding-top: clamp(42px, 5.5vw, 72px);
  padding-bottom: clamp(42px, 5.5vw, 72px);
}

.qualifications-intro {
  max-width: 980px;
  margin-bottom: 0;
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.6;
  text-wrap: balance;
}

.qualifications-intro > span {
  display: block;
}

.offers-overview-heading h1,
.contact-page .consultation-hero .contact-hero-title {
  font-size: clamp(20px, 2.2vw, 30px) !important;
}

.two-offers .offer-card-summary {
  padding: clamp(26px, 3vw, 42px);
}

.two-offers .offer-card-summary[open] {
  padding: clamp(30px, 3.4vw, 50px);
}

.two-offers .offer-title-main {
  font-size: clamp(17px, 1.55vw, 23px);
  font-weight: 500;
  line-height: 1.08;
}

.two-offers .offer-card-summary summary {
  gap: 8px;
}

#systemische-beratung .offer-meta-line {
  margin-bottom: 0;
}

#systemische-beratung summary > span:nth-child(3) {
  margin-top: -2px;
}

#systemische-beratung:not([open]) summary > span:nth-child(3) {
  margin-top: 8px;
}

#workshops-seminare summary > span:nth-child(2) {
  margin-top: 0;
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 700;
  line-height: 1.15;
}

.two-offers .offer-card-more {
  max-width: 1120px;
  gap: 22px;
  margin-top: 26px;
}

.offer-main-copy {
  max-width: 980px;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.75;
}

#systemische-beratung .offer-main-copy {
  font-size: clamp(15px, 1.18vw, 18px);
  line-height: 1.55;
}

#workshops-seminare .offer-main-copy {
  max-width: 980px;
  font-size: clamp(15px, 1.18vw, 18px);
  line-height: 1.55;
}

#workshops-seminare .workshop-topics-section {
  max-width: 980px;
  margin-top: 8px;
  padding-top: 22px;
  border-top: 1px solid rgba(16, 31, 120, 0.14);
}

#workshops-seminare .workshop-topic-heading,
#workshops-seminare .workshop-topic-list summary,
#workshops-seminare .workshop-more-topics {
  font-size: clamp(15px, 1.18vw, 18px);
}

#workshops-seminare .workshop-topic-heading {
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 700;
  letter-spacing: 0.04em;
}

#workshops-seminare .workshop-topic-list summary {
  font-weight: 400;
}

#workshops-seminare .workshop-topic-list p {
  max-width: calc(100% - 28px);
  margin: 0 0 16px 28px;
  font-size: 15.5px;
}

#systemische-beratung .offer-note,
#systemische-beratung .offer-cancellation {
  font-size: clamp(12px, 0.95vw, 14px);
  line-height: 1.45;
}

#systemische-beratung .offer-cancellation {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.offer-cancellation-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  margin-top: -1px;
  color: var(--ink);
}

#systemische-beratung .offer-card-more {
  gap: 16px;
}

#systemische-beratung .offer-crisis-note p,
#systemische-beratung .offer-crisis-note strong {
  font-size: clamp(13px, 1.02vw, 15px);
  line-height: 1.5;
}

.offer-note {
  max-width: 980px;
  margin-top: 8px;
  padding-top: 22px;
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.6;
}

.offer-cancellation {
  max-width: 980px;
  color: var(--ink);
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.6;
}

.offer-crisis-note {
  max-width: 980px;
  padding-left: 18px;
  border-left: 3px solid #ff7a2f;
  color: var(--ink);
}

.offer-crisis-note strong {
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.offer-crisis-note p {
  margin: 0;
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.6;
}

.offer-card-actions {
  width: 100%;
  margin-top: 6px;
}

.offer-card-close {
  margin-left: auto;
  align-self: end;
}

/* Keep About me and Kontakt aligned with the 980px Angebote layout. */
.about-hero,
.contact-page .consultation-hero,
.contact-page .consultation-form-section {
  padding-right: max(clamp(18px, 5vw, 72px), calc((100vw - 980px) / 2));
  padding-left: max(clamp(18px, 5vw, 72px), calc((100vw - 980px) / 2));
}

.qualifications-heading,
.qualification-list-section .qualifications-heading,
.qualification-list {
  width: 100%;
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
}

.contact-page .consultation-hero .contact-hero-title {
  left: max(clamp(18px, 5vw, 72px), calc((100vw - 980px) / 2));
}

.contact-page .contact-single-form {
  width: min(820px, 100%);
}

html:not(.contact-dark-preview):not(.contact-beige-preview) .contact-page .consultation-form-section {
  padding-top: clamp(20px, 2.5vw, 32px);
  padding-bottom: clamp(20px, 2.5vw, 32px);
}

.contact-page .consultation-hero {
  min-height: clamp(68px, 8vw, 96px);
  padding-top: clamp(16px, 2vw, 24px);
  padding-bottom: clamp(8px, 1.2vw, 14px);
}

.contact-page .consultation-hero .contact-hero-title {
  top: 50%;
  transform: translateY(-50%);
}

.page-hero.about-hero .about-credential {
  max-width: 100%;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.45;
  white-space: normal;
}

.about-portrait::before {
  height: min(390px, calc(100% + 20px));
}

.faq-heading h2 {
  font-size: clamp(21px, 2vw, 32px);
}

.faq-list summary {
  font-size: clamp(14px, 1.1vw, 17px);
}

.faq-list p {
  font-size: 15.5px;
}

@media (max-width: 1180px) {
  .about-hero,
  .contact-page .consultation-hero,
  .contact-page .consultation-form-section {
    padding-right: max(clamp(22px, 4vw, 56px), calc((100vw - 980px) / 2));
    padding-left: max(clamp(22px, 4vw, 56px), calc((100vw - 980px) / 2));
  }

  .contact-page .consultation-hero .contact-hero-title {
    left: max(clamp(22px, 4vw, 56px), calc((100vw - 980px) / 2));
  }
}

@media (max-width: 640px) {
  .about-hero,
  .contact-page .consultation-hero,
  .contact-page .consultation-form-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .contact-page .consultation-hero .contact-hero-title {
    left: 16px;
  }

  .about-portrait::before {
    height: min(360px, calc(100% + 12px));
  }

  .qualifications-intro {
    text-wrap: pretty;
  }

  .qualifications-intro > span {
    display: inline;
  }

  .qualifications-intro > span:not(:last-child)::after {
    content: " ";
  }
}

/* Mobile navigation and phone-only layout refinements. */
@media (max-width: 720px) {
  html,
  body {
    overflow-x: clip;
  }

  .site-header,
  .home-page .site-header {
    padding: 12px 16px;
    background: var(--paper);
  }

  .nav-links,
  .nav-split,
  .nav-home {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
    min-width: 0;
    padding: 0;
    overflow: visible;
  }

  .nav-name {
    grid-row: 1;
    justify-self: center;
    font-size: 23px;
    line-height: 1.1;
  }

  .mobile-nav-toggle {
    grid-row: 2;
    display: grid;
    gap: 3px;
    justify-self: center;
    width: 34px;
    height: 25px;
    margin-top: 6px;
    padding: 5px 7px;
    border: 0;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
  }

  .mobile-nav-toggle span {
    display: block;
    width: 100%;
    height: 1.25px;
    background: currentColor;
    transform-origin: center;
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .nav-links .nav-side {
    display: none;
    width: min(100%, 390px);
    justify-self: center;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
  }

  .nav-links.is-open .nav-side {
    display: flex;
  }

  .nav-links .nav-side-left {
    grid-row: 3;
    margin-top: 10px;
    padding: 14px 18px 0;
    border: 1px solid rgba(16, 31, 120, 0.16);
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
  }

  .nav-links .nav-side-right {
    grid-row: 4;
    padding: 0 18px 18px;
    border: 1px solid rgba(16, 31, 120, 0.16);
    border-top: 0;
    border-radius: 0 0 8px 8px;
  }

  .nav-links .nav-side > a,
  .nav-links .nav-dropdown > a {
    width: 100%;
    padding: 10px 8px;
    text-align: center;
  }

  .nav-links .nav-item,
  .nav-links .nav-dropdown {
    display: flex;
    width: 100%;
    flex-direction: column;
  }

  .nav-links .dropdown-menu {
    position: static;
    display: grid;
    width: 100%;
    min-width: 0;
    padding: 0 0 6px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-links .dropdown-menu::before {
    display: none;
  }

  .nav-links .dropdown-menu a {
    padding: 7px 8px;
    color: var(--muted);
    font-size: 12px;
    text-align: center;
  }

  .nav-side-right .nav-cta,
  .nav-links .nav-cta {
    width: 100%;
    margin: 10px 0 0;
    padding: 11px 14px;
    border: 2px solid var(--ink);
    background: transparent;
    color: var(--ink);
    text-align: center;
  }

  .nav-links .nav-cta:hover,
  .nav-links .nav-cta:focus-visible {
    background: #DCEEFF;
    color: var(--ink);
  }

  .home-visual-panel {
    min-height: 42vh;
    padding-bottom: 24px;
    background: var(--ink);
  }

  .home-visual-panel img {
    height: calc(100% - 24px);
    object-position: 82% center;
  }

  .about-hero {
    padding-top: 42px;
    padding-bottom: 18px;
  }

  .about-portrait {
    --portrait-frame-width: min(350px, 92vw);
    --portrait-image-width: min(315px, 82vw);
    --portrait-image-left: 0;
    --portrait-bottom: 0;
    min-height: 390px;
  }

  .about-portrait::before {
    height: 390px;
  }

  .about-portrait img {
    max-height: 370px;
  }

  .qualifications-section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .qualifications-intro {
    max-width: 36ch;
    margin-right: auto;
    margin-left: auto;
    font-size: 16px;
    line-height: 1.65;
    text-align: left;
    text-wrap: pretty;
  }

  .faq-list p {
    font-size: 14px;
  }

  #workshops-seminare .workshop-topic-list p {
    font-size: 15px;
  }
}













