/* ── Self-hosted Webfonts (DSGVO-konform, kein Google-CDN) ── */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/inter-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: 'Playfair Display';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('fonts/playfair-display-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: 'Playfair Display';
  font-style: italic;
  font-weight: 400 900;
  font-display: swap;
  src: url('fonts/playfair-display-italic-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;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:       #C4A030;
  --gold-light: #F0C99A;
  --sage:       #8AAD6A;
  --sage-dark:  #3D5229;
  --sage-mid:   #5C7A42;
  --sand:       #FAF0E4;
  --lavender:   #C4B0D8;
  --dark:       #1C221A;
  --off-white:  #FBF7F1;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;
  --gap:          clamp(5rem, 10vw, 9rem);
}

html { scroll-behavior: smooth; }

body {
  background: var(--off-white);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Scroll Reveal ── */
.reveal,
.reveal-left,
.reveal-right,
.reveal-up {
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0s);
}
.reveal       { transform: translateY(28px); }
.reveal-left  { transform: translateX(-48px); }
.reveal-right { transform: translateX(48px); }
.reveal-up    { transform: translateY(48px); }

.revealed {
  opacity: 1 !important;
  transform: none !important;
}

/* ── Nav ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
}

.nav {
  max-width: calc(100% - 1.5rem);
  margin: 0.75rem auto 0;
  padding: 1.2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(251, 247, 241, 0.92);
  backdrop-filter: blur(14px);
  border-radius: 1rem;
  border: 1px solid rgba(61, 82, 41, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.01em;
}
.logo-text em {
  font-style: normal;
  color: var(--sage);
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 0.2rem;
}

/* ── Burger (nur mobil sichtbar, siehe Media Query unten) ── */
.nav-burger {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  border: none;
  background: transparent;
  border-radius: 999px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.nav-burger__strich {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--sage-dark);
  transition: transform 0.25s ease, opacity 0.18s ease;
}
/* Offen: aus den drei Strichen wird ein Kreuz */
.nav[data-offen="true"] .nav-burger__strich:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav[data-offen="true"] .nav-burger__strich:nth-child(2) { opacity: 0; }
.nav[data-offen="true"] .nav-burger__strich:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-burger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.nav ul a {
  text-decoration: none;
  color: var(--sage-dark);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: transparent;
  transform: scale(1);
  transition: background 0.35s ease,
              color 0.3s ease,
              transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  outline: none;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.nav ul a:focus,
.nav ul a:focus-visible {
  outline: none;
}

.nav ul a:hover {
  background: var(--pill-bg, linear-gradient(135deg, var(--gold), var(--gold-light)));
  color: var(--pill-text, var(--dark));
  transform: scale(1.06);
}

/* ── Mobile Navigation: Burger + aufklappendes Menü ──
   Umbruch bei 860px: darunter reichen Logo (173px) + fünf Pillen (546px)
   + Innenabstand (80px) nicht mehr nebeneinander. */
@media (max-width: 860px) {
  .nav { position: relative; }
  .nav-burger { display: inline-flex; }

  .nav ul {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.45rem;
    background: rgba(251, 247, 241, 0.97);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(61, 82, 41, 0.1);
    border-radius: 1rem;
    box-shadow: 0 18px 42px rgba(28, 34, 26, 0.16);
    /* Geschlossen: visibility nimmt die Links auch aus der Tab-Reihenfolge */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  }
  .nav[data-offen="true"] ul {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav ul a {
    width: 100%;
    justify-content: flex-start;
    padding: 0.85rem 1rem;
    font-size: 0.75rem;
    border-radius: 0.65rem;
    transform: none;
  }
  .nav ul a:hover { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .nav-burger__strich,
  .nav ul { transition: none; }
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10rem 2.5rem 6rem;
  position: relative;
  overflow: hidden;
}

/* ── Animated Bubbles Canvas hinter Hero-Text ── */
.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
}

.hero-bubbles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  z-index: 0;
  opacity: 0.38;
  transform: translateZ(0);
  will-change: transform, filter;
  contain: layout paint style;
  /* Blur per CSS — funktioniert auch auf iOS Safari, GPU-beschleunigt */
  filter: blur(30px);
}

@media (max-width: 720px) {
  .hero-bubbles {
    filter: blur(24px);
  }
}

/* Dunkler Vignette-Schleier zwischen Canvas und Text — verbessert Lesbarkeit */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 50% 45% at center,
    rgba(28, 34, 26, 0.4) 0%,
    rgba(28, 34, 26, 0.18) 60%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
}

/* Hero-Inhalte über Canvas + Vignette */
.hero-eyebrow,
.hero-headline,
.hero-sub {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hero-bubbles { opacity: 0.25; }
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 2.5rem;
  max-width: 1200px;
  width: 100%;
  align-self: center;
  text-align: center;
  opacity: 0;
}

.hero-headline {
  max-width: 1200px;
  width: 100%;
  align-self: center;
  text-align: center;
  margin: 0;
}

.hero-line {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--off-white);
  letter-spacing: -0.03em;
  display: block;
}

.hero-big {
  font-size: clamp(4rem, 12vw, 11rem);
  line-height: 1;
}

.hero-small {
  font-size: clamp(1.4rem, 3.8vw, 3.5rem);
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-gold {
  color: var(--gold);
}

.hero-sage {
  color: var(--sage);
  font-style: italic;
}

.hero-sub {
  max-width: 1200px;
  width: 100%;
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-sub p {
  color: rgba(251, 247, 241, 0.6);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  max-width: 480px;
  line-height: 1.65;
}

.hero-sub .hero-location {
  max-width: none;
  color: rgba(251, 247, 241, 0.5);
  font-size: clamp(0.76rem, 1.2vw, 0.88rem);
  letter-spacing: 0.08em;
  line-height: 1.5;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  padding: 1rem 2.2rem;
  text-decoration: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 999px;
  transition: background 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn::after {
  content: "";
  display: inline-block;
  width: 0.95em;
  height: 0.95em;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12h14M13 5l7 7-7 7'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12h14M13 5l7 7-7 7'/></svg>");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn:hover::after { transform: translateX(4px); }

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 6px 18px rgba(196, 160, 48, 0.25);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(196, 160, 48, 0.32);
}

.btn-sage {
  background: var(--sage-dark);
  color: var(--off-white);
  width: 100%;
  box-shadow: 0 6px 18px rgba(61, 82, 41, 0.25);
}
.btn-sage:hover {
  background: var(--sage-mid);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(61, 82, 41, 0.3);
}

/* ── Section Label ── */
.section-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-mid);
  margin-bottom: 0.8rem;
  font-weight: 500;
}

/* ── Intro: Annika & Marco ── */
.intro-wir {
  background: var(--dark);
  padding: clamp(4rem, 8vw, 6.5rem) 2.5rem clamp(4.5rem, 9vw, 7rem);
  position: relative;
  overflow: hidden;
}
/* Feine Linie trennt den Streifen vom Hero, ohne harte Kante */
.intro-wir::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, 100% - 5rem);
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(251, 247, 241, 0.15), transparent);
}

