/**
 * ina.YOGA – Styles
 *
 * Schritt 3b: Typografie- und Stil-Richtlinien
 * - H1, Sektionstitel: Audrielle No 2 (Script) – elegant, persönlich
 * - Untertitel, Akzente: Contralto Big
 * - Fließtext, Buttons, Listen: Montserrat Light – einheitlich
 * - Ziel: klare Hierarchie, konsistenter Look, User findet sich schnell zurecht
 *
 * Schritt 3c: Mobile-First + Responsive
 * - Basis: Mobile ab 320px
 * - Tablet: 768px | Desktop: 1024px+
 */

/* Typografie & Farbpalette (Schritt 1 + 2) */
:root {
  /* Fonts */
  --font-script: "audrielle-no2";       /* Überschriften H1, Sektionstitel */
  --font-accent: "contralto-big";       /* Untertitel, Akzente */
  --font-body: "montserrat";            /* Fließtext, Buttons, Listen */

  /* Farbpalette (aus Briefing) */
  --color-lavender: #e0d8eb;
  --color-light-yellow: #f3f7af;
  --color-light-green: #bdfbb6;
  --color-light-pink: #eedefa;
  --color-light-blue: #b0dbe0;
  --color-light-coral: #ffdbb1;
  --color-dark-grey-teal: #67716f;
  --color-off-white: #f7f8f6;
}

body {
  font-family: var(--font-body);
  font-weight: 300; /* Montserrat Light */
  margin: 0;
  padding: 0;
}

/* Global Button Image Pattern (wiederverwendbar) */
.btn-img {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.875rem;
  text-transform: uppercase;
  color: #000;
  position: relative;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}

.btn-img img:first-child {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.btn-img span {
  position: relative;
  z-index: 1;
  padding: 1rem 2rem;
}

h1, h2, .section-title {
  font-family: var(--font-script);
  font-weight: normal;
}

.subtitle, .accent {
  font-family: var(--font-accent);
}

button, .btn, input[type="submit"] {
  font-family: var(--font-body);
  font-weight: 300;
  text-transform: uppercase;
}

/* ============================================
   Breakpoints (Schritt 3c)
   Mobile-first: Basis 320px, dann aufwärts
   Tablet: 768px | Desktop: 1024px+
   ============================================ */

/* ============================================
   Header (Schritt 4)
   Sticky, Logo links | Social Mitte | Burger rechts
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 300;
  background-color: var(--color-off-white);
  border-bottom: 1px solid rgba(103, 113, 111, 0.15);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  max-width: 100%;
  min-height: 56px;
}

.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.header__logo img {
  display: block;
  height: 36px;
  width: auto;
}

.header__social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header__social a {
  display: flex;
  color: var(--color-dark-grey-teal);
  transition: opacity 0.2s;
}

.header__social a:hover {
  opacity: 0.7;
}

.header__social img {
  display: block;
}

/* Hauptnavigation – Desktop: horizontal sichtbar */
.header__nav {
  display: none;
}

.header__burger {
  background: none;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark-grey-teal);
}

.header__burger img,
.header__burger svg {
  display: block;
}

/* Burger: Menü-Icon (3 Linien) vs. X (Schließen) */
.header__burger-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__burger-icon--close {
  display: none;
}

.header__burger--open .header__burger-icon--menu {
  display: none;
}

.header__burger--open .header__burger-icon--close {
  display: flex;
  color: #000;
}

