/* Brand green = Kleeblatt im Logo (gedämpftes Kühl-Türkisgrün, klar von Lagunen-Türkis getrennt) */
:root {
  --brand-blue: #0a4d84;
  --brand-turquoise: #17a3be;
  --brand-green: #5d907f;
  --brand-rose: #c8438a;

  --ocean-deep: var(--brand-blue);
  --ocean-mid: #3d8f9e;
  --wave-sky: #9fd4e0;
  --sage: var(--brand-turquoise);
  --mint: #b5d4bf;
  --rose: var(--brand-rose);
  --rose-soft: #e8a4b8;
  --blush-wash: rgba(231, 168, 188, 0.25);
  --sun: var(--brand-green);
  --sun-soft: color-mix(in srgb, #f5faf7 88%, var(--brand-green) 12%);
  --lavender: #9e8eb5;
  --lavender-mist: rgba(158, 142, 181, 0.18);
  --cream: #fbfaf7;
  --paper: #ffffff;
  --ink: #2a445f;
  --ink-muted: #5c6e87;

  --font-display: "The Girl Next Door", cursive;
  --font-body: "Quicksand", system-ui, sans-serif;

  --radius-lg: 20px;
  --radius-sm: 12px;
  --shadow-soft: 0 18px 40px rgba(39, 104, 120, 0.08);
}

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

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: #ffffff;
}

.bg-soft {
  display: none;
}

.wrap {
  width: min(56rem, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: relative;
  z-index: 2;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid rgba(39, 104, 120, 0.1);
  padding: 1.5rem 1.25rem 1.75rem;
}

.header__inner {
  display: flex;
  justify-content: center;
  max-width: 72rem;
  margin-inline: auto;
}

.brand {
  display: block;
  text-decoration: none;
}

.brand__logo {
  display: block;
  width: min(520px, 96vw);
  height: auto;
}

/* Hero Banner — Vollbild mit Hintergrundfoto */
.hero-banner {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('images/background-banner.jpg') center/cover no-repeat;
  overflow: hidden;
}

.hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.10) 0%,
    rgba(255,255,255,0.28) 50%,
    rgba(255,255,255,0.45) 100%
  );
  pointer-events: none;
}

.hero-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(0.75rem, 2vw, 1.1rem);
  padding: clamp(4rem, 10vw, 6.5rem) 1.5rem clamp(3.5rem, 8vw, 5.5rem);
  width: min(52rem, calc(100% - 2rem));
}

.hero-banner__logo {
  width: min(420px, 72vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 12px rgba(10,77,132,0.08));
}

.hero-banner__claim {
  margin: 0.25rem 0 0;
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 1.6vw, 0.92rem);
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brand-blue);
}

.hero-banner__values {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.65rem, 1.2vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  color: color-mix(in srgb, var(--brand-blue) 55%, var(--brand-turquoise) 45%);
}

.hero-banner__rule {
  width: min(14rem, 55%);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-turquoise), var(--brand-green), var(--brand-rose));
  opacity: 0.82;
  margin: 0.1rem 0 0.25rem;
}

.hero-banner__dot {
  font-size: 0.6em;
  vertical-align: middle;
  margin: 0 0.2em;
}

.hero-banner__editorial {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  max-width: 32rem;
  margin-top: clamp(0.5rem, 2vw, 1rem);
}

.hero-banner__problem {
  margin: 0;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 400;
  line-height: 1.65;
  color: var(--brand-rose);
  text-align: center;
  text-wrap: balance;
  letter-spacing: 0.02em;
  opacity: 0.88;
}

.hero-banner__em-rule {
  width: 2.25rem;
  height: 1px;
  background: color-mix(in srgb, var(--brand-turquoise) 55%, transparent);
  margin: 0.35rem 0;
}

.hero-banner__promise {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.22rem, 3.2vw, 1.7rem);
  font-weight: 400;
  line-height: 1.45;
  color: var(--brand-blue);
  letter-spacing: 0.025em;
  text-align: center;
  text-wrap: balance;
}

