:root {
  --bg: #ffffff;
  --bg-alt: #f5f0f2;
  --dark: #111111;
  --text: #1a1a1a;
  --muted: #6b6b6b;
  --pink: #e6007e;
  --pink-dark: #c4006a;
  --pink-light: #fce4f1;
  --white: #ffffff;
  --border: #e0d6da;
  --font: "DM Sans", sans-serif;
  --serif: "Instrument Serif", serif;
}

*, *::before, *::after {
  box-sizing: border-box; margin: 0; padding: 0;
  border-radius: 0 !important;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container { width: 90%; margin-inline: auto; }

/* ══════════════════════════════
   HEADER — Mobile-first
   ══════════════════════════════ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 60px;
}
.header__logo { height: 28px; width: auto; }
.header__toggle {
  display: block; border: 0; background: none; cursor: pointer;
  width: 40px; height: 40px; padding: 0;
}
.header__toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--dark); margin: 5px auto;
  transition: transform .3s, opacity .3s;
}
.header__nav {
  position: absolute; top: 60px; left: 0; right: 0;
  display: none; flex-direction: column;
  background: #ffffff; border-bottom: 1px solid rgba(0,0,0,.06);
  padding: 1rem 5%;
}
.header__nav.open { display: flex; }
.header__nav a {
  font-weight: 600; font-size: .88rem; text-transform: uppercase;
  letter-spacing: .04em; color: var(--text);
  transition: color .2s;
  padding: .6rem 0;
}
.header__nav a:hover,
.header__nav a.active { color: var(--pink); }

/* ══════════════════════════════
   HERO — Luminous Luxury
   ══════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding-top: 60px;
  background: #120a14;
  text-align: center;
}

/* ── Image Slider ── */
.hero__slider {
  position: absolute; inset: 0; z-index: 0;
}
.hero__slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  opacity: 0;
  animation: heroSlide 28s ease-in-out infinite;
  will-change: opacity, transform;
}
.hero__slide:nth-child(1) { animation-delay: 0s; }
.hero__slide:nth-child(2) { animation-delay: 7s; }
.hero__slide:nth-child(3) { animation-delay: 14s; }
.hero__slide:nth-child(4) { animation-delay: 21s; }
@keyframes heroSlide {
  0%     { opacity: 0; transform: scale(1.06); }
  5%     { opacity: 1; }
  25%    { opacity: 1; transform: scale(1); }
  30%    { opacity: 0; transform: scale(1); }
  100%   { opacity: 0; }
}

/* ── Slider Overlay: leicht abdunkeln für Lesbarkeit, Foto bleibt sichtbar ── */
.hero__slider-overlay {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(105deg,
      rgba(18,10,24,.20) 0%,
      rgba(18,10,24,.10) 45%,
      rgba(18,10,24,.03) 70%,
      transparent 100%
    ),
    linear-gradient(180deg,
      rgba(18,10,24,.14) 0%,
      transparent 28%,
      transparent 68%,
      rgba(18,10,24,.18) 100%
    );
}

/* ── Gradient Background ── */
.hero__gradient {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(230,0,126,.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 15% 80%, rgba(230,0,126,.05) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 20%, rgba(196,0,106,.04) 0%, transparent 50%);
  animation: gradientShift 15s ease-in-out infinite alternate;
}
@keyframes gradientShift {
  0% { opacity: .5; transform: scale(1); }
  100% { opacity: .75; transform: scale(1.15); }
}

/* ── Subtle Grid ── */
.hero__grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(230,0,126,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(230,0,126,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 10%, transparent 70%);
}

/* ── Floating Orbs ── */
.hero__orbs { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero__orb {
  position: absolute;
  border-radius: 50% !important;
  filter: blur(80px);
  will-change: transform;
}
.hero__orb--1 {
  width: 350px; height: 350px;
  background: rgba(230,0,126,.10);
  top: -8%; right: -5%;
  animation: orbFloat1 22s ease-in-out infinite;
}
.hero__orb--2 {
  width: 280px; height: 280px;
  background: rgba(196,0,106,.07);
  bottom: -10%; left: -8%;
  animation: orbFloat2 26s ease-in-out infinite;
}
.hero__orb--3 {
  width: 180px; height: 180px;
  background: rgba(255,180,220,.08);
  top: 40%; left: 60%;
  animation: orbFloat3 18s ease-in-out infinite;
}
@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-40px, 50px); }
  66% { transform: translate(30px, -30px); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(50px, -40px); }
  66% { transform: translate(-30px, 30px); }
}
@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, 20px) scale(1.15); }
}