/* Mobile Overlay (Schritt 5) */
.nav-overlay {
  position: fixed;
  inset: 0;
  top: 56px;
  z-index: 99;
  background-color: var(--color-off-white);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.nav-overlay--open {
  opacity: 1;
  visibility: visible;
}

.nav-overlay__inner {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  gap: 1.5rem;
}

.nav-overlay__inner a {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.125rem;
  color: var(--color-dark-grey-teal);
  text-decoration: none;
  text-transform: uppercase;
}

.nav-overlay__inner a:hover {
  opacity: 0.7;
}

body.nav-open {
  overflow: hidden;
}

.header__nav a {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.875rem;
  color: var(--color-dark-grey-teal);
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.header__nav a:hover {
  opacity: 0.7;
}

/* Header: Tablet */
@media (min-width: 768px) {
  .header__inner {
    padding: 1rem 1.5rem;
  }

  .header__logo img {
    height: 42px;
  }
}

/* Header: Desktop – Burger durch horizontale Nav ersetzt */
@media (min-width: 1024px) {
  .header__inner {
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .header__burger {
    display: none;
  }

  .header__nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }

  .nav-overlay {
    display: none;
  }
}

/* ============================================
   Hero (Schritt 7)
   Mobile-first + responsive
   ============================================ */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

.hero__image-wrap {
  position: absolute;
  inset: 0;
}

.hero__image-wrap picture {
  display: block;
  width: 100%;
  height: 100%;
}

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

.hero__content {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  padding: 2rem 1.5rem;
}

.hero__top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.hero__accent {
  width: 60px;
  height: auto;
  flex-shrink: 0;
  margin-top: -50px;
  margin-left: -40px;
}

.hero__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero__welcome {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  color: #fff;
  text-align: center;
  margin: 0;
  max-width: 320px;
}

.hero__headline {
  font-family: var(--font-script);
  font-size: 6rem;
  color: #fff;
  text-align: center;
  margin: 0;
  padding: 0;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 300;
  font-size: 0.875rem;
  text-transform: uppercase;
  color: #000;
  position: relative;
  border: none;
  background: none;
  cursor: pointer;
}

.hero__btn--script {
  font-family: var(--font-script);
}

.hero__btn--accent {
  font-family: var(--font-accent);
}

.hero__btn--body {
  font-family: var(--font-body);
}

.hero__btn img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.hero__btn span {
  position: relative;
  z-index: 1;
  padding: 1rem 2rem;
}

/* Hero: Tablet */
@media (min-width: 768px) {
  .hero__accent {
    width: 80px;
  }

  .hero__headline {
    font-size: 8rem;
  }

  .hero__welcome {
    font-size: 1.125rem;
    max-width: 400px;
  }

  .hero__content {
    padding: 2.5rem 1.5rem;
  }
}

/* Hero: Desktop */
@media (min-width: 1024px) {
  .hero__accent {
    width: 100px;
  }

  .hero__headline {
    font-size: 9rem;
  }

  .hero__welcome {
    font-size: 1.25rem;
    max-width: 480px;
  }

  .hero__content {
    padding: 3rem 2rem;
  }
}

/* ============================================
   Wavy Divider (wiederverwendbar)
   ============================================ */
.wavy-divider {
  display: block;
  width: 100%;
  height: 60px;
  margin-top: 0;
  line-height: 0;
  overflow: hidden;
}

.wavy-divider--yellow-lavender,
.wavy-divider--lavender-green {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.wavy-divider svg {
  width: 100%;
  height: 100%;
}

/* Wavy Divider oben – überlappt Hero, vor Hero sichtbar */
.wavy-divider--top {
  position: relative;
  z-index: 10;
  margin-top: -80px;
  margin-bottom: 0;
}

.wavy-divider--top svg {
  display: block;
}

.wavy-divider__line {
  stroke: var(--color-lavender);
}

.wavy-divider__line-lavender {
  stroke: var(--color-lavender);
}

/* ============================================
   Angebote-Übersicht (Schritt 9)
   Mobile-first + responsive, 2×2-Grid
   ============================================ */
.offers-overview {
  position: relative;
  z-index: 10;
  background-color: var(--color-light-yellow);
  padding: 4rem 1.5rem 0;
  overflow-x: hidden;
}

.offers-overview__inner {
  max-width: 800px;
  margin: 0 auto;
}

.offers-overview__title {
  font-family: var(--font-script);
  font-size: 6.5rem;
  color: #000;
  text-align: center;
  margin: 0 0 2rem;
}

.offers-overview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@keyframes offers-card-wave {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.offers-overview__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--color-dark-grey-teal);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  animation: offers-card-wave 2.5s ease-in-out infinite;
  overflow: hidden;
}

.offers-overview__card:nth-child(1) { animation-delay: 0s; }
.offers-overview__card:nth-child(2) { animation-delay: 0.3s; }
.offers-overview__card:nth-child(3) { animation-delay: 0.6s; }
.offers-overview__card:nth-child(4) { animation-delay: 0.9s; }

.offers-overview__card:hover {
  animation-play-state: paused;
}

.offers-overview__card img:first-of-type {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.offers-overview__link {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.75rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.5rem;
}

.offers-overview__arrow {
  width: 16px;
  height: auto;
}

/* Offers Overview: Tablet */
@media (min-width: 768px) {
  .offers-overview {
    padding: 5rem 2rem 0;
  }

  .offers-overview__title {
    font-size: 7.5rem;
    margin-bottom: 2.5rem;
  }

  .offers-overview__grid {
    gap: 1.5rem;
  }

  .offers-overview__link {
    font-size: 0.875rem;
  }

  .wavy-divider {
    height: 80px;
  }
}

/* Offers Overview: Desktop */
@media (min-width: 1024px) {
  .offers-overview {
    padding: 6rem 2rem 0;
  }

  .offers-overview__title {
    font-size: 9rem;
    margin-bottom: 3rem;
  }

  .offers-overview__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

/* ============================================
   Modal – Fullscreen Popup (Schritt 10)
   ============================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: stretch;
  justify-content: center;
  padding-top: 61px; /* mobile header height */
}

.modal--open {
  display: flex;
  animation: modalFadeIn 0.2s ease;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: var(--color-light-yellow);
  cursor: pointer;
}

.modal__container {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: calc(100vh - 61px);
  overflow-y: auto;
  background: var(--color-light-yellow);
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.modal__close {
  display: none;
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: #000;
}

.modal__close:hover {
  opacity: 0.7;
}

.modal__content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.modal__header-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 1.5rem 0;
}

.modal__image-wrap {
  flex: 0 0 auto;
  width: 45%;
  max-width: 280px;
  aspect-ratio: 1;
  overflow: hidden;
}

.modal__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.modal__body {
  padding: 1.5rem;
}

.modal__title {
  font-family: var(--font-script);
  font-size: 2.5rem;
  color: #000;
  margin: 0;
  flex: 1;
}

.modal__title-sub {
  display: block;
}

.modal__text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.6;
  text-align: justify;
  color: #000;
  margin: 0 0 1.5rem;
}

.modal__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.modal__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--font-accent);
  font-weight: 300;
  font-size: 0.875rem;
  text-transform: uppercase;
  color: #000;
  position: relative;
  border: none;
  background: none;
  cursor: pointer;
}

