@font-face {
  font-family: "Genty Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src:
    url("fonts/genty-sans-regular.woff2") format("woff2"),
    url("fonts/genty-sans-regular.woff") format("woff");
}

@font-face {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("fonts/quicksand-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
  src: url("fonts/nunito-sans-latin.woff2") format("woff2");
}

:root {
  --sky: #0b92dc;
  --sky-dark: #08699f;
  --mint: #00a9a5;
  --pink: #df2f87;
  --yellow: #f4b70b;
  --leaf: #69b96b;
  --ink: #132b42;
  --muted: #52697b;
  --paper: #ffffff;
  --mist: #f6fbff;
  --line: rgba(92, 153, 190, 0.22);
  --shadow: 0 22px 60px rgba(19, 76, 112, 0.14);
  --radius: 8px;
  --max: 1120px;
  --font-body: "Nunito Sans", "Segoe UI", sans-serif;
  --font-display: "Quicksand", "Nunito Sans", sans-serif;
  --font-script: "Genty Sans", "Quicksand", sans-serif;
}

* {
  box-sizing: border-box;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  min-height: 100svh;
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #f7fcff 0%, #ffffff 34%, #f4fbff 72%, #fff8fb 100%);
  font-family: var(--font-body);
  line-height: 1.58;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  touch-action: manipulation;
}

button,
input,
select,
textarea {
  font: inherit;
  touch-action: manipulation;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 1000;
  transform: translateY(-180%);
  border: 1px solid rgba(11, 146, 220, 0.36);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--sky-dark);
  font-size: 14px;
  font-weight: 850;
  padding: 10px 13px;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  border-bottom: 1px solid rgba(212, 230, 240, 0.74);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(22px) saturate(1.35);
}

.nav {
  width: min(var(--max), calc(100% - 36px));
  min-height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: clamp(174px, 17vw, 228px);
  height: auto;
}

.brand span {
  color: #556f81;
  font-size: 13px;
  font-weight: 850;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  z-index: 4;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: var(--radius);
  color: #20394f;
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  padding: 0 13px;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
  background: #e7f4ff;
  color: var(--sky-dark);
}

.nav-links .nav-link[href$="kontakt/"] {
  min-height: 42px;
  margin-left: 6px;
  border: 1px solid rgba(11, 146, 220, 0.34);
  background: rgba(255, 255, 255, 0.78);
  color: var(--sky-dark);
  box-shadow: 0 10px 22px rgba(11, 146, 220, 0.1);
}

.nav-links .nav-link[href$="kontakt/"]:hover,
.nav-links .nav-link[href$="kontakt/"]:focus-visible,
.nav-links .nav-link[href$="kontakt/"].active {
  border-color: rgba(11, 146, 220, 0.6);
  background: var(--sky);
  color: #fff;
  box-shadow: 0 14px 28px rgba(11, 146, 220, 0.18);
}

.nav-link:hover {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  min-height: 42px;
  border: 1px solid rgba(92, 153, 190, 0.32);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font-weight: 900;
  padding: 0 16px;
}

.hero {
  --cloud-opacity: 1;
  --cloud-reveal-y: -20%;
  --acronym-opacity: 0;
  --acronym-y: 24px;
  position: relative;
  min-height: calc(100svh + 1280px);
}

.hero-sticky {
  position: sticky;
  top: 80px;
  isolation: isolate;
  min-height: calc(100svh - 80px);
  overflow: hidden;
}

.hero-sticky::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  height: clamp(110px, 16vh, 190px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff 88%);
  pointer-events: none;
}

.hero-sticky::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(14vw, 160px);
  aspect-ratio: 1;
  right: 10%;
  top: 18%;
  background: url("hero-v9-assets/stars.svg") center / contain no-repeat;
  opacity: 0.42;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background-image: url("hero-v9-assets/sky-room-hero-kids-schoolage-v1.webp");
  background-position: 58% calc(100% + 4px);
  background-size: auto 100%;
}

.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg::before {
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.78) 30%, rgba(255, 255, 255, 0.18) 58%, rgba(255, 255, 255, 0.02) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02) 58%, rgba(255, 255, 255, 0.18));
}

.hero-bg::after {
  z-index: 1;
  background-image: url("hero-v9-assets/sky-room-hero-kids-schoolage-cloudy-v1.webp");
  background-position: 58% calc(100% + 4px);
  background-size: auto 100%;
  opacity: var(--cloud-opacity);
  transform: translate3d(0, 0, 0);
  transform-origin: center;
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    transparent calc(var(--cloud-reveal-y) - 16%),
    rgba(0, 0, 0, 0.48) var(--cloud-reveal-y),
    #000 calc(var(--cloud-reveal-y) + 18%),
    #000 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    transparent calc(var(--cloud-reveal-y) - 16%),
    rgba(0, 0, 0, 0.48) var(--cloud-reveal-y),
    #000 calc(var(--cloud-reveal-y) + 18%),
    #000 100%
  );
  will-change: opacity, mask-image, -webkit-mask-image;
}

.hero-inner {
  position: relative;
  z-index: 5;
  width: min(var(--max), calc(100% - 36px));
  min-height: calc(100svh - 80px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 58px 0 88px;
}

.hero-copy {
  width: min(640px, 100%);
}

.kicker,
.eyebrow {
  margin: 0 0 12px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .kicker {
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 590px;
  margin: 0;
  color: #102943;
  font-family: var(--font-display);
  font-size: clamp(46px, 5.1vw, 62px);
  font-weight: 700;
  line-height: 1.06;
}

.hero h1 .hero-title-light {
  font-weight: 300;
}

.hero-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0 10px;
  margin: 18px 0 0;
  font-size: clamp(20px, 2.1vw, 25px);
  font-weight: 950;
  line-height: 1.25;
}

.hero-line span:nth-child(1) {
  color: #009fe3;
}

.hero-line span:nth-child(2) {
  color: #76bd59;
}

.hero-line span:nth-child(3) {
  color: #e7338a;
}

.hero-line span + span::before {
  content: "";
  color: #244056;
}

.hero-welcome {
  max-width: 560px;
  margin: 38px 0 0;
  color: #102943;
  font-family: var(--font-display);
  font-size: clamp(26px, 2.1vw, 32px);
  font-weight: 950;
  line-height: 1.25;
  white-space: nowrap;
}

.hero-acronym ~ .hero-line {
  margin-top: clamp(24px, 3vh, 36px);
}

.hero-acronym ~ .hero-line,
.hero-acronym ~ .hero-text {
  opacity: var(--acronym-opacity);
  transform: translateY(var(--acronym-y));
  transition: opacity 160ms linear, transform 160ms linear;
}

.hero-text {
  max-width: 720px;
  margin: 44px 0 0 -70px;
  padding-left: calc(clamp(38px, 4.6vw, 62px) + 14px);
  box-sizing: border-box;
  color: #102943;
  font-family: var(--font-display);
  font-size: clamp(24px, 1.9vw, 29.8px);
  font-weight: 950;
  line-height: 1.25;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 950;
  padding: 0 26px;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--sky);
  color: #fff;
}

.button-secondary {
  border-color: rgba(11, 146, 220, 0.42);
  background: rgba(255, 255, 255, 0.78);
  color: var(--sky-dark);
}

.hero-acronym {
  --acronym-row: clamp(34px, 3.6vw, 48px);
  --acronym-gap: clamp(9px, 0.9vw, 13px);
  display: grid;
  grid-template-columns: auto minmax(280px, 1fr);
  gap: 14px;
  align-items: center;
  width: min(620px, calc(100vw - 36px));
  margin-top: clamp(38px, 7vh, 92px);
  opacity: var(--acronym-opacity);
  pointer-events: none;
  transform: translateY(var(--acronym-y));
  transition: opacity 160ms linear, transform 160ms linear;
}

.vertical-brand {
  --logo-blue: #009fe3;
  --logo-pink: #e7338a;
  --logo-yellow: #f6c21a;
  --logo-green: #76bd59;
  display: grid;
  grid-template-rows: repeat(9, var(--acronym-row));
  justify-items: center;
  align-content: start;
  gap: var(--acronym-gap);
  font-family: var(--font-script);
  font-size: clamp(38px, 4.6vw, 62px);
  font-weight: 400;
  line-height: 1;
  text-transform: lowercase;
  text-shadow: 0 10px 28px rgba(18, 84, 132, 0.1);
}

.vertical-brand span:nth-child(1),
.vertical-brand span:nth-child(5),
.vertical-brand span:nth-child(9) {
  color: var(--logo-blue);
}

.vertical-brand span:nth-child(2),
.vertical-brand span:nth-child(6) {
  color: var(--logo-green);
}

.vertical-brand span:nth-child(3),
.vertical-brand span:nth-child(7) {
  color: var(--logo-pink);
}

.vertical-brand span:nth-child(4),
.vertical-brand span:nth-child(8) {
  color: var(--logo-yellow);
}

.vertical-brand span:first-child {
  text-transform: uppercase;
}

.acronym-lines {
  display: grid;
  grid-template-rows: repeat(9, var(--acronym-row));
  gap: var(--acronym-gap);
  align-self: center;
}

.acronym-lines p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  color: #244056;
  font-family: var(--font-display);
  font-size: clamp(17px, 1.72vw, 23px);
  font-weight: 700;
  line-height: 1.05;
  transform: translateY(5px);
}

.acronym-lines p:nth-child(1) {
  transform: translateY(2px);
}

.acronym-lines p:nth-child(2) {
  transform: translateY(7px);
}

.acronym-lines p:nth-child(3),
.acronym-lines p:nth-child(4) {
  transform: translateY(0);
}

.acronym-lines p:nth-child(5) {
  transform: translateY(4px);
}

.acronym-lines p:nth-child(7) {
  transform: translateY(2px);
}

.acronym-lines strong {
  display: none;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 8;
  width: 44px;
  height: 44px;
  transform: translateX(-50%);
  border: 1px solid rgba(11, 146, 220, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: transparent;
  box-shadow: 0 16px 30px rgba(19, 76, 112, 0.12);
}

.scroll-cue::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 46%;
  width: 11px;
  height: 11px;
  transform: translate(-50%, -50%) rotate(45deg);
  border-right: 2px solid var(--sky-dark);
  border-bottom: 2px solid var(--sky-dark);
}

