/* Kindertagespflege Kuschelbärchen – lebendiges Layout */
:root {
  --color-bg: #fff8f0;
  --color-bg-deep: #ffe8dc;
  --color-surface: #ffffff;
  --color-text: #2a2438;
  --color-muted: #5a5368;
  --color-accent: #e85d4c;
  --color-accent-dark: #c9483a;
  --color-forest: #2d8a6e;
  --color-sun: #ffb703;
  --color-sun-dark: #e9a400;
  --color-mint: #7fdbb8;
  --color-mint-dark: #4bbf98;
  --color-lilac: #b8a9ff;
  --color-sky: #7ec8e3;
  --color-peach: #ffcba4;
  --color-border: rgba(42, 36, 56, 0.12);
  --radius: 18px;
  --radius-lg: 26px;
  --shadow: 0 16px 48px rgba(42, 36, 56, 0.1);
  --shadow-soft: 0 8px 28px rgba(232, 93, 76, 0.15);
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
  --max: 1100px;
  --section-y: clamp(2.5rem, 5vw, 3.75rem);
  --band-edge: max(0px, calc(50vw - var(--max) / 2));
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.06rem;
  line-height: 1.65;
  color: var(--color-text);
  background: radial-gradient(1200px 600px at 10% -10%, #fff0e8 0%, transparent 55%),
    radial-gradient(900px 500px at 100% 0%, #e8f7ff 0%, transparent 50%),
    linear-gradient(165deg, #fff8f0 0%, #ffeef6 40%, #f0fff8 100%);
  min-height: 100vh;
}

::selection {
  background: rgba(232, 93, 76, 0.22);
  color: var(--color-text);
}

.page-main {
  padding-bottom: 0.5rem;
}

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

a {
  color: var(--color-forest);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--color-accent);
}

.nav-list a:focus-visible,
.logo:focus-visible,
.btn:focus-visible {
  outline: 3px solid rgba(232, 93, 76, 0.45);
  outline-offset: 3px;
}

.nav-toggle:focus-visible {
  outline: 3px solid rgba(45, 138, 110, 0.45);
  outline-offset: 2px;
}

a:focus-visible {
  outline: 2px solid rgba(45, 138, 110, 0.55);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 0.75rem 1rem;
  background: var(--color-text);
  color: #fff;
  z-index: 100;
}

.skip-link:focus,
.skip-link:focus-visible {
  left: 1rem;
  top: 1rem;
  outline: 3px solid var(--color-sun);
  outline-offset: 2px;
}

.site-header {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8), 0 8px 32px rgba(42, 36, 56, 0.06);
  position: sticky;
  top: 0;
  z-index: 50;
}

@media (max-width: 720px) {
  .site-header {
    backdrop-filter: none;
    background: rgba(255, 255, 255, 0.98);
  }
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  min-width: 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: -0.02em;
  min-width: 0;
  max-width: 100%;
}

.logo-mark {
  height: 48px;
  width: auto;
  max-width: 72px;
  flex-shrink: 0;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  object-fit: contain;
  vertical-align: middle;
}

.logo-text {
  line-height: 1.15;
  min-width: 0;
  overflow-wrap: break-word;
}

.logo span {
  color: var(--color-accent);
}

.nav-toggle {
  display: none;
  border: 2px solid var(--color-border);
  background: var(--color-surface);
  padding: 0.5rem 0.85rem;
  border-radius: 12px;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  align-items: center;
}

.nav-list a {
  text-decoration: none;
  font-weight: 600;
  color: var(--color-muted);
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--color-accent);
}

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3.25rem;
  display: grid;
  gap: 2rem;
  align-items: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(45, 138, 110, 0.2) 20%,
    rgba(232, 93, 76, 0.25) 50%,
    rgba(184, 169, 255, 0.2) 80%,
    transparent
  );
  pointer-events: none;
}

@media (min-width: 800px) {
  .hero {
    grid-template-columns: 1.05fr 0.95fr;
    padding-top: 3.25rem;
    padding-bottom: 4rem;
  }
}

/* Hero mit Illustration + schwebender Karte */
.hero--with-art .hero-copy {
  min-width: 0;
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 1.45rem;
  min-width: 0;
  width: 100%;
  max-width: 480px;
  justify-self: center;
}