.modal__btn img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.modal__btn span {
  position: relative;
  z-index: 1;
  padding: 1rem 1.5rem;
}

.modal__pricing-box {
  background: rgba(176, 219, 224, 0.35);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin: 1.25rem 0 1rem;
}

.modal__pricing-label {
  display: block;
  font-family: var(--font-script);
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.modal__pricing-grid {
  display: grid;
  grid-template-columns: auto auto;
  gap: 0.4rem 2rem;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9375rem;
}

.modal__gut-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #000;
  margin: 0 0 1.25rem;
  opacity: 0.85;
}

.modal__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-accent);
  font-weight: 300;
  font-size: 0.875rem;
  text-transform: uppercase;
  color: #000;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.modal__link-arrow {
  width: 24px;
  height: auto;
}

/* Modal: Tablet */
@media (min-width: 768px) {
  .modal {
    padding-top: 75px; /* tablet header height */
  }

  .modal__container {
    min-height: calc(100vh - 75px);
  }

  .modal__header-wrap {
    padding: 2rem 2rem 0;
    gap: 2rem;
  }

  .modal__image-wrap {
    max-width: 320px;
  }

  .modal__body {
    padding: 2rem;
  }

  .modal__title {
    font-size: 3rem;
  }

  .modal__text {
    font-size: 1.0625rem;
  }
}