.intro-wir-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}

/* Rundes Portrait mit warmem Schein — nimmt die Goldtöne des Fotos auf */
.intro-wir-foto {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  /* In seiner Spalte waagerecht und senkrecht mittig zum Text */
  justify-self: center;
  align-self: center;
}
.intro-wir-foto::before {
  content: "";
  position: absolute;
  inset: -16%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%,
              rgba(196, 160, 48, 0.22),
              rgba(138, 173, 106, 0.10) 55%,
              transparent 72%);
  z-index: 0;
}
.intro-wir-foto img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  outline: 1px solid rgba(251, 247, 241, 0.18);
  outline-offset: 10px;
}

.intro-wir-text { max-width: 34rem; }
.intro-wir-text .section-label { color: var(--sage); }
.intro-wir-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--off-white);
}

/* Fließtext */
.intro-wir-text p {
  margin-top: 1.1rem;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(251, 247, 241, 0.72);
}
/* Erster Satz etwas größer und heller — trägt die Kernaussage */
.intro-wir-text .intro-wir-lead {
  margin-top: 1.5rem;
  font-size: clamp(1.1rem, 1.6vw, 1.28rem);
  line-height: 1.6;
  color: rgba(251, 247, 241, 0.94);
}

/* Inline-Verweise auf die Angebote */
.intro-wir-text p a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 160, 48, 0.35);
  padding-bottom: 1px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.intro-wir-text p a:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}
.intro-wir-text p a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Philosophie — über die volle Breite als ruhiger Abschluss */
.intro-wir-philosophie {
  max-width: 860px;
  margin: clamp(3rem, 6vw, 4.5rem) auto 0;
  padding-top: clamp(2rem, 4vw, 2.8rem);
  text-align: center;
  position: relative;
}
.intro-wir-philosophie::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--sage));
}
.intro-wir-philosophie-label {
  display: block;
  /* Playfair statt Inter: nur Playfair hat einen echten Kursiv-Schnitt.
     Inter würde der Browser bloß künstlich schrägstellen. */
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: none;
  color: rgba(138, 173, 106, 0.85);
  margin-bottom: 1.2rem;
}
.intro-wir-philosophie p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2.4vw, 1.85rem);
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--off-white);
  text-wrap: balance;
}

.intro-wir-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  margin-top: 1.7rem;
  padding-bottom: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold);
  border-bottom: 1px solid rgba(196, 160, 48, 0.4);
  transition: color 0.3s ease, border-color 0.3s ease;
}
.intro-wir-link::after {
  content: "";
  width: 0.95em;
  height: 0.95em;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12h14M13 5l7 7-7 7'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12h14M13 5l7 7-7 7'/></svg>");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.intro-wir-link:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}
.intro-wir-link:hover::after { transform: translateX(4px); }
.intro-wir-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 2px;
}

@media (max-width: 860px) {
  .intro-wir-inner {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
  .intro-wir-foto {
    max-width: 260px;
    justify-self: center;
  }
  .intro-wir-text { max-width: none; }
  /* Kurze Zeilen mittig, Fließtext bleibt linksbündig — sonst leidet die Lesbarkeit */
  .intro-wir-text .section-label,
  .intro-wir-text h2 { text-align: center; }
  .intro-wir-link {
    display: flex;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-wir-link::after { transition: none; }
  .intro-wir-link:hover::after { transform: none; }
}

/* ── Galerie / Photo Stack ── */
.galerie {
  background:
    radial-gradient(ellipse 90% 60% at 50% 100%, rgba(138, 173, 106, 0.08), transparent 70%),
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(196, 160, 48, 0.06), transparent 60%),
    var(--sand);
  padding: clamp(4rem, 6.5vh, 6rem) 2.5rem clamp(4rem, 7vh, 7rem);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Aurora-Hintergrund: drei langsam atmende Farbflächen in Brand-Farben */
.galerie-aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.aurora-blob {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform, opacity;
  transform: translateZ(0);
}

.aurora-blob--sage {
  width: 55%;
  aspect-ratio: 1 / 1;
  left: -12%;
  top: 18%;
  background: radial-gradient(circle, rgba(138, 173, 106, 0.55) 0%, rgba(138, 173, 106, 0) 65%);
  opacity: 0.85;
  animation: aurora-drift-a 26s ease-in-out infinite;
}

.aurora-blob--gold {
  width: 50%;
  aspect-ratio: 1 / 1;
  right: -10%;
  top: 5%;
  background: radial-gradient(circle, rgba(196, 160, 48, 0.45) 0%, rgba(196, 160, 48, 0) 65%);
  opacity: 0.8;
  animation: aurora-drift-b 32s ease-in-out infinite;
}

.aurora-blob--petrol {
  width: 60%;
  aspect-ratio: 1 / 1;
  right: 5%;
  bottom: -20%;
  background: radial-gradient(circle, rgba(74, 154, 157, 0.32) 0%, rgba(74, 154, 157, 0) 65%);
  opacity: 0.75;
  animation: aurora-drift-c 38s ease-in-out infinite;
}

@keyframes aurora-drift-a {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(6%, -4%, 0) scale(1.08); }
}
@keyframes aurora-drift-b {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(-5%, 6%, 0) scale(0.94); }
}
@keyframes aurora-drift-c {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(-4%, -5%, 0) scale(1.05); }
}

@media (prefers-reduced-motion: reduce) {
  .aurora-blob { animation: none; }
}

/* Mobile: kleinerer Blur (GPU-schonender) und weniger Blob-Ausdehnung */
@media (max-width: 720px) {
  .aurora-blob { filter: blur(60px); }
  .aurora-blob--sage   { width: 80%; }
  .aurora-blob--gold   { width: 70%; }
  .aurora-blob--petrol { width: 90%; bottom: -10%; }
}

.galerie-eyebrow {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-mid);
  margin: 0 0 1rem;
  position: relative;
  z-index: 2;
}

.galerie-titel {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin: 0 0 clamp(2.5rem, 4.5vh, 4rem);
  position: relative;
  z-index: 2;
}

.galerie-titel em {
  color: var(--gold);
  font-style: italic;
  font-weight: 700;
}

