/* ===========================================================================
   Die Monsis – Landingpage (statische Fassung)
   Portiert aus dem Next.js/Tailwind-Projekt `monsis-web`.
   Farben stammen 1:1 aus den Original-Illustrationen.
   =========================================================================== */

/* --- Schriften (selbst gehostet, keine externen Aufrufe) ----------------- */
@font-face {
  font-family: Fredoka;
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url("fonts/fredoka-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: Fredoka;
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url("fonts/fredoka-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: Nunito;
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
  src: url("fonts/nunito-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: Nunito;
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
  src: url("fonts/nunito-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --- Design-Tokens ------------------------------------------------------- */
:root {
  --ink: #1e1d1d;
  --ink-soft: #4c4a4a;
  --cream: #fff7ec;
  --cream-deep: #fbe9d2;

  --sky: #00a3da;
  --sky-deep: #0173a0;
  --sky-soft: #b9e6f7;

  --sun: #ffc61e;
  --star: #fff698;

  --orange: #d8812f;
  --orange-bright: #f19a3a;
  --red: #bd252c;

  --mint: #a3cfc5;
  --mint-deep: #7ebdb3;
  --teal: #14867c;

  --fog: #9e9f9e;
  --lavender: #e2c8dc;

  --font-display: Fredoka, "Trebuchet MS", ui-rounded, sans-serif;
  --font-sans: Nunito, ui-sans-serif, system-ui, sans-serif;

  --shell: 78rem;
}

/* --- Basis --------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background-color: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.015em;
  text-wrap: balance;
  margin: 0;
}

p {
  margin: 0;
  text-wrap: pretty;
}

ul,
ol,
dl,
dd,
figure,
blockquote {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

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

/* Die width/height-Attribute der Bilder reservieren den Platz vor dem Laden.
   Ohne dieses `height: auto` bliebe die Attributhöhe stehen, sobald CSS nur
   die Breite setzt – das Bild würde verzerrt. */
img {
  height: auto;
}

a {
  color: inherit;
}

/* Muss die display-Angaben der Komponenten schlagen, sonst bleibt ein
   `hidden`-Element (Fehlermeldung, Erfolgszustand) sichtbar. */
[hidden] {
  display: none !important;
}

button {
  font: inherit;
  color: inherit;
}

code {
  font-weight: 600;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.92em;
}

:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
  border-radius: 0.5rem;
}

::selection {
  background: var(--sun);
  color: var(--ink);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Sprunglink */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 100;
  position: fixed;
  border: 3px solid var(--ink);
  background: var(--sun);
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-display);
  font-weight: 600;
}

/* --- Layout-Hilfen ------------------------------------------------------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 768px) {
  .shell {
    padding-inline: 2rem;
  }
}

.section-kopf {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}

.section-label {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.section-titel {
  margin-top: 0.5rem;
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 600;
}

.section-text {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: var(--ink-soft);
}

/* --- Deko-SVGs (Sprite in index.html) ------------------------------------ */
.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
/* Inline-SVG ohne height-Angabe fällt sonst auf 150 px zurück – das
   Seitenverhältnis kommt hier aus der viewBox der jeweiligen Form. */
.stern,
.grossstern,
.pfote,
.herz {
  height: auto;
  aspect-ratio: 1;
}
.wolke {
  height: auto;
  aspect-ratio: 20 / 9;
}

/* `currentColor` steuert die Füllung, damit eine Form viele Töne bedienen kann. */
.stern {
  color: var(--sun);
  --kontur: var(--ink);
}
.stern--hell {
  color: var(--star);
}
.stern--ohne-kontur {
  --kontur: transparent;
}
.grossstern {
  color: var(--star);
}
.grossstern--cream {
  color: var(--cream);
}
.pfote {
  color: var(--ink);
}
.pfote--sky {
  color: var(--sky);
}
.pfote--teal {
  color: var(--teal);
}
.pfote--orange {
  color: var(--orange);
}
.pfote--red {
  color: var(--red);
}
.pfote--cream {
  color: var(--cream);
}
.herz {
  color: var(--red);
}
.wolke {
  color: var(--cream);
}
.welle {
  color: var(--cream);
}
.welle--sky-soft {
  color: var(--sky-soft);
}
.welle--cream-deep {
  color: var(--cream-deep);
}

/* --- Marken-Utilities ---------------------------------------------------- */
.sticker {
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 0 var(--ink);
}
.sticker-lg {
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 0 var(--ink);
}
.sticker-xl {
  border: 3px solid var(--ink);
  box-shadow: 10px 10px 0 0 var(--ink);
}
.blob {
  border-radius: 62% 38% 46% 54% / 54% 48% 52% 46%;
}

/* --- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 3px solid var(--ink);
  box-shadow: 0 6px 0 0 var(--ink);
  min-height: 3rem;
  padding-inline: 1.5rem;
  font-size: 1rem;
  background: var(--sun);
  color: var(--ink);
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out,
    background-color 0.15s ease-out;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 0 0 var(--ink);
  background: #ffd451;
}
.btn:active {
  transform: translateY(6px);
  box-shadow: 0 0 0 0 var(--ink);
}
.btn--lg {
  min-height: 3.5rem;
  padding-inline: 2rem;
  font-size: 1.125rem;
}
.btn--hell {
  background: #fff;
}
.btn--hell:hover {
  background: var(--cream);
}
.btn--dunkel {
  background: var(--ink);
  color: var(--cream);
}
.btn--dunkel:hover {
  background: #302e2e;
}
.btn--voll {
  width: 100%;
}
.btn[disabled] {
  cursor: not-allowed;
  opacity: 0.6;
}

/* --- Animationen --------------------------------------------------------- */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
@keyframes twinkle {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}
@keyframes sway {
  0%,
  100% {
    transform: translateX(0) rotate(-1.5deg);
  }
  50% {
    transform: translateX(18px) rotate(1.5deg);
  }
}
@keyframes hubert-flug {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(-26px, 24px) rotate(-8deg);
  }
  50% {
    transform: translate(-46px, 6px) rotate(4deg);
  }
  75% {
    transform: translate(-30px, -18px) rotate(-5deg);
  }
}

.float-slow {
  animation: float 7s ease-in-out infinite;
}
.float-mid {
  animation: float 5.5s ease-in-out infinite;
}
.twinkle {
  animation: twinkle 4s ease-in-out infinite;
}
.sway {
  animation: sway 9s ease-in-out infinite;
}

/* Einblenden beim Scrollen (per IntersectionObserver umgeschaltet) */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-sichtbar {
  opacity: 1;
  transform: none;
}

/* ===========================================================================
   Kopfzeile
   =========================================================================== */
.kopf {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  border-bottom: 3px solid transparent;
  transition: background-color 0.3s, border-color 0.3s;
}
.kopf.ist-gescrollt,
.kopf.ist-offen {
  background: rgba(255, 247, 236, 0.95);
  backdrop-filter: blur(4px);
  border-bottom-color: var(--ink);
}

.kopf__leiste {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.75rem;
}

.kopf__logo img {
  height: 2.75rem;
  width: auto;
}
@media (min-width: 768px) {
  .kopf__logo img {
    height: 3.25rem;
  }
}

.kopf__nav {
  display: none;
}
@media (min-width: 1280px) {
  .kopf__nav {
    display: block;
  }
}
.kopf__nav ul {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}
.kopf__link {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.5rem 0.875rem;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}
.kopf__link:hover {
  background: var(--sky-soft);
}
.kopf__link .pfote {
  position: absolute;
  bottom: -0.125rem;
  left: 50%;
  translate: -50% 0;
  width: 0.75rem;
  height: 0.75rem;
  opacity: 0;
  transition: opacity 0.2s;
}
.kopf__link:hover .pfote {
  opacity: 0.6;
}
.kopf__link[aria-current="true"] {
  color: var(--teal);
}
.kopf__link[aria-current="true"]:hover {
  background: transparent;
}
.kopf__link[aria-current="true"] .pfote {
  opacity: 1;
  fill: var(--teal);
}

.kopf__aktionen {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.kopf__cta {
  display: none;
}
@media (min-width: 640px) {
  .kopf__cta {
    display: block;
  }
}

.kopf__burger {
  display: flex;
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 3px solid var(--ink);
  background: #fff;
  box-shadow: 0 4px 0 0 var(--ink);
  cursor: pointer;
  transition: transform 0.15s;
}
.kopf__burger:active {
  transform: translateY(4px);
  box-shadow: none;
}
.kopf__burger svg {
  width: 1.5rem;
  height: 1.5rem;
}
@media (min-width: 1280px) {
  .kopf__burger {
    display: none;
  }
}
.kopf__burger .icon-schliessen {
  display: none;
}
.kopf.ist-offen .kopf__burger .icon-schliessen {
  display: block;
}
.kopf.ist-offen .kopf__burger .icon-menue {
  display: none;
}

.mobil-menue {
  max-height: calc(100dvh - 5rem);
  overflow-y: auto;
  border-top: 3px solid var(--ink);
  background: var(--cream);
}
.mobil-menue[hidden] {
  display: none;
}
@media (min-width: 1280px) {
  .mobil-menue {
    display: none;
  }
}
.mobil-menue nav {
  padding-block: 1.25rem;
}
.mobil-menue ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.mobil-menue a.mobil-link {
  display: flex;
  min-height: 3.5rem;
  align-items: center;
  gap: 0.75rem;
  border-radius: 1rem;
  border: 3px solid var(--ink);
  background: #fff;
  padding-inline: 1rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 4px 0 0 var(--ink);
}
.mobil-menue a.mobil-link[aria-current="true"] {
  background: var(--sun);
}
.mobil-menue .pfote {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

/* ===========================================================================
   Hero
   =========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, #3fbdec, var(--sky) 55%, var(--sky-deep));
  padding-top: 7rem;
}
@media (min-width: 768px) {
  .hero {
    padding-top: 8rem;
  }
}

.hero__himmel {
  pointer-events: none;
  position: absolute;
  inset: 0;
}
.hero__himmel .wolke {
  position: absolute;
}
.wolke--1 {
  left: -3rem;
  top: 5rem;
  width: 10rem;
  opacity: 0.55;
}
.wolke--2 {
  right: 4%;
  top: 3rem;
  width: 8rem;
  opacity: 0.45;
  animation-delay: 3s;
}
.wolke--3 {
  left: 54%;
  top: 80%;
  width: 7rem;
  opacity: 0.3;
  animation-delay: 5s;
}
@media (min-width: 768px) {
  .wolke--1 {
    width: 14rem;
  }
  .wolke--2 {
    width: 12rem;
  }
  .wolke--3 {
    width: 10rem;
  }
}
.hero__himmel .stern {
  position: absolute;
}

.hero__grossstern {
  pointer-events: none;
  position: absolute;
  right: 2%;
  top: 22%;
  display: none;
  width: 34rem;
  opacity: 0.45;
}
@media (min-width: 1024px) {
  .hero__grossstern {
    display: block;
  }
}

.hero__inhalt {
  position: relative;
  display: grid;
  align-items: center;
  gap: 2.5rem;
  padding-bottom: 1rem;
}
@media (min-width: 1024px) {
  .hero__inhalt {
    grid-template-columns: 1.05fr 1fr;
    gap: 1.5rem;
  }
}

.hero__text {
  position: relative;
  z-index: 10;
  max-width: 42rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .hero__text {
    text-align: left;
  }
}

.hero__claim {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  border-radius: 999px;
  border: 3px solid var(--ink);
  background: var(--cream);
  padding: 0.375rem 1rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 4px 0 0 var(--ink);
}
.hero__claim .pfote {
  width: 1rem;
  height: 1rem;
}

.hero__titel {
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--cream);
  filter: drop-shadow(0 4px 0 rgba(30, 29, 29, 0.35));
}
@media (min-width: 640px) {
  .hero__titel {
    font-size: 3.75rem;
  }
}
@media (min-width: 1024px) {
  .hero__titel {
    font-size: 4.2rem;
  }
}
.hero__hervor {
  position: relative;
  display: inline-block;
  color: var(--sun);
}
.hero__hervor svg {
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  height: 0.75rem;
  width: 100%;
}

.hero__lead {
  margin: 1.5rem auto 0;
  max-width: 36rem;
  font-size: 1.125rem;
  color: rgba(255, 247, 236, 0.95);
}
@media (min-width: 1024px) {
  .hero__lead {
    margin-inline: 0;
    font-size: 1.25rem;
  }
}

.hero__aktionen {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .hero__aktionen {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 1024px) {
  .hero__aktionen {
    justify-content: flex-start;
  }
}

.hero__figuren {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.5rem;
}
@media (min-width: 640px) {
  .hero__figuren {
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .hero__figuren {
    justify-content: flex-end;
  }
}
.hero__figur {
  width: 46%;
  max-width: 19rem;
  height: auto;
  filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.18));
}
.hero__figur--monja {
  width: 44%;
  max-width: 18rem;
}

.hero__boden {
  position: relative;
  margin-top: -1.5rem;
}

/* Wellen-Abschluss zwischen Abschnitten */
.welle {
  display: block;
  width: 100%;
  height: 3.5rem;
}
@media (min-width: 768px) {
  .welle {
    height: 5rem;
  }
}
.welle--hoch {
  height: 4rem;
}
@media (min-width: 768px) {
  .welle--hoch {
    height: 6rem;
  }
}
.welle--oben {
  transform: rotate(180deg);
}

/* ===========================================================================
   Die Welt
   =========================================================================== */
.welt {
  position: relative;
  scroll-margin-top: 6rem;
  background: var(--cream);
}
.welt__buehne {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, var(--sky-soft), #d7f0fb 50%, var(--cream));
  padding-top: 4rem;
}
@media (min-width: 768px) {
  .welt__buehne {
    padding-top: 6rem;
  }
}
.welt__buehne .wolke,
.welt__buehne .stern,
.welt__buehne .grossstern {
  pointer-events: none;
  position: absolute;
}
.welt__wolke-1 {
  left: -2.5rem;
  top: 2.5rem;
  width: 10rem;
  opacity: 0.7;
}
.welt__wolke-2 {
  right: 6%;
  top: 1.5rem;
  width: 8rem;
  opacity: 0.6;
  animation-delay: 4s;
}
@media (min-width: 768px) {
  .welt__wolke-1 {
    width: 14rem;
  }
  .welt__wolke-2 {
    width: 12rem;
  }
}
.welt__stern-1 {
  left: 12%;
  top: 38%;
  width: 1.5rem;
  height: 1.5rem;
}
.welt__stern-2 {
  right: 14%;
  top: 30%;
  width: 2rem;
  height: 2rem;
  animation-delay: 2s;
}
.welt__grossstern {
  left: 50%;
  top: 34%;
  width: 30rem;
  translate: -50% 0;
  opacity: 0.35;
}

.welt__kopf {
  position: relative;
  text-align: center;
}
.welt__kopf h2 {
  margin-inline: auto;
  margin-top: 0.5rem;
  max-width: 48rem;
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 600;
}
.welt__kopf h2 span {
  display: block;
  margin-top: 0.5rem;
  color: var(--sky-deep);
}
.welt__kopf p.section-text {
  margin-inline: auto;
  max-width: 42rem;
  margin-top: 1.25rem;
}

.welt__huegel {
  position: relative;
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .welt__huegel {
    margin-top: 3.5rem;
  }
}
.welt__huegel-flaeche {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 8rem;
  border-radius: 100%;
  background: var(--cream);
  transform: scaleX(1.35);
}
@media (min-width: 768px) {
  .welt__huegel-flaeche {
    height: 11rem;
  }
}
.welt__reihe {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.25rem;
}
@media (min-width: 640px) {
  .welt__reihe {
    gap: 1.25rem;
  }
}
.welt__reihe img {
  height: auto;
  width: 25%;
  max-width: 15rem;
  filter: drop-shadow(0 16px 16px rgba(0, 0, 0, 0.16));
}
.welt__reihe img:nth-child(even) {
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .welt__reihe img:nth-child(even) {
    margin-bottom: 2rem;
  }
}

.welt__texte {
  position: relative;
  padding-top: 2.5rem;
  padding-bottom: 5rem;
}
@media (min-width: 768px) {
  .welt__texte {
    padding-bottom: 7rem;
  }
}
.welt__karten {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .welt__karten {
    grid-template-columns: repeat(3, 1fr);
  }
}
.welt__karte {
  border-radius: 1.75rem;
  border: 3px solid var(--ink);
  background: #fff;
  padding: 1.5rem;
  box-shadow: 6px 6px 0 0 var(--ink);
}
.welt__karte h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
}
.welt__karte .stern {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}
.welt__karte p {
  margin-top: 0.5rem;
  color: var(--ink-soft);
}

.welt__zitat {
  margin: 2.5rem auto 0;
  max-width: 48rem;
  border-radius: 1.75rem;
  border: 3px solid var(--ink);
  background: rgba(255, 198, 30, 0.25);
  padding: 1.5rem;
  text-align: center;
  box-shadow: 6px 6px 0 0 var(--ink);
}
@media (min-width: 640px) {
  .welt__zitat {
    padding: 2rem;
  }
}
.welt__zitat p {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.375;
}
@media (min-width: 640px) {
  .welt__zitat p {
    font-size: 1.875rem;
  }
}
.welt__zitat footer {
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.welt__zitat .pfote {
  width: 1rem;
  height: 1rem;
}

/* ===========================================================================
   Platzhalterflächen (Bild / Video / Download)
   =========================================================================== */
.platzhalter {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  overflow: hidden;
  border-radius: 1rem;
  border: 3px dashed var(--ink);
  padding: 1.5rem 1rem;
  text-align: center;
}
.platzhalter .stern,
.platzhalter .pfote {
  pointer-events: none;
  position: absolute;
  width: 2.5rem;
  height: 2.5rem;
}
.platzhalter .stern {
  left: -0.75rem;
  top: -0.75rem;
  opacity: 0.3;
}
.platzhalter .pfote {
  right: -0.5rem;
  bottom: -0.5rem;
  opacity: 0.15;
}
.platzhalter__symbol {
  width: 2.25rem;
  height: 2.25rem;
}
.platzhalter__titel {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.375;
}
.platzhalter__hinweis {
  font-size: 0.75rem;
  color: var(--ink-soft);
}

.grund-sky {
  background: var(--sky-soft);
}
.grund-mint {
  background: var(--mint);
}
.grund-orange {
  background: rgba(241, 154, 58, 0.45);
}
.grund-lavender {
  background: var(--lavender);
}
.grund-sun {
  background: rgba(255, 198, 30, 0.35);
}
.grund-red {
  background: rgba(189, 37, 44, 0.2);
}

.news__bild .platzhalter {
  aspect-ratio: 16 / 10;
}
.marke .pfote {
  width: 0.75rem;
  height: 0.75rem;
}
.news__karte p.text {
  margin-top: 0.5rem;
  flex: 1;
  font-size: 0.975rem;
  color: var(--ink-soft);
}

/* ===========================================================================
   Monsis & Freunde
   =========================================================================== */
.freunde {
  position: relative;
  scroll-margin-top: 6rem;
  background: var(--cream);
  padding-block: 5rem;
}
@media (min-width: 768px) {
  .freunde {
    padding-block: 7rem;
  }
}

.freunde__gross {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .freunde__gross {
    gap: 3.5rem;
  }
}

.monsi-karte {
  position: relative;
  border-radius: 2.5rem;
  border: 3px solid var(--ink);
  background: #fff;
  box-shadow: 10px 10px 0 0 var(--ink);
  transition: transform 0.3s;
}
.monsi-karte:hover {
  transform: translateY(-6px);
}
.monsi-karte__inhalt {
  display: grid;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem;
}
@media (min-width: 640px) {
  .monsi-karte__inhalt {
    padding: 2rem;
  }
}
@media (min-width: 768px) {
  .monsi-karte__inhalt {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  .monsi-karte--gedreht .monsi-karte__buehne {
    order: 2;
  }
}

.monsi-karte__buehne {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  border-radius: 2rem;
  padding: 2rem 1rem 0;
}
.flaeche-sky {
  background: var(--sky);
}
.flaeche-mint {
  background: var(--mint);
}
.flaeche-orange {
  background: var(--orange-bright);
}
.flaeche-lavender {
  background: var(--lavender);
}
.flaeche-sun {
  background: var(--sun);
}
.flaeche-red {
  background: var(--red);
}

.monsi-karte__buehne .grossstern {
  pointer-events: none;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 88%;
  translate: -50% -50%;
}
.monsi-karte__buehne .deko-ecke {
  position: absolute;
  left: 1.25rem;
  top: 1.5rem;
  z-index: 20;
  width: 2rem;
  height: 2rem;
}
.monsi-karte__buehne img.figur {
  position: relative;
  z-index: 10;
  height: auto;
  width: 74%;
  max-width: 17rem;
  filter: drop-shadow(0 14px 14px rgba(0, 0, 0, 0.16));
}
.monsi-karte__pfoten {
  pointer-events: none;
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 1.5rem 0.75rem;
  opacity: 0.25;
}
.monsi-karte__pfoten .pfote {
  width: 1.5rem;
  height: 1.5rem;
}
.hubert-flug {
  position: absolute;
  right: 1.5rem;
  top: 2.5rem;
  z-index: 20;
  animation: hubert-flug 11s ease-in-out infinite;
}
.hubert-flug img {
  width: 3.5rem;
}
@media (min-width: 640px) {
  .hubert-flug img {
    width: 4.5rem;
  }
}

.monsi-karte__rolle {
  display: inline-block;
  rotate: -2deg;
  border-radius: 999px;
  border: 3px solid var(--ink);
  background: var(--sun);
  padding: 0.25rem 1rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 4px 0 0 var(--ink);
}
.monsi-karte h3 {
  margin-top: 1rem;
  font-size: 2.25rem;
  font-weight: 600;
}
@media (min-width: 640px) {
  .monsi-karte h3 {
    font-size: 3rem;
  }
}
.monsi-karte__claim {
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--teal);
}
.monsi-karte__text {
  margin-top: 1rem;
  color: var(--ink-soft);
}
.monsi-karte dl {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.monsi-karte dl > div {
  display: flex;
  gap: 0.75rem;
}
.monsi-karte dl .pfote {
  margin-top: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}
.monsi-karte dd {
  margin: 0;
}
.monsi-karte dd b {
  font-family: var(--font-display);
  font-weight: 600;
}
.monsi-karte .btn {
  margin-top: 1.75rem;
}

.freunde__zwischen {
  margin-top: 4rem;
  text-align: center;
}
.freunde__zwischen h3 {
  font-size: 1.875rem;
  font-weight: 600;
}
@media (min-width: 640px) {
  .freunde__zwischen h3 {
    font-size: 2.25rem;
  }
}
.freunde__zwischen p {
  margin: 0.75rem auto 0;
  max-width: 36rem;
  color: var(--ink-soft);
}

.freunde__klein {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 640px) {
  .freunde__klein {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .freunde__klein {
    grid-template-columns: repeat(5, 1fr);
  }
}
.mini-karte {
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  align-items: center;
  border-radius: 1.75rem;
  border: 3px solid var(--ink);
  background: #fff;
  padding: 1rem;
  text-align: center;
  box-shadow: 6px 6px 0 0 var(--ink);
  cursor: pointer;
  transition: transform 0.3s;
}
.mini-karte:hover {
  transform: translateY(-6px);
}
.mini-karte:active {
  transform: translateY(2px);
}
.mini-karte__bild {
  display: flex;
  height: 8rem;
  width: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  padding: 0.75rem;
}
.mini-karte__bild img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s;
}
.mini-karte:hover .mini-karte__bild img {
  transform: scale(1.05);
}
.mini-karte__name {
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
}
.mini-karte__rolle {
  margin-top: 0.125rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal);
}
.mini-karte__claim {
  margin-top: 0.25rem;
  flex: 1;
  font-size: 0.875rem;
  color: var(--ink-soft);
}
.mini-karte__mehr {
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

/* Dialog */
dialog.monsi-dialog {
  margin: auto;
  width: min(38rem, calc(100vw - 2rem));
  border-radius: 2rem;
  border: 3px solid var(--ink);
  background: var(--cream);
  padding: 0;
  color: var(--ink);
  box-shadow: 10px 10px 0 0 var(--ink);
}
dialog.monsi-dialog::backdrop {
  background: rgba(30, 29, 29, 0.5);
}
.monsi-dialog__body {
  max-height: 80vh;
  overflow-y: auto;
  padding: 1.5rem;
}
@media (min-width: 640px) {
  .monsi-dialog__body {
    padding: 2rem;
  }
}
.monsi-dialog__kopf {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.monsi-dialog__kopf img {
  height: 7rem;
  width: auto;
  flex-shrink: 0;
}
.monsi-dialog__kopf h3 {
  font-size: 1.875rem;
  font-weight: 600;
}
@media (min-width: 640px) {
  .monsi-dialog__kopf h3 {
    font-size: 2.25rem;
  }
}
.monsi-dialog__rolle {
  margin-top: 0.25rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--ink-soft);
}
.monsi-dialog__claim {
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
}
.monsi-dialog__geschichte {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.monsi-dialog__fakten {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .monsi-dialog__fakten {
    grid-template-columns: repeat(2, 1fr);
  }
}
.monsi-dialog__fakten > div {
  border-radius: 1rem;
  border: 3px solid var(--ink);
  background: #fff;
  padding: 1rem;
}
.monsi-dialog__fakten dt {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
}
.monsi-dialog__fakten .pfote {
  width: 1rem;
  height: 1rem;
}
.monsi-dialog__fakten dd {
  margin: 0.25rem 0 0;
  font-size: 0.975rem;
}
.monsi-dialog__fuss {
  margin-top: 1.75rem;
  display: flex;
  justify-content: flex-end;
}

.clips .section-label {
  color: var(--sun);
}
.clips .section-text {
  color: rgba(255, 247, 236, 0.85);
}

.clip-karte__bild .platzhalter {
  aspect-ratio: 16 / 9;
}
.clip-karte p.text {
  margin-top: 0.5rem;
  flex: 1;
  font-size: 0.975rem;
  color: var(--ink-soft);
}

.highlight-karte__bild .platzhalter {
  aspect-ratio: 1 / 1;
}
.highlight-karte p.text {
  margin-top: 0.375rem;
  flex: 1;
  font-size: 0.875rem;
  color: var(--ink-soft);
}

.post > .stern,
.post > .pfote {
  pointer-events: none;
  position: absolute;
}

/* ===========================================================================
   Über uns
   =========================================================================== */
.ueber {
  scroll-margin-top: 6rem;
  background: var(--cream);
  padding-block: 5rem;
}
@media (min-width: 768px) {
  .ueber {
    padding-block: 7rem;
  }
}
.ueber__gitter {
  margin-top: 3.5rem;
  display: grid;
  align-items: start;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .ueber__gitter {
    grid-template-columns: 0.85fr 1.15fr;
  }
}
.ueber__portraet {
  border-radius: 2rem;
  border: 3px solid var(--ink);
  background: #fff;
  padding: 0.75rem;
  box-shadow: 10px 10px 0 0 var(--ink);
}
.ueber__portraet .platzhalter,
.ueber__portraet-bild {
  aspect-ratio: 4 / 5;
}
.ueber__portraet-bild {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1rem;
  object-fit: cover;
  object-position: 50% 35%;
}
.ueber__maya {
  position: relative;
  margin: 1.5rem auto 0;
  width: fit-content;
}
.ueber__maya-blob {
  position: absolute;
  inset-inline: 1rem;
  top: 1.5rem;
  bottom: 0.5rem;
  background: var(--lavender);
}
.ueber__maya img {
  position: relative;
  height: auto;
  width: 14rem;
}
.ueber__maya .herz {
  position: absolute;
  right: -0.5rem;
  top: 0.5rem;
  width: 2.5rem;
  height: 2.5rem;
}
.ueber__text {
  margin: 2.5rem auto 0;
  max-width: 48rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  font-size: 1.125rem;
}
mark.markierung {
  border-radius: 0.375rem;
  border: 2px dashed var(--orange);
  background: rgba(255, 198, 30, 0.25);
  padding: 0.125rem 0.375rem;
  font-weight: 600;
  color: var(--ink);
}
.ueber__interview {
  border-radius: 2rem;
  border: 3px solid var(--ink);
  background: var(--sky-soft);
  padding: 1.5rem;
  box-shadow: 8px 8px 0 0 var(--ink);
}
@media (min-width: 640px) {
  .ueber__interview {
    padding: 2rem;
  }
}
.ueber__interview h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 600;
}
.ueber__interview h3 .stern {
  width: 1.5rem;
  height: 1.5rem;
}
.ueber__interview > p {
  margin-top: 0.5rem;
  color: var(--ink-soft);
}
.ueber__interview dl {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ueber__interview dl > div {
  border-radius: 1rem;
  border: 3px solid var(--ink);
  background: var(--cream);
  padding: 1rem;
}
.ueber__interview dt {
  font-family: var(--font-display);
  font-weight: 600;
}
.ueber__interview dd {
  margin: 0.375rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--ink-soft);
}
/* Fehlende Antworten bleiben sichtbar markiert. */
.ueber__interview dd.platzhalter-text {
  display: block;
  border-radius: 0.5rem;
  border: 2px dashed var(--orange);
  background: rgba(255, 198, 30, 0.2);
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
}

.social__karte > .stern {
  pointer-events: none;
  position: absolute;
  left: -1.5rem;
  top: -1.5rem;
  width: 6rem;
  height: 6rem;
  opacity: 0.25;
}
.social__karte > .pfote {
  pointer-events: none;
  position: absolute;
  right: 1.5rem;
  bottom: -1rem;
  width: 5rem;
  height: 5rem;
  opacity: 0.1;
}

/* ===========================================================================
   Fußzeile
   =========================================================================== */
.fuss {
  position: relative;
  background: var(--ink);
  color: var(--cream);
}
.fuss__spur {
  pointer-events: none;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.5rem 0 0.5rem;
  opacity: 0.2;
}
.fuss__spur .pfote {
  width: 1.5rem;
  height: 1.5rem;
}
.fuss__gitter {
  display: grid;
  gap: 2.5rem;
  padding-block: 2.5rem;
}
@media (min-width: 768px) {
  .fuss__gitter {
    grid-template-columns: 1.3fr 1fr 1fr;
    padding-block: 3.5rem;
  }
}
.fuss__logo {
  height: 4rem;
  width: auto;
}
.fuss__claim {
  margin-top: 1rem;
  max-width: 20rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
}
.fuss__claim-sub {
  margin-top: 0.5rem;
  max-width: 20rem;
  color: rgba(255, 247, 236, 0.7);
}
.fuss__gitter .btn {
  margin-top: 1.5rem;
}
.fuss h2 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
}
.fuss h2 + ul,
.fuss h2 + p {
  margin-top: 1rem;
}
.fuss nav h2 + ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.fuss nav a {
  display: inline-flex;
  min-height: 2.25rem;
  align-items: center;
  color: rgba(255, 247, 236, 0.85);
  text-decoration: none;
  transition: color 0.2s;
}
.fuss nav a:hover {
  color: var(--sun);
}
.fuss h2.abstand {
  margin-top: 1.75rem;
}
.fuss__kontakt {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.fuss__kontakt:hover {
  color: var(--sun);
}
.fuss__netze {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.fuss__netze a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  border-radius: 999px;
  border: 2px solid rgba(255, 247, 236, 0.4);
  padding-inline: 1rem;
  transition: color 0.2s, border-color 0.2s;
}
.fuss__netze a:hover {
  border-color: var(--sun);
  color: var(--sun);
}
.fuss__unten {
  border-top: 1px solid rgba(255, 247, 236, 0.15);
}
.fuss__unten .shell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-block: 1.5rem;
  font-size: 0.875rem;
  color: rgba(255, 247, 236, 0.6);
}
@media (min-width: 640px) {
  .fuss__unten .shell {
    flex-direction: row;
  }
}
.fuss__unten p:first-child {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.fuss__unten .stern {
  width: 1rem;
  height: 1rem;
}

/* ===========================================================================
   Rechtliche Seiten
   =========================================================================== */
.recht {
  min-height: 100dvh;
  background: var(--cream);
}
.recht__inhalt {
  max-width: 48rem;
  /* oben Platz für die fixierte Kopfzeile */
  padding-top: 8rem;
  padding-bottom: 4rem;
}
.recht__inhalt h1 {
  font-size: 2.25rem;
  font-weight: 600;
}
@media (min-width: 640px) {
  .recht__inhalt h1 {
    font-size: 3rem;
  }
}
.recht__hinweis {
  margin-top: 1.5rem;
  border-radius: 1rem;
  border: 3px dashed var(--orange);
  background: rgba(255, 198, 30, 0.2);
  padding: 1.25rem;
}
.recht__hinweis strong {
  font-family: var(--font-display);
}
.recht__body {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1.125rem;
}
.recht__body h2 {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}
.recht__body h2:first-child {
  margin-top: 0;
}
.recht__body address {
  font-style: normal;
}
.recht__body a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ===========================================================================
   Einwilligungs-Banner
   =========================================================================== */
.consent {
  position: fixed;
  z-index: 60;
  inset-inline: 0;
  bottom: 0;
  padding: 1rem;
  /* Von unten hereinschieben, sobald `ist-da` gesetzt wird. */
  transform: translateY(120%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.consent.ist-da {
  transform: none;
}
.consent__karte {
  position: relative;
  margin-inline: auto;
  max-width: 46rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border-radius: 1.5rem;
  border: 3px solid var(--ink);
  background: var(--cream);
  padding: 1.5rem;
  box-shadow: 8px 8px 0 0 var(--ink);
}
@media (min-width: 768px) {
  .consent {
    padding: 1.5rem;
  }
  .consent__karte {
    flex-direction: row;
    align-items: center;
    gap: 1.75rem;
    padding: 1.75rem 2rem;
  }
}
.consent__stern {
  position: absolute;
  left: -0.9rem;
  top: -0.9rem;
  width: 2.25rem;
  height: 2.25rem;
}
.consent__titel {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}
.consent__text p {
  margin-top: 0.375rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.consent__text a {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  color: inherit;
}
.consent__knoepfe {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex-shrink: 0;
}
@media (min-width: 480px) {
  .consent__knoepfe {
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .consent__knoepfe {
    flex-direction: column;
    min-width: 13rem;
  }
}
.consent__knoepfe .btn {
  justify-content: center;
  width: 100%;
}
/* Ein Link in der Fußzeile, um die Auswahl zu ändern. */
.fuss__einwilligung {
  margin-top: 0.75rem;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: rgba(255, 247, 236, 0.85);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}
.fuss__einwilligung:hover {
  color: var(--sun);
}

/* ===========================================================================
   Reduzierte Bewegung respektieren
   =========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .consent {
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