/* Modal: Desktop – centered popup */
@media (min-width: 1024px) {
  .modal {
    align-items: center;
    justify-content: center;
    padding: 75px 2rem 2rem; /* top = header height, sides/bottom = breathing room */
  }

  .modal__backdrop {
    background: rgba(0, 0, 0, 0.45);
  }

  .modal__container {
    width: 100%;
    max-width: 680px;
    min-height: unset;
    max-height: calc(100vh - 75px - 2rem);
    overflow-y: auto;
    border-radius: 20px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.18);
  }

  .modal__header-wrap {
    padding: 2.5rem 2.5rem 0;
    gap: 2.5rem;
  }

  .modal__image-wrap {
    max-width: 280px;
  }

  .modal__body {
    padding: 2rem 2.5rem 2.5rem;
  }

  .modal__title {
    font-size: 3rem;
  }
}

body.modal-open {
  overflow: hidden;
}

/* ============================================
   Yoga-Kurse-Sektion (Schritt 14)
   Mobile-first + responsive
   ============================================ */
.yoga-courses {
  background-color: var(--color-light-yellow);
  padding: 4rem 1.5rem 0;
}

.yoga-courses__inner {
  max-width: 900px;
  margin: 0 auto;
}

.yoga-courses__header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.yoga-courses__header-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  flex-shrink: 0;
}

.yoga-courses__icon {
  width: 60px;
  height: auto;
  flex-shrink: 0;
}

.yoga-courses__title {
  font-family: var(--font-script);
  font-size: 2.75rem;
  color: #000;
  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(-180deg);
  white-space: nowrap;
  flex-shrink: 0;
}

.yoga-courses__overview {
  flex: 1;
  min-width: 0;
}

.yoga-courses__text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.6;
  text-align: justify;
  color: #000;
  margin: 0 0 1.5rem;
}

.yoga-courses__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--font-accent);
  font-size: 0.875rem;
  text-transform: uppercase;
  color: #000;
  position: relative;
  border: none;
  background: none;
  cursor: pointer;
}

.yoga-courses__btn img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.yoga-courses__btn.btn-img--full {
  min-width: 200px;
  min-height: 50px;
}

.yoga-courses__btn.btn-img--full img {
  position: relative;
  width: auto;
  height: auto;
  max-height: 60px;
  display: block;
}

.yoga-courses__btn span {
  position: relative;
  z-index: 1;
  padding: 1rem 2rem;
}


.yoga-courses__cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.yoga-courses__location-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.yoga-courses__card {
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
}

.yoga-courses__card--location {
  background-color: var(--color-light-pink);
  border: 2px dashed #000;
}

.yoga-courses__card--ohlsdorf {
  background-color: var(--color-lavender);
}

.yoga-courses__card--prices {
  background-color: var(--color-light-yellow);
  border: 2px solid #000;
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1rem;
}

.yoga-courses__card-title {
  font-family: var(--font-script);
  font-size: 2rem;
  color: #000;
  margin: 0 0 0.75rem;
}

.yoga-courses__card-title-in {
  text-decoration: underline;
}