/* ── Karussell ── */
.se-carousel-root {
  /* lokale Variablen — überschreiben NICHT die globalen --gold/--sage */
  --carousel-ink: var(--dark);
  --carousel-muted: rgba(28, 34, 26, 0.5);
  --carousel-line: rgba(28, 34, 26, 0.14);
  /* Kartenhöhe + oberes Padding zentral — Karten und Side-Arrows teilen sie sich */
  --card-h: clamp(420px, 58vw, 640px);
  --carousel-pad-top: clamp(20px, 3vh, 32px);
  position: relative;
  z-index: 1;
}
/* Auf flachen Bildschirmen begrenzt die Fensterhöhe die Karte, nicht die Breite */
@supports (height: 1svh) {
  .se-carousel-root {
    /* Untergrenze 420px gilt fürs Handy — auf flachen Fenstern gibt sie nach */
    --card-h: clamp(min(420px, 50svh), min(58vw, 52svh), 640px);
  }
}

.se-carousel-root .carousel {
  position: relative;
  padding: var(--carousel-pad-top) 0 clamp(40px, 6vh, 80px);
}

.se-carousel-root .carousel-viewport {
  overflow: hidden;
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
  /* Browser darf vertikal pannen (Page-Scroll), Horizontal-Gesten gehören uns */
  touch-action: pan-y;
}
.se-carousel-root .carousel-viewport.dragging { cursor: grabbing; }

.se-carousel-root .carousel-track {
  display: flex;
  gap: 24px;
  padding: 0 max(32px, calc((100vw - 1200px) / 2));
  transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
  list-style: none;
}
.se-carousel-root .carousel-viewport.dragging .carousel-track { transition: none; }

.se-carousel-root .card {
  flex: 0 0 auto;
  width: clamp(280px, 38vw, 480px);
  height: var(--card-h);
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #0e0e0c;
  isolation: isolate;
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 20px 50px rgba(28, 34, 26, 0.18);
}

.se-carousel-root .card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.88) saturate(0.85);
  transition: transform 1.2s ease;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}
.se-carousel-root .card:hover .card-image { transform: scale(1.04); }

.se-carousel-root .card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28, 34, 26, 0) 30%, rgba(28, 34, 26, 0.85) 100%),
    linear-gradient(180deg, rgba(58, 40, 20, 0.25) 0%, rgba(28, 34, 26, 0) 50%);
  z-index: 1;
  pointer-events: none;
}

.se-carousel-root .card-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 36px 36px;
  color: var(--off-white);
}

/* Angebots-Badge — benennt auf den ersten Blick, was auf dem Bild passiert */
.se-carousel-root .card-label {
  align-self: flex-start;
  /* Wehrt `.card p { flex: 1 }` ab — die Angebots-Karten weiter unten heißen
     ebenfalls .card, sonst dehnt sich das Badge über die halbe Kachel. */
  flex: 0 0 auto;
  line-height: 1;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  margin: 0;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  /* Deckende Farben — KEIN backdrop-filter: im transformierten Karussell-Track
     berechnet der Browser dessen Fläche falsch und malt einen Riesenklotz. */
  background: var(--dark);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}
.se-carousel-root .card-label--massage {
  background: var(--gold);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--dark);
}
.se-carousel-root .card-label--workshop {
  background: var(--sage-mid);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

/* Einzelwort statt Satz — voll deckend. Größen sind exakt 20 % unter
   dem vorherigen Wert (1.9 / 3.2 / 2.9 je × 0,8). */
.se-carousel-root .card-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.52rem, 2.56vw, 2.32rem);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.015em;
  max-width: 92%;
  text-wrap: pretty;
  color: var(--off-white);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.45);
}
.se-carousel-root .card-headline em {
  color: var(--sage);
  font-style: italic;
  font-weight: 700;
  /* stärkerer Schatten, damit Logo-Grün auch auf grün-dominierten Fotos lesbar bleibt */
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7), 0 1px 14px rgba(0, 0, 0, 0.5);
}

/* Controls */
.se-carousel-root .carousel-controls {
  max-width: 1200px;
  margin: 28px auto 0;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.se-carousel-root .progress {
  display: flex;
  gap: 6px;
  align-items: center;
}
.se-carousel-root .progress button {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 8px 0;
  cursor: pointer;
  display: block;
}
.se-carousel-root .progress .bar {
  display: block;
  width: 26px;
  height: 2px;
  background: rgba(28, 34, 26, 0.18);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  transition: width 0.35s ease;
}
.se-carousel-root .progress button.active .bar { width: 56px; }
.se-carousel-root .progress button.active .bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #D88040;
  transform-origin: left center;
  transform: scaleX(0);
  animation: carouselProgress var(--autoplay-duration, 6s) linear forwards;
}
.se-carousel-root .carousel.paused .progress button.active .bar::after { animation-play-state: paused; }
@keyframes carouselProgress {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* Side arrows: absolute, vertically centered on cards */
.se-carousel-root .side-arrow {
  position: absolute;
  top: var(--carousel-pad-top);
  height: var(--card-h);
  display: flex;
  align-items: center;
  z-index: 5;
  pointer-events: none;
}
.se-carousel-root .side-arrow.left  { left: 0; padding-left: clamp(8px, 2vw, 28px); }
.se-carousel-root .side-arrow.right { right: 0; padding-right: clamp(8px, 2vw, 28px); }
.se-carousel-root .side-arrow .arrow { pointer-events: auto; }

.se-carousel-root .arrow {
  appearance: none;
  border: 1px solid var(--carousel-line);
  background: rgba(28, 34, 26, 0.04);
  color: var(--carousel-ink);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.se-carousel-root .arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}
.se-carousel-root .arrow:active { transform: scale(0.96); }
.se-carousel-root .arrow:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.se-carousel-root .arrow svg { width: 18px; height: 18px; }

@media (max-width: 720px) {
  .galerie { padding: 4rem 1.25rem 5rem; }
  .galerie-titel { margin-bottom: 3rem; font-size: clamp(2rem, 8vw, 2.8rem); }
  .se-carousel-root .carousel-track { gap: 16px; padding-left: 24px; padding-right: 24px; }
  .se-carousel-root .card { border-radius: 22px; }
  .se-carousel-root .card-content { padding: 24px 26px 26px; }
  .se-carousel-root .carousel-controls { padding: 0 24px; }
  /* Side-Arrows auf Mobile ausblenden — Swipe ist die natürliche Geste */
  .se-carousel-root .side-arrow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .se-carousel-root .carousel-track,
  .se-carousel-root .card-image,
  .se-carousel-root .progress .bar,
  .se-carousel-root .arrow { transition: none; }
  .se-carousel-root .progress button.active .bar::after { animation: none; transform: scaleX(0.5); }
}


.card {
  background: var(--off-white);
  padding: 3rem 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  transition: background 0.3s, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.card:hover { background: var(--sand); transform: translateY(-4px); }


.card h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.01em;
  margin-bottom: 0.7rem;
}

.card p {
  color: var(--sage-dark);
  font-size: 1.05rem;
  line-height: 1.7;
  flex: 1;
}


/* ── Farbakzent je Angebot ──
   Gleiche Zuordnung wie die Badges im Karussell: Workshop grün, Massage gold.


/* ── Kurse & Preise ── */
.kurse {
  background: var(--sand);
  padding: var(--gap) 2.5rem;
}

.kurse-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.kurse-header {
  margin-bottom: 3.5rem;
}

.kurse-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.h2-sage {
  color: var(--sage);
  font-style: italic;
}

.h2-gold {
  color: var(--gold);
}

.gold-word {
  color: var(--gold) !important;
}

/* Wortmarke in den Logo-Farben — identisch zu .logo-text in der Nav */
.wortmarke { color: var(--gold); }
.wortmarke em {
  font-style: normal;
  color: var(--sage);
}

.kurs-cards {
  display: grid;
  /* Nur noch die beiden Gruppen-Workshops — der Exklusiv-Raum
     steht darunter in eigener Zeile. */
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--sage-dark);
}