.hero-art {
  border-radius: var(--radius-lg);
  overflow: hidden;
  line-height: 0;
  background: linear-gradient(155deg, #fff9f5 0%, #f2faf7 45%, #fff5fb 100%);
  border: 1px solid rgba(232, 93, 76, 0.18);
  box-shadow:
    0 14px 40px rgba(232, 93, 76, 0.12),
    0 6px 22px rgba(45, 138, 110, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  aspect-ratio: 1024 / 438;
  max-height: 215px;
}

.hero-art__media {
  width: 100%;
  height: 100%;
}

.hero-art__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

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

@media (prefers-reduced-motion: no-preference) {
  .hero-art {
    animation: kb-float-soft 8s ease-in-out infinite;
  }

  .hero-card--float {
    animation: kb-float-soft 9s ease-in-out infinite 0.5s;
  }

  .spot-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .spot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 44px rgba(42, 36, 56, 0.12);
  }
}

@keyframes kb-float-soft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-art,
  .hero-card--float {
    animation: none !important;
  }
}

@media (max-width: 720px) and (prefers-reduced-motion: no-preference) {
  .hero-art,
  .hero-card--float {
    animation: none;
  }
}

/* Sanft einblenden beim Scrollen */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Einblicke: stabile Bildkarten statt Karussell, damit keine großen Leerflächen entstehen. */
.section--einblicke {
  padding-top: var(--section-y);
}

.image-moments {
  display: grid;
  gap: 1rem;
  max-width: 980px;
  margin: 1.5rem auto 0;
}