.yoga-courses__card-title-place {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.yoga-courses__card-title--prices {
  margin-bottom: 0;
  flex: 0 0 auto;
}

.yoga-courses__price-list {
  flex: 1;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.yoga-courses__card-schedule,
.yoga-courses__card-location {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9375rem;
  color: #000;
  margin: 0 0 0.25rem;
}

.yoga-courses__card-note {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8125rem;
  color: #000;
  margin: 0.75rem 0 0;
}

.yoga-courses__card-note--prices {
  margin-top: 0.5rem;
}


.yoga-courses__card--prices .yoga-courses__card-note {
  width: 100%;
}

.yoga-courses__price-item {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  color: #000;
  margin: 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.yoga-courses__card--prices .yoga-courses__card-title {
  margin-bottom: 0.75rem;
}

.yoga-courses__cta {
  text-align: center;
}

.yoga-courses__info-link {
  font-family: var(--font-script);
  font-size: 4rem;
  color: #000;
  margin: 0 0 1rem;
}

.yoga-courses__closing {
  font-family: var(--font-script);
  font-size: 4rem;
  color: #000;
  margin: 0 0 1.5rem;
}

.yoga-courses__btn--violet {
  margin-top: 0;
}

/* Yoga Courses: Tablet */
@media (min-width: 768px) {
  .yoga-courses {
    padding: 5rem 2rem 0;
  }

  .yoga-courses__inner {
    max-width: 700px;
  }

  .yoga-courses__icon {
    width: 80px;
  }

  .yoga-courses__title {
    font-size: 3rem;
  }

  .yoga-courses__text {
    font-size: 1.0625rem;
  }

  .yoga-courses__location-cards {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .yoga-courses__card-title {
    font-size: 2.25rem;
  }

  .yoga-courses__info-link,
  .yoga-courses__closing {
    font-size: 4.5rem;
  }
}

/* Yoga Courses: Desktop */
@media (min-width: 1024px) {
  .yoga-courses {
    padding: 6rem 2rem 0;
  }

  .yoga-courses__inner {
    max-width: 800px;
  }

  .yoga-courses__title {
    font-size: 3.5rem;
  }

  .yoga-courses__info-link,
  .yoga-courses__closing {
    font-size: 5rem;
  }
}

/* ============================================
   Events (Phase 6, Schritt 16+17)
   Mobile: Eventboxen untereinander
   Desktop: Slideshow 1,5s
   ============================================ */
.events {
  background-color: var(--color-light-green);
  padding: 4rem 1.5rem 0;
  overflow-x: visible;
}

.events__inner {
  max-width: 100%;
  margin: 0 auto;
}

.events__title {
  font-family: var(--font-script);
  font-size: 6.5rem;
  color: #000;
  text-align: center;
  margin: 0 0 2rem;
}

.events__grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.events__card {
  background-color: var(--color-off-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.events__card-image-wrap {
  width: 100%;
  overflow: hidden;
}

.events__card-image-wrap img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.events__card-body {
  padding: 1.25rem 1.5rem;
}

.events__card-title {
  font-family: var(--font-script);
  font-weight: 300;
  font-size: 4rem;
  color: #000;
  margin: 0 0 0.5rem;
}

.events__card-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9375rem;
  color: var(--color-dark-grey-teal);
  margin: 0 0 0.5rem;
}

.events__card-meta {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.875rem;
  color: var(--color-dark-grey-teal);
  margin: 0 0 0.25rem;
  opacity: 0.95;
}

.events__card-meta:last-of-type {
  margin-bottom: 1rem;
}

.events__card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--font-accent);
  font-size: 0.875rem;
  text-transform: uppercase;
  color: #000;
  position: relative;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}

.events__card-btn img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.events__card-btn span {
  position: relative;
  z-index: 1;
  padding: 0.75rem 1.5rem;
}

/* Wavy Divider Events */
.wavy-divider--green-lavender {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.wavy-divider--green-lavender svg {
  display: block;
}

/* Event Modal */
.modal__container--event {
  background: var(--color-light-green);
}

.modal__container--event .modal__content {
  flex-direction: column;
}

.modal__image-wrap--event {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 10;
  flex: none;
}

.modal__text--meta {
  font-size: 0.9375rem;
  color: var(--color-dark-grey-teal);
  margin-bottom: 1rem;
}

.events-modal__reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.875rem;
  text-transform: uppercase;
  color: #000;
  position: relative;
  border: none;
  background: none;
  cursor: pointer;
}

.events-modal__reserve img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.events-modal__reserve span {
  position: relative;
  z-index: 1;
  padding: 1rem 2rem;
}

/* Events: Tablet */
@media (min-width: 768px) {
  .events {
    padding: 5rem 2rem 0;
  }

  .events__title {
    font-size: 7rem;
  }

  .events__card-title {
    font-size: 4.5rem;
  }

  .modal__image-wrap--event {
    max-width: 400px;
  }
}

/* Events: Desktop – Slideshow */
@media (min-width: 1024px) {
  .events {
    padding: 6rem 2rem 0;
  }

  .events__title {
    font-size: 7.5rem;
  }

  .events__grid {
    flex-direction: row;
    align-items: stretch;
    gap: 1.5rem;
  }

  .events__card {
    flex: 1;
  }
}

/* ============================================
   Sound Bath
   ============================================ */
.sound-bath {
  background-color: var(--color-lavender);
  padding: 4rem 1.5rem 0;
  overflow: hidden;
}

.sound-bath__inner {
  max-width: 560px;
  margin: 0 auto;
}

.sound-bath__title {
  font-family: var(--font-script);
  font-size: 7rem;
  color: #000;
  text-align: center;
  margin: 0 0 1.5rem;
}

.sound-bath__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.sound-bath__blob-wrap {
  width: 100%;
}

.sound-bath__blob-img {
  width: 100%;
  height: auto;
  display: block;
}

.sound-bath__blob-img--1 {
  border-radius: 0;
}

.sound-bath__blob-img--2 {
  border-radius: 0;
}

.sound-bath__text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9375rem;
  line-height: 1.65;
  text-align: center;
  color: #000;
  margin: 0;
}

.sound-bath__cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-bottom: 0.5rem;
}

.sound-bath__cta--center {
  justify-content: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.sound-bath__inner-wave {
  width: 100%;
  margin: 1.5rem 0;
}

.sound-bath__inner-wave svg {
  width: 100%;
  height: 30px;
  display: block;
}

.sound-bath__mit-ina {
  /* just a container */
}

.sound-bath__mit-ina-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
}

.sound-bath__mit-ina-title-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.sound-bath__mit-ina-accent {
  font-family: var(--font-accent);
  font-size: 1rem;
  color: #f3f7af;
  display: block;
}

.sound-bath__mit-ina-name {
  font-family: var(--font-script);
  font-size: 3rem;
  color: #000;
  display: block;
  line-height: 1;
}

.sound-bath__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--font-accent);
  font-size: 0.875rem;
  text-transform: uppercase;
  color: #000;
  position: relative;
  border: none;
  background: none;
  cursor: pointer;
}