/* ── Sweep Line ── */
.hero__sweep {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: linear-gradient(
    105deg,
    transparent 0%, transparent 45%,
    rgba(230,0,126,.06) 49%,
    rgba(255,255,255,.02) 50%,
    rgba(230,0,126,.06) 51%,
    transparent 55%, transparent 100%
  );
  background-size: 250% 100%;
  animation: heroSweep 8s ease-in-out infinite;
}
@keyframes heroSweep {
  0% { background-position: 250% 0; }
  100% { background-position: -100% 0; }
}

/* ── Film Grain ── */
.hero__noise {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* ── Decorative Ring ── */
.hero__ring {
  position: absolute; pointer-events: none; z-index: 0;
  width: min(70vw, 420px); height: min(70vw, 420px);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  border: 1px solid rgba(230,0,126,.06);
  border-radius: 50% !important;
  animation: ringRotate 50s linear infinite;
}
.hero__ring::before {
  content: ''; position: absolute; inset: -35px;
  border: 1px solid rgba(230,0,126,.03);
  border-radius: 50% !important;
}
.hero__ring::after {
  content: ''; position: absolute; inset: 30px;
  border: 1px dashed rgba(230,0,126,.04);
  border-radius: 50% !important;
}
@keyframes ringRotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ── Corner Frame ── */
.hero__frame {
  display: none; position: absolute; pointer-events: none; z-index: 1;
  inset: 2rem;
  --fc: rgba(230,0,126,.2);
  background:
    linear-gradient(var(--fc), var(--fc)) 0 0 / 40px 1px no-repeat,
    linear-gradient(var(--fc), var(--fc)) 0 0 / 1px 40px no-repeat,
    linear-gradient(var(--fc), var(--fc)) 100% 0 / 40px 1px no-repeat,
    linear-gradient(var(--fc), var(--fc)) 100% 0 / 1px 40px no-repeat,
    linear-gradient(var(--fc), var(--fc)) 0 100% / 40px 1px no-repeat,
    linear-gradient(var(--fc), var(--fc)) 0 100% / 1px 40px no-repeat,
    linear-gradient(var(--fc), var(--fc)) 100% 100% / 40px 1px no-repeat,
    linear-gradient(var(--fc), var(--fc)) 100% 100% / 1px 40px no-repeat;
}

/* ── Content (über allen Hero-Ebenen) ── */
.hero__content {
  position: relative; z-index: 10;
  max-width: 800px;
  padding: 2rem 0 4rem;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .8rem;
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .3em; color: #fff;
  text-shadow: 0 1px 10px rgba(0,0,0,.7);
  margin-bottom: 1.5rem;
}
.hero__eyebrow::before,
.hero__eyebrow::after {
  content: ''; display: block;
  width: 24px; height: 1px;
  background: #fff; opacity: .6;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 400; line-height: .85;
  margin-bottom: 1.5rem;
}
.hero__title-outline {
  display: block;
  font-size: clamp(2.6rem, 10vw, 6.5rem);
  -webkit-text-stroke: 0;
  -webkit-text-fill-color: #fff;
  color: #fff;
  letter-spacing: .04em;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,.45)) drop-shadow(0 0 40px rgba(0,0,0,.25));
}
.hero__title-solid {
  display: block;
  font-size: clamp(3rem, 12vw, 8rem);
  background: linear-gradient(135deg, #fff 0%, var(--pink) 50%, #fff 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleGradient 6s ease-in-out infinite;
  letter-spacing: .02em;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,.35));
}
@keyframes titleGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero__sub {
  font-size: 1rem; color: #fff;
  line-height: 1.75; max-width: 48ch;
  margin: 0 auto 1.8rem;
  text-shadow: 0 1px 8px rgba(0,0,0,.5), 0 0 24px rgba(0,0,0,.25);
}

/* ── Trust Items ── */
.hero__trust {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: .6rem; margin-bottom: 2rem;
}
.hero__trust-item {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .45rem .9rem;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.45);
  font-size: .68rem; font-weight: 600;
  color: #fff;
  text-transform: uppercase; letter-spacing: .04em;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  text-shadow: 0 1px 6px rgba(0,0,0,.6);
  transition: border-color .3s, background .3s;
}
.hero__trust-item:hover {
  border-color: rgba(230,0,126,.7);
  background: rgba(230,0,126,.25);
}
.hero__trust-icon {
  color: var(--pink); font-weight: 700; font-size: .8rem;
}