@media (min-width: 560px) {
  .image-moments {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1040px) {
  .image-moments {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.image-moment {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #fffdfb 0%, #f4faf7 100%);
  border: 1px solid rgba(232, 93, 76, 0.14);
  box-shadow: 0 16px 42px rgba(42, 36, 56, 0.08);
}

.image-moment picture {
  display: block;
  height: clamp(8rem, 26vw, 11.5rem);
  overflow: hidden;
  background: linear-gradient(160deg, #efe8ff 0%, #fff5ef 50%, #e8f6f1 100%);
}

.image-moment img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.image-moment figcaption {
  margin: 0;
  padding: 0.65rem 0.85rem 0.75rem;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.4;
  text-align: center;
}

.image-moment figcaption strong:only-child {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-forest);
}

.contact-motiv-card {
  max-width: 760px;
  margin: 0 auto 1.75rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(155deg, #fff9f5 0%, #f2faf7 50%, #fff5fb 100%);
  border: 1px solid rgba(232, 93, 76, 0.16);
  box-shadow: 0 14px 40px rgba(42, 36, 56, 0.07);
}

.contact-motiv-card__copy {
  padding: 1rem 1.2rem 0.85rem;
  text-align: center;
  border-bottom: 1px solid rgba(42, 36, 56, 0.06);
  background: rgba(255, 255, 255, 0.55);
}

.contact-motiv-card__lead {
  margin: 0;
  font-size: clamp(1.08rem, 0.95rem + 1.1vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--color-text);
}

.contact-motiv-card__sub {
  margin: 0.45rem 0 0;
  font-size: 0.98rem;
  color: var(--color-muted);
  font-weight: 600;
}

.contact-motiv-card__img {
  /* Volle Kartenbreite: aspect-ratio + max-height hat die Box schmaler gemacht als die Karte → leerer Streifen rechts */
  width: 100%;
  height: clamp(168px, 30vw, 232px);
  overflow: hidden;
  background: linear-gradient(160deg, #efe8ff 0%, #fff5ef 55%, #e8f6f1 100%);
}

.contact-motiv-card__media {
  width: 100%;
  height: 100%;
}

.contact-motiv-card__img picture,
.contact-motiv-card__img img,
.contact-motiv-card__media picture,
.contact-motiv-card__media img {
  display: block;
  width: 100%;
  height: 100%;
}

.contact-motiv-card__img img {
  object-fit: cover;
  object-position: center center;
}

.contact-motiv-card__caption {
  margin: 0;
  padding: 0.75rem 1rem 0.9rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-muted);
  text-align: center;
  background: rgba(255, 255, 255, 0.75);
  border-top: 1px solid rgba(42, 36, 56, 0.06);
}

.section--band > .fullbleed-media {
  max-width: none;
}

.fullbleed-media {
  position: relative;
  margin: 1.75rem 0 0;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(42, 36, 56, 0.12);
  aspect-ratio: 16 / 7;
  max-height: min(72vh, 560px);
  background: var(--color-surface);
  line-height: 0;
}

.fullbleed-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.fullbleed-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  display: block;
}

.fullbleed-media-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0.85rem 1rem;
  padding-left: max(1rem, var(--band-edge));
  padding-right: max(1rem, var(--band-edge));
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
  background: linear-gradient(0deg, rgba(42, 36, 56, 0.78) 0%, transparent 100%);
}

/* Panorama (Essen) und CTA (Kontakt): Desktop = Proportionen wie Export; Mobil = höher, Text lesbar */
.fullbleed-media--panorama img {
  object-fit: cover;
  object-position: center 22%;
}

.fullbleed-media--cta img {
  object-position: center 40%;
}

@media (min-width: 641px) {
  .fullbleed-media--panorama {
    aspect-ratio: 1024 / 267;
    max-height: min(44vh, 300px);
  }

  .fullbleed-media--cta {
    aspect-ratio: 1024 / 453;
    max-height: min(50vh, 400px);
  }
}

@media (max-width: 640px) {
  .fullbleed-media:not(.fullbleed-media--panorama):not(.fullbleed-media--cta) {
    aspect-ratio: 4 / 3;
    max-height: none;
  }

  .fullbleed-media:not(.fullbleed-media--panorama):not(.fullbleed-media--cta) img {
    object-position: center 36%;
  }

  /* Sehr breite Motive: etwas höher, damit Schrift im Bild nicht weggeschnitten wird */
  .fullbleed-media--panorama {
    aspect-ratio: 4 / 3;
    max-height: min(58vw, 260px);
  }

  .fullbleed-media--panorama img {
    object-position: center 30%;
  }

  .fullbleed-media--cta {
    aspect-ratio: 1 / 1;
    max-height: min(92vw, 340px);
  }

  .fullbleed-media--cta img {
    object-position: center 35%;
  }

  /* Schmale Telefone: leicht eingerückt wie eine „Karte“, weiterhin volle Bildschirmbreite auf Tablet */
  .fullbleed-media--panorama,
  .fullbleed-media--cta {
    width: calc(100vw - 1.5rem);
    max-width: calc(100vw - 1.5rem);
    margin-left: max(0.75rem, calc(50% - 50vw + 0.75rem));
    margin-right: max(0.75rem, calc(50% - 50vw + 0.75rem));
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 36px rgba(42, 36, 56, 0.1);
  }

  .fullbleed-media-cap,
  .fullbleed-media-cap--lite {
    padding-left: max(0.75rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.75rem, env(safe-area-inset-right, 0px));
    padding-bottom: max(0.65rem, env(safe-area-inset-bottom, 0px));
    font-size: 0.8rem;
  }

  /* Spielzimmer-Banner: gleiche Kartenoptik wie Essen/Kontakt */
  .section--einblicke > .fullbleed-media:not(.fullbleed-media--panorama):not(.fullbleed-media--cta) {
    width: calc(100vw - 1.5rem);
    max-width: calc(100vw - 1.5rem);
    margin-left: max(0.75rem, calc(50% - 50vw + 0.75rem));
    margin-right: max(0.75rem, calc(50% - 50vw + 0.75rem));
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 36px rgba(42, 36, 56, 0.1);
  }

  .hero {
    padding-top: 2rem;
    padding-bottom: 2.5rem;
  }

  .hero-art img {
    object-position: center center;
  }

  .contact-motiv-card__img img {
    object-position: center center;
  }

  .split-panel {
    margin-top: 1.5rem;
  }

  .split-panel-fig img {
    object-position: center 38%;
  }
}

.fullbleed-media-cap--lite {
  font-size: 0.85rem;
  font-weight: 600;
  background: linear-gradient(0deg, rgba(42, 36, 56, 0.55) 0%, transparent 100%);
}

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

.section--band > .split-pair {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.split-pair {
  margin-top: 0.5rem;
}

.split-panel {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  margin-top: 2rem;
  padding: 0;
}

@media (min-width: 880px) {
  .split-panel {
    grid-template-columns: 1.02fr 0.98fr;
    gap: clamp(1.25rem, 3vw, 2.5rem);
    margin-top: 2.5rem;
  }

  .split-panel--reverse .split-panel-fig {
    order: 2;
  }

  .split-panel--reverse .split-panel-body {
    order: 1;
  }
}

.split-panel-fig {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(42, 36, 56, 0.08);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  background: var(--color-surface);
}

.split-panel-fig picture {
  display: block;
  width: 100%;
  height: 100%;
}

.split-panel-fig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.split-panel-body {
  padding: 0.25rem 0;
}

.split-panel-title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.split-panel-body p {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.04rem;
  line-height: 1.65;
  max-width: 52ch;
}

/* Alltag: Eltern-fokussierte Highlights */
.section--alltag {
  padding-top: calc(var(--section-y) + 0.25rem);
  padding-bottom: calc(var(--section-y) + 0.25rem);
}

.alltag-list {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .alltag-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.15rem;
  }
}

@media (min-width: 1024px) {
  .alltag-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .alltag-item:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 100%;
  }
}

.alltag-item {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.25rem 1.2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #ffffff 0%, #fffaf6 55%, #f6fff9 100%);
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 32px rgba(42, 36, 56, 0.06);
}

.alltag-item-title {
  margin: 0;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.alltag-item-text {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.62;
  color: var(--color-muted);
}

.carousel-keyboard-hint {
  max-width: 62ch;
  margin: 0.75rem auto 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--color-muted);
}

.hero--splash h1 {
  background: linear-gradient(120deg, var(--color-accent) 0%, #ff8a65 45%, var(--color-forest) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1f5d4a;
  background: linear-gradient(135deg, rgba(125, 219, 184, 0.45), rgba(126, 200, 227, 0.35));
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  border: 1px solid rgba(45, 138, 110, 0.2);
}

.hero h1 {
  margin: 0 0 1rem;
  /* Mindestgröße darf auf schmalen Phones nicht größer sein als der Viewport erlaubt (sonst Abschneiden bei overflow-x: hidden). */
  font-size: clamp(1.28rem, 0.92rem + 2.4vw, 2.85rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  overflow-wrap: break-word;
}

.hero-lead {
  margin: 0 0 1.5rem;
  color: var(--color-muted);
  font-size: 1.12rem;
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.45rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.96rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent), #ff7b66);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-accent-dark), var(--color-accent));
  color: #fff;
}

.btn-sun {
  background: linear-gradient(135deg, var(--color-sun), #ffd166);
  color: #3d2f00;
  border: 2px solid rgba(255, 183, 3, 0.5);
}

.btn-sun:hover {
  color: #241a00;
}

.btn-ghost {
  background: transparent;
  color: var(--color-forest);
  border: 2px solid var(--color-border);
}

.btn-ghost:hover {
  border-color: var(--color-forest);
  color: var(--color-forest);
}

.btn-block {
  width: 100%;
}

.hero-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.75rem;
  border: 1px solid var(--color-border);
}

.hero-card--party {
  background: linear-gradient(145deg, #ffffff 0%, #fff5fb 50%, #f0fff8 100%);
  border: 2px dashed rgba(232, 93, 76, 0.35);
}

.hero-card h2,
.hero-card .hero-card-heading {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  color: var(--color-muted);
  font-weight: 700;
}

.hero-card .hero-card-heading {
  font-family: inherit;
}

.hero-card ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--color-text);
}

.hero-card li {
  margin-bottom: 0.45rem;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--section-y) 1.25rem;
}