@keyframes scrollWheel {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.54;
  }

  45% {
    transform: translateY(5px);
    opacity: 0.95;
  }
}

@keyframes scrollLine {
  0%,
  100% {
    transform: scaleY(0.72);
    opacity: 0.48;
  }

  45% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(54px, 7vw, 86px) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-mark {
  display: block;
  width: 48px;
  height: 6px;
  margin: 0 0 18px;
  border-radius: 999px;
  background: var(--sky);
}

.centered .section-mark {
  margin-inline: auto;
}

.section h2,
.meaning-title h2,
.contact h2 {
  margin: 0;
  color: #15304a;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.08;
}

.offers-intro {
  max-width: 1000px;
  margin: 22px auto 0;
  color: #244056;
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 400;
  line-height: 1.45;
}

.journey {
  position: relative;
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(20, 140, 220, 0.18);
  border-bottom: 1px solid rgba(20, 140, 220, 0.18);
}

.journey-step {
  position: relative;
  min-height: 235px;
  padding: 26px 24px 24px;
  text-align: center;
}

.journey-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 75px;
  right: -62px;
  z-index: 3;
  width: 124px;
  height: 28px;
  background: url("assets-v6/dotted-arrow-blue.svg") center / contain no-repeat;
}

.journey-step.color-mint::after {
  background-image: url("assets-v6/dotted-arrow-mint.svg");
}

.journey-step + .journey-step {
  border-left: 1px dashed rgba(92, 153, 190, 0.38);
}

.step-count {
  position: absolute;
  left: calc(50% - 47px);
  top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: white;
  font-size: 14px;
  font-weight: 1000;
}

.journey-step img {
  width: 112px;
  height: 112px;
  object-fit: contain;
  margin: 6px auto 14px;
  border-radius: 999px;
  background: rgba(232, 246, 255, 0.9);
  padding: 18px;
  filter: saturate(1.22) contrast(1.08);
  box-shadow: inset 0 0 0 1px rgba(20, 140, 220, 0.16);
}

.journey-step h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.1;
}

.journey-step p,
.offer-card p,
.simone-copy p,
.meaning-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 16px;
}

.color-sky .step-count {
  background: var(--sky);
}

.color-sky img {
  background: #dff4ff;
}

.color-sky h3 {
  color: var(--sky);
}

.color-mint .step-count {
  background: var(--mint);
}

.color-mint img {
  background: #ddfbf6;
}

.color-mint h3 {
  color: var(--mint);
}

.color-pink .step-count {
  background: var(--pink);
}

.color-pink img {
  background: #fff0f7;
}

.color-pink h3 {
  color: var(--pink);
}

.color-yellow .step-count {
  background: var(--yellow);
}

.color-yellow img {
  background: #fff5d7;
}

.color-yellow h3 {
  color: var(--yellow);
}

.offers {
  border-top: 1px solid rgba(92, 153, 190, 0.16);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(20, 140, 220, 0.18);
  border-bottom: 1px solid rgba(20, 140, 220, 0.18);
}

.offer-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  padding: 28px 18px 26px;
  text-align: center;
  text-decoration: none;
  box-shadow: none;
  transition: transform 180ms ease, background 180ms ease;
}

.offer-card + .offer-card {
  border-left: 1px solid rgba(20, 140, 220, 0.18);
}

.offer-card:hover,
.offer-card:focus-visible {
  transform: translateY(-3px);
  background: rgba(232, 246, 255, 0.46);
}

.offer-icon {
  display: inline-flex;
  width: 82px;
  height: 82px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.offer-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
}

.offer-card h3 {
  min-height: 48px;
  margin: 0;
  color: #173044;
  font-size: 19px;
  line-height: 1.18;
}

.offer-card p {
  margin: 10px 0 0;
  color: #536878;
  font-size: 14px;
}

.offer-card strong {
  margin: auto 0 0;
  padding-top: 16px;
  color: var(--sky-dark);
  font-size: 15px;
}

.offer-sky h3,
.offer-sky strong {
  color: #159be5;
}

.offer-mint h3,
.offer-mint strong {
  color: var(--mint);
}

.offer-pink h3,
.offer-pink strong {
  color: var(--pink);
}

.offer-yellow h3,
.offer-yellow strong {
  color: var(--yellow);
}

.offer-leaf h3,
.offer-leaf strong {
  color: var(--leaf);
}

.simone {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: clamp(44px, 7vw, 88px);
  align-items: center;
  border-top: 1px solid rgba(92, 153, 190, 0.16);
}

.simone-media {
  position: relative;
}

.simone-media::before {
  content: "";
  position: absolute;
  inset: 8% 8% 2% -8%;
  z-index: -1;
  border: 0;
  border-radius: 999px;
  background: #eef9ff;
}

.simone-media img {
  width: min(420px, 100%);
  aspect-ratio: 1;
  object-fit: cover;
  object-position: 50% 22%;
  border-radius: 999px;
  box-shadow: 0 18px 46px rgba(19, 76, 112, 0.12);
}

.simone-copy h2 {
  margin: 0 0 12px;
  color: var(--sky);
  font-family: var(--font-script);
  font-size: clamp(52px, 6vw, 74px);
  font-weight: 400;
  line-height: 0.98;
}

.values-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: linear-gradient(180deg, #eef9ff 0%, #f8fcff 100%);
  border-top: 1px solid rgba(20, 140, 220, 0.12);
  border-bottom: 1px solid rgba(20, 140, 220, 0.12);
  padding: 28px max(18px, calc((100vw - var(--max)) / 2));
}

.value-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  align-items: center;
  padding: 0 22px;
}

.value-item + .value-item {
  border-left: 1px solid rgba(20, 140, 220, 0.16);
}

.value-item img {
  grid-row: span 2;
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.value-item strong {
  grid-column: 2;
  color: #173044;
  font-size: 15px;
  line-height: 1.15;
}

.value-item span {
  grid-column: 2;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.simone-copy .lead {
  color: var(--ink);
  font-size: 19px;
  font-weight: 850;
}

.meaning {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(32px, 6vw, 76px);
  border-top: 1px solid var(--line);
}

.meaning-title {
  position: sticky;
  top: 108px;
  align-self: start;
}

.meaning-copy {
  display: grid;
  gap: 26px;
}

.meaning-heading {
  display: grid;
  gap: 12px;
}

.meaning-heading .eyebrow {
  margin: 0;
  color: #df2f87;
  font-size: 21px;
  line-height: 1.2;
}

.meaning-copy article {
  border-bottom: 1px solid rgba(92, 153, 190, 0.22);
  padding-bottom: 24px;
}

.meaning-copy h3 {
  margin: 0 0 10px;
  color: #172f47;
  font-size: 22px;
}

.meaning-copy p {
  margin: 0;
}

.meaning-card {
  display: grid;
  gap: 14px;
}

.meaning-card p strong {
  color: #172f47;
  font-weight: 950;
}

.meaning-photo {
  width: min(360px, 100%);
  margin: 0;
}

.meaning-photo img,
.v7-page .textbaustein-image img {
  display: block;
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 22px 52px rgba(21, 75, 120, 0.12);
}

.meaning-photo img {
  aspect-ratio: 2 / 3;
  object-position: center center;
}

.meaning-photo-caption {
  max-width: 31ch;
  margin: clamp(14px, 2vw, 20px) auto 0;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  font-weight: 400;
  line-height: 1.62;
  text-align: center;
  text-wrap: balance;
}

.meaning-photo-script {
  display: inline-block;
  margin: 0 0.08em;
  color: #c64b86;
  font-family: "Snell Roundhand", "Segoe Script", "Apple Chancery", cursive;
  font-size: 1.46em;
  font-weight: 500;
  line-height: 1;
  background: linear-gradient(transparent 72%, rgba(223, 47, 135, 0.12) 72%);
  transform: translateY(0.08em) rotate(-1.5deg);
}

.wolkenlos-map {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(92, 153, 190, 0.22);
  padding: 24px 0 42px;
}

.wolkenlos-map::before,
.wolkenlos-map::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(360px, 84%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 150, 220, 0.28), transparent);
  transform: translate(-50%, -50%) rotate(18deg);
  transform-origin: center;
  animation: mapLineSway 6.4s ease-in-out infinite;
}

.wolkenlos-map::after {
  transform: translate(-50%, -50%) rotate(-28deg);
  animation-delay: -2.1s;
}

.map-center,
.map-node {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  border-radius: 999px;
  text-align: center;
  box-shadow: 0 18px 46px rgba(21, 75, 120, 0.09);
}

.map-center {
  width: clamp(240px, 29vw, 318px);
  height: clamp(240px, 29vw, 318px);
  color: var(--sky);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(20, 150, 220, 0.18);
  font-family: var(--font-script);
  font-size: clamp(42px, 4.3vw, 56px);
  font-weight: 400;
  line-height: 1;
  padding: 0 20px;
  overflow: hidden;
  white-space: nowrap;
  animation: mapCenterBreathe 7s ease-in-out infinite;
}

.map-node {
  position: absolute;
  width: 112px;
  height: 112px;
  color: #132b42;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(20, 150, 220, 0.16);
  font-size: 18px;
  font-weight: 950;
  animation: mapFloat 5.2s ease-in-out infinite;
}

.map-node-clear {
  left: 5%;
  top: 24px;
  color: var(--sky);
}

.map-node-grow {
  right: 5%;
  top: 58px;
  color: var(--pink);
  animation-delay: -1.4s;
}

.map-node-strong {
  bottom: 8px;
  left: 50%;
  color: var(--mint);
  transform: translateX(-50%);
  animation-delay: -2.8s;
}

@keyframes mapFloat {
  0%, 100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -8px;
  }
}

@keyframes mapLineSway {
  0%, 100% {
    opacity: 0.62;
    scale: 0.96 1;
  }

  50% {
    opacity: 0.95;
    scale: 1.06 1;
  }
}