.hero-banner__cta {
  display: inline-block;
  margin-top: 0.65rem;
  padding: 0.9rem 2.25rem;
  font-family: var(--font-body);
  font-size: clamp(0.7rem, 1.3vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.13em;
  color: #ffffff;
  background: var(--brand-rose);
  border-radius: 999px;
  text-decoration: none;
  transition: filter 0.18s ease, transform 0.18s ease;
}

.hero-banner__cta:hover {
  filter: brightness(1.07);
  transform: translateY(-2px);
}

/* Editorial intro — vertikal zentriert, alles mittig, großzügiger Rhythmus */
.intro-editorial {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: min(88svh, 52rem);
  padding: clamp(2.5rem, 8vw, 4.5rem) 0 clamp(2.75rem, 7vw, 4.5rem);
  box-sizing: border-box;
  background:
    linear-gradient(
      180deg,
      var(--paper) 0%,
      var(--cream) 18%,
      color-mix(in srgb, var(--cream) 85%, white 15%) 55%,
      color-mix(in srgb, white 93%, var(--brand-turquoise) 7%) 100%
    );
}

.intro-editorial__wrap {
  width: min(42rem, calc(100% - 2.5rem));
  margin-inline: auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

.intro-editorial__lead {
  position: relative;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.intro-editorial__eyebrow {
  margin: 0 0 clamp(1.35rem, 3.5vw, 2rem);
  max-width: 34rem;
}

.intro-editorial__eyebrow--after {
  margin: clamp(1.5rem, 4vw, 2.25rem) 0 0;
}

.intro-editorial__eyebrow,
.intro-editorial__eyebrow--after {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: color-mix(in srgb, var(--brand-blue) 76%, var(--brand-turquoise) 24%);
  text-wrap: balance;
}

.intro-editorial__intro-copy {
  margin: clamp(1.25rem, 3.5vw, 1.85rem) auto 0;
  max-width: 34rem;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.98rem, 2.2vw, 1.125rem);
  line-height: 1.68;
  letter-spacing: 0.045em;
  color: var(--ink-muted);
  text-wrap: balance;
}

.intro-editorial__intro-emph {
  margin: clamp(0.9rem, 2.5vw, 1.3rem) auto 0;
  max-width: 32rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.03em;
  color: var(--brand-blue);
  text-wrap: balance;
}

.intro-editorial__title {
  margin: 0;
  max-width: 38rem;
  margin-inline: auto;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 5.2vw, 2.75rem);
  font-weight: 400;
  line-height: 1.22;
  color: var(--brand-blue);
  letter-spacing: 0.025em;
  text-wrap: balance;
}

.intro-editorial__rule {
  width: min(11rem, 55%);
  height: 2px;
  margin: clamp(1.75rem, 4.5vw, 2.5rem) auto clamp(1.65rem, 4vw, 2.35rem);
  border: none;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--brand-blue),
    var(--brand-turquoise),
    var(--brand-rose)
  );
  opacity: 0.88;
}

.intro-editorial__dek {
  margin: 0 auto;
  max-width: 34rem;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.98rem, 2.2vw, 1.125rem);
  line-height: 1.68;
  letter-spacing: 0.045em;
  color: var(--ink-muted);
  text-wrap: balance;
}

.intro-editorial__bridge {
  height: clamp(2.75rem, 6vw, 4rem);
  width: 100%;
  max-width: min(30rem, 100%);
  margin: clamp(2.25rem, 5.5vw, 3.25rem) auto clamp(2rem, 4.5vw, 2.75rem);
  background: linear-gradient(
    180deg,
    transparent 0%,
    color-mix(in srgb, white 88%, var(--brand-turquoise) 6%) 55%,
    color-mix(in srgb, white 92%, var(--mint) 8%) 100%
  );
  border-radius: 999px 999px 0 0 / 40% 40% 0 0;
  opacity: 0.95;
}

