/* =========================================================
       ÉTOILE DU BALLET - HAUPTSTYLESHEET
       Struktur: Variablen, Basis, Header, Hero, Über mich, Kurse, Kontakt, Footer, Cookies, Responsive
  ========================================================== */

/* =========================================================
       DESIGN-VARIABLEN
  ========================================================== */
:root {
  --color-anthracite: #1f1f22;
  --color-anthracite-soft: #2d2b2f;
  --color-gold: #c7a45d;
  --color-gold-light: #ead7aa;
  --color-mauve: #b98a99;
  --color-mauve-light: #ead4db;
  --color-cream: #fbf7ef;
  --color-white: #ffffff;
  --color-text: #252326;
  --color-muted: #746d71;
  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Montserrat", sans-serif;
  --container: 1180px;
  --header-width: 1580px;
  --shadow-soft: 0 24px 70px rgba(31, 31, 34, 0.15);
}
/* =========================================================
       BASIS / RESET
  ========================================================== */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-cream);
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}
/* =========================================================
       FIXER HEADER
  ========================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--color-anthracite);
  color: var(--color-white);
  border-bottom: 1px solid rgba(199, 164, 93, 0.28);
}
.welcome-line {
  text-align: center;
  color: var(--color-gold-light);
  font-family: var(--font-heading);
  font-size: clamp(16px, 1.45vw, 24px);
  line-height: 1;
  padding: 10px 16px 2px;
  letter-spacing: 0.035em;
}
.header-inner {
  min-height: 112px;
  width: min(var(--header-width), calc(100% - 28px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-left {
  justify-content: flex-end;
}
.nav-right {
  justify-content: flex-start;
}
.nav a {
  opacity: 0.9;
  padding: 10px 0;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-mauve));
  transition: width 0.25s ease;
}
.nav a:hover::after {
  width: 100%;
}
.logo {
  display: grid;
  place-items: center;
  width: 210px;
}
.logo img {
  width: 100%;
  max-height: 108px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}
.menu-toggle {
  display: none;
}
/* =========================================================
       HERO SECTION
       Desktop-Bild: images/hero.webp
       Mobile-Bild: images/hero-mobile.webp
  ========================================================== */