@keyframes mapCenterBreathe {
  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.015);
  }
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
  width: min(var(--max), calc(100% - 36px));
  margin-bottom: 52px;
  border: 1px solid rgba(174, 213, 236, 0.72);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(232, 246, 255, 0.74), rgba(255, 245, 250, 0.72));
  padding: clamp(30px, 5vw, 56px);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #25455f;
  font-size: 14px;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(92, 153, 190, 0.38);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 4px rgba(11, 146, 220, 0.12);
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-top: 1px solid var(--line);
  color: #557083;
  padding: 28px 0 42px;
}

.site-footer p {
  margin: 0;
  color: var(--sky-dark);
  font-family: var(--font-script);
  font-size: 27px;
}

.site-footer span {
  font-size: 14px;
  font-weight: 800;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 10px;
    overflow: hidden;
    min-width: 96px;
    padding: 0 44px 0 16px;
    border-color: rgba(11, 146, 220, 0.28);
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(231, 246, 255, 0.94));
    box-shadow: 0 14px 30px rgba(21, 75, 120, 0.12);
    transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease, background 220ms ease;
  }

  .menu-toggle::before,
  .menu-toggle::after {
    content: "";
    position: absolute;
    right: 16px;
    width: 18px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--sky), var(--pink));
    transform-origin: center;
    transition: transform 260ms ease, box-shadow 260ms ease;
  }

  .menu-toggle::before {
    top: 15px;
    box-shadow: 0 7px 0 rgba(0, 169, 165, 0.72);
  }

  .menu-toggle::after {
    bottom: 15px;
  }

  .site-header.is-open .menu-toggle {
    border-color: rgba(223, 47, 135, 0.28);
    box-shadow: 0 18px 38px rgba(21, 75, 120, 0.16);
    transform: translateY(-1px);
  }

  .site-header.is-open .menu-toggle::before {
    transform: translateY(7px) rotate(45deg);
    box-shadow: 0 0 0 rgba(0, 169, 165, 0);
  }

  .site-header.is-open .menu-toggle::after {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav {
    position: relative;
  }

  .nav-links {
    position: absolute;
    left: 50%;
    right: auto;
    top: calc(100% + 12px);
    width: min(420px, calc(100vw - 28px));
    display: grid;
    gap: 8px;
    margin: 0;
    border: 1px solid rgba(187, 222, 242, 0.82);
    border-radius: 28px;
    background:
      radial-gradient(circle at 88% 14%, rgba(223, 47, 135, 0.12), transparent 28%),
      radial-gradient(circle at 8% 18%, rgba(0, 169, 165, 0.12), transparent 30%),
      linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(239, 249, 255, 0.96));
    box-shadow:
      0 28px 70px rgba(19, 76, 112, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.94);
    padding: 12px;
    transform-origin: top;
    transform: translateX(-50%) translateY(-12px) scale(0.96);
    opacity: 0;
    pointer-events: none;
    z-index: 20;
    visibility: hidden;
    transition: opacity 260ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 320ms;
  }

  .nav-links::before {
    content: "Wolkenlos Menü";
    min-height: 92px;
    border-radius: 22px;
    padding: 20px 108px 20px 20px;
    display: flex;
    align-items: center;
    color: #18304f;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 900;
    line-height: 1.05;
    background:
      url("assets-v6/icon-step-butterfly.svg") right 18px center / 76px auto no-repeat,
      linear-gradient(135deg, rgba(231, 246, 255, 0.96), rgba(255, 245, 250, 0.94));
    box-shadow: inset 0 0 0 1px rgba(188, 224, 242, 0.72);
    transform: translateY(-5px);
    opacity: 0;
    transition: opacity 260ms ease 60ms, transform 320ms cubic-bezier(0.22, 1, 0.36, 1) 60ms;
  }

  .site-header.is-open .nav-links {
    transform: translateX(-50%) translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transition: opacity 220ms ease, transform 340ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0s;
  }

  .site-header.is-open .nav-links::before {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-link {
    justify-content: flex-start;
    min-height: 50px;
    border-radius: 18px;
    padding: 0 18px;
    background: rgba(255, 255, 255, 0.56);
    box-shadow: inset 0 0 0 1px rgba(188, 224, 242, 0.34);
    opacity: 0;
    transform: translateY(-7px);
    transition: opacity 220ms ease, transform 260ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
  }

  .nav-link:hover,
  .nav-link:focus-visible,
  .nav-link.active {
    background: rgba(231, 246, 255, 0.96);
    box-shadow: inset 0 0 0 1px rgba(11, 146, 220, 0.22);
  }

  .site-header.is-open .nav-link {
    opacity: 1;
    transform: translateY(0);
  }

  .site-header.is-open .nav-link:nth-child(1) {
    transition-delay: 70ms;
  }

  .site-header.is-open .nav-link:nth-child(2) {
    transition-delay: 100ms;
  }

  .site-header.is-open .nav-link:nth-child(3) {
    transition-delay: 130ms;
  }

  .site-header.is-open .nav-link:nth-child(4) {
    transition-delay: 160ms;
  }

  .site-header.is-open .nav-link:nth-child(5) {
    transition-delay: 190ms;
  }

  .site-header.is-open .nav-link:nth-child(6) {
    transition-delay: 220ms;
  }

  .site-header.is-open .nav-link:nth-child(7) {
    transition-delay: 250ms;
  }

  .nav-links .nav-link[href$="kontakt/"],
  .nav-links .nav-link[href$="kontakt/index.html"] {
    min-height: 50px;
    margin-left: 0;
    justify-content: center;
    border-color: rgba(11, 146, 220, 0.28);
    background: linear-gradient(135deg, var(--sky), #43b7ee);
    color: #fff;
    box-shadow: 0 14px 28px rgba(11, 146, 220, 0.18);
  }

  .hero {
    min-height: calc(100svh + 980px);
  }

  .hero-sticky {
    top: 70px;
    min-height: calc(100svh - 70px);
  }

  .hero-bg {
    background-image: url("hero-v9-assets/sky-room-hero-kids-schoolage-v1.webp");
    background-position: 64% center;
  }

  .hero-bg::before {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.78) 48%, rgba(255, 255, 255, 0.24) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.48) 46%, rgba(255, 255, 255, 0.08) 100%);
  }

  .hero-bg::after {
    background-position: 64% center;
  }

  .hero-inner {
    min-height: calc(100svh - 70px);
    align-items: start;
    padding-top: 58px;
  }

  .hero-acronym {
    margin-top: 30px;
  }

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

  .journey-step::after {
    display: none;
  }

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

  .journey-step:nth-child(3) {
    border-left: 0;
  }

  .journey-step:nth-child(n + 3) {
    border-top: 1px dashed rgba(92, 153, 190, 0.38);
  }

  .offer-card:nth-child(odd),
  .value-item:nth-child(odd) {
    border-left: 0;
  }

  .offer-card:nth-child(n + 3),
  .value-item:nth-child(n + 3) {
    border-top: 1px solid rgba(20, 140, 220, 0.18);
  }

  .simone,
  .meaning,
  .contact {
    grid-template-columns: 1fr;
  }

  .meaning-title {
    position: static;
  }

  .meaning-photo,
  .v7-page .textbaustein-image {
    width: min(420px, 100%);
    justify-self: center;
    margin: clamp(18px, 4vw, 30px) auto;
  }

  .v7-page .text-image-flow,
  .v7-page .text-image-flow.image-left {
    grid-template-columns: 1fr;
    gap: 18px;
    margin: clamp(22px, 6vw, 34px) 0;
  }

  .v7-page .text-image-flow .textbaustein-image {
    width: min(420px, 100%);
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .hero {
    /* Mobil ohne Wolken-Scrollanimation: keine kuenstliche Scrollstrecke,
       damit der Uebergang in den naechsten Abschnitt direkt und ruckelfrei ist */
    --acronym-opacity: 1;
    --acronym-y: 0px;
    --cloud-opacity: 1;
    --cloud-reveal-y: 78%;
    min-height: 100svh;
  }

  .hero-sticky {
    position: static;
    top: auto;
  }

  .nav {
    width: min(100% - 28px, var(--max));
    min-height: 70px;
  }

  .brand img {
    width: 150px;
  }

  .brand span {
    display: none;
  }

  .hero-bg,
  .hero-bg::after {
    background-position: 73% 4%;
    background-size: auto 124%;
  }

  .hero-bg::before {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 42%, rgba(255, 255, 255, 0.16) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0.36) 44%, rgba(255, 255, 255, 0.05) 100%);
  }

  .hero-inner,
  .section,
  .contact,
  .site-footer {
    width: min(100% - 28px, var(--max));
  }

  .hero-inner {
    min-height: calc(100svh - 70px);
    padding: 12px 0 70px;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
  }

  .kicker {
    display: none;
  }

  .hero h1 {
    max-width: 330px;
    align-self: flex-start;
    color: #102943;
    font-size: clamp(27px, 7.2vw, 31px);
    font-weight: 700;
    line-height: 1.06;
    text-align: left;
  }

  .hero-welcome {
    max-width: min(100%, 560px);
    margin-top: 34px;
    align-self: flex-start;
    color: #102943;
    font-size: clamp(17px, 4.5vw, 21px);
    font-weight: 950;
    line-height: 1.25;
    text-align: left;
    white-space: normal;
  }

  .hero-line {
    order: 8;
    display: grid;
    grid-template-columns: repeat(3, max-content);
    justify-items: center;
    justify-content: center;
    column-gap: 18px;
    margin-top: 20px;
    width: auto;
    align-self: center;
    font-size: clamp(11.5px, 3.2vw, 13px);
    font-weight: 850;
    line-height: 1.16;
  }

  .hero-line span {
    white-space: nowrap;
  }

  .hero-line span + span::before {
    content: "";
  }

  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .v7-footer {
    width: 100%;
    padding: 48px 14px 32px;
  }

  .v7-footer .footer-directory {
    width: min(100%, 520px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 18px;
    text-align: left;
  }

  .v7-footer .footer-column {
    gap: 10px;
  }

  .v7-footer .footer-column h2 {
    font-size: 14px;
  }

  .v7-footer .footer-column a,
  .v7-footer .footer-column span {
    font-size: 14px;
  }

  .v7-footer .footer-credit {
    font-size: 12px;
    text-align: center;
  }

  .hero-text {
    order: 9;
    max-width: min(100%, 560px);
    /* linke Kante genau wie .hero-welcome (kein Einzug) */
    margin: 20px 0 0;
    padding-left: 0;
    align-self: flex-start;
    text-align: left;
    /* exakt wie .hero-welcome: gleiche Farbe und Zeilenhoehe */
    color: #102943;
    font-size: clamp(17px, 4.5vw, 21px);
    line-height: 1.25;
    opacity: var(--acronym-opacity);
    transform: translateY(var(--acronym-y));
    transition: opacity 160ms linear, transform 160ms linear;
  }

  .hero-actions {
    order: 10;
    align-items: stretch;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 12px;
    opacity: var(--acronym-opacity);
    transform: translateY(var(--acronym-y));
    transition: opacity 160ms linear, transform 160ms linear;
  }

  .hero-acronym {
    --acronym-row: 30px;
    --acronym-gap: 7px;
    order: 7;
    grid-template-columns: auto 1fr;
    gap: 12px;
    width: 100%;
    margin-top: 24px;
  }

  .vertical-brand {
    font-size: 30px;
  }

  .acronym-lines {
    gap: var(--acronym-gap);
  }

  .acronym-lines p {
    font-size: 13px;
    line-height: 1.05;
  }

  /* Feinausrichtung mobil: Die Werte im Grundlayout sind fuer die grosse
     Desktop-Schrift gesetzt. Bei 13px sitzt der Text dadurch zu tief.
     Werte hier gemessen an der optischen Mitte der farbigen Buchstaben
     (Glyphenmitte, nicht Boxmitte — x-Hoehen-Buchstaben wie o/e/n/s sind
     rund 24px hoch, Oberlaengen wie W/l/k rund 30px). */
  .acronym-lines p:nth-child(1) { transform: translateY(1.5px); }
  .acronym-lines p:nth-child(2) { transform: translateY(4.5px); }
  .acronym-lines p:nth-child(3) { transform: translateY(0); }
  .acronym-lines p:nth-child(4) { transform: translateY(1px); }
  .acronym-lines p:nth-child(5) { transform: translateY(3px); }
  .acronym-lines p:nth-child(6) { transform: translateY(3px); }
  .acronym-lines p:nth-child(7) { transform: translateY(0); }
  .acronym-lines p:nth-child(8) { transform: translateY(3.5px); }
  .acronym-lines p:nth-child(9) { transform: translateY(3.5px); }

  .acronym-lines strong {
    width: 23px;
    height: 23px;
    font-size: 12px;
  }

  .scroll-cue {
    bottom: -22px;
    font-size: 11px;
  }

  .scroll-cue::before {
    width: 16px;
    height: 24px;
    margin-bottom: 7px;
  }

  .scroll-cue::after {
    height: 34px;
  }

  .button {
    width: auto;
    min-width: 0;
    min-height: 36px;
    flex: 1 1 0;
    padding: 0 8px;
    font-size: 11.5px;
    white-space: nowrap;
  }

  .journey-steps,
  .offer-grid,
  .values-band {
    grid-template-columns: 1fr;
  }

  .journey-step + .journey-step,
  .journey-step:nth-child(n + 3) {
    border-left: 0;
    border-top: 1px dashed rgba(92, 153, 190, 0.38);
  }

  .offer-card + .offer-card,
  .offer-card:nth-child(n + 3),
  .value-item + .value-item,
  .value-item:nth-child(n + 3) {
    border-left: 0;
    border-top: 1px solid rgba(20, 140, 220, 0.18);
  }

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

  .simone-copy h2 {
    font-size: 58px;
  }

  .value-item {
    padding: 18px 0;
  }

  .meaning-card {
    gap: 12px;
  }

  .wolkenlos-map {
    min-height: auto;
    padding: 14px 0 28px;
    gap: 12px;
  }

  .wolkenlos-map::before,
  .wolkenlos-map::after {
    display: none;
  }

  .map-center {
    width: min(72vw, 230px);
    height: min(72vw, 230px);
    min-height: 0;
    border-radius: 999px;
    font-size: min(36px, 11vw);
  }

  .map-node {
    position: relative;
    inset: auto;
    width: min(42vw, 124px);
    height: min(42vw, 124px);
    min-height: 0;
    border-radius: 999px;
    animation: none;
  }

  .map-node-strong {
    left: auto;
    transform: none;
  }
}

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

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