.intro-editorial__chapter {
  margin: clamp(2.75rem, 7vw, 4.25rem) 0 0;
  padding: 0 0 clamp(0.35rem, 1.2vw, 0.65rem);
  max-width: 36rem;
  margin-inline: auto;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4.6vw, 2.5rem);
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
  letter-spacing: 0.045em;
  color: var(--brand-turquoise);
  text-wrap: balance;
}

.intro-editorial__brand-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(0.45rem, 1.75vw, 0.78rem);
  margin: clamp(0.65rem, 2vw, 1.1rem) 0 clamp(0.25rem, 1vw, 0.65rem);
  padding: 0;
}

.intro-editorial__dot-group {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.intro-editorial__dot {
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--intro-dot);
}

.intro-editorial__dot--sm {
  width: 10px;
  height: 10px;
}

.intro-editorial__dot--lg {
  width: 16px;
  height: 16px;
}

.intro-editorial + .topic-band {
  border-top: none;
}

.section {
  padding: 3rem 0;
}

.section__title {
  margin: 0 0 1.25rem;
  max-width: 40rem;
  margin-inline: auto;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.1rem);
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: 0.025em;
  color: var(--ocean-deep);
  text-wrap: balance;
  text-align: center;
}

.section--work {
  position: relative;
  padding-top: clamp(3rem, 7vw, 4.25rem);
  padding-bottom: 4rem;
}

.section--work .section__title {
  margin-bottom: 2.25rem;
}

.section--work .wrap {
  text-align: center;
}

/* Themen-Bereiche — editorial, eine Spalte, je eine Brandfarbe */
.topic-band {
  --topic-accent: var(--brand-turquoise);
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--cream) 97%, var(--topic-accent) 3%) 0%,
    color-mix(in srgb, white 96%, var(--topic-accent) 4%) 48%,
    color-mix(in srgb, white 98%, var(--topic-accent) 2%) 100%
  );
}

.topic-band--turquoise {
  --topic-accent: var(--brand-turquoise);
  background: white;
}

.topic-band--rose {
  --topic-accent: var(--brand-rose);
  background: white;
}

.topic-band--green {
  --topic-accent: var(--brand-green);
  background: white;
}

.topic-band--blue {
  --topic-accent: var(--brand-blue);
  background: white;
}

.topic-band__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(1.75rem, 4vw, 2.75rem);
  padding: clamp(2.25rem, 5vw, 3.75rem) 0 clamp(2.75rem, 6vw, 4.25rem);
}

.topic-band__kicker {
  margin: 0;
  order: 0;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  color: color-mix(in srgb, var(--ink-muted) 82%, var(--brand-blue) 18%);
  line-height: 1.45;
  text-wrap: balance;
}

.topic-band__img-title {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 2rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-align: center;
  color: white;
  text-shadow:
    0 2px 20px rgba(0, 0, 0, 0.45),
    0 1px 6px rgba(0, 0, 0, 0.65);
  text-wrap: balance;
}

.topic-band__full-img {
  width: min(56rem, calc(100% - 2.5rem));
  margin: clamp(1.5rem, 4vw, 2.5rem) auto 0;
  position: relative;
  line-height: 0;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, black 22%, black 78%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 18%, black 62%, transparent 100%);
  -webkit-mask-composite: destination-in;
  mask-image:
    linear-gradient(to right, transparent 0%, black 22%, black 78%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 18%, black 62%, transparent 100%);
  mask-composite: intersect;
}

.topic-band__full-img img {
  width: 100%;
  height: clamp(160px, 28vw, 300px);
  object-fit: cover;
  object-position: center 40%;
  display: block;
  border-radius: 2rem;
}

.topic-band__full-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.22);
  pointer-events: none;
}

.topic-band__inner--no-figure {
  padding-top: clamp(0.5rem, 2vw, 1.25rem);
}

.topic-band__figure {
  margin: 0;
  width: 100%;
  max-width: none;
  display: flex;
  justify-content: center;
}