.hero {
  min-height: calc(100vh - 122px);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: clamp(56px, 8vw, 100px) 0;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(
      circle at 78% 22%,
      rgba(234, 215, 170, 0.2),
      transparent 28%
    ),
    radial-gradient(
      circle at 16% 38%,
      rgba(185, 138, 153, 0.34),
      transparent 30%
    ),
    linear-gradient(115deg, rgba(31, 31, 34, 0.72), rgba(31, 31, 34, 0.24)),
    url("../images/hero.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(234, 215, 170, 0.42);
  border-radius: 34px;
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  color: var(--color-white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--color-gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 620px;
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-size: clamp(38px, 4.5vw, 58px);
  line-height: 1.05;
  font-weight: 700;
  color: var(--color-gold-light);
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
.hero-actions,
.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 23px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: linear-gradient(
    135deg,
    var(--color-gold-light),
    var(--color-gold)
  );
  color: var(--color-anthracite);
  box-shadow: 0 18px 40px rgba(199, 164, 93, 0.22);
}
.btn-secondary {
  border: 1px solid rgba(234, 215, 170, 0.7);
  color: var(--color-gold-light);
  background: rgba(31, 31, 34, 0.18);
  backdrop-filter: blur(6px);
}
.hero-placeholder {
  position: absolute;
  right: 54px;
  bottom: 40px;
  color: rgba(255, 255, 255, 0.64);
  border: 1px dashed rgba(255, 255, 255, 0.34);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 12px;
}
/* =========================================================
       ÜBER MICH SECTION
  ========================================================== */
.about-section {
  padding: clamp(70px, 8vw, 120px) 0;
  background: linear-gradient(180deg, var(--color-cream), #fffaf3);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}
.about-image-card {
  position: relative;
  border-radius: 38px;
  padding: 12px;
  background: linear-gradient(
    135deg,
    rgba(199, 164, 93, 0.72) 0%,
    rgba(234, 215, 170, 0.58) 24%,
    rgba(185, 138, 153, 0.42) 72%,
    rgba(234, 212, 219, 0.74) 100%
  );
  box-shadow: 0 26px 70px rgba(31, 31, 34, 0.16);
}
.about-image-card img {
  width: 100%;
  display: block;
  border-radius: 28px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  background: linear-gradient(
    135deg,
    rgba(31, 31, 34, 0.96),
    rgba(62, 54, 60, 0.96)
  );
}
.about-text .section-kicker,
.courses-section .section-kicker,
.contact-section .section-kicker {
  color: var(--color-mauve);
}
h2 {
  margin: 0 0 22px;
  font-family: var(--font-heading);
  font-size: clamp(42px, 5vw, 76px);
  line-height: 0.96;
  color: var(--color-anthracite);
}
.about-text p:not(.section-kicker),
.section-head p {
  margin: 0 0 28px;
  font-size: 17px;
  line-height: 1.85;
  color: var(--color-muted);
}
.text-link {
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--color-gold);
  padding-bottom: 7px;
  color: var(--color-anthracite);
}
/* =========================================================
       KURSE SECTION
  ========================================================== */
.courses-section {
  padding: clamp(70px, 8vw, 116px) 0 clamp(85px, 8vw, 130px);
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(185, 138, 153, 0.2),
      transparent 26%
    ),
    radial-gradient(
      circle at 92% 10%,
      rgba(199, 164, 93, 0.2),
      transparent 24%
    ),
    linear-gradient(180deg, #fff 0%, #f5e8ed 48%, #fdf8ef 100%);
}
.section-head {
  max-width: 780px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head h2 {
  color: var(--color-anthracite);
}
.course-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: start;
}
.course-item:nth-child(even) {
  transform: translateY(36px);
}
.course-item a {
  display: grid;
  gap: 16px;
  text-align: center;
}
.course-item h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
  color: var(--color-mauve);
}
.course-item a:hover h3 {
  color: var(--color-gold);
}
.course-image {
  height: 285px;
  border-radius: 34px;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-heading);
  font-size: 36px;
  border: 1px solid rgba(199, 164, 93, 0.28);
  box-shadow: var(--shadow-soft);
  position: relative;
}
.course-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(31, 31, 34, 0.36));
}
.course-image span {
  position: relative;
  z-index: 1;
}
.course-kids {
  background: linear-gradient(135deg, #d9b9c5, #735b65);
}
.course-youth {
  background: linear-gradient(135deg, #ead7aa, #9a6f83);
}
.course-teens {
  background: linear-gradient(135deg, #d6aabd, #6f5663);
}
.course-adults {
  background: linear-gradient(135deg, #c9a3af, #3a3438);
}
.course-other {
  background: linear-gradient(135deg, #f3ddc0, #b98a99);
}
.course-link {
  justify-self: center;
  display: inline-flex;
  color: var(--color-anthracite);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(199, 164, 93, 0.38);
  border-bottom: 2px solid var(--color-gold);
  border-radius: 999px;
  padding: 11px 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 10px 26px rgba(31, 31, 34, 0.08);
}
/* =========================================================
       KONTAKT SECTION
  ========================================================== */
.contact-section {
  padding: clamp(68px, 7vw, 96px) 0;
  background: linear-gradient(135deg, #111113, var(--color-anthracite));
  color: rgba(255, 255, 255, 0.86);
  border-top: 1px solid rgba(199, 164, 93, 0.22);
  border-bottom: 1px solid rgba(199, 164, 93, 0.22);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}
.contact-section h2 {
  color: var(--color-gold-light);
  font-size: clamp(34px, 4vw, 58px);
  margin-bottom: 16px;
}
.contact-section p:not(.section-kicker) {
  max-width: 620px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
}
.contact-card {
  border: 1px solid rgba(199, 164, 93, 0.32);
  border-radius: 28px;
  padding: clamp(26px, 4vw, 46px);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  display: grid;
  gap: 14px;
}
.contact-details {
  display: grid;
  gap: 8px;
  margin: 4px 0 12px;
}
.contact-details a {
  color: var(--color-gold-light);
  font-weight: 800;
}
.contact-card .contact-actions {
  margin-top: 6px;
}
.contact-logo-card {
  min-height: 360px;
  border-radius: 34px;
  border: 1px solid rgba(199, 164, 93, 0.3);
  background: radial-gradient(
    circle at 50% 45%,
    rgba(234, 215, 170, 0.16),
    rgba(255, 255, 255, 0.035) 52%,
    rgba(185, 138, 153, 0.08)
  );
  display: grid;
  place-items: center;
  padding: clamp(30px, 5vw, 70px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}
.contact-logo-card img {
  max-width: min(330px, 78%);
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.28));
}
/* =========================================================
       FOOTER
  ========================================================== */
.site-footer {
  background: #080809;
  color: rgba(255, 255, 255, 0.74);
  padding: 36px 0 18px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.footer-brand {
  margin: 0 0 7px;
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--color-gold-light);
}
.footer-small {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}
.footer-social {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.footer-social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(199, 164, 93, 0.5);
  border-radius: 999px;
  color: var(--color-gold-light);
  background: rgba(255, 255, 255, 0.035);
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}
.footer-social a:hover {
  background: var(--color-gold);
  color: #080809;
  transform: translateY(-2px);
}
.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
}
.footer-links {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 800;
  color: var(--color-gold-light);
}
.footer-links span {
  opacity: 0.45;
}
.footer-bottom {
  margin-top: 28px;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom strong {
  color: var(--color-gold-light);
}
/* =========================================================
       RESPONSIVE TABLET
  ========================================================== */
@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: 82px;
  }
  .nav {
    display: none;
  }
  .logo {
    justify-self: center;
    width: 168px;
  }
  .menu-toggle {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(199, 164, 93, 0.55);
    background: transparent;
    color: var(--color-gold-light);
    font-size: 22px;
  }
  .course-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-logo-card {
    min-height: 260px;
  }
}
/* =========================================================
       RESPONSIVE MOBILE
  ========================================================== */
@media (max-width: 720px) {
  .container,
  .hero-content {
    width: min(100% - 24px, var(--container));
  }
  .welcome-line {
    font-size: 18px;
    padding-top: 10px;
  }
  .logo {
    width: 142px;
  }
  .hero {
    min-height: 72vh;
    padding: 44px 0;
  }
  .hero::before {
    inset: 16px;
    border-radius: 22px;
  }
  .hero h1 {
    max-width: 92%;
  }
  .hero-placeholder {
    right: 22px;
    bottom: 20px;
    font-size: 11px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .about-image-card {
    max-width: 390px;
    margin: 0 auto;
    border-radius: 32px;
  }
  .about-image-card img {
    border-radius: 24px;
  }
  .course-grid {
    gap: 18px 14px;
  }
  .course-item:nth-child(even) {
    transform: none;
  }
  .course-image {
    height: 160px;
    border-radius: 22px;
    font-size: 26px;
  }
  .course-item h3 {
    font-size: 26px;
  }
  .course-link {
    padding: 9px 12px;
    font-size: 10px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-links {
    justify-self: center;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* =========================================================
       SEO / UX ERGÄNZUNGEN
  ========================================================== */
.welcome-line {
  font-size: clamp(13px, 1.05vw, 18px);
  padding: 8px 16px 0;
}

.nav {
  font-size: 12.5px;
  gap: 20px;
}

.logo {
  width: 230px;
}

.logo img {
  max-height: 118px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  display: block;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.site-header.is-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.site-header.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}
.site-header.is-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.contact-grid {
  align-items: stretch;
}

.contact-card,
.contact-logo-card {
  height: 100%;
}

.footer-bottom a {
  color: var(--color-gold-light);
  font-weight: 800;
}

.footer-bottom a:hover {
  color: var(--color-gold);
}

/* =========================================================
       COOKIE-HINWEIS SCHWEIZ
       Das Cookie-Icon bleibt dauerhaft sichtbar.
       Der Hinweis erscheint beim ersten Besuch unten, blockiert
       die Website nicht und verschwindet nach Akzeptieren/Ablehnen.
  ========================================================== */

.cookie-floating-button {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 1000;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(199, 164, 93, 0.58);
  border-radius: 999px;
  color: var(--color-anthracite);
  background: linear-gradient(
    135deg,
    var(--color-gold-light),
    var(--color-gold)
  );
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.cookie-floating-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}

.cookie-floating-button svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.cookie-consent {
  position: fixed;
  left: 84px;
  bottom: 18px;
  z-index: 999;
  width: min(520px, calc(100% - 116px));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px 17px;
  border-radius: 22px;
  border: 1px solid rgba(199, 164, 93, 0.42);
  background: rgba(31, 31, 34, 0.96);
  color: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  transform: translateY(16px) scale(0.98);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.cookie-consent.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.cookie-text strong {
  display: block;
  font-family: var(--font-heading);
  color: var(--color-gold-light);
  font-size: 20px;
  line-height: 1;
  margin-bottom: 5px;
}

.cookie-text p {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.68);
}

.cookie-text a {
  color: var(--color-gold-light);
  border-bottom: 1px solid rgba(234, 215, 170, 0.6);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.cookie-accept,
.cookie-decline {
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.cookie-accept {
  border: 0;
  color: var(--color-anthracite);
  background: linear-gradient(
    135deg,
    var(--color-gold-light),
    var(--color-gold)
  );
}

.cookie-decline {
  border: 1px solid rgba(234, 215, 170, 0.56);
  color: var(--color-gold-light);
  background: transparent;
}

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: 44px 1fr 44px;
    min-height: 92px;
  }

  .logo {
    grid-column: 2;
    justify-self: center;
    width: 174px;
  }

  .menu-toggle {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    gap: 4px;
  }

  .site-header.is-open .nav {
    display: flex;
    grid-column: 1 / -1;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 18px;
    padding: 0 0 18px;
    text-align: center;
  }

  .site-header.is-open .nav-left {
    grid-row: 2;
  }

  .site-header.is-open .nav-right {
    grid-row: 3;
  }
}

@media (max-width: 720px) {
  .welcome-line {
    font-size: 14px;
    padding-top: 8px;
  }

  .logo {
    width: 154px;
  }

  .contact-card,
  .contact-logo-card {
    height: auto;
  }

  .footer-bottom {
    display: grid;
    gap: 6px;
  }

  .powered-separator {
    display: none;
  }

  .powered-line {
    display: block;
  }

  .cookie-floating-button {
    left: 12px;
    bottom: 12px;
    width: 50px;
    height: 50px;
  }

  .cookie-consent {
    left: 12px;
    bottom: 76px;
    width: calc(100% - 24px);
    grid-template-columns: 1fr;
  }

  .cookie-accept {
    justify-self: start;
  }
}

/* =========================================================
       FINALE KORREKTUREN MOBILE / SCROLL
  ========================================================== */
html {
  scroll-padding-top: 120px;
}

#ueber-mich,
#kurse,
#kontakt {
  scroll-margin-top: 150px;
}

@media (max-width: 1120px) {
  .site-header.is-open .nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 10px;
    padding: 0 0 10px;
    text-align: center;
  }

  .site-header.is-open .nav-left {
    grid-column: 1 / -1;
    grid-row: 2;
    padding-top: 6px;
  }

  .site-header.is-open .nav-right {
    grid-column: 1 / -1;
    grid-row: 3;
    padding-bottom: 18px;
  }

  .site-header.is-open .nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 12px;
    border: 1px solid rgba(199, 164, 93, 0.34);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
    line-height: 1.15;
  }

  .site-header.is-open .nav a::after {
    display: none;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 108px;
  }

  #ueber-mich,
  #kurse,
  #kontakt {
    scroll-margin-top: 128px;
  }

  .header-inner {
    width: min(100% - 20px, var(--header-width));
  }

  .welcome-line {
    font-size: 13px;
    letter-spacing: 0.025em;
  }

  .hero {
    min-height: 68vh;
    align-items: center;
    padding: 42px 0 36px;
  }

  .hero-content {
    padding-top: 18px;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.16em;
    margin-bottom: 10px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(31px, 8.4vw, 42px);
    line-height: 1.04;
    margin-bottom: 22px;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-actions .btn {
    min-height: 48px;
    padding: 0 21px;
    font-size: 11px;
  }

  .contact-section {
    padding: 54px 0;
  }

  .contact-grid {
    gap: 18px;
  }

  .contact-section h2 {
    font-size: clamp(31px, 8vw, 42px);
    line-height: 1.04;
  }

  .contact-section p:not(.section-kicker) {
    font-size: 15px;
    line-height: 1.7;
  }

  .contact-actions .btn {
    width: 100%;
  }

  .contact-logo-card {
    min-height: 210px;
    border-radius: 28px;
  }
}

@media (max-width: 420px) {
  .site-header.is-open .nav {
    gap: 8px;
  }

  .site-header.is-open .nav a {
    font-size: 10.5px;
    padding: 9px 8px;
  }
}

/* =========================================================
       FEINSCHLIFF HEADER / MOBILE / SECTION-SPRUNG
  ========================================================== */

/* =========================================================
       DESKTOP NAVIGATION 4 / 4
  ========================================================== */
.nav {
  gap: clamp(14px, 1.25vw, 24px);
  font-size: clamp(12px, 0.72vw, 13.5px);
}

/* =========================================================
       SECTION SPRUNG FALLBACK
  ========================================================== */
#ueber-mich,
#kurse,
#kontakt {
  scroll-margin-top: 120px;
}

@media (max-width: 1120px) {
  /* =========================================================
       MOBILE MENÜ 2-SPALTIG
  ========================================================== */
  .site-header.is-open .nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .site-header.is-open .nav-left,
  .site-header.is-open .nav-right {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  /* =========================================================
       MOBILE HERO FEINSCHLIFF
  ========================================================== */
  .hero {
    min-height: 72vh;
    align-items: center;
    padding: 52px 0 44px;
  }

  .hero::before {
    inset: 14px;
  }

  .hero-content {
    width: 100%;
    padding: 0 28px;
    margin: 0;
  }

  .hero h1 {
    max-width: 330px;
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.08;
    margin-bottom: 22px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 12px;
  }

  .hero-actions .btn {
    width: auto;
    max-width: 100%;
    min-height: 48px;
    padding: 0 22px;
    white-space: nowrap;
  }

  .hero-actions .btn-secondary {
    display: inline-flex;
    color: var(--color-gold-light);
    background: rgba(31, 31, 34, 0.22);
    border-color: rgba(234, 215, 170, 0.72);
  }

  .hero-placeholder {
    right: 28px;
    bottom: 20px;
  }

  #ueber-mich,
  #kurse,
  #kontakt {
    scroll-margin-top: 108px;
  }
}

@media (max-width: 390px) {
  .hero-content {
    padding: 0 24px;
  }

  .hero h1 {
    max-width: 300px;
    font-size: 28px;
  }

  .hero-actions .btn {
    font-size: 10px;
    padding: 0 18px;
  }
}

/* =========================================================
       TEXTGRÖSSEN FEINSCHLIFF
  ========================================================== */
.about-text h2 {
  font-size: clamp(34px, 4.1vw, 58px);
  line-height: 1.02;
}

@media (max-width: 720px) {
  .about-text h2 {
    font-size: clamp(32px, 9vw, 42px);
  }
}

/* =========================================================
       SCROLL MOVE / REVEAL
       Sanfte Bewegung beim Herunterscrollen.
  ========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.85s ease,
    transform 0.85s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.hero.reveal {
  opacity: 1;
  transform: none;
}

/* =========================================================
       UNTERSEITEN HERO
  ========================================================== */
.subpage-hero {
  position: relative;
  padding: clamp(72px, 8vw, 120px) 0 clamp(62px, 7vw, 96px);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(
      circle at 82% 20%,
      rgba(234, 215, 170, 0.25),
      transparent 26%
    ),
    radial-gradient(
      circle at 18% 38%,
      rgba(185, 138, 153, 0.34),
      transparent 30%
    ),
    linear-gradient(135deg, #141416, var(--color-anthracite));
  color: var(--color-white);
  border-bottom: 1px solid rgba(199, 164, 93, 0.24);
}
.subpage-hero::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(234, 215, 170, 0.34);
  border-radius: 34px;
  z-index: -1;
}
.subpage-hero-inner {
  max-width: 900px;
}
.subpage-hero h1 {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-size: clamp(46px, 6vw, 86px);
  line-height: 0.95;
  color: var(--color-gold-light);
}
.subpage-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.8;
}

/* =========================================================
       RECHTLICHE SEITEN / DATENSCHUTZ / IMPRESSUM
  ========================================================== */
.legal-section {
  padding: clamp(68px, 8vw, 116px) 0;
  background: linear-gradient(180deg, var(--color-cream), #fffaf3);
}
.legal-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}
.legal-toc {
  position: sticky;
  top: 150px;
  display: grid;
  gap: 10px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(199, 164, 93, 0.28);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 44px rgba(31, 31, 34, 0.08);
}
.legal-toc strong {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--color-anthracite);
  margin-bottom: 6px;
}
.legal-toc a {
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 9px 0;
  border-bottom: 1px solid rgba(185, 138, 153, 0.18);
}
.legal-toc a:hover {
  color: var(--color-mauve);
}
.legal-content,
.imprint-main {
  display: grid;
  gap: 22px;
}
.legal-date {
  margin: 0;
  color: var(--color-mauve);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.legal-card {
  padding: clamp(24px, 4vw, 42px);
  border-radius: 30px;
  border: 1px solid rgba(199, 164, 93, 0.24);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 56px rgba(31, 31, 34, 0.08);
}
.legal-card h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.02;
}
.legal-card p {
  margin: 0 0 16px;
  color: var(--color-muted);
  line-height: 1.8;
  font-size: 16px;
}
.legal-card p:last-child {
  margin-bottom: 0;
}
.legal-card a,
.legal-note a {
  color: var(--color-mauve);
  font-weight: 800;
  border-bottom: 1px solid rgba(185, 138, 153, 0.34);
}
.imprint-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}
.imprint-side {
  display: grid;
  gap: 22px;
  position: sticky;
  top: 150px;
}
.imprint-logo-card {
  min-height: 320px;
  background: radial-gradient(
    circle at 50% 45%,
    rgba(234, 215, 170, 0.2),
    rgba(31, 31, 34, 0.96) 58%
  );
}
.legal-note {
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(199, 164, 93, 0.3);
  background: linear-gradient(
    135deg,
    rgba(31, 31, 34, 0.96),
    rgba(45, 43, 47, 0.96)
  );
  color: rgba(255, 255, 255, 0.74);
}
.legal-note strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--color-gold-light);
}
.legal-note p {
  margin: 0;
  line-height: 1.7;
}
@media (max-width: 980px) {
  .legal-grid,
  .imprint-layout {
    grid-template-columns: 1fr;
  }
  .legal-toc,
  .imprint-side {
    position: static;
  }
}
@media (max-width: 720px) {
  .reveal {
    transform: translateY(22px);
  }
  .subpage-hero {
    padding: 58px 0 52px;
  }
  .subpage-hero::before {
    inset: 14px;
    border-radius: 22px;
  }
  .subpage-hero h1 {
    font-size: clamp(38px, 12vw, 56px);
  }
  .subpage-hero p:not(.eyebrow) {
    font-size: 15px;
  }
  .legal-section {
    padding: 54px 0;
  }
  .legal-card {
    border-radius: 24px;
  }
}