.kurs-detail-link {
  margin-top: 2.5rem;
  text-align: center;
}


/* ── Squishy Card ── */
.kurs-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  padding: 2.5rem 2.5rem 5rem;
  display: flex;
  flex-direction: column;
  background: linear-gradient(145deg, #d4a82a, #a07820);
  cursor: default;
  transform: scale(1);
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s ease;
}
.kurs-card:hover {
  transform: scale(1.05);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
  z-index: 2;
}

.kurs-card--aufbau {
  background: linear-gradient(145deg, #3D5229, #1E1E1A);
}

.kurs-card--exklusiv {
  background: linear-gradient(145deg, #7F5E9C, #3A2A52);
}

/* Card content layer */
.kurs-card-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

/* Badge */
.kurs-badge {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  align-self: flex-start;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(4px);
  color: #fff;
  margin-bottom: 0.4rem;
}

/* Headline */
.kurs-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
}

/* Price — scales up on hover */
.kurs-price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  line-height: 1.05;
  color: #fff;
  letter-spacing: -0.03em;
  transform: scale(0.85);
  transform-origin: top left;
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin: 0.3rem 0;
}
.kurs-card:hover .kurs-price {
  transform: scale(1);
}
.kurs-price span {
  font-size: 0.45em;
  font-weight: 400;
  opacity: 0.85;
  letter-spacing: 0;
}

/* Description */
.kurs-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
}

/* Meta (Dauer · Gruppe) */
.kurs-meta-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.04em;
  margin-top: 0.2rem;
}
.kurs-dot { opacity: 0.4; }

/* CTA Button — pinned to bottom, pill shape */
.kurs-btn {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  padding: 0.95rem 1.2rem;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--dark);
  background: rgba(255, 255, 255, 0.96);
  border: none;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}
.kurs-btn::after {
  content: "";
  display: inline-block;
  width: 0.95em;
  height: 0.95em;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12h14M13 5l7 7-7 7'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12h14M13 5l7 7-7 7'/></svg>");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.kurs-btn:hover {
  background: var(--btn-hover-bg, var(--gold-light));
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px var(--btn-hover-shadow, rgba(196, 160, 48, 0.35));
}
.kurs-btn:hover::after { transform: translateX(4px); }
.kurs-btn--aufbau { color: var(--dark); }

/* Hover-Farbe folgt der Karten-Farb-Familie */
.kurs-card {
  /* Gold-Familie (Grundkurs) — Default */
  --btn-hover-bg: var(--gold-light);
  --btn-hover-shadow: rgba(196, 160, 48, 0.35);
}
.kurs-card--aufbau,
.kurs-card--massage-paar {
  /* Sage-Familie */
  --btn-hover-bg: #C8DCB4;
  --btn-hover-shadow: rgba(138, 173, 106, 0.4);
}
.kurs-card--massage-4hand {
  /* Gold-Familie (explizit, gleiches Verhalten wie Default) */
  --btn-hover-bg: var(--gold-light);
  --btn-hover-shadow: rgba(196, 160, 48, 0.35);
}
.kurs-card--massage-beat {
  /* Petrol-Familie */
  --btn-hover-bg: #8AC7C9;
  --btn-hover-shadow: rgba(74, 154, 157, 0.4);
}
.kurs-card--exklusiv {
  /* Lavendel-Familie */
  --btn-hover-bg: #DCC8EE;
  --btn-hover-shadow: rgba(124, 94, 154, 0.4);
}

/* SVG Background */
.kurs-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.kurs-card:hover .kurs-bg {
  transform: scale(1.5);
}

/* Grundkurs: Kreis squishes */
.kurs-bg-circle {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s;
}
.kurs-card:hover .kurs-bg-circle {
  transform: scaleY(0.5) translateY(-20px);
}

.kurs-bg-ellipse {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s;
}
.kurs-card:hover .kurs-bg-ellipse {
  transform: scaleY(2.2) translateY(-20px);
}

/* Aufbaukurs: Diamanten gleiten nach oben */
.kurs-bg-diamond {
  transform-box: fill-box;
  transform-origin: center;
}
.kurs-bg-diamond--1 {
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s;
}
.kurs-bg-diamond--2 {
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s;
}
.kurs-bg-diamond--3 {
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s;
}
.kurs-card:hover .kurs-bg-diamond--1 { transform: translateY(-40px); }
.kurs-card:hover .kurs-bg-diamond--2 { transform: translateY(-40px); }
.kurs-card:hover .kurs-bg-diamond--3 { transform: translateY(-40px); }

/* ── Massagen ── */
.massagen {
  background: var(--dark);
  padding: var(--gap) 2.5rem;
}

.massagen-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.massagen-header {
  margin-bottom: 3.5rem;
}

.massagen-header .section-label { color: var(--sage); }

.massagen-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--off-white);
  letter-spacing: -0.02em;
}

.massage-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
}

.massage-cards--single {
  grid-template-columns: 1fr;
  gap: 0;
  background: none;
}

/* ── Reihe: Angebots-Kachel links, Video rechts ── */
.massage-reihe {
  display: grid;
  /* 2:1 — das quadratische Video bestimmt die Höhe der Reihe. Wäre die
     Videospalte breiter, würde die Kachel unnötig hoch und wirkte leer. */
  grid-template-columns: 2fr 1fr;
  gap: clamp(1.25rem, 2.5vw, 2.25rem);
  align-items: stretch;
}