/* V7 multi-page content */
.v7-page {
  background:
    radial-gradient(circle at 80% 12%, rgba(11, 146, 220, 0.14), transparent 32%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 52%);
}

.v7-page .page-hero {
  position: relative;
  overflow: hidden;
  min-height: min(620px, calc(100svh - 80px));
  padding: clamp(70px, 10vw, 132px) max(18px, calc((100vw - var(--max)) / 2)) clamp(54px, 7vw, 90px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  border-bottom: 1px solid rgba(20, 140, 220, 0.16);
}

.v7-page .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.76) 42%, rgba(255,255,255,0.16) 100%),
    url("assets-v6/sky-room-hero-clear.webp") center / cover no-repeat;
}

.v7-page .page-hero > * {
  position: relative;
  z-index: 1;
}

.v7-page .page-hero .hero-copy {
  width: min(720px, 100%);
}

.v7-page .doc-hero {
  margin: 0;
}

.v7-page h1.doc-hero,
.v7-page .page-hero .doc-hero:first-child {
  color: var(--sky);
  font-family: var(--font-display);
  font-size: clamp(46px, 6vw, 78px);
  font-weight: 700;
  line-height: 1.03;
}

.v7-page .page-hero p.doc-hero {
  max-width: 720px;
  margin-top: 14px;
  color: #1f3e58;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 850;
  line-height: 1.28;
}

.v7-page .note-line {
  color: var(--mint);
  font-weight: 850;
}

.v7-page .primary-action,
.v7-page .secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  padding: 0 24px;
  font-size: 15px;
  font-weight: 950;
  text-decoration: none;
}

.v7-page .primary-action {
  background: var(--sky);
  color: #fff;
  box-shadow: 0 16px 34px rgba(11, 146, 220, 0.24);
}

.v7-page .secondary-action {
  border-color: rgba(11, 146, 220, 0.52);
  background: rgba(255, 255, 255, 0.74);
  color: var(--sky-dark);
}

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

.v7-page .hero-media {
  min-height: 340px;
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 52%, rgba(255,255,255,0.06), rgba(255,255,255,0.56) 64%),
    url("assets-v6/sky-room-hero.webp") center / cover no-repeat;
  opacity: 0.9;
  mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 78%, transparent 100%);
}

.v7-page.page-kurse .page-hero::before {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.76) 42%, rgba(255,255,255,0.12) 100%),
    url("assets/kursangebot-staerke-balance.webp") 74% center / cover no-repeat;
}

.v7-page.page-kurse .page-hero p.doc-hero {
  font-family: var(--font-display);
}

.v7-page.page-kurse .page-hero .course-hero-label {
  margin: 0 0 18px;
  color: var(--sky);
  font-family: var(--font-display);
  font-size: clamp(28px, 2.45vw, 38.42px);
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.v7-page.page-kurse .page-hero h1.course-hero-title {
  max-width: 700px;
  margin: 0;
  color: #76bd59;
  font-size: clamp(27px, 2.52vw, 30.5px);
  line-height: 1.04;
}

.v7-page.page-kurse .page-hero .course-hero-methods {
  max-width: 700px;
  margin: 22px 0 0;
  color: #3f4850;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.34vw, 28.39px);
  font-weight: 700;
  line-height: 1.22;
}

.v7-page.page-kurse .page-hero .course-hero-methods span {
  display: block;
}

@media (min-width: 761px) {
  /* Ab Tablet/Desktop keine Worttrennung in der Rahmenbedingungen-Ueberschrift:
     der Trennvorschlag (&shy;) im HTML soll ausschliesslich mobil greifen. */
  .v7-page.page-rahmen h1.doc-hero,
  .v7-page.page-rahmen .page-hero .doc-hero:first-child {
    hyphens: none;
  }

  .v7-page.page-kurse .page-hero .course-hero-methods span {
    white-space: nowrap;
  }
}

.v7-page.page-kurse .page-hero .note-line {
  margin-top: 20px;
  color: #3f4850;
  font-size: clamp(17px, 1.73vw, 21px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.25;
}

.v7-page.page-kurse .page-hero .course-hero-outcome {
  margin-top: 18px;
  color: #9b9d9c;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  line-height: 1.38;
}

@media (max-width: 760px) {
  .v7-page.page-kurse .page-hero .course-hero-label {
    font-size: clamp(18px, 5.5vw, 22px);
  }

  .v7-page.page-kurse .page-hero .course-hero-methods {
    font-size: clamp(18px, 5.5vw, 24px);
  }

}

.v7-page.page-bausteine .page-hero::before {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.76) 42%, rgba(255,255,255,0.12) 100%),
    url("assets/methodische-zugaenge-fantasiereise.webp") 74% center / cover no-repeat;
}

.v7-page.page-workshops .page-hero::before {
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,0.88) 0%,
      rgba(255,255,255,0.56) 42%,
      rgba(255,255,255,0.04) 76%,
      rgba(255,255,255,0) 100%
    ),
    url("assets/besondere-workshops.webp") 74% 42% / cover no-repeat;
  filter: contrast(1.12) saturate(1.06);
}

.v7-page.page-einzelbegleitung .page-hero::before {
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,0.78) 0%,
      rgba(255,255,255,0.52) 22%,
      rgba(255,255,255,0.18) 34%,
      rgba(255,255,255,0.04) 45%,
      rgba(255,255,255,0) 56%
    ),
    url("assets/hero-einzelbegleitung-branch-stones-contrast.webp") center 74% / cover no-repeat;
  filter: none;
}