.section h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  letter-spacing: -0.02em;
  color: var(--color-text);
}

/* Durchgängige Überschriften-Akzentlinie (nicht bei zentrierter Plätze-Überschrift) */
.section h2:not(.spots-title) {
  position: relative;
  padding-bottom: 0.55rem;
}

.section h2:not(.spots-title)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(5rem, 28%);
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-forest));
}

/* Volle Breite: weicher Hintergrund bis zum Viewport-Rand */
.section--band {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: max(1.25rem, var(--band-edge));
  padding-right: max(1.25rem, var(--band-edge));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 252, 248, 0.45) 100%);
  border-top: 1px solid rgba(42, 36, 56, 0.06);
  border-bottom: 1px solid rgba(42, 36, 56, 0.06);
}

.section--band > h2,
.section--band > p,
.section--band > div:not(.fullbleed-media),
.section--band > .photo-strip,
.section--band > ul {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.section--band > figure.fullbleed-media {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.section--band-muted {
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.95) 0%, rgba(243, 238, 255, 0.35) 100%);
}

.section-intro,
.voices-intro {
  color: var(--color-muted);
  max-width: 62ch;
  margin-top: 0;
  font-size: 1.04rem;
  line-height: 1.62;
}

.section > p:first-of-type {
  margin-top: 0;
  color: var(--color-muted);
  max-width: 62ch;
}