/* ── Hero Actions ── */
.hero__actions {
  display: flex; flex-direction: column; align-items: center; gap: .8rem;
}
.hero__actions .btn { width: 100%; max-width: 320px; text-align: center; }

/* ── Hero Buttons ── */
.btn--hero {
  position: relative; overflow: hidden;
  padding: 1.1rem 2rem; font-weight: 700; font-size: .82rem;
  background: var(--pink); color: #fff;
  text-transform: uppercase; letter-spacing: .08em;
  border: 2px solid var(--pink);
  transition: transform .25s, box-shadow .25s;
}
.btn--hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(230,0,126,.5), 0 0 60px rgba(230,0,126,.15);
}
.btn__text { position: relative; z-index: 1; }
.btn__shimmer {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.25) 50%, transparent 60%);
  background-size: 250% 100%;
  animation: btnShimmer 3.5s ease-in-out infinite;
}
@keyframes btnShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -100% 0; }
}
.btn--hero-outline {
  padding: 1.05rem 2rem; font-weight: 700; font-size: .82rem;
  background: transparent; color: rgba(255,255,255,.8);
  text-transform: uppercase; letter-spacing: .08em;
  border: 1px solid rgba(255,255,255,.2);
  transition: all .3s;
}
.btn--hero-outline:hover {
  border-color: var(--pink); color: var(--pink);
  box-shadow: 0 0 24px rgba(230,0,126,.12);
}

/* ── Entrance Animations ── */
.hero-anim {
  opacity: 0; transform: translateY(30px);
  animation: heroReveal .9s cubic-bezier(.22,1,.36,1) both;
}
.hero-anim--1 { animation-delay: .4s; }
.hero-anim--2 { animation-delay: .7s; }
.hero-anim--3 { animation-delay: 1s; }
.hero-anim--4 { animation-delay: 1.3s; }
.hero-anim--5 { animation-delay: 1.6s; }
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Scroll Hint ── */
.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%); z-index: 11;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.hero__scroll-text {
  font-size: .55rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .2em; color: rgba(255,255,255,.55);
  text-shadow: 0 1px 6px rgba(0,0,0,.4);
}
.hero__scroll-line {
  display: block; width: 1px; height: 40px;
  background: linear-gradient(180deg, rgba(230,0,126,.5), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%, 100% { opacity: .3; transform: scaleY(.4); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ── Particles ── */
.hero__particles { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.hero__particle {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--pink); opacity: 0;
  border-radius: 50% !important;
  animation: particleRise linear infinite;
}
@keyframes particleRise {
  0% { opacity: 0; transform: translateY(0) scale(.5); }
  10% { opacity: .5; transform: scale(1); }
  90% { opacity: .08; }
  100% { opacity: 0; transform: translateY(-100vh) scale(.5); }
}

/* ── Badge (global) ── */
.badge {
  display: inline-block; padding: .35rem .7rem;
  background: var(--pink); color: #fff;
  font-size: .68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; margin-bottom: .8rem;
}

/* ══════════════════════════════
   PAGE HERO (Unterseiten)
   ══════════════════════════════ */
.page-hero {
  padding: calc(60px + 2rem) 0 2rem;
  background: var(--dark); color: var(--white);
}
.page-hero .eyebrow { color: var(--pink); }
.page-hero h1 {
  font-family: var(--serif); font-size: 1.8rem;
  font-weight: 400; line-height: 1.15; margin-bottom: .8rem;
}
.page-hero p { max-width: 60ch; opacity: .8; font-size: .95rem; }

/* ══════════════════════════════
   BUTTONS — Mobile-first
   ══════════════════════════════ */
.btn {
  display: inline-block; padding: .85rem 1.4rem;
  font-weight: 700; font-size: .85rem;
  border: 2px solid transparent; cursor: pointer;
  background: var(--pink); color: #fff;
  text-transform: uppercase; letter-spacing: .04em;
  transition: background .25s, transform .2s, box-shadow .25s;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230,0,126,.35);
}
.btn--outline {
  background: transparent; border-color: #fff; color: #fff;
}
.btn--outline:hover {
  background: #fff; color: var(--pink); border-color: #fff;
  box-shadow: 0 8px 24px rgba(255,255,255,.2);
}
.btn--full { width: 100%; text-align: center; }

/* ── TEXT LINK ── */
.text-link {
  display: inline-block; margin-top: .6rem;
  font-weight: 700; color: var(--pink);
  text-transform: uppercase; letter-spacing: .04em; font-size: .85rem;
}
.text-link:hover { text-decoration: underline; }

/* ══════════════════════════════
   STRIP — Pinkes Band, Facts in Blöcken
   ══════════════════════════════ */
.strip {
  position: relative;
  background: var(--pink);
  padding: 2rem 0;
  overflow: hidden;
}
.strip__flash {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 40%,
    rgba(255,255,255,.25) 50%,
    transparent 60%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: stripFlash 4s ease-in-out infinite;
}
@keyframes stripFlash {
  0% { background-position: 150% 0; }
  50% { background-position: -50% 0; }
  100% { background-position: 150% 0; }
}
.strip__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  text-align: center;
  max-width: 900px; margin: 0 auto;
}
.strip__item {
  background: rgba(255,255,255,.12);
  padding: 1.2rem 1rem;
  border: 1px solid rgba(255,255,255,.3);
}
.strip__item strong {
  display: block; font-size: 1.6rem; font-family: var(--serif);
  color: #fff;
}
.strip__item span { font-size: .82rem; color: #fff; opacity: .95; }

/* ══════════════════════════════
   SECTIONS — Mobile-first
   ══════════════════════════════ */
.section { padding: 3rem 0; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--dark); color: #fff; }

.eyebrow {
  display: inline-block;
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--pink);
  margin-bottom: .5rem;
}
h2 {
  font-family: var(--serif); font-size: 1.7rem;
  font-weight: 400; line-height: 1.15; margin-bottom: 1.2rem;
}
.muted { color: var(--muted); }
.section--dark .muted { color: rgba(255,255,255,.55); }

/* ══════════════════════════════
   OFFER GRID — Mobile-first (1 col)
   ══════════════════════════════ */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.offer-card {
  display: flex; flex-direction: column;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.07);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}