.v7-page.page-kontakt .page-hero::before {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.76) 42%, rgba(255,255,255,0.12) 100%),
    url("assets/hero-kontakt-butterflies.webp") center / cover no-repeat;
}

.v7-page.page-rahmen .page-hero::before,
.v7-page.page-datenschutz .page-hero::before,
.v7-page.page-impressum .page-hero::before {
  background:
    linear-gradient(135deg, rgba(247, 252, 255, 0.98) 0%, rgba(232, 246, 255, 0.92) 100%);
}

.v7-page.page-ueber-mich .page-hero::before {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.78) 42%, rgba(255,255,255,0.18) 100%),
    url("assets/hero-ueber-mich-clean.webp") center / cover no-repeat;
}

.v7-page.page-kurse .hero-media {
  display: none;
}

.v7-page.page-bausteine .hero-media {
  display: none;
}

.v7-page.page-workshops .hero-media {
  display: none;
}

.v7-page.page-einzelbegleitung .hero-media {
  display: none;
}

.v7-page.page-kontakt .hero-media {
  display: none;
}

.v7-page.page-rahmen .hero-media,
.v7-page.page-datenschutz .hero-media,
.v7-page.page-impressum .hero-media {
  display: none;
}

.v7-page.page-ueber-mich .hero-media {
  display: none;
}

.v7-page.page-ueber-mich .page-hero .eyebrow {
  color: var(--pink);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.v7-page.page-ueber-mich .page-hero h1.doc-hero {
  margin-top: 18px;
  margin-left: -0.06em;
}

.v7-page .quick-links,
.v7-page .symbol-links,
.v7-source-content .quick-links,
.v7-source-content .symbol-links {
  width: min(var(--max), calc(100% - 36px));
  margin: clamp(28px, 5vw, 70px) auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  border-top: 1px solid rgba(20, 140, 220, 0.16);
  border-bottom: 1px solid rgba(20, 140, 220, 0.16);
}

.v7-page .teaser-card,
.v7-page .symbol-card,
.v7-source-content .teaser-card,
.v7-source-content .symbol-card {
  min-height: 140px;
  padding: 26px 24px;
  color: #244056;
  text-decoration: none;
  border-left: 1px solid rgba(20, 140, 220, 0.16);
}

.v7-page .teaser-card:first-child,
.v7-page .symbol-card:first-child,
.v7-source-content .teaser-card:first-child,
.v7-source-content .symbol-card:first-child {
  border-left: 0;
}

.v7-page .teaser-card span,
.v7-page .symbol-card span,
.v7-source-content .teaser-card span,
.v7-source-content .symbol-card span {
  display: block;
  color: var(--pink);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.v7-page .teaser-card strong,
.v7-source-content .teaser-card strong {
  display: block;
  margin-top: 8px;
  color: #132b42;
  font-size: clamp(20px, 2.1vw, 27px);
  line-height: 1.12;
}

.v7-page .symbol-icon,
.v7-source-content .symbol-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--sky);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.v7-page .symbol-sky,
.v7-source-content .symbol-sky { color: var(--sky); }
.v7-page .symbol-blue,
.v7-source-content .symbol-blue { color: var(--blue); }
.v7-page .symbol-pink,
.v7-source-content .symbol-pink { color: var(--pink); }
.v7-page .symbol-yellow,
.v7-source-content .symbol-yellow { color: var(--yellow); }
.v7-page .symbol-mint,
.v7-source-content .symbol-mint { color: var(--mint); }
.v7-page .symbol-rose,
.v7-source-content .symbol-rose { color: #e75297; }

.v7-page .symbol-card span,
.v7-source-content .symbol-card span {
  color: #132b42;
  font-size: clamp(17px, 1.7vw, 20px);
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: none;
}

.v7-page .page-content,
.v7-source-content .page-content {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto clamp(70px, 10vw, 132px);
}

.v7-page .content-section,
.v7-source-content .content-section {
  padding: clamp(34px, 6vw, 72px) 0;
  border-top: 1px solid rgba(20, 140, 220, 0.14);
}

.v7-page .section-heading,
.v7-source-content .section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.v7-page .section-rule,
.v7-source-content .section-rule {
  width: 52px;
  height: 6px;
  border-radius: 999px;
  background: var(--sky);
}

.v7-page .section-heading h2,
.v7-source-content .section-heading h2 {
  margin: 0;
  color: #132b42;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.18;
}

.v7-page .copy-flow,
.v7-source-content .copy-flow {
  display: grid;
  gap: 14px;
}

.v7-page .textbaustein-image {
  width: min(620px, 100%);
  margin: clamp(18px, 4vw, 34px) auto;
}

.v7-page .text-image-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 38%);
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
  margin: clamp(24px, 4.2vw, 46px) 0;
}

.v7-page .text-image-flow.image-left {
  grid-template-columns: minmax(260px, 38%) minmax(0, 1fr);
}

.v7-page .text-image-copy {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.v7-page .text-image-flow .doc-body,
.v7-page .text-image-flow .textbaustein-image {
  margin: 0;
}

.v7-page .text-image-flow .textbaustein-image {
  width: 100%;
  align-self: start;
}

.v7-page .text-image-flow .textbaustein-image img {
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.v7-page .snowflake-image img {
  box-shadow: none;
}

@media (max-width: 760px) {
  .v7-page .text-image-flow,
  .v7-page .text-image-flow.image-left {
    grid-template-columns: 1fr;
    gap: 18px;
    margin: clamp(22px, 6vw, 34px) 0;
  }

  .v7-page .text-image-flow.image-left .text-image-copy {
    order: 1;
  }

  .v7-page .text-image-flow.image-left .textbaustein-image {
    order: 2;
  }

  .v7-page .text-image-flow .textbaustein-image {
    width: min(420px, 100%);
    margin: 0 auto;
  }
}

.v7-page .doc-body,
.v7-source-content .doc-body {
  margin: 0;
  color: #27465d;
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.65;
}

.v7-page .short-line,
.v7-source-content .short-line {
  color: #132b42;
  font-weight: 950;
}

.v7-page .notice-section {
  margin: clamp(28px, 5vw, 48px) 0;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(20, 140, 220, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(247, 252, 255, 0.72));
  box-shadow: 0 14px 34px rgba(21, 75, 120, 0.055);
}

.v7-page .notice-section .section-heading {
  gap: 10px;
  margin-bottom: 14px;
}

.v7-page .notice-section .section-rule {
  width: 34px;
  height: 4px;
}

.v7-page .notice-section .section-heading h2 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 950;
  line-height: 1.25;
}

.v7-page .notice-section .copy-flow {
  gap: 10px;
}

.v7-page .notice-section .doc-body {
  font-size: 16px;
  line-height: 1.62;
}

.v7-page .notice-section .copy-flow > .short-line:first-child {
  display: none;
}

.v7-page.legal-page .page-content {
  width: min(1040px, calc(100% - 36px));
}

.v7-page.legal-page .page-hero {
  min-height: 420px;
}

.v7-page.legal-page .page-hero .doc-body {
  max-width: 760px;
  margin-top: 16px;
  color: #1f3e58;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 850;
  line-height: 1.34;
}

.legal-content .legal-section {
  padding-block: clamp(26px, 4.5vw, 54px);
}

.legal-content .copy-flow,
.legal-content .copy-flow > *,
.legal-content .legal-list,
.legal-content .legal-list li {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.legal-content a {
  color: var(--sky-dark);
  font-weight: 850;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.legal-content a:hover,
.legal-content a:focus-visible {
  color: var(--pink);
}

.legal-content .legal-list {
  margin: 0;
  padding-left: 1.25em;
  color: #27465d;
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.62;
}

.legal-content .legal-list li + li {
  margin-top: 0.28em;
}

.v7-page .has-lines,
.v7-source-content .has-lines {
  white-space: pre-line;
}

.about-offers .teaser-card {
  position: relative;
}

.about-offers .teaser-card::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: var(--sky);
  opacity: 0.42;
  transform: translateY(-50%);
}

.about-content {
  width: min(1040px, calc(100% - 36px));
}

.qualification-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.qualification-list li {
  position: relative;
  margin: 0;
  padding-left: 28px;
  color: #27465d;
  font-size: clamp(17px, 1.7vw, 20px);
  font-weight: 850;
  line-height: 1.45;
}

.qualification-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 14px;
  height: 3px;
  border-radius: 999px;
  background: var(--sky);
}

.bausteine-tabs {
  width: min(1120px, calc(100% - 36px));
}

.timeline-intro {
  display: grid;
  gap: 12px;
  margin: 0 0 clamp(26px, 4vw, 46px);
}

.timeline-intro h2 {
  margin: 0;
  color: #132b42;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.12;
}

.timeline-shell {
  display: grid;
  grid-template-columns: minmax(250px, 320px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.timeline-tablist {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 6px;
  padding: 12px 0 12px 20px;
}

.timeline-tablist::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 30px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(20, 150, 220, 0.24), rgba(226, 47, 145, 0.18), rgba(251, 182, 24, 0.22));
}

.timeline-tab {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 58px;
  border: 0;
  border-radius: 8px;
  padding: 8px 12px 8px 0;
  color: #27465d;
  background: transparent;
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.18;
  text-align: left;
  cursor: pointer;
}

.timeline-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-left: -2px;
  border-radius: 999px;
  color: var(--sky);
  background: #fff;
  border: 2px solid rgba(20, 150, 220, 0.3);
  box-shadow: 0 8px 20px rgba(20, 150, 220, 0.1);
}

.timeline-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.timeline-emoji {
  display: block;
  font-size: 24px;
  line-height: 1;
}

.timeline-label {
  min-width: 0;
}

.timeline-tab:hover,
.timeline-tab:focus-visible {
  color: #132b42;
  background: rgba(255, 255, 255, 0.7);
  outline: none;
}

.timeline-tab.is-active {
  color: #132b42;
  background: linear-gradient(90deg, rgba(255,255,255,0.95), rgba(232, 247, 255, 0.7));
  box-shadow: 0 16px 36px rgba(20, 110, 180, 0.11);
}