.massage-video {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  /* Quadratisch: das Hochkant-Material ist auf die Szene beschnitten
     (leere Decke und Boden fallen weg) */
  aspect-ratio: 1;
  /* Standbild als Untergrund, darunter der Verlauf. Fehlt eine der beiden
     Dateien, bleibt trotzdem ein gestaltetes Feld statt eines Lochs. */
  background-image: url('bilder/massage-poster.jpg'),
                    linear-gradient(145deg, #7AAD5A, #3D6A20);
  background-size: cover, auto;
  background-position: center, center;
}
.massage-video-deko {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.massage-video-player {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* ── Pause-Knopf ──
   WCAG 2.2.2 verlangt eine Anhalte-Möglichkeit für Bewegung, die von selbst
   startet und länger als 5 s läuft. prefers-reduced-motion allein genügt nicht,
   weil es nur bei vorab gesetzter Systemeinstellung greift. */
.massage-video-btn {
  position: absolute;
  z-index: 2;
  right: 0.75rem;
  bottom: 0.75rem;
  /* 32px — über der 24px-Mindestgröße für Klickziele (WCAG 2.5.8) */
  width: 32px;
  height: 32px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(28, 34, 26, 0.45);
  color: #fff;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.25s ease, background 0.25s ease;
}
.massage-video:hover .massage-video-btn,
.massage-video-btn:focus-visible {
  opacity: 1;
  background: rgba(28, 34, 26, 0.72);
}
.massage-video-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.massage-video-btn svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
  display: block;
}
/* Nur das jeweils passende Symbol zeigen */
.massage-video[data-status="pausiert"] .ikon-pause,
.massage-video[data-status="laeuft"] .ikon-play { display: none; }

/* Bewegung reduzieren: Standbild statt Film. Ohne Video kein Knopf. */
@media (prefers-reduced-motion: reduce) {
  .massage-video-player,
  .massage-video-btn { display: none; }
}

/* ── Breite Karte: Preis links als Anker, Inhalt rechts ── */
.kurs-card--wide {
  min-height: 0;
  padding: 3rem;
  justify-content: center;
  border-radius: 4px;
}
.kurs-card--wide .kurs-card-content {
  display: grid;
  grid-template-columns: minmax(9rem, auto) 1fr;
  gap: 0 3rem;
  align-items: start;
  flex: 0 1 auto;
  max-width: none;
}
.kurs-card--wide .kurs-textblock {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
}
.kurs-card--wide .kurs-card-content h3 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  margin: 0;
}
.kurs-card--wide .kurs-card-content p {
  font-size: 1rem;
  max-width: 34rem;
}
/* Der Preisblock steht senkrecht mittig zur Inhaltsspalte. Oben bündig
   wirkt er nach oben gerutscht, weil die rechte Spalte deutlich höher ist. */
.kurs-card--wide .kurs-preisblock {
  align-self: center;
}
.kurs-card--wide .kurs-preisblock .kurs-price {
  transform: none;
  margin: 0;
  line-height: 1;
}
.kurs-card--wide .kurs-preisblock .kurs-meta-row {
  margin-top: 0.6rem;
}
/* Grafik sitzt in der rechten Kartenhälfte statt vollflächig */
.kurs-card--wide .kurs-bg {
  left: auto;
  right: 0;
  width: 46%;
  min-width: 300px;
}
/* Breite Karte skaliert nicht, sie hebt sich nur an */
.kurs-card--wide:hover {
  transform: translateY(-4px);
}

/* Button im Textfluss statt am Kartenboden angeheftet */
.kurs-btn--inline {
  position: static;
  align-self: flex-start;
  width: auto;
  padding: 0.95rem 2rem;
  margin-top: 1.5rem;
}

@media (prefers-reduced-motion: reduce) {
  .kurs-card--wide:hover { transform: none; }
}

/* Massage card color variants */
.kurs-card--massage-paar  { background: linear-gradient(145deg, #7AAD5A, #3D6A20); }
.kurs-card--massage-4hand { background: linear-gradient(145deg, #E8C84A, #B8920A); color: var(--dark); }
.kurs-card--massage-4hand .kurs-card-tag,
.kurs-card--massage-4hand .kurs-price,
.kurs-card--massage-4hand .kurs-meta,
.kurs-card--massage-4hand p,
.kurs-card--massage-4hand h3 { color: var(--dark); }
.kurs-card--massage-4hand .kurs-card-tag { border-color: rgba(0,0,0,0.2); color: rgba(28,34,26,0.7); }
.kurs-card--massage-beat  { background: linear-gradient(145deg, #2A6B6E, #1A4848); }

/* Price TBD variant */
.kurs-price--tbd {
  font-size: clamp(1.3rem, 2.2vw, 1.6rem) !important;
  letter-spacing: 0.04em;
}

/* Paar-Massage: two circles spread apart */
.kurs-bg-paar-l,
.kurs-bg-paar-r { transform-box: fill-box; transform-origin: center; }
.kurs-bg-paar-l { transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s; }
.kurs-bg-paar-r { transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.18s; }
.kurs-card:hover .kurs-bg-paar-l { transform: translate(-22px, -16px); }
.kurs-card:hover .kurs-bg-paar-r { transform: translate(22px, 12px); }

/* 4-Hand-Massage: cross-ellipses expand outward */
.kurs-bg-4hand--h,
.kurs-bg-4hand--v { transform-box: fill-box; transform-origin: center; }
.kurs-bg-4hand--h { transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s; }
.kurs-bg-4hand--v { transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s; }
.kurs-card:hover .kurs-bg-4hand--h { transform: scaleX(1.5); }
.kurs-card:hover .kurs-bg-4hand--v { transform: scaleY(1.5); }

/* Beat-Massage: concentric rings pulse outward */
.kurs-bg-beat { transform-box: fill-box; transform-origin: center; }
.kurs-bg-beat--1 { transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.05s; }
.kurs-bg-beat--2 { transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s; }
.kurs-bg-beat--3 { transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.25s; }
.kurs-bg-beat--4 { transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.35s; }
.kurs-card:hover .kurs-bg-beat--1 { transform: scale(1.12); }
.kurs-card:hover .kurs-bg-beat--2 { transform: scale(1.22); }
.kurs-card:hover .kurs-bg-beat--3 { transform: scale(1.38); }
.kurs-card:hover .kurs-bg-beat--4 { transform: scale(1.55); }

/* Exklusiv: zwei Ovale gleiten leicht auseinander und neigen sich */
.kurs-bg-exklusiv { transform-box: fill-box; transform-origin: center; }
.kurs-bg-exklusiv--a { transition: transform 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.05s; }
.kurs-bg-exklusiv--b { transition: transform 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s; }
.kurs-card:hover .kurs-bg-exklusiv--a { transform: translate(-18px, -10px) rotate(-5deg); }
.kurs-card:hover .kurs-bg-exklusiv--b { transform: translate(18px, 10px) rotate(5deg); }

/* ── Über uns ── */
.ueber-uns {
  background: var(--sage-dark);
  padding: var(--gap) 2.5rem;
  /* kein overflow:hidden — das würde das sticky Foto unten abschneiden.
     Gegen waagerechtes Scrollen der reveal-Animation greift body{overflow-x:hidden}. */
}

.ueber-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

/* ── Drei runde Portraits, seitlich versetzt neben dem Text ──
   Runde Form = Menschen (wie Logo und Portrait im Intro).
   Eckig bleibt den Momenten im Karussell vorbehalten. */
.ueber-bild {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3.25rem);
}

.ueber-rund { margin: 0; }
.ueber-rund img {
  display: block;
  width: 100%;
  /* height:auto ist Pflicht, sonst schlägt das height-Attribut durch */
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.32);
}

/* Unterschiedliche Größen und Einzüge — eine gleichförmige Reihe wirkt starr */
.ueber-rund--1 { width: 74%; align-self: flex-start; }
.ueber-rund--2 { width: 55%; align-self: flex-end; }
.ueber-rund--3 { width: 63%; align-self: flex-start; margin-left: 12%; }

.ueber-text .section-label { color: var(--sage); }

.ueber-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--off-white);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.ueber-text h2 em {
  color: var(--gold);
  font-style: italic;
}

.ueber-text p {
  color: rgba(251, 247, 241, 0.65);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

.ueber-name {
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  font-size: 1.15rem !important;
  color: var(--gold) !important;
  margin-top: 1.5rem !important;
  margin-bottom: 0.4rem !important;
  letter-spacing: -0.01em;
}

.ueber-name:first-of-type { margin-top: 0 !important; }

/* ── Aufklappbare Personen-Abschnitte (Marco / Annika) ── */
.ueber-person {
  margin-top: 2rem;
  border-top: 1px solid rgba(251, 247, 241, 0.12);
  padding-top: 1.5rem;
}
.ueber-person > summary {
  display: block;
  cursor: pointer;
  list-style: none;
}
/* Standard-Dreieck des Browsers entfernen */
.ueber-person > summary::-webkit-details-marker { display: none; }
.ueber-person > summary::marker { content: ""; }
.ueber-person > summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 6px;
  border-radius: 3px;
}

/* Namenszeile mit Pfeil rechts — dient zugleich als Schließen-Griff */
.ueber-person-name {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.ueber-person-name::after {
  content: "";
  flex: 0 0 auto;
  width: 0.7em;
  height: 0.7em;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><path d='M6 9l6 6 6-6'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><path d='M6 9l6 6 6-6'/></svg>");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  transition: transform 0.3s ease;
}
.ueber-person[open] .ueber-person-name::after { transform: rotate(180deg); }

/* Anreißer — sieht aus wie ein normaler Absatz */
.ueber-person-teaser {
  display: block;
  color: rgba(251, 247, 241, 0.65);
  font-size: 0.95rem;
  line-height: 1.8;
}
.ueber-person[open] .ueber-person-teaser { margin-bottom: 1rem; }

.ueber-person-more {
  display: inline-block;
  margin-top: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(196, 160, 48, 0.4);
  padding-bottom: 2px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.ueber-person > summary:hover .ueber-person-more,
.ueber-person > summary:hover .ueber-person-name {
  color: var(--gold-light) !important;
}
.ueber-person > summary:hover .ueber-person-more { border-color: var(--gold-light); }
/* Der Hinweis bleibt in beiden Zuständen sichtbar — nur der Text wechselt.
   Ein reiner Pfeil als Schließen-Hinweis wird nicht gefunden. */
.ueber-person[open] .ueber-more-auf,
.ueber-person:not([open]) .ueber-more-zu { display: none; }

@media (prefers-reduced-motion: reduce) {
  .ueber-person-name::after { transition: none; }
}

.placeholder-bild {
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--sage-mid) 0%, var(--sage-dark) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(251, 247, 241, 0.25);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── Über uns: Extras ── */
.ueber-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.55;
  color: var(--gold);
  border-left: 2px solid var(--gold);
  padding-left: 1.2rem;
  margin: 1.5rem 0;
}

.ueber-abschluss {
  color: rgba(251, 247, 241, 0.8) !important;
  font-style: italic;
}

.ueber-signatur {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--sage);
  margin-top: 0.2rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.ueber-ort {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── Kontakt ── */
.kontakt {
  padding: var(--gap) 2.5rem;
  background: var(--off-white);
}

.kontakt-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.kontakt-head {
  margin-bottom: 3rem;
}

.kontakt-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.kontakt-head p {
  color: var(--sage-mid);
  font-size: 0.95rem;
}

.kontakt-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 5rem;
  align-items: start;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}

label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-dark);
  font-weight: 500;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

input, textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1.5px solid rgba(61, 82, 41, 0.18);
  border-radius: 0;
  background: var(--off-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
}
input:focus, textarea:focus { border-color: var(--sage-dark); }
textarea { resize: vertical; }

.form-success {
  display: none;
  margin-top: 1.5rem;
  color: var(--sage-mid);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

/* Kontakt Info-Spalte */
.kontakt-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 0.2rem;
}

.info-block {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.info-block a,
.info-block span:not(.detail-label) {
  font-size: 0.95rem;
  color: var(--dark);
  text-decoration: none;
  line-height: 1.6;
}

.info-block a:hover { color: var(--sage-dark); text-decoration: underline; }

/* ── Footer ── */
.impressum {
  background: var(--off-white);
  padding: 5rem 2.5rem;
}

.impressum-inner {
  max-width: 800px;
  margin: 0 auto;
}

.impressum-page {
  min-height: 80vh;
}

.impressum-back {
  display: inline-block;
  margin-bottom: 2rem;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--sage-dark);
  text-decoration: none;
  transition: color 0.2s;
}

.impressum-back:hover { color: var(--gold); }

.impressum-titel {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
}

/* Rechtstexte (Datenschutz, AGB, etc.) */
.rechtstext {
  font-family: var(--font-body);
  line-height: 1.75;
  color: var(--sage-dark);
}
.rechtstext h2 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.01em;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.25;
}
.rechtstext h2:first-of-type { margin-top: 1.5rem; }
.rechtstext p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.rechtstext ul {
  margin: 0.5rem 0 1.25rem 1.4rem;
  list-style: disc;
}
.rechtstext li {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}
.rechtstext b, .rechtstext strong {
  color: var(--dark);
  font-weight: 600;
}
.rechtstext a {
  color: var(--sage-mid);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.rechtstext a:hover { color: var(--gold); }
.rechtstext-stand {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(61, 82, 41, 0.15);
  font-size: 0.82rem;
  color: rgba(61, 82, 41, 0.6);
}

footer {
  background: var(--dark);
  padding: 2.5rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}
.footer-logo span { color: var(--sage); }

.footer-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

footer p,
footer span { color: rgba(251, 247, 241, 0.35); font-size: 0.85rem; }
footer a { color: rgba(251, 247, 241, 0.55); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
footer a:hover { color: var(--gold-light); }

/* ── Responsive ── */
/* Tablet: Kurse in 2 Spalten, dritte Kachel rutscht in zweite Zeile */
@media (max-width: 1024px) {
  /* Zweispaltig ist inzwischen der Grundzustand — hier nur noch die Breite bündeln */
  .kurs-cards {
    max-width: 760px;
    margin: 0 auto;
  }
}

@media (max-width: 960px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .kurs-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .massage-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  /* Einspaltig: Kachel oben, Video darunter */
  .massage-reihe {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
    gap: 1.25rem;
  }
  .massage-video { aspect-ratio: 1; }
  /* Video läuft auch mobil: die fertige Datei ist nur 318 KB,
     das entspricht etwa einem Foto. */
  .massage-video-btn {
    /* Auf Touch dauerhaft sichtbar — es gibt kein Überfahren mit der Maus */
    opacity: 1;
    right: 0.6rem;
    bottom: 0.6rem;
  }
  .kurs-card--wide {
    min-height: 440px;
    padding: 2.5rem 2.5rem 3rem;
    justify-content: flex-start;
  }
  /* Einspaltig: Preis wieder über den Text statt daneben.
     Die Exklusiv-Variante muss ausdrücklich mit genannt werden — ihre
     Spaltenregel weiter oben ist spezifischer und würde sonst gewinnen. */
  .kurs-card--wide .kurs-card-content,
  .kurs-exklusiv-reihe .kurs-card--wide .kurs-card-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: none;
  }
  /* Mittig zentrieren ergibt nur neben dem Text Sinn */
  .kurs-card--wide .kurs-preisblock { align-self: start; }
  .kurs-card--wide .kurs-bg {
    left: 0;
    right: 0;
    width: 100%;
    min-width: 0;
  }

  .kurs-card:hover {
    transform: scale(1.02);
  }
  .kurs-card--wide:hover { transform: translateY(-3px); }

  .ueber-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  /* Einspaltig: Kreise nebeneinander statt untereinander — sonst
     würde die Bildspalte allein über 1000px hoch. */
  .ueber-bild {
    max-width: none;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4%;
  }
  .ueber-rund--1 { width: 40%; align-self: center; }
  .ueber-rund--2 { width: 28%; align-self: center; }
  .ueber-rund--3 { width: 34%; align-self: center; margin-left: 0; }

  .hero-sub {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .kontakt-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .footer-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
}

@media (max-width: 640px) {
  /* Die früheren quer scrollbaren Pillen sind entfallen — die Navigation
     liegt jetzt im Burger-Menü (siehe Media Query bei 860px). */
  .nav {
    padding: 0.55rem 0.6rem 0.55rem 0.9rem;
    gap: 0.5rem;
    margin: 0.5rem auto 0;
    max-width: calc(100% - 1rem);
  }
  .logo-img { width: 36px; height: 36px; }
  .logo-text { font-size: 1.05rem; }

  .form-row { grid-template-columns: 1fr; }

  /* Hero: kompakteres Padding + Bubble-Animation entspannter */
  .hero { padding: 7rem 1.25rem 4rem; }
  .hero-eyebrow { font-size: 0.65rem; margin-bottom: 1.5rem; letter-spacing: 0.15em; }
  .hero-small { line-height: 1.3; }
  .hero-sub { margin-top: 2rem; padding-top: 1.5rem; gap: 1.25rem; }
  .hero-sub p { font-size: 0.92rem; }
  .hero-bubbles { opacity: 0.32; }
  .kontakt, .kurse { padding-left: 1.5rem; padding-right: 1.5rem; }
  .ueber-uns { padding-left: 1.5rem; padding-right: 1.5rem; }
  .intro-wir { padding-left: 1.5rem; padding-right: 1.5rem; }
  .intro-wir-foto { max-width: 220px; }
}

/* Mobile-spezifische Tap-Optimierungen */
@media (hover: none) and (pointer: coarse) {
  /* Auf Touch keine Hover-Transformationen, die als "hängende" Zustände bleiben */
  .kurs-card:hover { transform: scale(1); box-shadow: none; }
  .kurs-card--wide:hover { transform: none; box-shadow: none; }
  .kurs-card:hover .kurs-bg { transform: scale(1); }
  .kurs-card:hover .kurs-price { transform: scale(0.85); }
  /* Auf Touch keine hängenden Hover-Zustände — Hinterlegung bleibt aber */
  .card:hover { transform: none; }
}

/* ══════════════════════════════════════════════════════════════
   BLOG-ARTIKEL — gemeinsames Design für alle Beiträge
   Ersetzt die früher in jeder Datei doppelt vorhandenen <style>-Blöcke.
   Die Akzentfarbe kommt je Beitrag über eine Klasse am <body>.
   ══════════════════════════════════════════════════════════════ */
.artikel {
  --akzent: var(--sage-mid);
  --akzent-hell: rgba(92, 122, 66, 0.10);
  --akzent-linie: rgba(92, 122, 66, 0.28);
}
.artikel--gold     { --akzent: #A8871F; --akzent-hell: rgba(196,160,48,0.13); --akzent-linie: rgba(196,160,48,0.35); }
.artikel--sage     { --akzent: #5C7A42; --akzent-hell: rgba(92,122,66,0.10);  --akzent-linie: rgba(92,122,66,0.28); }
.artikel--lavendel { --akzent: #6B5385; --akzent-hell: rgba(124,94,154,0.11); --akzent-linie: rgba(124,94,154,0.30); }
.artikel--petrol   { --akzent: #2F6E70; --akzent-hell: rgba(74,154,157,0.11); --akzent-linie: rgba(74,154,157,0.30); }

/* ── Kopfbereich: hell und warm statt dunkel ── */
.artikel-hero {
  padding: 9rem 2.5rem 3.5rem;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, var(--akzent-hell), transparent 70%),
    linear-gradient(170deg, var(--sand) 0%, var(--off-white) 100%);
}
.artikel-hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--akzent);
}
.artikel-hero__punkt { opacity: 0.45; }
.artikel-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--dark);
  max-width: 900px;
  margin: 0 auto;
  text-wrap: balance;
}

/* ── Textkörper ── */
.artikel-body { background: var(--off-white); padding: 3.5rem 2.5rem 5rem; }
.artikel-content {
  max-width: 720px;
  margin: 0 auto;
  color: #33402A;
  font-size: 1.05rem;
  line-height: 1.8;
}
.artikel-content > p { margin-bottom: 1.3rem; }
.artikel-lead {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.65;
  color: var(--dark);
  margin-bottom: 2rem !important;
}
.artikel-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--dark);
  margin: 2.8rem 0 1rem;
}
/* Kleiner Akzentstrich über jeder Zwischenüberschrift */
.artikel-content h2::before {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  border-radius: 2px;
  background: var(--akzent);
  margin-bottom: 0.9rem;
}
.artikel-content a {
  color: var(--akzent);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--akzent-linie);
  transition: border-color 0.25s ease;
}
.artikel-content a:hover { border-bottom-color: var(--akzent); }
.artikel-content strong { color: var(--dark); font-weight: 700; }

/* ── Hervorgehobener Kasten ── */
.artikel-box {
  margin: 2rem 0;
  padding: 1.5rem 1.6rem;
  border-radius: 10px;
  background: var(--akzent-hell);
  border-left: 4px solid var(--akzent);
}
.artikel-box__titel {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--akzent);
  margin-bottom: 0.7rem;
}
.artikel-box p:last-child { margin-bottom: 0; }