/* =========================================================
       RECHTLICHE SEITEN - FINALE ANPASSUNGEN
  ========================================================== */
.legal-single {
  max-width: 980px;
}

.imprint-main-wide {
  max-width: 1120px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.imprint-main-wide .legal-card:first-child,
.imprint-main-wide .legal-card:nth-child(3) {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.78),
    rgba(234, 212, 219, 0.42)
  );
}

@media (max-width: 820px) {
  .imprint-main-wide {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
       MOBILE KORREKTUR RECHTLICHE HERO-BEREICHE
       Verhindert, dass lange Titel wie Datenschutz / Impressum
       auf kleinen Screens aus dem Rahmen laufen.
  ========================================================== */
@media (max-width: 720px) {
  .subpage-hero {
    padding: 48px 0 46px;
  }

  .subpage-hero .container {
    width: min(100% - 32px, var(--container));
  }

  .subpage-hero-inner {
    max-width: 100%;
  }

  .subpage-hero h1 {
    max-width: 100%;
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.02;
    word-break: normal;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .subpage-hero p:not(.eyebrow) {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.65;
  }
}

@media (max-width: 390px) {
  .subpage-hero h1 {
    font-size: clamp(31px, 9.5vw, 38px);
  }
}

/* =========================================================
       GALERIE SEITE
       15 Bildplatzhalter im bestehenden Étoile-Design.
  ========================================================== */
.gallery-section {
  padding: clamp(70px, 8vw, 116px) 0 clamp(86px, 8vw, 132px);
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(185, 138, 153, 0.18),
      transparent 26%
    ),
    radial-gradient(
      circle at 92% 10%,
      rgba(199, 164, 93, 0.18),
      transparent 24%
    ),
    linear-gradient(180deg, var(--color-cream), #fffaf3 48%, #f5e8ed 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  align-items: start;
}

.gallery-item:nth-child(3n + 2) {
  transform: translateY(30px);
}

.gallery-placeholder {
  position: relative;
  min-height: clamp(260px, 28vw, 420px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(199, 164, 93, 0.28);
  color: var(--color-gold-light);
  font-family: var(--font-heading);
  font-size: clamp(30px, 3vw, 46px);
  background:
    linear-gradient(180deg, rgba(31, 31, 34, 0.08), rgba(31, 31, 34, 0.42)),
    linear-gradient(
      135deg,
      rgba(185, 138, 153, 0.88),
      rgba(234, 215, 170, 0.64)
    );
  box-shadow: var(--shadow-soft);
}

.gallery-placeholder::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(234, 215, 170, 0.34);
  border-radius: 24px;
}

.gallery-placeholder span {
  position: relative;
  z-index: 3;
}

/* =========================================================
       STUNDENPLAN SEITE
       Elegante Tabelle mit Mobile-Kartenlayout.
  ========================================================== */
.schedule-section {
  padding: clamp(70px, 8vw, 116px) 0 clamp(86px, 8vw, 132px);
  background:
    radial-gradient(
      circle at 8% 18%,
      rgba(185, 138, 153, 0.18),
      transparent 24%
    ),
    linear-gradient(180deg, var(--color-cream), #fffaf3);
}

.schedule-card {
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(199, 164, 93, 0.3);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
}

.schedule-table-wrap {
  overflow-x: auto;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 820px;
}

.schedule-table th,
.schedule-table td {
  padding: 20px 22px;
  text-align: left;
  border-bottom: 1px solid rgba(185, 138, 153, 0.18);
}

.schedule-table th {
  color: var(--color-gold-light);
  background: linear-gradient(135deg, #111113, var(--color-anthracite));
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.schedule-table td {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.55;
}

.schedule-table td:nth-child(1),
.schedule-table td:nth-child(3) {
  color: var(--color-anthracite);
  font-weight: 800;
}

.schedule-table tr:last-child td {
  border-bottom: 0;
}

.schedule-table tbody tr:hover {
  background: rgba(185, 138, 153, 0.08);
}

.schedule-note {
  margin-top: 28px;
  padding: 24px 28px;
  border-radius: 28px;
  border: 1px solid rgba(199, 164, 93, 0.3);
  background: linear-gradient(
    135deg,
    rgba(31, 31, 34, 0.96),
    rgba(45, 43, 47, 0.96)
  );
  color: rgba(255, 255, 255, 0.72);
}

.schedule-note strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--color-gold-light);
}

.schedule-note p {
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 980px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item:nth-child(3n + 2) {
    transform: none;
  }

  .gallery-item:nth-child(even) {
    transform: translateY(22px);
  }
}

@media (max-width: 720px) {
  .gallery-section,
  .schedule-section {
    padding: 54px 0 70px;
  }

  .gallery-grid {
    gap: 16px;
  }

  .gallery-placeholder {
    min-height: 190px;
    border-radius: 24px;
  }

  .gallery-placeholder::before {
    inset: 10px;
    border-radius: 18px;
  }

  .schedule-card {
    border-radius: 26px;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .schedule-table,
  .schedule-table thead,
  .schedule-table tbody,
  .schedule-table th,
  .schedule-table td,
  .schedule-table tr {
    display: block;
    min-width: 0;
    width: 100%;
  }

  .schedule-table thead {
    display: none;
  }

  .schedule-table tr {
    margin-bottom: 16px;
    padding: 18px;
    border-radius: 24px;
    border: 1px solid rgba(199, 164, 93, 0.24);
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 16px 38px rgba(31, 31, 34, 0.08);
  }

  .schedule-table td {
    display: grid;
    grid-template-columns: 116px 1fr;
    gap: 14px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(185, 138, 153, 0.14);
    font-size: 13px;
  }

  .schedule-table td:last-child {
    border-bottom: 0;
  }

  .schedule-table td::before {
    content: attr(data-label);
    color: var(--color-mauve);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
}

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

  .gallery-item:nth-child(even) {
    transform: none;
  }
}

/* =========================================================
       STUNDENPLAN HINWEIS / WEITERE ANGEBOTE
       Nur Hinweisboxen zentrieren, Tabelle bleibt unverändert.
  ========================================================== */
.schedule-note {
  text-align: center;
}

.schedule-note strong,
.schedule-note h3 {
  display: block;
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 1;
  color: var(--color-gold-light);
}

.schedule-note p {
  margin: 0 auto;
  max-width: 900px;
  line-height: 1.7;
}

.coming-soon-button {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

/* =========================================================
       ONLINE ANMELDUNG SEITE
       Formular im Étoile-Design, passend zu den Unterseiten.
  ========================================================== */
.registration-section {
  padding: clamp(70px, 8vw, 116px) 0 clamp(86px, 8vw, 132px);
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(185, 138, 153, 0.16),
      transparent 26%
    ),
    radial-gradient(
      circle at 90% 12%,
      rgba(199, 164, 93, 0.16),
      transparent 24%
    ),
    linear-gradient(180deg, var(--color-cream), #fffaf3 46%, #f7edf1 100%);
}

.registration-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}

.registration-intro {
  position: sticky;
  top: 150px;
}

.registration-intro .section-kicker {
  color: var(--color-mauve);
}

.registration-intro h2 {
  font-size: clamp(36px, 4.4vw, 62px);
  line-height: 1;
}

.registration-intro > p {
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 28px;
}

.registration-note {
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(199, 164, 93, 0.3);
  background: linear-gradient(
    135deg,
    rgba(31, 31, 34, 0.96),
    rgba(45, 43, 47, 0.96)
  );
  color: rgba(255, 255, 255, 0.72);
}

.registration-note strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--color-gold-light);
}

.registration-note p {
  margin: 0;
  line-height: 1.7;
}

.registration-form {
  display: grid;
  gap: 22px;
}

.form-block {
  padding: clamp(22px, 3vw, 34px);
  border-radius: 30px;
  border: 1px solid rgba(199, 164, 93, 0.24);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 20px 56px rgba(31, 31, 34, 0.08);
}

.form-block h3 {
  margin: 0 0 20px;
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  color: var(--color-anthracite);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.registration-form label {
  display: grid;
  gap: 8px;
}

.registration-form label span {
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.registration-form input,
.registration-form textarea,
.registration-form select {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(185, 138, 153, 0.34);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--color-anthracite);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 15px;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.registration-form textarea {
  resize: vertical;
  min-height: 104px;
}

.registration-form input:focus,
.registration-form textarea:focus,
.registration-form select:focus {
  border-color: var(--color-mauve);
  box-shadow: 0 0 0 4px rgba(185, 138, 153, 0.16);
  background: var(--color-white);
}

.form-consent {
  padding: 20px 22px;
  border-radius: 24px;
  border: 1px solid rgba(185, 138, 153, 0.25);
  background: rgba(255, 255, 255, 0.66);
}

.checkbox-row {
  display: grid !important;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
}

.checkbox-row input {
  min-height: auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--color-mauve);
}

.checkbox-row span {
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-weight: 500 !important;
  line-height: 1.7;
}

.checkbox-row a {
  color: var(--color-mauve);
  font-weight: 800;
  border-bottom: 1px solid rgba(185, 138, 153, 0.36);
}

.form-actions,
.thanks-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* =========================================================
       DANKE SEITE
  ========================================================== */
.thanks-section {
  padding: clamp(70px, 8vw, 116px) 0;
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(185, 138, 153, 0.16),
      transparent 26%
    ),
    linear-gradient(180deg, var(--color-cream), #fffaf3);
}

.thanks-card {
  max-width: 860px;
  padding: clamp(30px, 5vw, 56px);
  border-radius: 34px;
  border: 1px solid rgba(199, 164, 93, 0.26);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.thanks-card .section-kicker {
  color: var(--color-mauve);
}

.thanks-card h2 {
  font-size: clamp(36px, 4.6vw, 64px);
}

.thanks-card p {
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 28px;
}

@media (max-width: 920px) {
  .registration-layout {
    grid-template-columns: 1fr;
  }

  .registration-intro {
    position: static;
  }
}

@media (max-width: 720px) {
  .registration-section,
  .thanks-section {
    padding: 54px 0 74px;
  }

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

  .form-block {
    border-radius: 24px;
  }

  .form-actions .btn,
  .thanks-actions .btn {
    width: 100%;
  }
}

/* =========================================================
       ONLINE ANMELDUNG - KOMPAKTE DUNKLE MASKE
       Überschreibt nur die Anmeldung, nicht die restliche Seite.
  ========================================================== */
.registration-layout-compact {
  display: block;
  max-width: 980px;
}

.registration-form-compact {
  padding: clamp(26px, 4.5vw, 52px);
  border-radius: 34px;
  border: 1px solid rgba(199, 164, 93, 0.36);
  background:
    radial-gradient(
      circle at 88% 8%,
      rgba(234, 215, 170, 0.13),
      transparent 24%
    ),
    radial-gradient(
      circle at 10% 20%,
      rgba(185, 138, 153, 0.22),
      transparent 30%
    ),
    linear-gradient(135deg, rgba(17, 17, 19, 0.98), rgba(31, 31, 34, 0.98));
  box-shadow: 0 28px 80px rgba(31, 31, 34, 0.26);
}

.compact-form-head {
  max-width: 720px;
  margin: 0 auto 30px;
  text-align: center;
}

.compact-form-head .section-kicker {
  color: var(--color-mauve);
}

.compact-form-head h2 {
  margin-bottom: 14px;
  color: var(--color-gold-light);
  font-size: clamp(36px, 4.6vw, 62px);
}

.compact-form-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
}

.compact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.compact-form-grid .full-field {
  grid-column: 1 / -1;
}

.registration-form-compact label span {
  color: var(--color-gold-light);
}

.registration-form-compact input,
.registration-form-compact textarea,
.registration-form-compact select {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(234, 215, 170, 0.3);
}

.registration-form-compact input:focus,
.registration-form-compact textarea:focus,
.registration-form-compact select:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 4px rgba(199, 164, 93, 0.18);
}

.compact-consent {
  margin-top: 20px;
  border-color: rgba(199, 164, 93, 0.26);
  background: rgba(255, 255, 255, 0.07);
}

.compact-consent .checkbox-row span {
  color: rgba(255, 255, 255, 0.74) !important;
}

.compact-consent .checkbox-row a {
  color: var(--color-gold-light);
}

.compact-actions {
  justify-content: center;
  margin-top: 26px;
}

.registration-form-compact .btn-secondary {
  border: 1px solid rgba(185, 138, 153, 0.7);
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-mauve), #8e6774);
  box-shadow: 0 15px 35px rgba(185, 138, 153, 0.2);
}

@media (max-width: 720px) {
  .registration-form-compact {
    border-radius: 26px;
    padding: 26px 18px;
  }

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

  .compact-actions .btn {
    width: 100%;
  }
}

/* =========================================================
       COMING SOON NEU
       Stabile Seite mit Kurskarten, Formular und Zähler.
  ========================================================== */
.coming-soon-section {
  padding: clamp(70px, 8vw, 116px) 0 clamp(86px, 8vw, 132px);
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(185, 138, 153, 0.16),
      transparent 26%
    ),
    radial-gradient(
      circle at 92% 10%,
      rgba(199, 164, 93, 0.16),
      transparent 24%
    ),
    linear-gradient(180deg, var(--color-cream), #fffaf3 48%, #f7edf1 100%);
}

.coming-soon-head {
  max-width: 880px;
  text-align: center;
  margin-bottom: 56px;
}

.coming-soon-head .section-kicker,
.interest-course-content .section-kicker {
  color: var(--color-mauve);
}

.coming-soon-head h2 {
  font-size: clamp(38px, 5vw, 70px);
}

.coming-soon-head p:not(.section-kicker) {
  max-width: 780px;
  margin: 0 auto;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.85;
}

.coming-soon-list {
  display: grid;
  gap: 34px;
}

.interest-course-card {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(199, 164, 93, 0.3);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
}

.interest-course-card:nth-child(even) {
  grid-template-columns: 1.14fr 0.86fr;
}

.interest-course-card:nth-child(even) .interest-course-visual {
  order: 2;
}

.interest-course-visual {
  min-height: 360px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  color: var(--color-gold-light);
  font-family: var(--font-heading);
  font-size: clamp(34px, 4vw, 56px);
  text-align: center;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(31, 31, 34, 0.06), rgba(31, 31, 34, 0.42)),
    linear-gradient(
      135deg,
      rgba(185, 138, 153, 0.88),
      rgba(234, 215, 170, 0.62)
    );
}

.interest-course-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  transform: scale(1.01);
  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}