.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.11);
}
.offer-card__img-wrap {
  width: 100%; aspect-ratio: 3/2; overflow: hidden;
  background: #f5f0f3;
  flex-shrink: 0;
}
.offer-card__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform .5s ease;
}
.offer-card:hover .offer-card__img-wrap img {
  transform: scale(1.04);
}
.offer-card__icon-wrap {
  width: 100%; aspect-ratio: 3/2;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #fdf0f7 0%, #fce4f2 100%);
  flex-shrink: 0;
}
.offer-card__icon {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  border: 2px solid var(--pink);
  border-radius: 50%;
  color: var(--pink);
  font-weight: 800; font-size: 1.1rem;
  letter-spacing: -.02em;
}
.offer-card__body {
  padding: 1.6rem 1.6rem 2rem;
  display: flex; flex-direction: column; flex: 1;
}
.offer-card__tag {
  display: inline-block;
  font-size: .6rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--pink);
  margin-bottom: .6rem;
}
.offer-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem; font-weight: 400;
  line-height: 1.25; margin-bottom: .7rem;
  color: var(--text);
}
.offer-card p {
  font-size: .88rem; color: var(--muted);
  line-height: 1.75; flex: 1;
  margin-bottom: 1.2rem;
}
.offer-card__link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--pink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: border-color .2s, gap .2s;
  align-self: flex-start;
}
.offer-card__link::after { content: '→'; transition: transform .2s; }
.offer-card__link:hover { border-color: var(--pink); }
.offer-card__link:hover::after { transform: translateX(3px); }

/* ══════════════════════════════
   SPLIT LAYOUT — Mobile-first (stack)
   ══════════════════════════════ */
.split {
  display: grid; grid-template-columns: 1fr;
  gap: 2rem; align-items: center;
}
.split--reverse { direction: ltr; }
.split--reverse > * { direction: ltr; }

/* ══════════════════════════════
   CHECK LIST
   ══════════════════════════════ */
.check-list li {
  padding: .55rem 0; padding-left: 1.6rem;
  position: relative; font-size: .95rem;
}
.check-list li::before {
  content: "✓"; position: absolute; left: 0;
  color: var(--pink); font-weight: 700;
}
.section .check-list {
  margin: 0.5rem 0 1.25rem;
}

/* ══════════════════════════════
   FORM — Mobile-first
   ══════════════════════════════ */