.timeline-tab.is-active .timeline-icon {
  background: #fff;
  border-color: var(--sky);
  box-shadow: 0 0 0 5px rgba(20, 150, 220, 0.1), 0 12px 24px rgba(20, 150, 220, 0.16);
}

.timeline-panels {
  min-width: 0;
}

.bausteine-tabs.is-enhanced .timeline-panels > .content-section {
  display: none;
}

.bausteine-tabs.is-enhanced .timeline-panels > .content-section.is-active {
  display: block;
  animation: timelineFade 260ms ease both;
}

.timeline-panels > .content-section {
  margin: 0;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(20, 140, 220, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.9), rgba(245, 252, 255, 0.72)),
    radial-gradient(circle at 95% 8%, rgba(251, 182, 24, 0.14), transparent 24%);
  box-shadow: 0 28px 70px rgba(21, 75, 120, 0.1);
}

.timeline-panels > .content-section + .content-section {
  margin-top: 18px;
}

.timeline-panels .section-heading {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.timeline-panels .section-rule {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, #fff 0 24%, transparent 25%),
    var(--sky);
}

.timeline-panels .section-heading h2 {
  font-size: 24px;
}

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

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

.bausteine-tabs.is-accordion {
  width: min(var(--max), calc(100% - 36px));
}

.bausteine-tabs.is-accordion .timeline-shell {
  display: block;
}

.accordion-list {
  display: grid;
  gap: 12px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.accordion-item {
  overflow: hidden;
  border: 1px solid rgba(20, 140, 220, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 10px 26px rgba(21, 75, 120, 0.035);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.accordion-item.is-active {
  border-color: rgba(20, 150, 220, 0.24);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.9), rgba(247, 252, 255, 0.78)),
    radial-gradient(circle at 98% 8%, rgba(251, 182, 24, 0.08), transparent 30%);
  box-shadow: 0 24px 60px rgba(21, 75, 120, 0.09);
}

.bausteine-tabs.is-accordion .timeline-tab {
  width: 100%;
  min-height: 68px;
  grid-template-columns: 54px minmax(0, 1fr) 28px;
  gap: 14px;
  padding: 13px 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.bausteine-tabs.is-accordion .timeline-tab::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: #148fd3;
  background: rgba(20, 150, 220, 0.08);
  font-size: 22px;
  font-weight: 850;
  line-height: 1;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.bausteine-tabs.is-accordion .timeline-tab.is-active::after {
  content: "−";
  color: #fff;
  background: var(--sky);
  transform: rotate(180deg);
}

.bausteine-tabs.is-accordion .timeline-icon {
  width: 40px;
  height: 40px;
  margin-left: 0;
  border-color: rgba(20, 150, 220, 0.22);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 18px rgba(20, 150, 220, 0.07);
}

.bausteine-tabs.is-accordion .timeline-icon img {
  width: 23px;
  height: 23px;
}

.bausteine-tabs.is-accordion .timeline-emoji {
  font-size: 25px;
}

.bausteine-tabs.is-accordion .timeline-label {
  color: #132b42;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.15;
}

.bausteine-tabs.is-accordion .accordion-panel {
  margin: 0;
  padding: clamp(44px, 5vw, 64px) clamp(22px, 4vw, 52px) clamp(34px, 4vw, 52px) clamp(74px, 7vw, 106px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.bausteine-tabs.is-accordion .accordion-panel.is-active {
  animation: timelineFade 240ms ease both;
}

.bausteine-tabs.is-accordion .accordion-panel .section-heading {
  display: none;
}

.bausteine-tabs.is-accordion .accordion-panel .section-rule {
  display: none;
}

.bausteine-tabs.is-accordion .accordion-panel .section-heading h2 {
  color: #132b42;
  font-size: 24px;
  line-height: 1.18;
}

.bausteine-tabs.is-accordion .copy-flow {
  gap: clamp(16px, 2vw, 24px);
}

.bausteine-tabs.is-accordion #accordion-panel-1 .copy-flow {
  transform: translateY(-37px);
  margin-bottom: -37px;
}

.bausteine-tabs.is-accordion .doc-body {
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.68;
}

.bausteine-tabs.is-accordion .copy-flow > .short-line:first-child {
  display: none;
}

.bausteine-tabs .method-note {
  width: min(980px, 100%);
  margin: clamp(28px, 5vw, 48px) auto;
}

.bausteine-tabs.is-accordion .method-note .copy-flow {
  gap: 10px;
}

.bausteine-tabs.is-accordion .method-note .doc-body {
  font-size: 16px;
  line-height: 1.62;
}

.v7-page .contact-form {
  width: min(760px, 100%);
  display: grid;
  gap: 14px;
}

.v7-page .contact-form label {
  display: grid;
  gap: 7px;
  color: #244056;
  font-size: 14px;
  font-weight: 850;
}

.v7-page .contact-form input,
.v7-page .contact-form textarea {
  min-height: 48px;
  border: 1px solid rgba(11, 146, 220, 0.32);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: #132b42;
  font: inherit;
  background: rgba(255, 255, 255, 0.82);
}

.site-footer.v7-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: none;
  gap: 22px;
  margin: 0;
  padding: 42px 18px 24px;
  background:
    radial-gradient(circle at 12% 0%, rgba(11, 146, 220, 0.06), transparent 28%),
    linear-gradient(180deg, #f7fbff 0%, #edf5ff 100%);
  border-top: 1px solid rgba(20, 140, 220, 0.16);
  text-align: center;
}

.v7-footer .footer-affirmation p {
  margin: 0;
  color: #132b42;
  font-family: var(--font-body);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 850;
  line-height: 1.22;
  text-align: center;
}

.v7-footer .footer-affirmation strong {
  color: var(--sky);
}

.v7-footer .footer-quote {
  max-width: 1180px;
  margin: 0 auto 18px;
  color: #274258;
  font-family: var(--font-body);
  font-size: clamp(22px, 2.15vw, 34px);
  font-weight: 900;
  line-height: 1.18;
  text-wrap: balance;
}

.v7-footer .footer-mantra {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.42em;
  flex-wrap: wrap;
}

.v7-footer .footer-wordmark {
  display: inline-block;
  width: auto;
  height: clamp(28px, 3.1vw, 42px);
  max-width: min(260px, 62vw);
  object-fit: contain;
  /* 2px tiefer gesetzt (Feinausrichtung 18.08.2026) */
  transform: translateY(-0.1em);
  vertical-align: -0.18em;
}

.v7-footer > img {
  width: min(210px, 52vw);
  height: auto;
}

.v7-footer .footer-directory {
  width: min(1240px, calc(100% - 36px));
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: clamp(22px, 5vw, 72px);
  margin-top: 4px;
  padding: 26px 0 28px;
  border-top: 1px solid rgba(20, 140, 220, 0.16);
  border-bottom: 1px solid rgba(20, 140, 220, 0.16);
  text-align: left;
}

.v7-footer .footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.v7-footer .footer-column h2 {
  margin: 0 0 4px;
  color: #132b42;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 950;
  line-height: 1.1;
}

.v7-footer .footer-column a,
.v7-footer .footer-column span {
  color: #647386;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
  text-decoration: none;
}

.v7-footer .footer-column a {
  transition: color 180ms ease, transform 180ms ease;
}

.v7-footer .footer-column a:hover,
.v7-footer .footer-column a:focus-visible {
  color: var(--sky-dark);
  transform: translateX(3px);
}

.v7-footer .footer-credit {
  display: grid;
  gap: 5px;
  color: #647386;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.v7-footer .footer-credit p {
  margin: 0;
}

.v7-footer .footer-credit a {
  color: #1f78f2;
}

.v7-footer .footer-credit a {
  font-weight: 850;
  text-decoration: none;
}

@media (max-width: 760px) {
  .v7-page .page-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 42px 18px 54px;
  }

  .v7-page .page-hero::before {
    background:
      linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.58)),
      url("assets-v6/sky-room-hero-clear.webp") 68% center / auto 112% no-repeat;
  }

  .v7-page.page-ueber-mich .page-hero::before {
    background:
      linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,255,255,0.64)),
      url("assets/hero-ueber-mich-clean.webp") center / cover no-repeat;
  }

  .v7-page.page-kontakt .page-hero::before {
    background:
      linear-gradient(180deg, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.42) 48%, rgba(255,255,255,0.06) 100%),
      url("assets/hero-kontakt-butterflies.webp") 62% 42% / cover no-repeat;
  }

  .v7-page.page-rahmen .page-hero::before,
  .v7-page.page-datenschutz .page-hero::before,
  .v7-page.page-impressum .page-hero::before {
    background:
      linear-gradient(135deg, rgba(247, 252, 255, 0.98) 0%, rgba(232, 246, 255, 0.92) 100%);
  }

  .v7-page h1.doc-hero,
  .v7-page .page-hero .doc-hero:first-child {
    font-size: clamp(38px, 12vw, 52px);
  }

  .v7-page.legal-page .page-hero {
    min-height: auto;
    padding-top: clamp(38px, 10vw, 58px);
    padding-bottom: clamp(42px, 12vw, 70px);
  }

  .v7-page.legal-page h1.doc-hero,
  .v7-page.legal-page .page-hero .doc-hero:first-child,
  .v7-page.page-rahmen h1.doc-hero,
  .v7-page.page-rahmen .page-hero .doc-hero:first-child {
    max-width: 100%;
    font-size: clamp(32px, 9.8vw, 46px);
    line-height: 1.08;
    hyphens: manual;
    overflow-wrap: normal;
  }

  .v7-page.page-kurse .page-hero .note-line,
  .v7-page.page-kurse .page-hero .course-hero-outcome {
    color: #1f3e58;
  }

  .v7-page.page-kurse .page-hero .course-hero-label {
    font-size: clamp(28px, 7.7vw, 30px);
  }

  .v7-page.legal-page .page-hero .doc-body {
    font-size: clamp(17px, 5vw, 22px);
  }

  .v7-page.page-ueber-mich .page-hero .eyebrow {
    font-size: 12px;
    letter-spacing: 0.1em;
    line-height: 1.2;
  }

  .v7-page.page-ueber-mich .page-hero h1.doc-hero {
    margin-top: 18px;
  }

  .v7-page .hero-media {
    min-height: 240px;
  }

  .v7-page.page-ueber-mich .hero-media {
    display: none;
  }

  .bausteine-tabs {
    width: min(100% - 28px, 680px);
  }

  .timeline-shell {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .timeline-tablist {
    position: relative;
    top: auto;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 4px 2px 14px;
    scroll-snap-type: x proximity;
  }

  .timeline-tablist::before {
    display: none;
  }

  .timeline-tab {
    flex: 0 0 min(230px, 74vw);
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 58px;
    padding: 10px 14px;
    border: 1px solid rgba(20, 140, 220, 0.16);
    background: rgba(255, 255, 255, 0.72);
    scroll-snap-align: start;
  }

  .timeline-icon {
    margin-left: 0;
    width: 34px;
    height: 34px;
  }

  .timeline-icon img {
    width: 20px;
    height: 20px;
  }

  .timeline-panels > .content-section {
    padding: 24px 18px;
  }

  .timeline-panels .section-heading {
    grid-template-columns: 1fr;
  }

  .bausteine-tabs.is-accordion {
    width: min(100% - 36px, 680px);
  }

  .bausteine-tabs.is-accordion .timeline-shell {
    display: block;
  }

  .bausteine-tabs.is-accordion .accordion-list {
    gap: 10px;
    padding: 0;
  }

  .bausteine-tabs.is-accordion .timeline-tab {
    display: grid;
    flex: none;
    grid-template-columns: 44px minmax(0, 1fr) 28px;
    width: 100%;
    min-height: 64px;
    padding: 11px 12px;
    scroll-snap-align: unset;
  }

  .bausteine-tabs.is-accordion .timeline-icon {
    width: 36px;
    height: 36px;
  }

  .bausteine-tabs.is-accordion .timeline-icon img {
    width: 21px;
    height: 21px;
  }

  .bausteine-tabs.is-accordion .timeline-label {
    font-size: 17px;
  }

  .bausteine-tabs.is-accordion .accordion-panel {
    padding: 34px 14px 26px 58px;
  }

  .bausteine-tabs.is-accordion .accordion-panel .section-heading {
    display: none;
  }

  .bausteine-tabs.is-accordion .accordion-panel .section-heading h2 {
    font-size: 23px;
  }

  .bausteine-tabs.is-accordion .doc-body {
    font-size: 16px;
    line-height: 1.62;
  }

  .v7-page .quick-links,
  .v7-page .symbol-links,
  .v7-source-content .quick-links,
  .v7-source-content .symbol-links {
    grid-template-columns: 1fr;
  }

  .v7-page .teaser-card,
  .v7-page .symbol-card,
  .v7-source-content .teaser-card,
  .v7-source-content .symbol-card {
    border-left: 0;
    border-top: 1px solid rgba(20, 140, 220, 0.16);
  }

  .v7-page .teaser-card:first-child,
  .v7-page .symbol-card:first-child,
  .v7-source-content .teaser-card:first-child,
  .v7-source-content .symbol-card:first-child {
    border-top: 0;
  }
}