.interest-course-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(31, 31, 34, 0.1), rgba(31, 31, 34, 0.52)),
    radial-gradient(
      circle at 50% 38%,
      rgba(234, 215, 170, 0.18),
      transparent 42%
    );
  pointer-events: none;
}

.interest-course-card:hover .interest-course-visual img {
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.03);
}

.interest-course-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(234, 215, 170, 0.34);
  border-radius: 26px;
  z-index: 2;
  pointer-events: none;
}

.interest-course-visual span {
  position: relative;
  z-index: 3;
}

.interest-course-content {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(26px, 4vw, 46px);
}

.interest-course-content h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  color: var(--color-anthracite);
}

.interest-course-content p:not(.section-kicker) {
  margin: 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.75;
}

.interest-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.interest-form label {
  display: grid;
  gap: 6px;
}

.interest-form label span {
  color: var(--color-mauve);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.interest-form input {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(185, 138, 153, 0.34);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-anthracite);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 10px 13px;
  outline: none;
}

.interest-form input:focus {
  border-color: var(--color-mauve);
  box-shadow: 0 0 0 4px rgba(185, 138, 153, 0.14);
}

.interest-button {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 6px;
}

.interest-form.is-saved label {
  display: none;
}

.interest-form.is-saved .interest-button {
  background: linear-gradient(135deg, var(--color-mauve), #8e6774);
  color: var(--color-white);
}

.interest-count {
  justify-self: start;
  margin-top: 6px !important;
  padding: 13px 17px;
  border-radius: 999px;
  border: 1px solid rgba(199, 164, 93, 0.3);
  background: rgba(251, 247, 239, 0.82);
  font-size: 13px !important;
}

.interest-count strong {
  color: var(--color-mauve);
  font-size: 18px;
}

@media (max-width: 980px) {
  .interest-course-card,
  .interest-course-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .interest-course-card:nth-child(even) .interest-course-visual {
    order: 0;
  }

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

@media (max-width: 720px) {
  .coming-soon-section {
    padding: 54px 0 74px;
  }

  .interest-course-card {
    border-radius: 26px;
  }

  .interest-course-visual {
    min-height: 220px;
  }

  .interest-course-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    transform: scale(1.01);
    transition:
      transform 0.45s ease,
      filter 0.45s ease;
  }

  .interest-course-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(180deg, rgba(31, 31, 34, 0.1), rgba(31, 31, 34, 0.52)),
      radial-gradient(
        circle at 50% 38%,
        rgba(234, 215, 170, 0.18),
        transparent 42%
      );
    pointer-events: none;
  }

  .interest-course-card:hover .interest-course-visual img {
    transform: scale(1.06);
    filter: saturate(1.05) contrast(1.03);
  }

  .interest-course-visual::before {
    inset: 12px;
    border-radius: 18px;
  }

  .interest-button,
  .interest-count {
    justify-self: stretch;
    text-align: center;
  }
}