.sound-bath__btn img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.sound-bath__btn span {
  position: relative;
  z-index: 1;
  padding: 1rem 2rem;
}

.wavy-divider--lavender-coral {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

@media (min-width: 768px) {
  .sound-bath {
    padding: 5rem 2rem 0;
  }
  .sound-bath__inner {
    max-width: 700px;
  }
  .sound-bath__title {
    font-size: 8rem;
  }
  .sound-bath__mit-ina-name {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .sound-bath {
    padding: 6rem 2rem 0;
  }
  .sound-bath__inner {
    max-width: 860px;
  }
  .sound-bath__title {
    font-size: 9rem;
  }
}

/* ============================================
   Nuad Thai
   ============================================ */
.nuad-thai {
  background-color: var(--color-light-coral);
  padding: 4rem 1.5rem 0;
  overflow: hidden;
}

.nuad-thai__inner {
  max-width: 560px;
  margin: 0 auto;
}

.nuad-thai__title {
  font-family: var(--font-script);
  font-size: 7rem;
  color: #000;
  text-align: left;
  line-height: 1.05;
  margin: 0 0 1.5rem;
}

.nuad-thai__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.nuad-thai__blob-wrap {
  width: 100%;
}

.nuad-thai__blob-img {
  width: 100%;
  height: auto;
  display: block;
}

.nuad-thai__blob-img--1 {
  border-radius: 0;
}

.nuad-thai__blob-img--2 {
  border-radius: 0;
}

.nuad-thai__text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #000;
  margin: 0;
}

.nuad-thai__cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-bottom: 0.5rem;
}