.topic-band__placeholder {
  width: 100%;
  max-width: 28rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(1.75rem, 4vw, 2.5rem) 1.5rem;
  text-align: center;
  border: 2px dashed color-mix(in srgb, var(--topic-accent) 26%, rgba(27, 75, 121, 0.35) 74%);
  border-radius: var(--radius-lg);
  background: linear-gradient(
    160deg,
    color-mix(in srgb, white 91%, var(--topic-accent) 9%) 0%,
    color-mix(in srgb, white 96%, var(--topic-accent) 4%) 100%
  );
}

.topic-band__placeholder-label {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: color-mix(in srgb, var(--brand-blue) 40%, var(--topic-accent) 60%);
  letter-spacing: 0.04em;
}

.topic-band__placeholder-hint {
  font-size: 0.9rem;
  color: var(--ink-muted);
  letter-spacing: 0.03em;
}

.topic--editorial {
  width: 100%;
  max-width: min(52rem, 100%);
  margin-inline: auto;
}

.topic__head-split {
  width: 100%;
  margin-bottom: clamp(1.5rem, 3.8vw, 2.25rem);
}

.topic__head-split--center-title {
  text-align: center;
  padding: clamp(0.35rem, 1.5vw, 0.85rem) 0;
}

.topic__main-title {
  margin: 0 auto;
  max-width: min(40rem, 94%);
  font-family: var(--font-display);
  font-size: clamp(1.52rem, 3.48vw, 1.92rem);
  font-weight: 400;
  line-height: 1.38;
  letter-spacing: 0.02em;
  text-wrap: balance;
}

.topic--editorial > p {
  text-align: center;
  text-wrap: balance;
}

.topic-band .topic__main-title {
  color: color-mix(in srgb, var(--brand-blue) 28%, var(--topic-accent) 72%);
}

.topic p {
  margin: 0 0 1rem;
  color: var(--ink-muted);
  font-size: 1.0625rem;
  line-height: 1.68;
}

.topic p:last-child {
  margin-bottom: 0;
}

.topic__close,
.topic p.topic__close {
  margin-top: 1.75rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 75%;
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid color-mix(in srgb, white 70%, var(--brand-rose) 30%);
  background: color-mix(in srgb, white 93%, var(--brand-rose) 7%);
  box-shadow: 0 4px 20px color-mix(in srgb, transparent 88%, var(--brand-rose) 12%);
  color: var(--brand-rose);
  font-size: 1.07rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.7;
  text-align: center;
}

/* Prose block */
.prose {
  max-width: 40rem;
  margin-inline: auto;
  font-size: 1.08rem;
}

.prose--center {
  text-align: center;
}

.prose p {
  margin: 0 0 1rem;
  color: var(--ink-muted);
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose__emphasis {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.45;
  color: var(--ocean-deep);
  letter-spacing: 0.03em;
}

/* "So begleite ich Dich" — alternierendes Magazin-Layout */
.section--approach .wrap {
  width: min(58rem, calc(100% - 2.5rem));
  text-align: center;
}

.approach__list {
  list-style: none;
  counter-reset: approach;
  margin: clamp(2.25rem, 5.5vw, 3.5rem) auto 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 6vw, 4.5rem);
}

.approach__item {
  --acc: var(--brand-turquoise);
  counter-increment: approach;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  align-items: center;
  text-align: left;
}

.approach__item:nth-child(1) {
  --acc: var(--brand-rose);
}
.approach__item:nth-child(2) {
  --acc: var(--brand-turquoise);
}
.approach__item:nth-child(3) {
  --acc: var(--brand-blue);
}
.approach__item:nth-child(4) {
  --acc: var(--brand-green);
}