/* =========================================================
       DANKE SEITE - SAUBERE FINALE VERSION
       Passt die Danke-Seite optisch an die bestehenden
       Unterseiten an und korrigiert den Stundenplan-Button.
  ========================================================== */
body:has(.thanks-section) .subpage-hero,
body:has(.thanks-section) .thanks-hero {
  position: relative;
  padding: clamp(72px, 8vw, 112px) 0 clamp(62px, 7vw, 92px);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(
      circle at 82% 20%,
      rgba(234, 215, 170, 0.25),
      transparent 26%
    ),
    radial-gradient(
      circle at 18% 38%,
      rgba(185, 138, 153, 0.34),
      transparent 30%
    ),
    linear-gradient(135deg, #141416, var(--color-anthracite));
  color: var(--color-white);
  border-bottom: 1px solid rgba(199, 164, 93, 0.24);
  text-align: left;
}

body:has(.thanks-section) .subpage-hero::before,
body:has(.thanks-section) .thanks-hero::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(234, 215, 170, 0.34);
  border-radius: 34px;
  z-index: -1;
}

body:has(.thanks-section) .thanks-hero-inner,
body:has(.thanks-section) .subpage-hero-inner {
  max-width: 900px;
}

body:has(.thanks-section) .thanks-hero .section-kicker,
body:has(.thanks-section) .subpage-hero .eyebrow {
  color: var(--color-mauve);
}

body:has(.thanks-section) .thanks-hero h1,
body:has(.thanks-section) .subpage-hero h1 {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-size: clamp(46px, 6vw, 86px);
  line-height: 0.95;
  color: var(--color-gold-light);
}

body:has(.thanks-section) .thanks-hero p:not(.section-kicker),
body:has(.thanks-section) .subpage-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.8;
}

body:has(.thanks-section) .thanks-section {
  padding: clamp(70px, 8vw, 116px) 0;
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(185, 138, 153, 0.16),
      transparent 26%
    ),
    radial-gradient(
      circle at 92% 10%,
      rgba(199, 164, 93, 0.14),
      transparent 24%
    ),
    linear-gradient(180deg, var(--color-cream), #fffaf3 58%, #f7edf1 100%);
}

body:has(.thanks-section) .thanks-card {
  max-width: 920px;
  padding: clamp(30px, 5vw, 56px);
  border-radius: 34px;
  border: 1px solid rgba(199, 164, 93, 0.26);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

body:has(.thanks-section) .thanks-card .section-kicker {
  color: var(--color-mauve);
}

body:has(.thanks-section) .thanks-card h2 {
  margin-bottom: 22px;
  font-family: var(--font-heading);
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.98;
  color: var(--color-anthracite);
}

body:has(.thanks-section) .thanks-card p {
  max-width: 720px;
  margin: 0 auto 28px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.8;
}

body:has(.thanks-section) .thanks-actions {
  justify-content: center;
}

body:has(.thanks-section) .thanks-actions .btn-secondary {
  border: 1px solid rgba(185, 138, 153, 0.72);
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-mauve), #8e6774);
  box-shadow: 0 15px 35px rgba(185, 138, 153, 0.22);
}

body:has(.thanks-section) .thanks-actions .btn-secondary:hover {
  background: linear-gradient(135deg, #c59aa8, #9b7280);
}

body:has(.thanks-section) .thanks-signature {
  display: block;
  margin: 34px auto 0 !important;
  font-family: var(--font-heading);
  font-size: clamp(34px, 4vw, 54px) !important;
  line-height: 1;
  color: var(--color-gold);
}

@media (max-width: 720px) {
  body:has(.thanks-section) .subpage-hero,
  body:has(.thanks-section) .thanks-hero {
    padding: 48px 0 46px;
  }

  body:has(.thanks-section) .subpage-hero::before,
  body:has(.thanks-section) .thanks-hero::before {
    inset: 14px;
    border-radius: 22px;
  }

  body:has(.thanks-section) .thanks-hero h1,
  body:has(.thanks-section) .subpage-hero h1 {
    font-size: clamp(38px, 12vw, 56px);
  }

  body:has(.thanks-section) .thanks-actions .btn {
    width: 100%;
  }
}

/* =========================================================
       HERO FINAL KOMPAKT
       Eine zentrale Steuerung für Desktop + Mobile.
       Desktop-Bild: ../images/hero.webp
       Mobile-Bild:  ../images/hero-mobile.webp
  ========================================================== */
.hero {
  min-height: calc(100vh - 122px) !important;
  position: relative;
  display: flex !important;
  align-items: flex-end !important;
  padding: clamp(56px, 8vw, 100px) 0 !important;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(
      circle at 78% 22%,
      rgba(234, 215, 170, 0.16),
      transparent 28%
    ),
    radial-gradient(
      circle at 15% 42%,
      rgba(185, 138, 153, 0.34),
      transparent 30%
    ),
    linear-gradient(
      90deg,
      rgba(18, 18, 20, 0.72) 0%,
      rgba(18, 18, 20, 0.48) 38%,
      rgba(18, 18, 20, 0.16) 100%
    ),
    url("../images/hero.webp") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(234, 215, 170, 0.42);
  border-radius: 34px;
  z-index: 1;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(18, 18, 20, 0.48) 0%,
    rgba(18, 18, 20, 0.24) 44%,
    rgba(18, 18, 20, 0.05) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 40px)) !important;
  margin: 0 auto !important;
  padding: 0 !important;
  color: var(--color-white);
}

.hero h1 {
  max-width: 620px !important;
  margin: 0 0 16px !important;
  font-family: var(--font-heading);
  font-size: clamp(38px, 4.5vw, 58px) !important;
  line-height: 1.05 !important;
  font-weight: 700;
  color: var(--color-gold-light);
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.34);
}

.hero-subtitle {
  max-width: 520px;
  margin: 0 0 30px;
  color: var(--color-mauve-light);
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.7;
  font-weight: 500;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}

.hero-placeholder {
  display: none !important;
}

@media (max-width: 720px) {
  .hero {
    min-height: 780px !important;
    align-items: flex-end !important;
    padding: 0 0 118px !important;
    background:
      radial-gradient(
        circle at 76% 30%,
        rgba(234, 215, 170, 0.1),
        transparent 30%
      ),
      linear-gradient(
        90deg,
        rgba(18, 18, 20, 0.9) 0%,
        rgba(18, 18, 20, 0.66) 47%,
        rgba(18, 18, 20, 0.14) 100%
      ),
      url("../images/hero-mobile.webp") !important;
    background-size: cover !important;
    background-position: 69% center !important;
    background-repeat: no-repeat !important;
  }

  .hero::before {
    inset: 14px;
    border-radius: 22px;
  }

  .hero::after {
    background: linear-gradient(
      90deg,
      rgba(18, 18, 20, 0.76) 0%,
      rgba(18, 18, 20, 0.48) 50%,
      rgba(18, 18, 20, 0.08) 100%
    );
  }

  .hero-content {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 28px !important;
  }

  .hero .eyebrow {
    max-width: 300px;
    font-size: 11px;
    line-height: 1.25;
    letter-spacing: 0.16em;
    margin-bottom: 10px;
  }

  .hero h1 {
    max-width: 306px !important;
    font-size: clamp(28px, 7vw, 36px) !important;
    line-height: 1.1 !important;
    margin-bottom: 14px !important;
  }

  .hero-subtitle {
    max-width: 306px;
    font-size: 15px;
    line-height: 1.62;
    margin-bottom: 24px;
  }

  .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 12px;
  }

  .hero-actions .btn {
    width: auto !important;
    max-width: 100%;
    min-height: 48px;
    padding: 0 22px;
    white-space: nowrap;
    font-size: 11px;
  }

  .hero-actions .btn-secondary {
    display: inline-flex;
    color: var(--color-gold-light);
    background: rgba(31, 31, 34, 0.3);
    border-color: rgba(234, 215, 170, 0.74);
  }
}

@media (max-width: 420px) {
  .hero {
    min-height: 740px !important;
    padding-bottom: 105px !important;
    background-position: 70% center !important;
  }

  .hero-content {
    padding: 0 24px !important;
  }

  .hero .eyebrow,
  .hero h1,
  .hero-subtitle {
    max-width: 292px !important;
  }

  .hero h1 {
    font-size: 28px !important;
  }

  .hero-actions .btn {
    font-size: 10px;
    padding: 0 18px;
  }
}

/* =========================================================
       ÜBER MICH INDEX FINAL
       Optimiert Bildgröße, Mobile-Darstellung und Namen.
       Hinweis: Für den Namen ideal im HTML verwenden:
       <h3 class="about-name">Laura Neagu</h3>
  ========================================================== */