/* ── Liste mit Häkchen ── */
.artikel-liste { list-style: none; margin: 1.5rem 0 1.8rem; padding: 0; }
.artikel-liste li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.9rem;
}
.artikel-liste li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--akzent);
  opacity: 0.85;
}

/* ── Zitat ── */
.artikel-zitat {
  margin: 2.4rem 0;
  padding: 0;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  line-height: 1.5;
  color: var(--dark);
  text-wrap: balance;
}
.artikel-zitat::before {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  margin: 0 auto 1.3rem;
  background: linear-gradient(to right, var(--akzent), transparent);
}

/* ── Abschluss-Kasten mit Handlungsaufforderung ── */
.artikel-cta {
  margin-top: 3.5rem;
  padding: 2.2rem 2rem;
  border-radius: 12px;
  background: var(--dark);
  text-align: center;
}
.artikel-cta h2 {
  color: var(--off-white) !important;
  margin: 0 0 0.7rem !important;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
}
.artikel-cta h2::before { display: none; }
.artikel-cta p {
  color: rgba(251, 247, 241, 0.72);
  font-size: 0.98rem;
  margin-bottom: 1.5rem;
}
.artikel-cta .btn { margin: 0 0.3rem 0.5rem; }

/* ── Weiterlesen-Leiste ── */
.artikel-weiter {
  max-width: 720px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(61, 82, 41, 0.14);
}
.artikel-weiter__titel {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-mid);
  margin-bottom: 1rem;
}
.artikel-weiter ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55rem; }
.artikel-weiter a {
  color: var(--sage-dark);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(61, 82, 41, 0.2);
}
.artikel-weiter a:hover { border-bottom-color: var(--sage-dark); }