/* Große Nummer als Trenner zwischen Titel- und Textspalte */
.approach__item::before {
  content: counter(approach, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: clamp(1.13rem, 2.5vw, 1.75rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--acc);
  text-align: left;
}

.approach__term {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4.6vw, 2.5rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.03em;
  color: var(--acc);
  text-wrap: balance;
}

.approach__desc {
  margin: 0;
  color: var(--ink-muted);
  font-size: clamp(1.12rem, 1.6vw, 1.25rem);
  line-height: 1.7;
  text-align: left;
  text-wrap: balance;
}

@media (min-width: 46rem) {
  .approach__item {
    grid-template-columns: 1fr auto 1fr;
    column-gap: clamp(1.75rem, 5vw, 4rem);
  }

  .approach__term {
    grid-row: 1;
    grid-column: 1;
    text-align: center;
  }

  .approach__item::before {
    grid-row: 1;
    grid-column: 2;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.45em clamp(0.65rem, 1.6vw, 1.3rem);
    border-inline: 1px solid color-mix(in srgb, var(--acc) 30%, transparent);
    text-align: center;
  }

  .approach__desc {
    grid-row: 1;
    grid-column: 3;
    text-align: left;
  }
}

/* "Darum begleite ich dich" */
.section--why {
  padding: 0;
  overflow: hidden;
}

.why__layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  min-height: clamp(360px, 55vw, 560px);
}

.why__portrait {
  margin: 0;
  position: relative;
  overflow: hidden;
  line-height: 0;
}

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

/* right-to-white fade on desktop */
.why__portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 55%, white 100%);
  pointer-events: none;
}

.why__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 5vw, 3.5rem);
}

@media (max-width: 680px) {
  .why__layout {
    grid-template-columns: 1fr;
  }
  .why__portrait {
    aspect-ratio: 1 / 1;
    height: auto;
  }
  .why__portrait::after {
    background: linear-gradient(to bottom, transparent 55%, white 100%);
  }
}

.why__body {
  margin-top: clamp(1.5rem, 4vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.why__body p {
  margin: 0;
  font-size: clamp(1.05rem, 2.2vw, 1.18rem);
  line-height: 1.75;
  color: var(--ink-muted);
  text-wrap: balance;
}

.why__body p:first-child {
  font-style: italic;
  color: var(--ink);
}

/* "Deine Begleitung" — Angebots-Karten */
.section--offers {
  padding-bottom: clamp(3.5rem, 7vw, 4.75rem);
}

.section--offers .wrap {
  width: min(62rem, calc(100% - 2.5rem));
}

.offers {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3.5vw, 2.25rem);
  margin-top: clamp(1.75rem, 4.5vw, 2.75rem);
}

.offer {
  --offer-accent: var(--brand-turquoise);
  position: relative;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  background: var(--paper);
  border: 1px solid rgba(39, 104, 120, 0.1);
  border-top: 4px solid var(--offer-accent);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.offer--turquoise {
  --offer-accent: var(--brand-turquoise);
}

.offer--rose {
  --offer-accent: var(--brand-rose);
}

.offer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  text-align: left;
}

@media (min-width: 48rem) {
  .offer__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    gap: clamp(1.75rem, 4vw, 3rem);
    align-items: start;
  }
}

.offer__head {
  margin: 0;
}

.offer__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.2vw, 1.75rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: color-mix(in srgb, var(--brand-blue) 32%, var(--offer-accent) 68%);
}

.offer__subtitle {
  margin: 0.35rem 0 0;
  font-size: 1rem;
  font-style: italic;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}

.offer__price {
  display: inline-block;
  margin: 0.9rem 0 0;
  padding: 0.3rem 0.85rem;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.03em;
  color: color-mix(in srgb, var(--brand-blue) 28%, var(--offer-accent) 72%);
  background: color-mix(in srgb, white 88%, var(--offer-accent) 12%);
  border-radius: 999px;
}

.offer p {
  margin: 0 0 0.9rem;
  color: var(--ink-muted);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.offer__list-label {
  margin-top: 1.25rem;
  font-weight: 600;
  color: var(--ink);
}

.offer__list {
  margin: 0;
  padding-left: 1.2rem;
}

.offer__list li {
  margin-bottom: 0.5rem;
  color: var(--ink-muted);
  font-size: 1.0625rem;
  line-height: 1.55;
}

.offer__list li::marker {
  color: var(--offer-accent);
}

.offer__body > p:last-child,
.offer__body > .offer__list:last-child {
  margin-bottom: 0;
}

.offer__cta {
  margin-top: clamp(1.5rem, 3.5vw, 2.25rem);
  padding-top: clamp(1.35rem, 3vw, 1.85rem);
  border-top: 1px solid rgba(39, 104, 120, 0.1);
  text-align: center;
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
}

.btn--book {
  padding: 1rem 3rem;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  color: #ffffff;
  background: var(--offer-accent);
  box-shadow: 0 12px 26px color-mix(in srgb, var(--offer-accent) 32%, transparent);
}

.btn--book:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 16px 32px color-mix(in srgb, var(--offer-accent) 42%, transparent);
}