.about-section {
  padding: clamp(72px, 8vw, 112px) 0;
  background:
    radial-gradient(
      circle at 12% 28%,
      rgba(185, 138, 153, 0.1),
      transparent 28%
    ),
    linear-gradient(180deg, var(--color-cream), #fffaf3);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(340px, 500px) minmax(0, 1fr);
  gap: clamp(42px, 5.4vw, 76px);
  align-items: center;
}

.about-image-card {
  width: 100%;
  max-width: 460px;
  justify-self: center;
  border-radius: 34px;
  padding: 10px;
  background: linear-gradient(
    135deg,
    rgba(199, 164, 93, 0.62) 0%,
    rgba(234, 215, 170, 0.5) 30%,
    rgba(185, 138, 153, 0.34) 70%,
    rgba(234, 212, 219, 0.76) 100%
  );
  box-shadow: 0 22px 58px rgba(31, 31, 34, 0.13);
}

.about-image-card img {
  width: 100%;
  display: block;
  border-radius: 24px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  background: linear-gradient(
    135deg,
    rgba(31, 31, 34, 0.96),
    rgba(62, 54, 60, 0.96)
  );
}

.about-text {
  max-width: 700px;
}

.about-text .section-kicker,
.courses-section .section-kicker,
.contact-section .section-kicker {
  color: var(--color-mauve);
}

.about-text .about-name,
.about-text .laura-name,
.about-text .about-person-name,
.about-text h3 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: clamp(42px, 4.6vw, 68px);
  line-height: 0.98;
  font-weight: 700;
  color: var(--color-anthracite);
}

.about-text h2.about-title,
.about-title {
  margin: 0 0 24px !important;
  max-width: 640px;
  font-family: var(--font-body) !important;
  font-size: clamp(20px, 1.3vw, 25px) !important;
  line-height: 1.34 !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  color: var(--color-anthracite) !important;
}

.about-text p:not(.section-kicker):not(.about-title),
.section-head p {
  margin: 0 0 22px;
  font-size: 15.5px;
  line-height: 1.82;
  color: var(--color-muted);
}

.about-text .text-link {
  margin-top: 4px;
}

@media (max-width: 980px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-image-card {
    max-width: 440px;
  }

  .about-text {
    max-width: 720px;
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .about-section {
    padding: 58px 0 74px;
  }

  .about-grid {
    gap: 30px;
  }

  .about-image-card {
    width: min(100%, 390px);
    max-width: 390px;
    border-radius: 30px;
    padding: 9px;
  }

  .about-image-card img {
    border-radius: 22px;
    aspect-ratio: 4 / 5;
  }

  .about-text .about-name,
  .about-text .laura-name,
  .about-text .about-person-name,
  .about-text h3 {
    font-size: clamp(38px, 11vw, 54px);
    line-height: 1;
  }

  .about-text h2.about-title,
  .about-title {
    font-size: clamp(20px, 5.4vw, 26px) !important;
    line-height: 1.32 !important;
  }

  .about-text p:not(.section-kicker):not(.about-title) {
    font-size: 15px;
    line-height: 1.75;
  }
}

@media (max-width: 420px) {
  .about-image-card {
    width: 100%;
    max-width: 370px;
  }
}

/* =========================================================
       KURSE BILDER FINAL
       Echte Kursbilder statt Platzhalter.
       Bildnamen im Ordner /images:
       kurs-kids.webp, kurs-jugend.webp,
       kurs-teens.webp, kurs-erwachsene.webp
  ========================================================== */
.course-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
  filter: brightness(0.97) saturate(0.92) contrast(0.98);
  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}

.course-image:has(img) {
  background: none;
}

.course-image:has(img) span {
  display: none;
}

.course-image:has(img)::after {
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(31, 31, 34, 0.03),
    rgba(31, 31, 34, 0.22)
  );
}

.course-item:hover .course-image img {
  transform: scale(1.04);
  filter: brightness(0.99) saturate(1) contrast(1);
}

@media (max-width: 720px) {
  .course-image img {
    min-height: 160px;
  }
}

/* =========================================================
       GALERIE FINAL - BILDER STATT PLATZHALTER
       Bereinigt doppelte Galerie-Regeln und hält Mobile 2-spaltig.
  ========================================================== */
.gallery-placeholder {
  min-height: clamp(260px, 28vw, 420px);
  background:
    linear-gradient(180deg, rgba(31, 31, 34, 0.08), rgba(31, 31, 34, 0.42)),
    linear-gradient(
      135deg,
      rgba(185, 138, 153, 0.88),
      rgba(234, 215, 170, 0.64)
    );
}

.gallery-placeholder img {
  width: 100%;
  height: 100%;
  min-height: clamp(260px, 28vw, 420px);
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}

.gallery-placeholder:has(img) {
  padding: 0;
  background: none;
}

.gallery-placeholder:has(img)::before,
.gallery-placeholder:has(img) span {
  display: none;
}

.gallery-item:hover .gallery-placeholder img {
  transform: scale(1.04);
  filter: brightness(0.96) saturate(1.04);
}

@media (max-width: 980px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item,
  .gallery-item:nth-child(3n + 2),
  .gallery-item:nth-child(even) {
    transform: none;
  }
}

@media (max-width: 720px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .gallery-placeholder {
    min-height: 180px;
    border-radius: 22px;
  }

  .gallery-placeholder img {
    min-height: 180px;
  }

  .gallery-placeholder::before {
    inset: 9px;
    border-radius: 16px;
  }
}

@media (max-width: 420px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .gallery-placeholder {
    min-height: 145px;
    border-radius: 18px;
  }

  .gallery-placeholder img {
    min-height: 145px;
  }
}

/* =========================================================
       KURS-KATEGORIE SEITEN FINAL
       Reihenfolge: kompaktes Bild, mittiger Text,
       Kurse & Preise, Info/Rabatte, CTA, weitere Kurse.
  ========================================================== */
.category-top-image {
  position: relative;
  height: clamp(260px, 34vw, 430px);
  overflow: hidden;
  background: var(--color-anthracite);
  isolation: isolate;
}

.category-top-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(31, 31, 34, 0.06), rgba(31, 31, 34, 0.26)),
    radial-gradient(
      circle at 15% 30%,
      rgba(185, 138, 153, 0.18),
      transparent 34%
    );
  pointer-events: none;
}

.category-top-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.95) saturate(0.94) contrast(0.98);
}

.category-intro-centered {
  padding: clamp(48px, 6vw, 82px) 0 clamp(36px, 5vw, 64px);
  text-align: center;
  background:
    radial-gradient(
      circle at 12% 22%,
      rgba(185, 138, 153, 0.12),
      transparent 28%
    ),
    linear-gradient(180deg, var(--color-cream), #fffaf3);
}

.category-intro-centered .section-kicker {
  color: var(--color-mauve);
}

.category-intro-centered h1 {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-size: clamp(52px, 7vw, 98px);
  line-height: 0.92;
  color: var(--color-anthracite);
}

.category-intro-centered p:not(.section-kicker) {
  max-width: 820px;
  margin: 0 auto;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.85;
}

.category-courses-section {
  padding: clamp(56px, 7vw, 96px) 0 clamp(76px, 8vw, 116px);
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(185, 138, 153, 0.12),
      transparent 26%
    ),
    linear-gradient(180deg, #fffaf3, #f7edf1);
}

.category-price-head {
  margin-bottom: 34px;
}

.category-price-head p {
  margin-bottom: 10px;
}

.category-price-head h2 {
  margin-bottom: 0;
}

.category-course-list {
  display: grid;
  gap: 20px;
}

.category-course-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: clamp(22px, 4vw, 48px);
  padding: clamp(24px, 4vw, 42px);
  border-radius: 32px;
  border: 1px solid rgba(199, 164, 93, 0.28);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 54px rgba(31, 31, 34, 0.08);
}

.category-course-kicker {
  margin: 0 0 9px;
  color: var(--color-mauve);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.category-course-card h3 {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  color: var(--color-anthracite);
}

.category-course-meta {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.category-course-meta li {
  color: var(--color-muted);
  line-height: 1.65;
}

.category-course-meta li::before {
  content: "•";
  color: var(--color-gold);
  font-weight: 800;
  margin-right: 8px;
}

.category-price-wrap {
  display: grid;
  align-content: start;
  gap: 14px;
}

.category-price {
  margin: 0;
  padding: 18px 20px;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    var(--color-gold-light),
    var(--color-gold)
  );
  color: var(--color-anthracite);
  font-weight: 800;
  line-height: 1.55;
}

.category-rate-box {
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(185, 138, 153, 0.28);
  background: rgba(251, 247, 239, 0.86);
}

.category-rate-box span {
  display: block;
  margin-bottom: 9px;
  color: var(--color-mauve);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.category-rate-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
  color: var(--color-anthracite);
  font-weight: 700;
}

.category-rate-box li::before {
  content: "✓";
  color: var(--color-gold);
  font-weight: 900;
  margin-right: 8px;
}

.category-rate-box-muted p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.65;
}

.category-course-note {
  margin: 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.7;
}

.category-info-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.category-info-card {
  padding: clamp(22px, 3vw, 34px);
  border-radius: 30px;
  border: 1px solid rgba(199, 164, 93, 0.28);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 48px rgba(31, 31, 34, 0.08);
}

.category-info-card-dark {
  background: linear-gradient(
    135deg,
    rgba(31, 31, 34, 0.96),
    rgba(45, 43, 47, 0.96)
  );
  color: rgba(255, 255, 255, 0.74);
}

.category-info-card h3 {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
  color: var(--color-anthracite);
}

.category-info-card-dark h3 {
  color: var(--color-gold-light);
}

.category-info-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.category-info-card li {
  line-height: 1.65;
  color: var(--color-muted);
}

.category-info-card-dark li {
  color: rgba(255, 255, 255, 0.72);
}

.category-info-card li::before {
  content: "•";
  color: var(--color-gold);
  font-weight: 900;
  margin-right: 8px;
}

.category-payment-note {
  max-width: 760px;
  margin: 30px auto 0;
  padding: 20px 24px;
  text-align: center;
  border-radius: 26px;
  border: 1px solid rgba(199, 164, 93, 0.32);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 14px 38px rgba(31, 31, 34, 0.07);
}

.category-payment-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--color-mauve);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.category-payment-note p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.7;
}

.category-final-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn-mauve {
  border: 1px solid rgba(185, 138, 153, 0.7);
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-mauve), #8e6774);
  box-shadow: 0 15px 35px rgba(185, 138, 153, 0.22);
}