@media (max-width: 640px) {
  .artikel-hero { padding: 7rem 1.4rem 2.5rem; }
  .artikel-body { padding: 2.5rem 1.4rem 4rem; }
  .artikel-cta { padding: 1.8rem 1.3rem; }
}

/* ══════════════════════════════════════════════════════════════
   WORKSHOP-KARTEN — Titel und Erklärung führen, Preis folgt
   ══════════════════════════════════════════════════════════════ */
/* Nur die beiden Gruppen-Workshops, nicht die breite Exklusiv-Karte */
.kurs-cards .kurs-card h3 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.08;
  margin-bottom: 0.2rem;
}
.kurs-cards .kurs-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

/* Eckdaten am Fuß: Dauer und Teilnehmerzahl führen, Preis steht darunter */
.kurs-eckdaten {
  margin-top: auto;
  padding-top: 1.4rem;
}
/* Was Ihr bekommt — die eigentliche Information */
.kurs-eckdaten__haupt {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 1.9vw, 1.4rem);
  letter-spacing: -0.01em;
  color: #fff;
}
.kurs-eckdaten__haupt .kurs-dot { opacity: 0.45; font-weight: 400; }
/* Was es kostet — bewusst zurückgenommen */
.kurs-eckdaten__preis {
  margin-top: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.72);
}
.kurs-eckdaten__preis span {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
}