.site-footer.v7-footer,
.site-footer.v7-footer p,
.site-footer.v7-footer span,
.site-footer.v7-footer a,
.site-footer.v7-footer h2 {
  font-family: var(--font-body);
}

.site-footer.v7-footer .footer-directory h2,
.site-footer.v7-footer .footer-directory a,
.site-footer.v7-footer .footer-directory span {
  font-size: 14px;
}

.site-footer.v7-footer .footer-affirmation {
  width: min(100%, 760px);
  display: grid;
  justify-items: center;
}

.site-footer.v7-footer .footer-affirmation p {
  width: 100%;
  color: #132b42;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.22;
  text-align: center;
}

.site-footer.v7-footer > img {
  width: min(210px, 52vw);
}

.site-footer.v7-footer .footer-credit p {
  color: #647386;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.35;
}

.site-footer.v7-footer .footer-credit span {
  font-size: inherit;
}

.site-footer.v7-footer .footer-credit a {
  color: #1f78f2;
}

.site-footer.v7-footer .footer-affirmation p {
  font-family: var(--font-display);
  font-weight: 700;
}

.site-footer.v7-footer .footer-affirmation strong {
  font-family: var(--font-script);
  font-weight: 400;
}

.site-footer.v7-footer .footer-directory {
  width: min(840px, calc(100% - 36px));
  gap: clamp(16px, 3vw, 38px);
}

.site-footer.v7-footer .footer-column a:hover,
.site-footer.v7-footer .footer-column a:focus-visible,
.site-footer.v7-footer .footer-credit a:hover,
.site-footer.v7-footer .footer-credit a:focus-visible {
  color: var(--pink);
}

.back-to-top {
  position: fixed;
  right: clamp(14px, 2.4vw, 28px);
  bottom: clamp(14px, 2.4vw, 28px);
  z-index: 80;
  width: 76px;
  min-height: 76px;
  border: 1px solid rgba(11, 146, 220, 0.28);
  border-radius: 999px;
  padding: 9px 8px 8px;
  color: var(--sky-dark);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(21, 75, 120, 0.16);
  cursor: pointer;
  display: grid;
  place-items: center;
  gap: 2px;
  font-family: var(--font-display);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.96);
  transition: opacity 180ms ease, transform 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  backdrop-filter: blur(14px) saturate(1.18);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  color: var(--pink);
  border-color: rgba(223, 47, 135, 0.38);
  box-shadow: 0 22px 48px rgba(21, 75, 120, 0.2);
  outline: none;
  transform: translateY(-5px) scale(1.02);
}

.back-to-top-butterfly {
  display: block;
  width: 34px;
  height: 34px;
  animation: backToTopFloat 2.4s ease-in-out infinite;
}

.back-to-top svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.back-to-top-wings {
  transform-box: fill-box;
  transform-origin: center;
  animation: backToTopFlap 620ms ease-in-out infinite alternate;
}

.bt-wing-sky {
  fill: var(--sky);
}

.bt-wing-pink {
  fill: var(--pink);
}

.bt-wing-mint {
  fill: var(--mint);
}

.bt-wing-gold {
  fill: var(--gold);
}

.bt-body {
  fill: var(--ink);
}

.bt-antenna {
  fill: none;
  stroke: var(--ink);
  stroke-width: 2.2;
  stroke-linecap: round;
}

.back-to-top-label {
  color: var(--sky-dark);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

@keyframes backToTopFloat {
  0%,
  100% {
    transform: translateY(1px) rotate(-4deg);
  }

  50% {
    transform: translateY(-5px) rotate(4deg);
  }
}

@keyframes backToTopFlap {
  from {
    transform: scaleX(1);
  }

  to {
    transform: scaleX(0.84);
  }
}

@media (prefers-reduced-motion: reduce) {
  .back-to-top-butterfly,
  .back-to-top-wings {
    animation: none;
  }
}

@media (max-width: 760px) {
  .site-footer.v7-footer {
    width: 100%;
    padding: 38px 14px 24px;
    overflow: hidden;
  }

  .site-footer.v7-footer .footer-affirmation,
  .site-footer.v7-footer .footer-directory,
  .site-footer.v7-footer .footer-credit {
    width: min(100%, 340px);
    max-width: 340px;
  }

  .site-footer.v7-footer .footer-directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 18px;
    padding: 22px 0 24px;
  }

  .site-footer.v7-footer .footer-directory {
    width: min(100%, 340px);
  }

  .site-footer.v7-footer .footer-affirmation p {
    font-size: 16px;
  }

  .site-footer.v7-footer > img {
    width: min(190px, 56vw);
  }

  .site-footer.v7-footer .footer-column {
    min-width: 0;
    gap: 8px;
  }

  .site-footer.v7-footer .footer-credit,
  .site-footer.v7-footer .footer-credit p,
  .site-footer.v7-footer .footer-credit a,
  .site-footer.v7-footer .footer-credit span {
    font-size: 13px;
    line-height: 1.35;
  }

  .back-to-top {
    right: 12px;
    bottom: 12px;
    width: 64px;
    min-height: 64px;
    padding: 8px 6px 7px;
  }

  .back-to-top-butterfly {
    width: 29px;
    height: 29px;
  }

  .back-to-top-label {
    font-size: 12px;
  }
}

/* V9 hero responsive overrides copied from the standalone hero prototype. */
@media (max-width: 900px) {
  .hero {
    min-height: calc(100svh + 980px);
  }

  .hero-sticky {
    top: 70px;
    min-height: calc(100svh - 70px);
  }

  .nav {
    min-height: 70px;
  }

  .hero-bg,
  .hero-bg::after {
    background-position: 60% calc(100% + 4px);
    background-size: auto 98%;
  }

  .hero-bg::before {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.78) 48%, rgba(255, 255, 255, 0.24) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.48) 46%, rgba(255, 255, 255, 0.08) 100%);
  }

  .hero-inner {
    min-height: calc(100svh - 70px);
    align-items: start;
    padding-top: 58px;
  }
}