.section.section--spots {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(214, 255, 240, 0.25) 35%,
    rgba(255, 240, 230, 0.2) 70%,
    rgba(255, 255, 255, 0.25) 100%
  );
  border-top: 1px solid rgba(42, 36, 56, 0.06);
  border-bottom: 1px solid rgba(42, 36, 56, 0.06);
}

.spots-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.spots-title {
  text-align: center;
}

.spots-intro {
  text-align: center;
  margin: 0 auto 2rem;
  max-width: 42ch;
  color: var(--color-muted);
}

.spots-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

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

.spot-card {
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  border: 2px solid transparent;
  box-shadow: var(--shadow);
}

.spot-card--mint {
  background: linear-gradient(160deg, #d6fff0 0%, #a8f0d8 100%);
  border-color: rgba(45, 138, 110, 0.25);
}

.spot-card--peach {
  background: linear-gradient(160deg, #fff0e6 0%, var(--color-peach) 100%);
  border-color: rgba(232, 93, 76, 0.25);
}

.spot-label {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-muted);
}

.spot-value {
  margin: 0.35rem 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  line-height: 1.2;
}

.spot-value strong {
  font-weight: 800;
  color: var(--color-text);
}

.spot-note {
  margin: 0;
  font-size: 0.92rem;
  color: var(--color-muted);
}

.section--gosia {
  background: linear-gradient(180deg, rgba(184, 169, 255, 0.2) 0%, transparent 100%);
  border-radius: var(--radius-lg);
  margin: 0 1rem;
  padding: 2.5rem 1.5rem;
}

@media (min-width: 720px) {
  .section--gosia {
    margin: 0 auto;
    max-width: calc(var(--max) - 2rem);
  }
}

.gosia-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.gosia-lead {
  color: var(--color-muted);
}

.gosia-bubble {
  margin-top: 1.25rem;
  padding: 1.5rem 1.35rem;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border-left: 5px solid var(--color-accent);
  box-shadow: var(--shadow);
}

.gosia-bubble p {
  margin: 0;
  font-size: 1.05rem;
}

.section--voices {
  padding-top: var(--section-y);
}

.voices-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

@media (min-width: 720px) {
  .voices-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .voices-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

.voice-card {
  margin: 0;
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.voice-card--a {
  background: linear-gradient(145deg, #fff9e6, #ffe8a3);
  border: 1px solid rgba(255, 183, 3, 0.35);
}

.voice-card--b {
  background: linear-gradient(145deg, #f3eeff, #dcd4ff);
  border: 1px solid rgba(184, 169, 255, 0.45);
}

.voice-card--c {
  background: linear-gradient(145deg, #e8fff4, #c5f0e0);
  border: 1px solid rgba(45, 138, 110, 0.28);
}

.voice-card--d {
  background: linear-gradient(145deg, #fff0f3, #ffd6e0);
  border: 1px solid rgba(232, 93, 76, 0.22);
}

.voice-card-title {
  margin: 0 0 0.65rem;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.voice-card-text {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.62;
  color: var(--color-muted);
}

.voice-card blockquote {
  margin: 0;
}

.voice-card blockquote p {
  margin: 0;
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.62;
  color: var(--color-text);
}

.voice-card figcaption {
  margin-top: 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-muted);
}

.reviews-hint {
  margin: 1.5rem 0 0;
  font-size: 0.92rem;
  color: var(--color-muted);
  text-align: center;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.reviews-cta {
  margin: 1rem 0 0;
  text-align: center;
}

.section--konzept {
  padding-bottom: 3rem;
}

.grid-2 {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

@media (min-width: 700px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.card {
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.35rem;
  border: 1px solid var(--color-border);
}

.card--sun {
  background: linear-gradient(145deg, #fff6db, #ffe08a);
}

.card--sea {
  background: linear-gradient(145deg, #e6f9ff, #b8e9ff);
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.98rem;
}

.grid-2--pop .card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .grid-2--pop .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(42, 36, 56, 0.12);
  }
}

.grid-konzept {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.75rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .grid-konzept {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card--minty {
  background: linear-gradient(145deg, #e8fff4, #b8efd9);
  border: 1px solid rgba(45, 138, 110, 0.22);
}

.card--lilac {
  background: linear-gradient(145deg, #f3eeff, #e0d7ff);
  border: 1px solid rgba(184, 169, 255, 0.38);
}

.grid-konzept--pop .card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .grid-konzept--pop .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(42, 36, 56, 0.12);
  }
}

.section--contact {
  background: linear-gradient(180deg, #ffffff 0%, #faf9ff 55%, #fffaf7 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 -24px 56px rgba(42, 36, 56, 0.07);
  padding-top: 1rem;
  padding-bottom: calc(var(--section-y) + 0.5rem);
}

.section--contact > .contact-motiv-card {
  margin-top: 0;
}

.contact-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 800px) {
  .contact-layout {
    grid-template-columns: 0.95fr 1.05fr;
  }
}

.contact-direct {
  font-size: 0.98rem;
  color: var(--color-muted);
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.contact-form {
  position: relative;
  background: linear-gradient(165deg, #fffaf5, #f5fff8);
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(232, 93, 76, 0.2);
  box-shadow: var(--shadow);
}

.contact-form__fields {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .contact-form__fields {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .contact-form__fields .form-row--full {
    grid-column: 1 / -1;
  }
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-text);
}

.contact-form__fields .form-row {
  margin-bottom: 0;
  min-width: 0;
}

.form-row span em {
  font-weight: 500;
  opacity: 0.85;
}

.form-row input,
.form-row textarea {
  font: inherit;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  border: 2px solid var(--color-border);
  background: #fff;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 3px solid rgba(232, 93, 76, 0.25);
  border-color: var(--color-accent);
}

.form-status {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: var(--color-forest);
  font-weight: 600;
}

.form-hint {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-muted);
}

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

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.placeholder {
  background: linear-gradient(135deg, #f5ecff, #ffeef5);
  border: 2px dashed rgba(184, 169, 255, 0.5);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  color: var(--color-muted);
  font-size: 0.95rem;
  margin-top: 1rem;
}

.contact-box {
  margin-top: 2rem;
  padding: 1.75rem;
  background: rgba(45, 138, 110, 0.08);
  border-radius: var(--radius);
  border: 1px solid rgba(45, 138, 110, 0.2);
}

.contact-box p {
  margin: 0.5rem 0 0;
}

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.25rem 1.25rem 3rem;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.site-footer--joy {
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.5));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  margin-top: 0.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  justify-content: center;
}

.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}

.legal-page h1 {
  margin-top: 0;
  font-size: clamp(1.65rem, 3.5vw, 2.1rem);
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.legal-page h1::after {
  content: "";
  display: block;
  width: min(4rem, 22%);
  height: 4px;
  margin-top: 0.65rem;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-forest));
}

.legal-page h2 {
  font-size: 1.2rem;
  margin-top: 2rem;
}

.legal-page ul {
  margin: 0.75rem 0 1.25rem;
  padding-left: 1.35rem;
  line-height: 1.62;
}

.legal-page li {
  margin-bottom: 0.45rem;
}

.legal-page .legal-lead {
  font-size: 1.05rem;
  color: var(--color-muted);
  line-height: 1.65;
}

.gosia-more {
  margin: 1.25rem 0 0;
  font-size: 0.98rem;
}

.gosia-more a {
  font-weight: 700;
}

.legal-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin: 1.75rem 0 1rem;
}

.section.alt {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

@media (max-width: 720px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    width: 100%;
    display: none;
  }

  .nav.is-open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem 0 0.5rem;
  }
}