.btn-mauve:hover {
  background: linear-gradient(135deg, #c59aa8, #9b7280);
}

.category-jump-section {
  padding: clamp(62px, 7vw, 96px) 0 clamp(80px, 8vw, 120px);
  background:
    radial-gradient(
      circle at 88% 12%,
      rgba(199, 164, 93, 0.16),
      transparent 26%
    ),
    linear-gradient(180deg, #fffaf3, var(--color-cream));
}

.category-image-jump-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: start;
}

.category-image-jump:nth-child(even) {
  transform: translateY(28px);
}

.category-image-jump a {
  display: grid;
  gap: 15px;
  text-align: center;
}

.category-image-jump h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  color: var(--color-mauve);
}

.category-image-jump-photo {
  height: 235px;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(199, 164, 93, 0.28);
  box-shadow: var(--shadow-soft);
  background: linear-gradient(
    135deg,
    rgba(185, 138, 153, 0.5),
    rgba(234, 215, 170, 0.42)
  );
}

.category-image-jump-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.97) saturate(0.92) contrast(0.98);
  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}

.category-image-jump a:hover .category-image-jump-photo img {
  transform: scale(1.04);
  filter: brightness(1) saturate(1) contrast(1);
}

.category-image-jump span {
  justify-self: center;
  display: inline-flex;
  color: var(--color-anthracite);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(199, 164, 93, 0.38);
  border-bottom: 2px solid var(--color-gold);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .category-course-card,
  .category-info-grid,
  .category-image-jump-grid {
    grid-template-columns: 1fr;
  }

  .category-image-jump:nth-child(even) {
    transform: none;
  }
}

@media (max-width: 720px) {
  .category-top-image {
    height: 245px;
  }

  .category-intro-centered {
    padding: 44px 0 50px;
  }

  .category-intro-centered h1 {
    font-size: clamp(44px, 15vw, 68px);
  }

  .category-intro-centered p:not(.section-kicker) {
    font-size: 15px;
    line-height: 1.75;
  }

  .category-courses-section {
    padding: 50px 0 70px;
  }

  .category-course-card {
    border-radius: 26px;
    padding: 22px;
  }

  .category-rate-box,
  .category-price,
  .category-payment-note {
    border-radius: 20px;
  }

  .category-final-actions .btn {
    width: 100%;
  }

  .category-image-jump-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 14px;
  }

  .category-image-jump-photo {
    height: 165px;
    border-radius: 22px;
  }

  .category-image-jump h3 {
    font-size: 26px;
  }

  .category-image-jump span {
    font-size: 10px;
    padding: 9px 12px;
  }
}

@media (max-width: 420px) {
  .category-image-jump-grid {
    grid-template-columns: 1fr;
  }

  .category-image-jump-photo {
    height: 210px;
  }
}

/* =========================================================
       KURSE ÜBERSICHT SEITE
       Kategorien oben, darunter kompakte Liste aller Kurse.
  ========================================================== */
.courses-overview-hero {
  padding: clamp(76px, 8vw, 126px) 0 clamp(58px, 7vw, 92px);
  text-align: center;
  background:
    radial-gradient(
      circle at 16% 24%,
      rgba(185, 138, 153, 0.18),
      transparent 30%
    ),
    radial-gradient(
      circle at 84% 18%,
      rgba(199, 164, 93, 0.16),
      transparent 26%
    ),
    linear-gradient(180deg, var(--color-cream), #fffaf3);
}

.courses-overview-hero .section-kicker {
  color: var(--color-mauve);
}

.courses-overview-hero h1 {
  max-width: 900px;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
  font-size: clamp(52px, 7vw, 98px);
  line-height: 0.92;
  color: var(--color-anthracite);
}

.courses-overview-hero p:not(.section-kicker) {
  max-width: 820px;
  margin: 0 auto;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.85;
}

.course-overview-categories {
  padding: clamp(46px, 6vw, 78px) 0 clamp(62px, 7vw, 96px);
  background:
    radial-gradient(
      circle at 92% 8%,
      rgba(199, 164, 93, 0.14),
      transparent 26%
    ),
    linear-gradient(180deg, #fffaf3, #f7edf1);
}

.course-overview-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: start;
}

.course-overview-category:nth-child(even) {
  transform: translateY(28px);
}

.course-overview-category {
  display: grid;
  gap: 15px;
  text-align: center;
}

.course-overview-category h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  color: var(--color-mauve);
}

.course-overview-category div {
  height: 235px;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(199, 164, 93, 0.28);
  box-shadow: var(--shadow-soft);
  background: linear-gradient(
    135deg,
    rgba(185, 138, 153, 0.5),
    rgba(234, 215, 170, 0.42)
  );
}

.course-overview-category img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.97) saturate(0.92) contrast(0.98);
  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}

.course-overview-category:hover img {
  transform: scale(1.04);
  filter: brightness(1) saturate(1) contrast(1);
}