@media (max-width: 640px) {
  .hero {
    /* Mobil ohne Wolken-Scrollanimation: keine kuenstliche Scrollstrecke,
       damit der Uebergang in den naechsten Abschnitt direkt und ruckelfrei ist */
    --acronym-opacity: 1;
    --acronym-y: 0px;
    --cloud-opacity: 1;
    --cloud-reveal-y: 78%;
    min-height: 100svh;
  }

  .hero-sticky {
    position: static;
    top: auto;
  }

  .brand img {
    width: 150px;
  }

  .brand span,
  .nav-note,
  .kicker {
    display: none;
  }

  .hero-bg,
  .hero-bg::after {
    background-position: 70% calc(100% + 8px);
    background-size: auto 108%;
  }

  .hero-bg::before {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 42%, rgba(255, 255, 255, 0.16) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0.36) 44%, rgba(255, 255, 255, 0.05) 100%);
  }

  .hero-inner {
    width: min(100% - 28px, var(--max));
    min-height: calc(100svh - 70px);
    padding: 12px 0 70px;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
  }

  .hero h1 {
    max-width: 330px;
    align-self: flex-start;
    color: #102943;
    font-size: clamp(27px, 7.2vw, 31px);
    line-height: 1.06;
    text-align: left;
  }

  .hero-welcome {
    max-width: min(100%, 560px);
    margin-top: 34px;
    align-self: flex-start;
    color: #102943;
    font-size: clamp(17px, 4.5vw, 21px);
    font-weight: 950;
    line-height: 1.25;
    text-align: left;
    white-space: normal;
  }

  .hero-line {
    order: 8;
    display: grid;
    grid-template-columns: repeat(3, max-content);
    justify-content: center;
    column-gap: 18px;
    margin-top: 20px;
    align-self: center;
    font-size: clamp(11.5px, 3.2vw, 13px);
    line-height: 1.16;
  }

  .hero-line span {
    white-space: nowrap;
  }

  .hero-line span + span::before {
    content: "";
  }

  .hero-text {
    order: 9;
    max-width: min(100%, 560px);
    /* linke Kante genau wie .hero-welcome (kein Einzug) */
    margin: 20px 0 0;
    padding-left: 0;
    align-self: flex-start;
    text-align: left;
    /* exakt wie .hero-welcome: gleiche Farbe und Zeilenhoehe */
    color: #102943;
    font-size: clamp(17px, 4.5vw, 21px);
    line-height: 1.25;
    opacity: var(--acronym-opacity);
    transform: translateY(var(--acronym-y));
    transition: opacity 160ms linear, transform 160ms linear;
  }

  .hero-actions {
    order: 10;
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 12px;
    opacity: var(--acronym-opacity);
    transform: translateY(var(--acronym-y));
    transition: opacity 160ms linear, transform 160ms linear;
  }

  .button {
    flex: 1;
    min-height: 44px;
    font-size: 12.5px;
    padding: 0 10px;
  }

  .hero-acronym {
    --acronym-row: 32px;
    --acronym-gap: 7px;
    order: 7;
    grid-template-columns: auto 1fr;
    gap: 12px;
    width: 100%;
    margin-top: 24px;
  }

  .vertical-brand {
    font-size: 42px;
  }

  .acronym-lines {
    gap: var(--acronym-gap);
  }

  .acronym-lines p {
    gap: 6px;
    font-size: 13px;
  }
}

/* Final footer composition with the new Wolkenlos wordmark. */
.site-footer.v7-footer .footer-affirmation {
  width: min(100%, 1240px);
  display: grid;
  justify-items: center;
  gap: 0;
}

.site-footer.v7-footer .footer-quote {
  width: min(100%, 1180px);
  margin: 0 auto 18px;
  color: #274258;
  font-family: var(--font-body);
  font-size: clamp(22px, 2.15vw, 34px);
  font-weight: 900;
  line-height: 1.18;
  text-align: center;
  text-wrap: balance;
}

.site-footer.v7-footer .footer-mantra {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.42em;
  flex-wrap: wrap;
  width: 100%;
  margin: 0;
  color: #132b42;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.65vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.site-footer.v7-footer .footer-wordmark {
  display: inline-block;
  width: auto;
  height: clamp(28px, 3.1vw, 42px);
  max-width: min(260px, 62vw);
  object-fit: contain;
  /* 2px tiefer gesetzt (Feinausrichtung 18.08.2026) */
  transform: translateY(-0.1em);
  vertical-align: -0.18em;
}

.site-footer.v7-footer > img {
  display: none;
}

@media (max-width: 760px) {
  .site-footer.v7-footer .footer-affirmation {
    width: min(100%, 520px);
    max-width: 520px;
  }

  .site-footer.v7-footer .footer-quote {
    margin-bottom: 16px;
    font-size: clamp(19px, 5.4vw, 26px);
  }

  .site-footer.v7-footer .footer-mantra {
    font-size: clamp(18px, 5.2vw, 24px);
  }

  .site-footer.v7-footer .footer-wordmark {
    height: clamp(23px, 7vw, 31px);
  }
}

.hero-line span + span::before {
  content: "" !important;
}

/* Secure contact form */
.v7-page .contact-form {
  position: relative;
  width: min(860px, 100%);
  gap: clamp(16px, 2vw, 22px);
  margin-top: clamp(12px, 3vw, 28px);
  border: 1px solid rgba(11, 146, 220, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 54px rgba(18, 78, 116, 0.1);
  padding: clamp(24px, 4vw, 42px);
}

.contact-form-heading {
  display: grid;
  gap: 6px;
}

.contact-form-heading h2,
.contact-form-heading p {
  margin: 0;
}

.contact-form-heading h2 {
  color: #173044;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.15;
}

.contact-form-heading p,
.contact-form-note {
  color: var(--muted);
  font-size: 14px;
  font-weight: 550;
  line-height: 1.55;
}

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

.v7-page .contact-form label {
  color: #244056;
  font-size: 15px;
  font-weight: 800;
}

.v7-page .contact-form input,
.v7-page .contact-form select,
.v7-page .contact-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(74, 133, 171, 0.4);
  border-radius: 10px;
  background: #fff;
  color: #132b42;
  font: inherit;
  font-weight: 500;
  padding: 12px 14px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.v7-page .contact-form textarea {
  min-height: 170px;
  resize: vertical;
}

.v7-page .contact-form input:focus,
.v7-page .contact-form select:focus,
.v7-page .contact-form textarea:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 4px rgba(11, 146, 220, 0.12);
}

.contact-form.was-validated input:invalid,
.contact-form.was-validated select:invalid,
.contact-form.was-validated textarea:invalid,
.contact-form [aria-invalid="true"] {
  border-color: #c12f5f;
  background: #fff9fb;
  box-shadow: 0 0 0 3px rgba(193, 47, 95, 0.1);
}

.contact-form-note {
  margin: -2px 0 0;
  border-left: 3px solid rgba(11, 146, 220, 0.42);
  padding-left: 12px;
}

.v7-page .contact-form .contact-form-consent {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.v7-page .contact-form .contact-form-consent input {
  width: 20px;
  min-height: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--sky);
}

.contact-form-consent a {
  color: var(--sky-dark);
  text-underline-offset: 0.18em;
}

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

.contact-form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-form-actions .primary-action {
  min-width: 190px;
  cursor: pointer;
}

.contact-form-actions .primary-action:disabled {
  cursor: wait;
  opacity: 0.7;
}

.contact-form-status {
  flex: 1;
  min-width: min(280px, 100%);
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.contact-form-status.is-success {
  color: #23754a;
}

.contact-form-status.is-error {
  color: #a82951;
}

/* Consent banner: no optional service is loaded before the stored choice. */
.cookie-banner {
  position: fixed;
  z-index: 1400;
  left: 50%;
  bottom: max(18px, env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(22px, 4vw, 48px);
  width: min(1180px, calc(100% - 32px));
  border: 1px solid rgba(88, 146, 182, 0.28);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 26px 80px rgba(13, 52, 78, 0.22);
  padding: clamp(20px, 3vw, 30px);
  transform: translateX(-50%);
  animation: cookie-banner-in 240ms ease-out both;
}

.cookie-banner.is-closing {
  animation: cookie-banner-out 200ms ease-in both;
}

.cookie-banner-copy {
  display: grid;
  gap: 7px;
}

.cookie-banner-kicker {
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cookie-banner h2,
.cookie-banner p {
  margin: 0;
}

.cookie-banner h2 {
  color: #173044;
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.2;
}

.cookie-banner p {
  max-width: 74ch;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.cookie-banner a {
  width: fit-content;
  color: var(--sky-dark);
  font-size: 13px;
  font-weight: 800;
  text-underline-offset: 0.2em;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-banner-actions button,
.cookie-settings-button {
  min-height: 44px;
  border-radius: 10px;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.cookie-banner-actions button {
  border: 1px solid rgba(11, 146, 220, 0.34);
  padding: 0 18px;
}

.cookie-choice-secondary {
  background: #fff;
  color: var(--sky-dark);
}

.cookie-choice-primary {
  border-color: transparent !important;
  background: var(--sky);
  color: #fff;
  box-shadow: 0 12px 26px rgba(11, 146, 220, 0.2);
}

.cookie-banner-actions button:hover,
.cookie-banner-actions button:focus-visible,
.cookie-settings-button:hover,
.cookie-settings-button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(11, 146, 220, 0.13);
}

.cookie-settings-button {
  min-height: auto;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: #1f78f2;
  padding: 2px 0;
}

@keyframes cookie-banner-in {
  from {
    opacity: 0;
    transform: translate(-50%, 18px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes cookie-banner-out {
  from {
    opacity: 1;
    transform: translate(-50%, 0);
  }

  to {
    opacity: 0;
    transform: translate(-50%, 14px);
  }
}

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

  .v7-page .contact-form {
    border-radius: 14px;
    padding: 22px 18px;
  }

  .contact-form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-form-actions .primary-action {
    width: 100%;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 18px;
    width: min(100% - 20px, 560px);
    border-radius: 14px;
    padding: 20px 18px;
  }

  .cookie-banner-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-banner-actions button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-banner,
  .cookie-banner.is-closing {
    animation: none;
  }
}

/* Einheitliche Emoji-Ersatzbilder (statt geraeteabhaengiger Emoji-Schrift) */
.emoji-bild {
  display: inline-block;
  width: auto;
  height: 1.05em;
  vertical-align: -0.15em;
}

/* =====================================================================
   Footer-Bildmarke: Feinausrichtung fuer grosse Bildschirme (19.08.2026)
   Ab 1024 px sass die Bildmarke messbar 1,5 px zu tief gegenueber der
   Schriftlinie von "Ich kann das. Ich bin genug. Ich bin ...".
   Kleinere Breiten bleiben unberuehrt — dort stimmt die Linie bereits,
   und in der Handy-Ansicht steht die Bildmarke ohnehin in eigener Zeile.
   Steht bewusst am Dateiende, damit sie nach den Grundregeln greift.
   ===================================================================== */
@media (min-width: 1024px) {
  .site-footer.v7-footer .footer-wordmark,
  .v7-footer .footer-wordmark {
    transform: translateY(calc(-0.1em - 1.5px));
  }
}