.form-card {
  padding: 1.4rem; background: var(--white); color: var(--text);
  border: 1px solid var(--border);
}
.form-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .8rem; }
.form-card label {
  display: block; margin-bottom: .7rem;
  font-weight: 600; font-size: .85rem;
}
.form-card input:not([type="checkbox"]),
.form-card textarea,
.form-card select {
  width: 100%; margin-top: .3rem; padding: .7rem .75rem;
  border: 1px solid var(--border); background: var(--bg-alt);
  font: inherit; color: var(--text); font-size: 16px;
  transition: border-color .2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-card input:not([type="checkbox"]):focus,
.form-card textarea:focus,
.form-card select:focus {
  outline: none; border-color: var(--pink);
}
.form-card .form-checkbox {
  display: flex; align-items: flex-start; gap: .65rem;
  margin-bottom: 1rem; font-weight: 500; font-size: .88rem;
  cursor: pointer;
}
/* Checkbox: natives Häkchen sichtbar (nicht durch appearance:none entfernen) */
.form-card .form-checkbox input[type="checkbox"] {
  width: 1.2rem;
  min-width: 1.2rem;
  height: 1.2rem;
  margin: .2rem 0 0 0;
  flex-shrink: 0;
  cursor: pointer;
  -webkit-appearance: checkbox;
  appearance: auto;
  accent-color: var(--pink);
  vertical-align: top;
}
.form-card .form-checkbox input[type="checkbox"]:focus {
  outline: 2px solid rgba(230, 0, 126, .35);
  outline-offset: 2px;
}
.form-card .form-checkbox a { color: var(--pink); }
.light-box {
  background: var(--white); border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}

/* ══════════════════════════════
   FAQ
   ══════════════════════════════ */
.faq { margin-top: 1rem; }
.faq__q {
  font-weight: 700; font-size: .95rem;
  padding: .8rem 0 .3rem; cursor: default;
}
.faq__a {
  color: var(--muted); padding-bottom: .8rem; font-size: .9rem;
  border-bottom: 1px solid var(--border);
}

/* ══════════════════════════════
   SCHEDULE
   ══════════════════════════════ */
.schedule { max-width: 100%; }
.schedule__row {
  display: flex; justify-content: space-between;
  padding: .75rem 0; border-bottom: 1px solid var(--border);
  font-size: .92rem;
}
.schedule__row span { color: var(--muted); }
.schedule__row--accent { border-bottom: 0; padding-top: 1rem; font-size: .95rem; }
.schedule__row--accent strong { color: var(--pink); }

/* ══════════════════════════════
   REVIEWS — Mobile-first
   ══════════════════════════════ */
.reviews__header { text-align: center; margin-bottom: 1.5rem; }
.reviews__badge {
  display: inline-flex; align-items: center; gap: .6rem;
  flex-wrap: wrap; justify-content: center;
  margin-top: .6rem;
}
.reviews__stars { color: #f5c518; font-size: 1.6rem; letter-spacing: 3px; }
.reviews__count { color: var(--muted); font-size: .9rem; }
.reviews__grid {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
}
.review-card {
  padding: 1.4rem; background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--pink);
  display: flex; flex-direction: column; gap: .6rem;
}
.review-card__stars { color: #f5c518; font-size: 1rem; letter-spacing: 1px; }
.review-card__text {
  font-size: .92rem; line-height: 1.6; color: var(--text);
  font-style: italic;
}
.review-card__author { display: flex; flex-direction: column; gap: .1rem; margin-top: auto; }
.review-card__author strong { font-size: .88rem; }
.review-card__author span { font-size: .75rem; color: var(--muted); }

/* ══════════════════════════════
   SECTION IMG
   ══════════════════════════════ */
.section-img { width: 100%; height: 220px; object-fit: cover; }
.section-img--portrait { height: 280px; object-position: top; }

/* ══════════════════════════════
   GALLERY — Mobile-first (2 col)
   ══════════════════════════════ */
.gallery {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .4rem;
  margin-top: 1rem;
}
.gallery__img {
  width: 100%; height: 160px; object-fit: cover;
  filter: grayscale(.15);
  transition: filter .4s, transform .4s;
}
.gallery__img:hover { filter: grayscale(0); transform: scale(1.03); }

/* ══════════════════════════════
   PRICING — Mobile-first (1 col)
   ══════════════════════════════ */
.pricing { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.pricing__card {
  padding: 1.4rem; border: 1px solid var(--border);
  background: var(--white);
  display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.pricing__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
}
.pricing__card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 1rem; }
.pricing__card li {
  display: flex; justify-content: space-between;
  padding: .5rem 0; border-bottom: 1px solid var(--border); font-size: .9rem;
}
.pricing__card li:last-child { border-bottom: 0; }
.pricing__card li span { color: var(--muted); }
.pricing__highlight {
  background: var(--pink-light);
  margin: 0 -1.4rem; padding: .5rem 1.4rem !important;
}
.pricing__card .btn { margin-top: auto; padding-top: 1rem; }
.price-note { margin-top: 1rem; color: var(--muted); font-size: .85rem; }

/* ══════════════════════════════
   MAP
   ══════════════════════════════ */
.map-wrap { margin-top: 1.5rem; width: 100%; height: 260px; border: 1px solid var(--border); }
.map-wrap iframe { width: 100%; height: 100%; display: block; }
.map-pin-custom { background: none !important; border: none !important; }
.map-pin-custom svg { filter: drop-shadow(0 2px 4px rgba(0,0,0,.25)); }

/* ══════════════════════════════
   FOOTER — Mobile-first
   ══════════════════════════════ */
.footer { background: var(--dark); color: #eee; padding: 2.5rem 0 0; }
.footer a { color: var(--pink); }
.footer a:hover { text-decoration: underline; }
.footer h2 { font-family: var(--serif); color: #fff; font-size: 1.4rem; margin-bottom: .8rem; }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.footer__cta { margin-top: 1.5rem; }
.footer__cta h3 { color: #fff; font-size: 1.1rem; margin-bottom: .5rem; }
.footer__cta p { color: rgba(255,255,255,.6); font-size: .9rem; }
.footer__cta .btn {
  background: #fff; color: var(--pink); border: 2px solid #fff;
  margin-top: .8rem; width: 100%; text-align: center;
}
.footer__cta .btn:hover {
  background: var(--pink); color: #fff; border-color: var(--pink);
}
.footer__bottom {
  margin-top: 1.5rem; padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .78rem; color: rgba(255,255,255,.45);
}
.footer__bottom .footer__legal {
  margin-left: .5rem;
}
.footer__bottom .footer__legal a { color: rgba(255,255,255,.6); }
.footer__bottom .footer__legal a:hover { color: var(--pink); }
@media (max-width: 480px) {
  .footer__bottom p { display: flex; flex-wrap: wrap; flex-direction: column; gap: .3rem; }
  .footer__bottom .footer__legal { margin-left: 0; margin-top: .3rem; }
}

/* ══════════════════════════════
   REVEAL ANIMATION
   ══════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-anim { animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* ══════════════════════════════════════
   TABLET — min-width: 600px
   ══════════════════════════════════════ */
@media (min-width: 600px) {
  .container { width: 88%; }

  .header__inner { min-height: 66px; }
  .header__logo { height: 32px; }
  .header__nav { top: 66px; }

  .hero { padding-top: 66px; }
  .hero__title-outline { font-size: clamp(3rem, 9vw, 5rem); }
  .hero__title-solid { font-size: clamp(3.5rem, 11vw, 5.5rem); }
  .hero__sub { font-size: 1.05rem; }
  .hero__actions { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .hero__actions .btn { width: auto; max-width: none; }
  .hero__eyebrow::before,
  .hero__eyebrow::after { width: 40px; }
  .badge { font-size: .72rem; padding: .4rem .8rem; }

  .page-hero { padding-top: calc(66px + 3rem); }
  .page-hero h1 { font-size: 2.2rem; }

  .strip__grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
  .strip__item { padding: 1.4rem 1.2rem; }
  .strip__item strong { font-size: 1.8rem; }

  .section { padding: 4rem 0; }
  h2 { font-size: 2rem; }

  .offer-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

  .split { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .split--reverse { direction: rtl; }
  .split--reverse > * { direction: ltr; }

  .form-card { padding: 1.8rem; }

  .gallery { grid-template-columns: repeat(3, 1fr); gap: .5rem; }
  .gallery__img { height: 200px; }

  .reviews__grid { grid-template-columns: repeat(2, 1fr); }

  .pricing { grid-template-columns: repeat(2, 1fr); }

  .section-img { height: 300px; }
  .section-img--portrait { height: 380px; }

  .schedule { max-width: 500px; }

  .map-wrap { height: 300px; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__cta .btn { width: auto; }
  .footer h2 { font-size: 1.6rem; }
}

/* ══════════════════════════════════════
   DESKTOP — min-width: 960px
   ══════════════════════════════════════ */
@media (min-width: 960px) {
  .container { width: min(1140px, 90%); }

  .header__inner { min-height: 72px; }
  .header__logo { height: 36px; }
  .header__toggle { display: none; }
  .header__nav {
    position: static; display: flex; flex-direction: row;
    background: none; border: 0; padding: 0; gap: 1.4rem;
  }
  .header__nav a { padding: 0; }

  .hero { padding-top: 72px; }
  .hero__content { max-width: 750px; padding: 3rem 0 5rem; }
  .hero__title-outline { font-size: 5.5rem; }
  .hero__title-solid { font-size: 6.5rem; }
  .hero__sub { font-size: 1.1rem; max-width: 52ch; }
  .hero__frame { display: block; }
  .hero__ring { width: 550px; height: 550px; }
  .hero__trust-item { padding: .5rem 1.2rem; font-size: .72rem; }
  .hero__grid { background-size: 80px 80px; }
  .badge { font-size: .78rem; padding: .4rem .9rem; margin-bottom: 1.2rem; }

  .page-hero { padding: calc(72px + 4rem) 0 3rem; }
  .page-hero h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); max-width: 28ch; }

  .section { padding: 5.5rem 0; }
  h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1.6rem; }

  .offer-grid { grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }

  .split { gap: 3rem; }

  .form-card { padding: 2rem; }
  .form-card h3 { font-size: 1.2rem; }

  .faq__q { font-size: 1.05rem; padding: 1rem 0 .4rem; }
  .faq__a { padding-bottom: 1rem; font-size: inherit; }

  .schedule { max-width: 600px; }
  .schedule__row { padding: .9rem 0; font-size: 1rem; }
  .schedule__row--accent { font-size: 1.05rem; padding-top: 1.2rem; }

  .section-img { height: 360px; }
  .section-img--portrait { height: 440px; }

  .gallery { grid-template-columns: repeat(4, 1fr); gap: .6rem; }
  .gallery__img { height: 260px; }

  .reviews__grid { grid-template-columns: repeat(3, 1fr); }
  .review-card { padding: 1.8rem; }

  .pricing { grid-template-columns: repeat(3, 1fr); }
  .pricing__card { padding: 2rem; }
  .pricing__card h3 { font-size: 1.15rem; margin-bottom: 1.2rem; }
  .pricing__card li { padding: .6rem 0; font-size: .95rem; }
  .pricing__highlight { margin: 0 -2rem; padding: .6rem 2rem !important; }
  .price-note { margin-top: 1.2rem; font-size: .9rem; }

  .map-wrap { height: 350px; }

  .footer { padding: 4rem 0 0; }
  .footer h2 { font-size: 1.8rem; margin-bottom: 1rem; }
  .footer__cta h3 { font-size: 1.2rem; }
  .footer__bottom { margin-top: 2rem; padding: 1.2rem 0; font-size: .82rem; }

  .strip__grid { gap: 1.5rem; max-width: 1000px; }
  .strip__item { padding: 1.6rem 1.4rem; }
  .strip__item strong { font-size: 2rem; }
  .strip__item span { font-size: .88rem; }
  .strip { padding: 2.25rem 0; }

  .reveal { transform: translateY(32px); transition-duration: .7s; }
}

/* ══════════════════════════════════════
   ULTRAWIDE — min-width: 1600px
   ══════════════════════════════════════ */
@media (min-width: 1600px) {
  .hero__content { max-width: 850px; padding: 4rem 0 6rem; }
  .hero__title-outline { font-size: 6.5rem; }
  .hero__title-solid { font-size: 8rem; }
  .hero__sub { font-size: 1.15rem; }
  .hero__ring { width: 650px; height: 650px; }
  .hero__frame { inset: 3rem; }
}

/* ══════════════════════════════════════
   SUPER ULTRAWIDE — min-width: 2200px
   ══════════════════════════════════════ */
@media (min-width: 2200px) {
  .hero__content { max-width: 950px; padding: 5rem 0 7rem; }
  .hero__title-outline { font-size: 7.5rem; }
  .hero__title-solid { font-size: 9.5rem; }
  .hero__sub { font-size: 1.25rem; }
  .hero__ring { width: 750px; height: 750px; }
  .hero__frame { inset: 4rem; }
}