.course-overview-category span {
  justify-self: center;
  display: inline-flex;
  color: var(--color-anthracite);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(199, 164, 93, 0.38);
  border-bottom: 2px solid var(--color-gold);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.all-courses-section {
  padding: clamp(62px, 7vw, 96px) 0 clamp(86px, 8vw, 126px);
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(185, 138, 153, 0.12),
      transparent 26%
    ),
    linear-gradient(180deg, #fffaf3, var(--color-cream));
}

.all-courses-table-card {
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(199, 164, 93, 0.3);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.all-courses-table {
  width: 100%;
  border-collapse: collapse;
}

.all-courses-table th,
.all-courses-table td {
  padding: 19px 21px;
  text-align: left;
  border-bottom: 1px solid rgba(185, 138, 153, 0.16);
}

.all-courses-table th {
  color: var(--color-gold-light);
  background: linear-gradient(135deg, #111113, var(--color-anthracite));
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.all-courses-table td {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.55;
}

.all-courses-table td:first-child {
  color: var(--color-anthracite);
  font-weight: 800;
}

.all-courses-table tr:last-child td {
  border-bottom: 0;
}

.all-courses-table tbody tr:hover {
  background: rgba(185, 138, 153, 0.08);
}

@media (max-width: 980px) {
  .course-overview-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .course-overview-category:nth-child(even) {
    transform: none;
  }
}

@media (max-width: 720px) {
  .courses-overview-hero {
    padding: 58px 0 48px;
  }

  .courses-overview-hero h1 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .courses-overview-hero p:not(.section-kicker) {
    font-size: 15px;
    line-height: 1.75;
  }

  .course-overview-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 14px;
  }

  .course-overview-category div {
    height: 165px;
    border-radius: 22px;
  }

  .course-overview-category h3 {
    font-size: 26px;
  }

  .course-overview-category span {
    font-size: 10px;
    padding: 9px 12px;
  }

  .all-courses-table,
  .all-courses-table thead,
  .all-courses-table tbody,
  .all-courses-table th,
  .all-courses-table td,
  .all-courses-table tr {
    display: block;
    width: 100%;
  }

  .all-courses-table thead {
    display: none;
  }

  .all-courses-table-card {
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
  }

  .all-courses-table tr {
    margin-bottom: 14px;
    padding: 18px;
    border-radius: 24px;
    border: 1px solid rgba(199, 164, 93, 0.24);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 16px 38px rgba(31, 31, 34, 0.08);
  }

  .all-courses-table td {
    display: grid;
    grid-template-columns: 132px 1fr;
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(185, 138, 153, 0.14);
    font-size: 13px;
  }

  .all-courses-table td:last-child {
    border-bottom: 0;
  }

  .all-courses-table td::before {
    content: attr(data-label);
    color: var(--color-mauve);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
}

@media (max-width: 420px) {
  .course-overview-category-grid {
    grid-template-columns: 1fr;
  }

  .course-overview-category div {
    height: 210px;
  }

  .all-courses-table td {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* =========================================================
       KURS-KATEGORIE BILDER - OPTION 3
       Desktop: Bild nicht mehr über volle Browserbreite,
       sondern als elegante breite Bildkarte im Container.
       Mobile bleibt wie bisher kompakt und stark.
  ========================================================== */
@media (min-width: 721px) {
  .category-top-image {
    width: min(var(--container), calc(100% - 80px));
    max-width: 1120px;
    height: clamp(340px, 30vw, 430px);
    margin: clamp(48px, 5vw, 76px) auto 0;
    border-radius: 40px;
    overflow: hidden;
    background: var(--color-anthracite);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(199, 164, 93, 0.3);
    isolation: isolate;
  }

  .category-top-image::before {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(234, 215, 170, 0.3);
    border-radius: 28px;
    z-index: 2;
    pointer-events: none;
  }

  .category-top-image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      linear-gradient(180deg, rgba(31, 31, 34, 0.04), rgba(31, 31, 34, 0.18)),
      radial-gradient(
        circle at 15% 30%,
        rgba(185, 138, 153, 0.14),
        transparent 34%
      );
  }

  .category-top-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
    filter: brightness(0.97) saturate(0.94) contrast(0.98);
  }

  .category-intro-centered {
    padding-top: clamp(44px, 5vw, 68px);
  }
}

/* Feine Bildfokus-Korrekturen je Seite.
   Falls ein einzelnes Bild später anders sitzt, hier anpassen. */
body:has(img[src*="kurs-kids"]) .category-top-image img {
  object-position: center 42%;
}

body:has(img[src*="kurs-jugend"]) .category-top-image img {
  object-position: center 48%;
}

body:has(img[src*="kurs-teens"]) .category-top-image img {
  object-position: center 45%;
}

body:has(img[src*="kurs-erwachsene"]) .category-top-image img {
  object-position: center 46%;
}

@media (max-width: 720px) {
  .category-top-image {
    width: 100%;
    height: 245px;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    border: 0;
  }

  .category-top-image::before {
    display: none;
  }

  .category-top-image img {
    object-fit: cover;
    object-position: center center;
  }
}

/* =========================================================
       ÜBER MICH DETAILSEITE FINAL
       Links: Hauptfoto + Bühnenbilder in einer Spalte.
       Rechts: Text beginnt oben bündig neben dem Hauptfoto.
       Alle Bilder haben dieselbe Rahmenoptik und Bildgröße.
  ========================================================== */
.about-page-section {
  padding: clamp(78px, 8vw, 126px) 0;
  background:
    radial-gradient(
      circle at 15% 30%,
      rgba(185, 138, 153, 0.16),
      transparent 30%
    ),
    radial-gradient(
      circle at 85% 15%,
      rgba(199, 164, 93, 0.12),
      transparent 25%
    ),
    linear-gradient(180deg, #fff8fa 0%, #f7edf1 100%);
}

.about-page-grid {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: clamp(42px, 6vw, 86px);
  align-items: start;
}

.about-media-column {
  display: grid;
  gap: 22px;
  width: 100%;
  align-self: start;
}

.about-media-column .about-image-card,
.about-stage-gallery figure {
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: 30px;
  padding: 9px;
  border: 1px solid rgba(199, 164, 93, 0.26);
  background: linear-gradient(
    135deg,
    rgba(199, 164, 93, 0.56),
    rgba(234, 215, 170, 0.36),
    rgba(185, 138, 153, 0.36)
  );
  box-shadow: 0 18px 48px rgba(31, 31, 34, 0.11);
}

.about-media-column .about-image-card img,
.about-stage-gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: block;
  object-fit: cover;
  border-radius: 22px;
  filter: brightness(0.98) saturate(0.94) contrast(0.98);
}

.about-media-column .about-image-card img {
  object-position: center top;
}

.about-stage-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  width: 100%;
}

.about-stage-gallery figure {
  overflow: hidden;
}

.about-stage-gallery figure:first-child img {
  object-position: center 42%;
}

.about-stage-gallery figure:nth-child(2) img {
  object-position: center 38%;
}

.about-page-text {
  align-self: start;
}

.about-page-section .section-kicker {
  color: var(--color-mauve);
}

.about-page-text h1 {
  margin: 0 0 22px;
  font-family: var(--font-heading);
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1;
  color: var(--color-anthracite);
}

.about-page-copy {
  display: grid;
  gap: 16px;
}

.about-page-copy p {
  margin: 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.85;
}

.about-page-copy p:first-child {
  color: var(--color-anthracite);
  font-size: 18px;
  font-weight: 600;
}

.about-page-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.about-page-actions .btn-secondary {
  border: 1px solid rgba(185, 138, 153, 0.7);
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-mauve), #8e6774);
  box-shadow: 0 15px 35px rgba(185, 138, 153, 0.25);
}

.about-page-actions .btn-secondary:hover {
  background: linear-gradient(135deg, #c59aa8, #9b7280);
}

@media (max-width: 920px) {
  .about-page-grid {
    grid-template-columns: 1fr;
  }

  .about-media-column {
    max-width: 430px;
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .about-page-section {
    padding: 58px 0 74px;
  }

  .about-stage-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .about-media-column .about-image-card,
  .about-stage-gallery figure {
    border-radius: 22px;
    padding: 7px;
  }

  .about-media-column .about-image-card img {
    aspect-ratio: 4 / 5;
    border-radius: 16px;
  }

  .about-stage-gallery img {
    aspect-ratio: 3 / 4;
    border-radius: 16px;
  }

  .about-page-text h1 {
    font-size: clamp(36px, 10vw, 48px);
  }

  .about-page-copy p,
  .about-page-copy p:first-child {
    font-size: 15px;
    line-height: 1.75;
  }

  .about-page-actions .btn {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .about-stage-gallery {
    gap: 10px;
  }

  .about-media-column .about-image-card,
  .about-stage-gallery figure {
    border-radius: 20px;
    padding: 6px;
  }
}

/* =========================================================
       KURS-SEITEN ZAHLUNG & RECHNUNG FINAL
       Gleiche Logik wie Rabatte / Allgemeine Informationen:
       Desktop zwei Karten nebeneinander, Mobile untereinander.
  ========================================================== */
.category-payment-notes {
  width: 100%;
  margin: 34px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.category-payment-note {
  width: 100%;
  max-width: none;
  min-height: 150px;
  margin: 0;
  padding: clamp(26px, 3vw, 38px);
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  border-radius: 30px;
  border: 1px solid rgba(199, 164, 93, 0.28);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 48px rgba(31, 31, 34, 0.08);
}

.category-payment-note strong {
  display: block;
  margin: 0 0 10px;
  color: var(--color-mauve);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.category-payment-note p {
  max-width: 520px;
  margin: 0 auto;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.75;
}

@media (max-width: 720px) {
  .category-payment-notes {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 26px;
  }

  .category-payment-note {
    min-height: auto;
    padding: 22px 20px;
    border-radius: 22px;
  }

  .category-payment-note p {
    font-size: 14px;
    line-height: 1.7;
  }
}

/* =========================================================
       KIDS INTRO - ZWEI EINFACHE TEXTBLÖCKE
       Baby-Ballett und Pré-Ballett direkt unter dem Titel.
  ========================================================== */
.kids-intro-course-blocks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 28px);
  margin: 34px auto 0;
  text-align: left;
}

.kids-intro-course-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(199, 164, 93, 0.28);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 48px rgba(31, 31, 34, 0.07);
}

.kids-intro-course-card h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1;
  color: var(--color-anthracite);
}

.kids-intro-age {
  margin: -8px 0 0;
  color: var(--color-mauve);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kids-intro-course-text {
  display: grid;
  gap: 13px;
}

.category-intro-centered .kids-intro-course-text p {
  margin: 0;
  max-width: none;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.78;
}

.kids-intro-learning-box {
  margin-top: auto;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(185, 138, 153, 0.24);
  background: rgba(251, 247, 239, 0.76);
}

.kids-intro-learning-box strong {
  display: block;
  margin-bottom: 10px;
  color: var(--color-mauve);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.kids-intro-learning-box ul {
  margin: 0;
  padding-left: 18px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 860px) {
  .kids-intro-course-blocks {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .kids-intro-course-blocks {
    margin-top: 26px;
    gap: 16px;
  }

  .kids-intro-course-card {
    padding: 22px;
    border-radius: 24px;
  }

  .category-intro-centered .kids-intro-course-text p {
    font-size: 14px;
    line-height: 1.72;
  }
}

/* =========================================================
       KATEGORIE INTRO - GENERISCHE TEXTBLÖCKE
       Für Jugend, Teens und Erwachsene wiederverwendbar.
  ========================================================== */
.category-intro-course-blocks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 28px);
  margin: 34px auto 0;
  text-align: left;
}

.category-intro-course-blocks-single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 980px;
}

.category-intro-course-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(199, 164, 93, 0.28);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 48px rgba(31, 31, 34, 0.07);
}

.category-intro-course-text {
  display: grid;
  gap: 13px;
}

.category-intro-centered .category-intro-course-text p {
  margin: 0;
  max-width: none;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.78;
}

@media (max-width: 860px) {
  .category-intro-course-blocks {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .category-intro-course-blocks {
    margin-top: 26px;
    gap: 16px;
  }

  .category-intro-course-card {
    padding: 22px;
    border-radius: 24px;
  }

  .category-intro-centered .category-intro-course-text p {
    font-size: 14px;
    line-height: 1.72;
  }
}

/* =========================================================
       STUNDENPLAN - ADRESSE & GOOGLE MAPS FINAL
       Adresse in der Tabelle ist klickbar.
       Karte läuft unter dem Stundenplan über die ganze Breite.
  ========================================================== */
.location-link {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--color-mauve);
  font-weight: 800;
  line-height: 1.55;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.location-link:hover {
  color: var(--color-gold);
  transform: translateY(-1px);
}

.location-pin {
  line-height: 1.45;
}

.schedule-map-section {
  overflow: hidden;
  background:
    radial-gradient(
      circle at 14% 18%,
      rgba(185, 138, 153, 0.14),
      transparent 28%
    ),
    linear-gradient(180deg, #f7edf1 0%, var(--color-cream) 100%);
}

.schedule-map-head {
  padding: clamp(58px, 7vw, 92px) 0 34px;
  text-align: center;
}

.schedule-map-head .section-kicker {
  color: var(--color-mauve);
}

.schedule-map-head h2 {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.96;
  color: var(--color-anthracite);
}

.schedule-map-head p:not(.section-kicker) {
  max-width: 640px;
  margin: 0 auto 24px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.75;
}

.schedule-map-full {
  width: 100%;
  height: clamp(360px, 42vw, 560px);
  border-top: 1px solid rgba(199, 164, 93, 0.26);
  border-bottom: 1px solid rgba(199, 164, 93, 0.26);
  background: var(--color-anthracite);
}

.schedule-map-full iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  filter: saturate(0.88) contrast(0.96);
}

@media (max-width: 720px) {
  .location-link {
    gap: 7px;
  }

  .schedule-map-head {
    padding: 48px 0 28px;
  }

  .schedule-map-head h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .schedule-map-full {
    height: 360px;
  }

  .schedule-map-head .btn {
    width: 100%;
  }
}

/* =========================================================
       COMING SOON - BABY / MAMIS BALLETT DESKTOP FINAL
       Reihenfolge: Baby, Modern Jazz, Charaktertanz, Joba.
       Desktop: Bild links, Text rechts.
       Mobile bleibt wie bei den anderen Kacheln.
       Bilddatei: images/coming-soon-mamis-kind.webp
  ========================================================== */
@media (min-width: 981px) {
  .interest-course-card-baby {
    grid-template-columns: 0.96fr 1.04fr;
  }

  .interest-course-card-baby .interest-course-visual {
    order: 0;
    min-height: 520px;
  }

  .interest-course-card-baby .interest-course-content {
    order: 1;
  }

  .interest-course-card-baby .mamis-ballett img {
    object-fit: cover;
    object-position: 58% center;
  }
}

@media (max-width: 980px) {
  .interest-course-card-baby .mamis-ballett img {
    object-position: center center;
  }
}