/* Paarspecial: gleiche Ordnung, nur eine Stufe größer */
.kurs-eckdaten__haupt--exklusiv {
  display: block;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.15;
}
.kurs-eckdaten__haupt--exklusiv .kurs-dot { display: none; }
.kurs-eckdaten__haupt--exklusiv span { display: block; }
.kurs-eckdaten__preis--exklusiv {
  margin-top: 0.6rem;
  font-size: 1.05rem;
}

/* ── Exklusiv-Raum: eigene Zeile, Karte plus Videofläche ── */
.kurs-exklusiv-reihe {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: clamp(1.25rem, 2.5vw, 2.25rem);
  align-items: stretch;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}
.kurs-exklusiv-reihe .kurs-card--exklusiv {
  border-radius: 4px;
}
/* Die Exklusiv-Karte darf größer auftreten als die beiden darüber */
.kurs-exklusiv-reihe .kurs-card--wide .kurs-card-content h3 {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
}
/* Ohne den früher riesigen Preis braucht die linke Spalte weniger Platz.
   Ausdrücklich auf Desktop begrenzt: Diese Regel steht in der Datei hinter
   der mobilen Umbruch-Regel und würde sie bei gleicher Spezifität sonst
   überstimmen — das Paarspecial bliebe auf dem Handy zweispaltig. */
@media (min-width: 961px) {
  .kurs-exklusiv-reihe .kurs-card--wide .kurs-card-content {
    grid-template-columns: minmax(8rem, 11rem) 1fr;
  }
}

/* Videofläche — eigener Hintergrund, damit ohne Datei kein Loch entsteht.
   Bewusst eigene Klasse statt .massage-video: die trägt bereits ein
   Standbild als Hintergrund, das hier nicht passt. */
.kurs-video {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  /* KEIN aspect-ratio: zusammen mit align-items:stretch würde die Fläche
     ihre Breite aus der Zeilenhöhe ableiten und aus dem Raster laufen.
     Stattdessen füllt sie ihre Spalte und wächst auf Kartenhöhe mit. */
  min-height: 280px;
  background: linear-gradient(145deg, #7F5E9C, #3A2A52);
}
.kurs-video-deko {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.kurs-video-player {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 960px) {
  .kurs-exklusiv-reihe {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }
  .kurs-video { aspect-ratio: 4 / 5; }
}

/* Das längere Badge „Gruppenworkshop · Grundkurs" passt auf schmalen
   Fenstern nicht mehr in eine Zeile. Statt es umbrechen zu lassen —
   eine umgebrochene Pille sieht kaputt aus — wird es dort kompakter. */
@media (max-width: 640px) {
  .kurs-cards .kurs-badge {
    white-space: nowrap;
    font-size: 0.6rem;
    letter-spacing: 0.09em;
    padding: 0.28rem 0.65rem;
  }
}