.nuad-thai__cta--center {
  justify-content: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.nuad-thai__inner-wave {
  width: 100%;
  margin: 1.5rem 0;
}

.nuad-thai__inner-wave svg {
  width: 100%;
  height: 30px;
  display: block;
}

.nuad-thai__mit-ina {
  /* container */
}

.nuad-thai__mit-ina-title-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.nuad-thai__mit-ina-accent {
  font-family: var(--font-accent);
  font-size: 1rem;
  color: #f3f7af;
  display: block;
}

.nuad-thai__mit-ina-name {
  font-family: var(--font-script);
  font-size: 3rem;
  color: #000;
  display: block;
  line-height: 1;
}

.nuad-thai__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--font-accent);
  font-size: 0.875rem;
  text-transform: uppercase;
  color: #000;
  position: relative;
  border: none;
  background: none;
  cursor: pointer;
}

.nuad-thai__btn img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.nuad-thai__btn span {
  position: relative;
  z-index: 1;
  padding: 1rem 2rem;
}

/* Pricing section */
.nuad-thai__pricing-section {
  padding-top: 1rem;
}

.nuad-thai__pricing-title {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  color: #000;
  text-align: center;
  letter-spacing: 0.05em;
  margin: 0 0 1.5rem;
}

.nuad-thai__pricing-box {
  background: rgba(176, 219, 224, 0.35);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.nuad-thai__pricing-label {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: #000;
  flex-shrink: 0;
  white-space: nowrap;
}

.nuad-thai__pricing-grid {
  display: grid;
  grid-template-columns: auto auto;
  gap: 0.25rem 2rem;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  color: #000;
  align-items: center;
}

.nuad-thai__gut-zu-wissen {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border: 1.5px solid rgba(0,0,0,0.4);
  border-radius: 4px;
  padding: 1rem;
  margin-bottom: 2rem;
}

.nuad-thai__gut-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #000;
  margin: 0;
  flex: 1;
}

.nuad-thai__gut-icon {
  width: 40px;
  height: auto;
  flex-shrink: 0;
}

.nuad-thai__interesse {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: #000;
  text-align: center;
  line-height: 1.4;
  margin: 0 0 0.5rem;
}

.wavy-divider--coral-blue {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

@media (min-width: 768px) {
  .nuad-thai {
    padding: 5rem 2rem 0;
  }
  .nuad-thai__inner {
    max-width: 700px;
  }
  .nuad-thai__title {
    font-size: 8rem;
  }
  .nuad-thai__mit-ina-name {
    font-size: 3.5rem;
  }
  .nuad-thai__pricing-title {
    font-size: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .nuad-thai {
    padding: 6rem 2rem 0;
  }
  .nuad-thai__inner {
    max-width: 860px;
  }
  .nuad-thai__title {
    font-size: 9rem;
  }
}

/* ============================================
   Modal – Sound Bath & Nuad Thai Varianten
   ============================================ */
.modal__container--sound-bath {
  background: var(--color-lavender);
}

.modal__container--nuad-thai {
  background: var(--color-light-coral);
}

.modal__container--was {
  background: var(--color-light-pink);
}

.modal__container--firmenyoga {
  background: var(--color-light-coral);
}

/* ============================================
   Testimonials (Schritt 19)
   Mobile-first + responsive
   ============================================ */
.testimonials {
  background-color: var(--color-light-blue);
  padding: 4rem 1.5rem 0;
  overflow: hidden;
}

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

.testimonials__title {
  font-family: var(--font-script);
  font-size: 6.5rem;
  color: #000;
  text-align: center;
  margin: 0 0 2rem;
}

.testimonials__slider-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonials__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background-color: var(--color-dark-grey-teal);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.2s;
}

.testimonials__nav:hover {
  opacity: 0.8;
}

.testimonials__nav img {
  width: 20px;
  height: 20px;
  display: block;
}

.testimonials__track-wrap {
  flex: 1;
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  width: 400%;
  transition: transform 0.4s ease;
}

.testimonials__item {
  flex: 0 0 25%;
  box-sizing: border-box;
  margin: 0;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  text-align: center;
}

.testimonials__quote {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: #000;
  margin: 0 0 0.75rem;
}

.testimonials__cite {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.875rem;
  color: var(--color-dark-grey-teal);
  font-style: normal;
}

.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.5rem 0 2rem;
}

.testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s;
}

.testimonials__dot--active {
  background: var(--color-dark-grey-teal);
}

.wavy-divider--blue-dark {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-bottom: -3px;
}

@media (min-width: 768px) {
  .testimonials {
    padding: 5rem 2rem 0;
  }

  .testimonials__title {
    font-size: 7rem;
  }

  .testimonials__quote {
    font-size: 1.0625rem;
  }

  .testimonials__item {
    padding: 2rem;
  }

  .testimonials__nav {
    width: 48px;
    height: 48px;
  }
}

@media (min-width: 1024px) {
  .testimonials {
    padding: 6rem 2rem 0;
  }

  .testimonials__title {
    font-size: 7.5rem;
  }
}

/* ============================================
   Kontakt (Schritt 20)
   Mobile-first + responsive
   ============================================ */
.contact {
  background-color: var(--color-dark-grey-teal);
  padding: 5rem 1.5rem 4rem;
}

.contact__inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.contact__title {
  font-family: var(--font-script);
  font-size: 6.5rem;
  color: #fff;
  margin: 0;
}

.contact__subline {
  font-family: var(--font-script);
  font-size: 4rem;
  color: #fff;
  margin: 0;
}

.contact__intro {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  color: #fff;
  margin: 0;
  line-height: 1.6;
  opacity: 0.9;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.contact__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  transition: opacity 0.2s;
}

.contact__item:hover {
  opacity: 0.8;
}

.contact__icon {
  display: block;
  flex-shrink: 0;
}

.contact__social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.contact__social-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9375rem;
  color: #fff;
  margin: 0;
  opacity: 0.9;
}

.contact__social-links {
  display: flex;
  gap: 1rem;
}

.contact__social-links a {
  transition: opacity 0.2s;
}

.contact__social-links a:hover {
  opacity: 0.8;
}

.contact__wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--font-accent);
  font-size: 0.875rem;
  text-transform: uppercase;
  color: #000;
  position: relative;
  border: none;
  background: none;
  cursor: pointer;
}

.contact__wa-btn img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.contact__wa-btn span {
  position: relative;
  z-index: 1;
  padding: 1rem 2.5rem;
  font-style: italic;
  text-align: center;
}

.contact__address {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9375rem;
  color: #fff;
  opacity: 0.85;
  line-height: 1.7;
  font-style: normal;
}

.contact__maps {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.contact__map-link {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.875rem;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: opacity 0.2s;
}

.contact__map-link:hover {
  opacity: 0.8;
}

@media (min-width: 768px) {
  .contact {
    padding: 6rem 2rem 5rem;
  }

  .contact__title {
    font-size: 7.5rem;
  }

  .contact__subline {
    font-size: 4.5rem;
  }

  .contact__info {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .contact__title {
    font-size: 9rem;
  }
}

/* ============================================
   Footer (Schritt 24)
   ============================================ */
.footer {
  background-color: var(--color-off-white);
  border-top: 1px solid rgba(103, 113, 111, 0.15);
  padding: 2rem 1.5rem;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer__logo img {
  display: block;
  height: 28px;
  width: auto;
  opacity: 0.75;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: center;
}

.footer__links a {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8125rem;
  text-transform: uppercase;
  color: var(--color-dark-grey-teal);
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer__links a:hover {
  opacity: 0.7;
}

.footer__copy {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.75rem;
  color: var(--color-dark-grey-teal);
  opacity: 0.65;
  margin: 0;
}

@media (min-width: 768px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