.btn--book:active {
  transform: translateY(0);
}

.btn--disabled {
  background: color-mix(in srgb, var(--ink-muted) 30%, #d8dee0 70%);
  color: #ffffff;
  box-shadow: none;
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.65;
}

.btn--disabled:hover {
  transform: none;
  filter: none;
  box-shadow: none;
}

/* Rechtstexte — Impressum & Datenschutz */
.legal {
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3rem, 7vw, 4.5rem);
}

.legal__wrap {
  width: min(46rem, calc(100% - 2.5rem));
  margin-inline: auto;
}

.legal__title {
  margin: 0 0 clamp(1.5rem, 4vw, 2.25rem);
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: 0.025em;
  color: var(--brand-blue);
  text-wrap: balance;
}

.legal__updated {
  margin: -0.75rem 0 clamp(1.75rem, 4vw, 2.5rem);
  font-size: 0.9rem;
  color: var(--ink-muted);
  letter-spacing: 0.03em;
}

.legal h2 {
  margin: clamp(2rem, 5vw, 2.75rem) 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.4vw, 1.8rem);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: color-mix(in srgb, var(--brand-blue) 72%, var(--brand-turquoise) 28%);
}

.legal h3 {
  margin: 1.6rem 0 0.5rem;
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.legal h4 {
  margin: 1.2rem 0 0.4rem;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
}

.legal p,
.legal li {
  margin: 0 0 1rem;
  color: var(--ink-muted);
  font-size: 1.0625rem;
  line-height: 1.7;
}

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

.legal li {
  margin-bottom: 0.5rem;
}

.legal a {
  color: var(--brand-turquoise);
  text-underline-offset: 0.15em;
}

.legal a:hover {
  color: var(--brand-blue);
}

.legal address {
  font-style: normal;
  line-height: 1.7;
  color: var(--ink-muted);
}

.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: clamp(1.5rem, 4vw, 2rem);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--ink-muted);
  text-decoration: none;
}

.legal__back:hover {
  color: var(--brand-blue);
}

/* Footer */
.site-footer {
  padding: 0;
  border-top: 1px solid rgba(39, 104, 120, 0.12);
  background: linear-gradient(180deg, transparent, rgba(159, 212, 224, 0.12));
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 1.25rem;
  margin-top: 0.35rem;
}

.footer__nav a {
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
  text-decoration: none;
}

.footer__nav a:hover {
  color: var(--brand-blue);
}

.footer__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  padding: clamp(1.75rem, 4vw, 2.75rem) 0 clamp(2.5rem, 5vw, 3rem);
}

.footer__logo {
  display: block;
  width: auto;
  max-height: 140px;
  max-width: min(340px, 80vw);
  height: auto;
  object-fit: contain;
}

.footer__tag {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.65rem);
  line-height: 1.45;
  color: color-mix(in srgb, var(--brand-blue) 68%, var(--brand-turquoise) 32%);
  letter-spacing: 0.04em;
}

.footer__tag--main {
  display: block;
  font-size: clamp(1.45rem, 3.4vw, 1.85rem);
}

.footer__tag--sub {
  display: block;
  font-size: clamp(0.88rem, 1.8vw, 1.05rem);
  opacity: 0.68;
  letter-spacing: 0.04em;
  margin-top: 0.2rem;
}

.footer__illustration {
  width: 100%;
  margin: 0;
  line-height: 0;
}

.footer__illustration-img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
