:root{
  --bg: #efe7de;
  --bg-2: #f3ede6;
  --paper: #ffffff;
  --text: #2b2a28;
  --muted: #6f6a63;
  --brand: #cbb199;
  --shadow: 0 10px 30px rgba(20, 17, 15, .08);
  --radius: 1.25rem;
  --header-h: 68px;
}

*,
*::before,
*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body{
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
img{ max-width: 100%; height: auto; display: block; }

.skip-link{
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  white-space: nowrap;
}
.skip-link:focus{
  position: fixed;
  left: .5rem;
  top: .5rem;
  width: auto;
  height: auto;
  clip: auto;
  clip-path: none;
  padding: .5rem .75rem;
  background: #fff;
  color: var(--text);
  border-radius: .5rem;
  box-shadow: var(--shadow);
  z-index: 10000;
}

.container{
  max-width: 1120px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.site-header{
  position: fixed; inset: 0 0 auto 0; height: var(--header-h);
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #d4c8bc50;
  z-index: 9999;
}

.header-inner{
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}

.logo{
  height: auto;
  max-height: 55px;
  max-width: 320px;
  width: auto;
  display: block;
}

@media (max-width: 480px){
  .logo{max-width: 230px; max-height: 50px;}
}

.nav ul{ 
  display:flex; 
  gap:1.25rem; 
  list-style:none; 
  padding:0; 
  margin:0; 
}

.nav a{ 
  position: relative;
  text-decoration: none; 
  text-transform: uppercase; 
  font-size: .82rem; 
  color: var(--text); 
  transition: color 0.3s ease; 
}

.nav a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width 0.3s ease;
}

.nav a:hover{ color: var(--brand); }
.nav a:hover::after{ width: 100%; }

.nav a.active{ border-bottom: 2px solid var(--brand); color: var(--brand); }

.nav a.active:hover{ color: var(--brand); }
.nav a.active:hover::after{ width: 0; }

.nav-toggle{
  display:none;
  background:none;
  border:0;
  width:44px;
  height:36px;
  position:relative;
  z-index: 10000;
  cursor: pointer;
}
.nav-toggle span{
  position:absolute;
  left:9px;
  right:9px;
  height:2px;
  background:#cbb199;
  border-radius:2px;
}

.nav-toggle span:nth-child(1){ top:8px; }
.nav-toggle span:nth-child(2){ top:16px; }
.nav-toggle span:nth-child(3){ top:24px; right:18px; }

@media (max-width: 920px){
  .nav-toggle{ display:block; }

  .nav{
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    opacity: 0;
    pointer-events: none;
    z-index: 9998;
    transition: opacity .3s ease;
  }

  .nav ul{
    flex-direction: column;
    margin: 0;
    padding: 1rem 1rem 1.25rem;
    background: #fff; 
    transform: translateY(-12px);
    opacity: 0;
    transition: transform .35s cubic-bezier(.22,.61,.36,1), opacity .35s ease;
    will-change: transform, opacity;
  }

  .nav li{
    opacity: 0;
    transform: translateY(-6px);
    transition: transform .35s ease, opacity .35s ease;
  }
  .nav li:nth-child(1){ transition-delay: .05s; }
  .nav li:nth-child(2){ transition-delay: .08s; }
  .nav li:nth-child(3){ transition-delay: .11s; }
  .nav li:nth-child(4){ transition-delay: .14s; }
  .nav li:nth-child(5){ transition-delay: .17s; }
  .nav li:nth-child(6){ transition-delay: .20s; }

  body.nav-open .nav{ opacity: 1; pointer-events: auto; }
  body.nav-open .nav ul{ transform: translateY(0); opacity: 1; }
  body.nav-open .nav li{ opacity: 1; transform: none;}

  body.nav-open .nav-toggle span:nth-child(1){ top:17px; transform:rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2){ opacity:0; }
  body.nav-open .nav-toggle span:nth-child(3){ top:17px; transform:rotate(-45deg); right:9px; }
}

/* Motion-Preference respektieren */
@media (prefers-reduced-motion: reduce){
  .nav, .nav ul, .nav li{ transition: none !important; }
}


/* Sprachumschalter im Header */
.lang-switch{ position: relative; }

.lang-btn{
  appearance:none;
  border:0;
  background:transparent;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  line-height:1;
  gap:.4rem;
  text-transform: uppercase;
  font-size:.82rem;
  color:#838B8B;
  padding:0;
}

.lang-btn:focus-visible{ outline: 2px solid var(--brand); outline-offset: 3px; border-radius:4px; }

.lang-btn .chev{
  width:.45rem;
  height:.45rem;
  display:inline-block;
  border-right:2px solid currentColor;
  border-bottom:2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .25s ease;
  position: relative;
  top:-1px;
}
.lang-switch.open .lang-btn .chev{ transform: rotate(-135deg); }

.lang-menu{
  position:absolute;
  right:0;
  top: calc(100% + 10px);
  background:#fff;
  border:1px solid #e5e0d9;
  border-radius:10px;
  box-shadow: 0 12px 28px rgba(20,17,15,.12);
  padding:.35rem; margin:0;
  list-style:none;
  min-width: 140px;
  display:none !important;
  z-index: 10001;
}


.lang-switch.open .lang-menu{ 
  display: block !important; 
  position: absolute; 
  right: 0; 
  top: calc(100% + 8px);
  min-width: 60px;
  max-width: 100px;
  background: #fff;
  border: 1px solid #e5e0d9;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(20,17,15,.12);
  padding: .25rem;
  z-index: 10001;
}


.lang-menu li a{
  display:block;
  padding:.4rem .55rem;
  border-radius:8px;
  text-decoration:none;
  color:var(--text);
  font-size:.9rem;
  white-space: nowrap;
}
.lang-menu li a:hover{
  background:#f5efe8;
  color:var(--brand);
}

.lang-menu a::after{ 
  content: none !important;
}

/* Mobile: Dropdown nicht absolut, sondern unter dem Button fließen lassen */
@media (max-width: 920px){
  .lang-menu{
    position: static;
    border: 1px solid #eee;
    box-shadow: none;
    margin-top:.4rem;
    display:none;
  }
  .lang-switch.open .lang-menu{ display:block; }
}
.lang-menu[hidden]{ display: none !important; }

@media (min-width: 921px){
  .lang-switch .lang-menu .current{ display:none; }
}

@media (max-width: 920px){
  .lang-switch{ width:100%; }
  .lang-switch .lang-btn{ display:none !important; }
  .lang-switch .lang-menu{
    border:0;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap;
    align-items: center;
    gap: .25rem;
    padding:5px 0;
    white-space: nowrap;
  }
  .lang-switch .lang-menu .current{
      font-size:.9rem;
     }

  .lang-switch .lang-menu li{
    list-style: none;
    font-size:.9rem;
    flex: 0 0 auto;
  }

  .lang-switch .lang-menu li a:hover{
    background:none !important;
  }


  /* typografisch wie Text-Links */
  .lang-switch .lang-menu a,
  .lang-switch .lang-menu .current span{
    display: inline-block;
    padding: 0;
  }

  /* Trenner " | " zwischen den Einträgen */
  .lang-switch .lang-menu li + li::before{
    content: " | ";
    margin: 0 .25rem;
    color: #bdb7b0;
  }

  .lang-switch::before{
    content:"";
    display:block;
    height:1px;
    background:#eee;
    margin:.5rem 0 .25rem;
  }
}




/* Hero */
.hero-bg{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.hero-tint{ position:absolute; inset:0; background:rgba(255,255,255,.7); }
.hero .container{ position:relative; text-align:center; padding:3rem 1rem; }
.hero h1{ margin:0 0 1rem; text-transform:uppercase; }
.subtitle{ color:var(--muted); font-weight:600; letter-spacing:.18em; text-transform:uppercase; }

/* Hero – neue Texte */
.hero{
  position: relative;
  min-height: 70vh;
  margin-top: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content{
  position: relative;
  z-index: 1;
}

.hero-tags{
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 1rem;
  color: #000;
}

.hero-opening{
  font-family: "Prata", serif;
  font-size: 38px;
  font-weight: 400;
  margin: 2.2rem 0 2.5rem;
  color: #000;
  line-height: 1.8;
  text-transform: none !important;
}

.hero-date{
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 400;
  margin: 0;  
  letter-spacing: 2px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-transform: uppercase;
}

.hero-date .line{
  display: inline-block;
  height: 1px;
  width: 24px;
  background-color: #000;
}




/* Hero für Unterseiten */
.hero--subpage{
  position: relative;
  margin-top: var(--header-h);
  min-height: 350px;
}

/* Haupt-Content direkt unter Subpage-Hero */
.hero--subpage + main{
  padding-top:0;
}

.hero--subpage img.hero-bg{
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.hero--subpage .hero-content{
  position: relative;
  z-index: 1;
}

.hero--subpage .hero-opening{
  font-family: "Prata", serif;
  font-size: 38px;
  font-weight: 400;
  margin: 2.2rem 0 2.5rem;
  color: #000;
  line-height: 1.8;
  letter-spacing: 13px;
  text-transform: uppercase !important;
}


@media (max-width: 900px){
  .hero--subpage .hero-opening{
    font-size:30px;
  }
}


.hero--subpage .hero-date{
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 400;
  margin: 0;  
  letter-spacing: 2px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-transform: uppercase;
}


.subpage-class-box{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  padding-bottom:50px;
}

/* Text links */
.subpage-class-text{
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  gap: 14px;
}
.subpage-class-text h1{
  color: var(--text);
}
.subpage-class-text p{
  margin:0;
  text-align: justify;
  color: var(--text);
}

/* Bilder rechts */
.subpage-class-images{
  display:flex;
  flex-direction:column;
  gap:24px;
}
.subpage-class-images img{
  width:100%;
  height:auto;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 8px 16px rgba(0,0,0,0.12);
  /*box-shadow: var(--shadow);*/
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.subpage-class-images img:first-child{
  margin-top: 45px;
}
.subpage-class-images img:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.18);
}

/* Responsiv: alles untereinander */
@media (max-width: 900px){
  .subpage-class-box{
    grid-template-columns: 1fr;
  }
  .subpage-class-images{
    flex-direction: column;
  }
}

.btn-subpage{
  display: inline-block;
  cursor: pointer;
  align-self: flex-start;
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: 300;
  color: #fff;
  background: var(--brand, #b89c84);
  border: 1px solid #fff;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.btn-subpage:hover {
  background: #a3856f;
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}
.btn-subpage a{
  color: #fff;
  text-decoration: none;
}

h2.subpage-class-subheader{
  text-align: center;
}


.subclasses-card-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.25rem;
  align-items:start;
  padding-bottom: 50px;
}

@media (max-width:980px){
  .subclasses-card-grid{
      grid-template-columns:1fr;
    }
}

.subclasses-card{
  background:#fff;
  border-radius: 35px 35px 0px 35px;
  box-shadow: 0px 15px 50px 0px rgba(0,0,0,0.12);
  overflow:hidden;
  flex-direction:column;
  padding: 2px 20px 15px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.subclasses-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(20,17,15,.14);
}

.subclasses-container{
  min-height: 200px;
}

@media (max-width:980px){
  .subclasses-container{
      min-height: 160px;
    }
}

.subclasses-title{
  font-family: "Montserrat", Sans-serif;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
}

.subclasses-description{
  font-size:15px;
  text-align: justify;
}

.subclasses-button{
  background: none !important;
  display: inline-block;
  align-self: flex-start;
  font-size: 0.9rem;
  font-weight: 300;
  color: #fff;
  border:0;
  padding:0;
  text-decoration: none;
}

.subclasses-button a{
  color: #fff;
  background: var(--brand, #b89c84);
  display: inline-block;
  padding: 8px 17px;
  border-radius: 999px;
  text-decoration: none;
}

.subclasses-button a:hover {
  background: #a3856f;
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.subclasses-cta-schedule {
  background: #c1ac97;
  min-height: 320px;
  text-align: center;
  padding: 5rem 2rem;
  margin: 0rem 0;
}

.subclasses-cta-inner{
  margin:0 auto;
  max-width:980px;
}

.subclasses-cta-inner h2 {
  font-family: "Montserrat", Sans-serif;
  font-size:26px;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 0.75rem;
  margin-top:0;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.subclasses-cta-inner p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #f5f5f5;
}

.subclasses-btn-schedule {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: var(--brand, #b89c84);
  border:1px solid #FFF;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.subclasses-btn-schedule:hover {
  background: #a3856f;
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

/* Mobile Feinschliff */
@media (max-width: 600px) {
  .subclasses-cta-inner h2 {
    font-size: 1.5rem;
  }
  .subclasses-cta-inner p {
    font-size: 1rem;
  }
}






/* Sections */
.section-pad{ padding:3rem 0; }

/* Cards */
.card-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
@media (max-width:980px){ .card-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:640px){ .card-grid{ grid-template-columns:1fr; } }
.card{
  background:#c1ac97;
  border-radius: 10px;
  box-shadow: 3px 8px 10px -1px #0003;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover{
  transform: translateY(-4px);
  box-shadow: 3px 12px 14px -2px #0004;
}
.card-media img{ width:100%; display:block; }
.card-body{ padding:1rem; }
.card h3{ margin:0 0 .5rem; text-transform:uppercase; }
.card p{ margin:0; color:var(--muted); text-align:justify; }

/* Footer */
.site-footer{
  background:#efe7de; 
  padding:2rem 0; 
  margin-top:2rem; 
  position: relative;
  border-top: none;
}
/* Abtrennungs-Linie */
.site-footer::before{
  content: "";
  display: block;
  width: 100%;
  max-width: 1025px;
  height: 2px;
  background: #d4c8bc50;
  margin: 0 auto 2rem auto;
}

.footer-grid{
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  max-width: 1025px;
  margin: 0 auto;
  padding: 0 25px;
}
@media (max-width: 640px){
  .footer-grid{
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "brand legal"
      "info social";
  }
}
@media (max-width: 480px){
  .footer-grid{
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "legal"
      "info"
      "social";
  }
}

/* Brand-Spalte im Footer (Logo über Adresse) */
.footer-brand{
  display: grid;
  align-content: start;
  gap: .75rem;
}

/* Logo im Footer */
.footer-logo{
  height: 80px;
  max-height: 80px;
  width: auto;
  display: block;
}

.site-footer address{
  font-style:normal;
  color:var(--muted);
  line-height: 1.5;
}

/* Mail-Link in address */
.site-footer address a{
  color: var(--muted);
  text-decoration: none;
  font-weight: 400;
}
.site-footer address a:hover{ text-decoration: none; }

/* übrige Spalten */
.footer-col h4{ 
  margin: 0 0 1rem;
  font-family: "Varela", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-size: 11px;
  color: var(--brand);
}
.footer-col ul{ 
  list-style:none; 
  padding:0; 
  margin:0; 
  display:grid; 
  gap:.45rem; 
}
.footer-col a{
  text-decoration: none;
  color: #2b2a28;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  transition: color .25s ease;
  white-space: nowrap;
}
.footer-col a:hover{ color: var(--brand); }



/* 404 – Not Found */
.notfound{
  margin-top: var(--header-h);
  padding: 2.5rem 0;
}

.notfound-inner{
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 16px;
}

/* "Oops!" – große Headline */
.nf-oops{
  margin: 0 0 1rem;
  font-weight: 800;
  font-size: clamp(3rem, 10vw, 6.25rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--brand);
}

/* 404-Zeile */
.nf-code{
  margin: 0 0 .75rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

/* kurzer Erklärungstext */
.nf-text{
  margin: 0 0 1.75rem;
  font-size: 1rem;
  color: var(--muted);
}

/* Button (nur auf der 404-Seite stilieren) */
.notfound .btn{
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,.08);
}

/* Primär-CTA */
.notfound .btn-primary{
  background: var(--brand);
  color: #fff;
}

/* Hover/Focus */
.notfound .btn-primary:hover,
.notfound .btn-primary:focus-visible{
  background: #b89c84;
  box-shadow: 0 6px 14px rgba(0,0,0,.12);
  transform: translateY(-2px);
  outline: none;
}

/* Tastaturfokus fallback */
.notfound .btn-primary:focus{
  outline: 2px solid #b89c84;
  outline-offset: 2px;
}

/* Reduced motion respektieren */
@media (prefers-reduced-motion: reduce){
  .notfound .btn{
    transition: none !important;
  }
}

/* Start-Seite */
/* Das Studio Section */
.image-text-section {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  background: #000;
}

.image-text-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  width: 100%;
}

/* Bild-Block */
.image-text-image {
  position: relative;
  min-height: 440px;
}
.image-text-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Text-Block */
.image-text-content {
  background: #E3DACE;
  color: #000;
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.image-text-content:hover{
  background:#C1AC97;
}

.image-text-content .section-subtitle {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #000;
}

.image-text-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.image-text-content p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  text-align: justify;
}

.image-text-content > * {
  max-width: 560px;
}

/* CTA-Button */
.image-text-content .btn-cta {
  display: inline-block;
  align-self: flex-start;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: var(--brand, #b89c84);
  border: 1px solid #fff;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.image-text-content .btn-cta:hover {
  background: #a3856f;
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

/* Layout-Varianten */
.image-text-left {
  grid-template-areas: "image content";
}
.image-text-left .image-text-image { grid-area: image; }
.image-text-left .image-text-content {
  grid-area: content;
  padding-right: calc((100vw - 1120px) / 2);
  padding-left: 3rem;
}

.image-text-right {
  grid-template-areas: "content image";
}

.image-text-right .image-text-image { grid-area: image; }
.image-text-right .image-text-content {
  grid-area: content;
  padding-left: calc((100vw - 1120px) / 2);
  padding-right: 3rem;
}

/* Mobile */
@media (max-width: 900px) {
  .image-text-container,
  .image-text-left,
  .image-text-right {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "content"
      "image" !important;   /* ← Text oben, Bild unten */
    gap: 0 !important;
  }

  /* Mobile-Zentrierung/Abstände (optional) */
  .image-text-section .image-text-content {
    padding: 2rem 1.5rem !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .image-text-section .image-text-content > * {
    /*max-width: 38ch;*/
    max-width:800px;
    margin: 0 auto 1rem;
  }

  /* Bild normal fließen lassen */
  .image-text-section .image-text-image {
    min-height: 0 !important;
  }
  .image-text-section .image-text-image img {
    width: 100% !important;
    height: auto !important;   /* kein Beschnitt */
    object-fit: cover;
    display: block;
  }
}


/* Volle Breite Promo */
.promo-hero{
  position: relative;
  left: 50%; right: 50%;
  margin-left: -50vw; margin-right: -50vw;
  width: 100vw;
  min-height: 520px;
  place-items: center;
  overflow: hidden;
  background: #000;
  display:inline-block;
}
.promo-hero.is-active {
  display: grid;
}

/* === PROMO SLIDER – OVERRIDES & ANIMATION === */
/* Viewport fixieren */
.promo-hero-slider{
  position: relative;
  overflow: hidden;
  background: #000;                /* Fallback-Hintergrund während des Wechsels */
}

/* Standard: nur der aktive sichtbar */
.promo-hero-slider > .promo-hero{ display: none !important; }
.promo-hero-slider > .promo-hero.is-active{ display: grid !important; }

/* Während der Animation beide sichtbar und 100vw breit, ohne Full-Bleed-Hack */
.promo-hero-slider > .promo-hero.is-enter,
.promo-hero-slider > .promo-hero.is-leave{
  display: grid !important;
  position: absolute; inset: 0;
  left: 0; right: 0;               /* Full-Bleed neutralisieren */
  margin: 0; width: 100vw;         /* keine -50vw-Margen */
  will-change: transform, opacity;
  backface-visibility: hidden;
  transform: translate3d(0,0,0);
  contain: layout paint;
  z-index: 0;
}
.promo-hero-slider > .promo-hero.is-leave{ z-index: 1; } /* liegt über dem Enter-Slide    */
.promo-hero-slider > .promo-hero.is-enter{ z-index: 2; } /* der neue liegt ganz oben       */

/* Startpositionen */
.promo-hero-slider > .promo-hero.is-enter{ transform: translate3d(100%,0,0); opacity:1; }
.promo-hero-slider > .promo-hero.is-leave{ transform: translate3d(0,0,0);     opacity:1; }

/* Wenn .is-on gesetzt wird: beide fahren los */
.promo-hero-slider > .promo-hero.is-enter.is-on{
  transform: translate3d(0,0,0);
  transition: transform 1200ms cubic-bezier(.22,.61,.36,1);
}
.promo-hero-slider > .promo-hero.is-leave.is-on{
  transform: translate3d(-100%,0,0);
  transition: transform 1200ms cubic-bezier(.22,.61,.36,1);
}

/* Reduced motion: ohne Animation wechseln */
@media (prefers-reduced-motion: reduce){
  .promo-hero-slider > .promo-hero.is-enter,
  .promo-hero-slider > .promo-hero.is-leave{
    transition: none !important;
    transform: none !important;
  }
}



/* Bild + helles Overlay */
.promo-hero__media{
  position: absolute; inset: 0;
}
.promo-hero__media img{
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: grayscale(25%);
}
.promo-hero__media::after{
  content:"";
  position: absolute; inset: 0;
  background: rgba(255,255,255,.72);
}

/* Inhalt */
.promo-hero__content{
  position: relative; z-index: 1;
  text-align: center;
  max-width: 980px;
  padding: 3.5rem 1.25rem;
  color: #222;
}
.promo-hero__eyebrow{
  display:inline-block;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .95rem;
  color: #333;
  margin-bottom: .75rem;
}
.promo-hero__title{
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  color: #333;
}
.promo-hero__text{
  max-width: 900px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #3d3d3d;
}

/* CTAs – pill wie im Screenshot */
.promo-hero__actions{
  display:flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}
.btn-cta--filled,
.btn-cta--outline{
  display:inline-block;
  padding: .95rem 1.6rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .02em;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  white-space: nowrap;
}

.btn-cta--filled{
  background: #222;
  color: #fff;
  border: 2px solid #222;
}
.btn-cta--filled:hover{
  transform: translateY(-1px);
  background: #000;
  border-color: #000;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}

.btn-cta--outline{
  background: transparent;
  color: #222;
  border: 2px solid #222;
}
.btn-cta--outline:hover{
  transform: translateY(-1px);
  color: #fff;
  background: #222;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}

/* Mobile Tweaks */
@media (max-width: 640px){
  .promo-hero{ min-height: 460px; }
  .promo-hero__text{ font-size: .98rem; }
  .btn-cta--filled, .btn-cta--outline{ padding: .9rem 1.3rem; }
}



/* Soul-Feed  */
.soul-section {
  text-align: center;
  padding:2rem 1rem;
}

.soul-title {
  font-size: 2rem;
  margin-bottom:0;
  margin-top:0;
  text-transform: uppercase;
}

.soul-wrapper { position:relative; max-width:1120px; margin:0 auto; }

.soul-scroll{
  display:flex; gap:1rem; overflow-x:auto; scroll-behavior:smooth;
  scrollbar-width:none;
  padding: .25rem 2.5rem
}
.soul-scroll::-webkit-scrollbar{ display:none; }

.soul-card{
  position:relative; flex:0 0 257px; height:320px;
  border-radius:12px; overflow:hidden; box-shadow:0 6px 16px rgba(0,0,0,.08);
  text-decoration:none; color:inherit;
}
@media (max-width:768px){
  .soul-card{ flex-basis:70vw; height:380px; }
}
.soul-card img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  filter:brightness(.65); transform:scale(1.02);
  transition:filter .35s ease, transform .35s ease;
}
.soul-card:hover img{ filter:brightness(1); transform:scale(1.06); }

.soul-card::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(to top, rgba(0,0,0,.45) 25%, rgba(0,0,0,0) 60%);
  pointer-events:none;
}
.soul-overlay{
  position:absolute; left:0; right:0; bottom:0; z-index:1;
  color:#fff; padding:1rem;
  display:flex; flex-direction:column; align-items:flex-start; gap:.35rem;
}
.soul-cta{ font-weight:500; font-size:.75rem; }


.soul-card:hover .soul-overlay {
  opacity: 1;
}
.soul-overlay h3 {
  font-size: 1rem;
  letter-spacing:3px;
  margin: 0 0 0.5rem;
  min-height:52px;
  text-align: left;
  text-transform:uppercase; 
}
.soul-overlay a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

/* Pfeile */
.soul-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;

  width: 40px;
  height: 40px;
  border-radius: 12px;
  border:0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);

  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;

  /* keine Skalierung auf Hover (Safari mag das mit Blur nicht) */
  transition: background-color .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.soul-arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255,255,255,0.6);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  z-index: 0;
  pointer-events: none;
}

.soul-arrow:hover{ transform:translateY(-50%) scale(1.05); }
.soul-arrow.left{ left:-1.3rem; }
.soul-arrow.right{ right:-1.3rem; }
.soul-arrow.is-hidden{ opacity:0; pointer-events:none; }

.soul-arrow svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 28px;
  height: 28px;
  color: #222;
  shape-rendering: geometricPrecision;
  transform: translateZ(0);
}

.soul-arrow:hover,
.soul-arrow:focus-visible {
  border-color: var(--brand, #cbb199);
  box-shadow: 0 10px 22px rgba(0,0,0,0.16);
}

/* Kursplan  */
.cta-schedule {
  background: #c1ac97;
  min-height: 320px;
  text-align: center;
  padding: 3rem 2rem;
  margin: 0rem 0;
}

.cta-inner h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  margin-top:0;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-inner p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #f5f5f5;
}

.btn-schedule {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: var(--brand, #b89c84);
  border:1px solid #FFF;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.btn-schedule:hover {
  background: #a3856f;
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

/* Mobile Feinschliff */
@media (max-width: 600px) {
  .cta-inner h2 {
    font-size: 1.5rem;
  }
  .cta-inner p {
    font-size: 1rem;
  }
  .soul-arrow.left{ left:0rem; }
  .soul-arrow.right{ right:0rem; }
}


.logo-divider-footer{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 4rem 0 0;
}

.logo-divider-footer .line{
  flex: 0 0 45px;
  height: 1px;
  background-color: var(--brand);
}



/* Feedback */
.testi-hero{
  background: #E3DACE;
  position: relative;
  left: 50%; right: 50%;
  margin-left: -50vw; margin-right: -50vw;
  width: 100vw;
  min-height: 320px;
  display: grid;
  place-items: center;
  padding: 2rem 1.25rem 4.25rem;
  color: #333;
  overflow: hidden;
}

.testi-hero h2{
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Slides */
.testi-track{
  position: relative;
  width: min(980px, 92vw);
}
.testi-slide{
  position: absolute;
  inset: 0;
  margin: 0 auto;
  min-height: 190px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .45s ease, transform .45s ease;
  text-align: center;
  max-width:80%;
}
.testi-slide.is-active{
  opacity: 1;
  transform: none;
  position: relative;
}

.testi-name{
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: .02em;
  margin-bottom: 0.4rem;
  color: #333;
}
.testi-divider{
  display: inline-block;
  width: 56px;
  height: 2px;
  background: #333;
  opacity: .6;
  border-radius: 2px;
  margin-bottom: 0.75rem;
}
.testi-quote{
  margin: 0 auto;
  max-width: 840px;
  font-size: 1rem;
  line-height: 1.9;
  font-style: italic;
  color: #333;
}

/* Pfeile */
.testi-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: 0;
  background: transparent;
  color: #333;
  opacity: .9;
  cursor: pointer;
  display: grid; place-items: center;
  z-index:10;
  pointer-events: auto;
}

.testi-nav svg{
  width: 48px;
  height: 48px;
}
.testi-nav:hover svg polyline {
  stroke:#868686;
}

.testi-prev{ left: 2px; }
.testi-next{ right: 12px; }

.testi-nav:hover{ opacity: 1; }
.testi-nav:focus-visible{
  outline: 2px solid #333; outline-offset: 4px; border-radius: 10px;
}

/* Dots */
.testi-dots{
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%);
  display: flex; gap: .6rem;
}
.testi-dots .dot{
  width: 9px; height: 9px;
  border-radius: 999px;
  border: 2px solid #333;
  background: transparent;
  opacity: .85;
  cursor: pointer;
  padding: 0;
}
.testi-dots .dot.is-active{ background: #333; }

/* Mobile Luft */
@media (max-width: 640px){

  .testi-slide{
  min-height: 220px !important;
     }

  .testi-hero{
    padding: 4rem 1rem 3.5rem; 
    min-height: 400px;
    overflow: hidden;
    position: relative;
  }
  .testi-prev{ left: -5px; }
  .testi-next{ right: 5px; }

  .testi-hero h2{text-align: center;}

  .testi-nav {
    top: 50%;
    transform: translateY(-50%);
  }
}




/* Impressum Seite */
.impressum{
  margin: 0 auto;
  padding: 2rem 16px;
  line-height: 1.7;
  color: var(--text);
}

.impressum h1{
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.impressum h2{
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brand);
  border-bottom: 1px solid #d4c8bc50;
  padding-bottom: .5rem;
}

.impressum h3{
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

.impressum p{
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  color: var(--text);
  text-align: justify;
}

.impressum strong{
  font-weight: 600;
  color: var(--text);
}

.impressum a{
  color: var(--brand);
  text-decoration: none;
  font-weight: 500;
}

.impressum a:hover{
  text-decoration: underline;
}


/* Datenschutz und AGB */
.datenschutz, .agb{
  margin: 0 auto;
  padding: 2rem 16px;
  line-height: 1.7;
  color: var(--text);
}

.datenschutz h1, .agb h1{
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
  -webkit-hyphens: auto;
}

@media (max-width: 480px){
  .datenschutz h1, .agb h1{
    font-size: 1.4rem;
    line-height: 1.2;
  }
}

.datenschutz h2, .agb h2{
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brand);
  border-bottom: 1px solid #d4c8bc50;
  padding-bottom: .5rem;
}

@media (max-width: 480px){
  .datenschutz h2, .agb h2{
    font-size: 1.15rem;
  }
}

.datenschutz h3, .agb h3{
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

@media (max-width: 480px){
  .datenschutz h3, .agb h3{
    font-size: 0.95rem;
  }
}

.datenschutz p, .agb p{
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  color: var(--text);
  text-align: justify;
}

@media (max-width: 480px){
  .datenschutz p, .agb p{
    font-size: 0.85rem;
  }
}

.datenschutz ul, .agb ul{
  margin: 0 0 1.25rem 1.15rem;
  font-size: 0.95rem;
  padding: 0;
}

@media (max-width: 480px){
  .datenschutz ul, .agb ul{
    font-size: 0.9rem;
  }
}

.datenschutz li, .agb li{
  margin: 0 0 .5rem;
}

.datenschutz strong, .agb strong{
  font-weight: 600;
  color: var(--text);
}

.datenschutz a, .agb a{
  color: var(--brand);
  text-decoration: none;
  font-weight: 500;

  overflow-wrap: anywhere;
  word-break: break-word;
}

.datenschutz a:hover, .agb a:hover{
  text-decoration: underline;
}

.datenschutz a[target="_blank"]::after, .agb a[target="_blank"]::after{
  content: "";
  display: inline-block;
  width: 0.9em;
  height: 0.9em;
  margin-left: 0.25em;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23cbb199' stroke-width='2' viewBox='0 0 24 24'><path d='M18 13v6a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'/><polyline points='15 3 21 3 21 9'/><line x1='10' y1='14' x2='21' y2='3'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}


/*Test Beginn*/
.js .reveal{
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}

.js .reveal.is-visible{
  opacity: 1;
  transform: none;
}

/* Zugänglichkeit: Motion reduzieren respektieren */
@media (prefers-reduced-motion: reduce){
  .js .reveal{
    transition: none;
    opacity: 1 !important;
    transform: none !important;
  }
}
/*Test Stop*/




/* About Page */
.about-box{

}

.zitat{
    text-align: center;
    margin: 0 auto;
    justify-content: center;
    width:850px;
    opacity: 0;
    transform: translateX(100px);
    animation: slideIn 1s ease-out forwards;
    animation-delay: 0.3s;
}

.about-quote{
  font-style:italic;
}

@keyframes slideIn{
  to{
    opacity: 1;
    transform: translateX(0);
  }
}

.zitat h2{
  line-height: 0.2;
  text-transform:uppercase;
}

@media (max-width: 900px){
  .zitat{
    opacity: 1 !important;
    width: auto;
    max-width: 100%;
    padding: 0 12px;
    transform: none;
    animation: none;
  }

  .zitat h2{
    line-height: 1.2;
  }
}

.logo-divider{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 2rem 0;
}

.logo-divider .line{
  flex: 0 0 45px;
  height: 1px;
  background-color: var(--brand);
}


.our-vision-section{
  background:#c1ac97;
  margin-top:20px;
}

.our-vision{
  position: relative;
  display: flex;
  min-height: 400px;
}

/* Bild links, immer 40% der Seite */
.our-vision-image{
  position: absolute;
  top: 0;
  left: 0;
  width: 40vw;
  height: 100%;
  overflow: hidden;
}

.our-vision-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Container für den Text */
.our-vision-container-limited{
  max-width: 1120px;
  margin: 0 auto;
  padding: 4rem 2rem;
  flex: 1;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
}

.our-vision-text{
  max-width: 60%;
  text-align: justify;
  background: transparent; 
}

/* Mobile: Bild oben, Text unten */
@media (max-width: 900px){
  .our-vision{
    flex-direction: column;
  }

  .our-vision-image{
    position: relative;
    width: 100%;
    height: 250px;
  }

  .our-vision-container-limited{
    justify-content: center;
  }

  .our-vision-text{
    max-width: 100%;
  }
}




.our-mission{
  position: relative;
  display: flex;
  min-height: 400px;
}

/* Bild rechts, immer 40% der Seite */
.our-mission-image{
  position: absolute;
  top: 0;
  right: 0;
  width: 40vw;
  height: 100%;
  overflow: hidden;
}

.our-mission-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Container für den Text */
.our-mission-container-limited{
  max-width: 1120px;
  margin: 0 auto;
  padding: 4rem 2rem;
  flex: 1;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
}

.our-mission-text{
  max-width: 60%;
  text-align: justify;
}

/* Mobile: Bild oben, Text unten */
@media (max-width: 900px){
  .our-mission{
    flex-direction: column;
  }

  .our-mission-image{
    position: relative;
    width: 100%;
    height: 250px;
    order: -1; 
  }

  .our-mission-container-limited{
    justify-content: center;
  }

  .our-mission-text{
    order: 0;
    max-width: 100%;
  }
}





.our-founder-section{
  background:#c1ac97;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.our-founder{
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  max-width: 1120px;
  margin: 0 auto;
  padding: 1rem 2rem;
}

.founder-image img{
  width: 100%;
  height: 100%;
  max-height: 900px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.founder-subtitle{ text-transform: uppercase; font-size: 1.31rem; letter-spacing: 1px; color: #fff; display:block; margin-bottom: .5rem; }
.founder-name{ font-size: 2rem; margin: .3rem 0; }
.founder-tagline{ font-size: 1.25rem; font-weight: 500; color: #6f6a63; margin-bottom: 1.5rem; }

.founder-text p{
  text-align: justify;
}

.founder-text h2{
  line-height: 1.5rem;
}

.founder-text h3{
  line-height: 0.4rem;
  text-transform: uppercase;
}

/* Mobile */
@media (max-width: 900px){
  .our-founder{
    grid-template-columns: 1fr;
    padding:0.5rem 0.5rem;
    text-align: center;
  }

  .founder-image img{
    height: auto;
    max-width: 400px;
    max-height: 360px;
    width: 100%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border-radius: 12px;
  }

  .founder-subtitle,
  .founder-name,
  .founder-tagline{
    text-align: center;
  }

  .founder-text p{
    text-align: justify;
  }

  .founder-text h2{
    line-height: 2.0rem;
  }
  .founder-text h3{
    line-height: 1.2rem;
  }
}

html, body{ overflow-x: hidden; }
.our-founder-section{
  background: #c1ac97;
  width: 100%;
}


.values-section{
  padding: 0.5rem 2rem;
}

.values-container{
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.values-title{
  font-size: 2rem;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  font-weight: 600;
}

.values-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}

@media (max-width: 1200px){
  .values-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px){
  .values-grid{
    grid-template-columns: 1fr;
  }
}
.value-item{
  background: #fff;
  border-radius: 12px;
  padding: 0.5rem 1.5rem;
  box-shadow: 3px 8px 10px -1px #0003;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover{
  background:#c1ac97;
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(20,17,15,.14);
}



.value-icon{
  display: block;
  margin: 0 auto 1rem auto;
  width: 75px;
  height: auto;
}

.value-item h3{
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: #333;
}

.value-item p{
  font-size: 0.95rem;
  line-height: 1.5;
  color: #555;
}








/* About Page */
.studio-box{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

/* Text links */
.studio-text{
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  gap: 14px;
}
.studio-text h1{
  color: var(--text);
}
.studio-text p{
  margin:0;
  text-align: justify;
  color: var(--text);
}

/* Bilder rechts */
.studio-images{
  display:flex;
  flex-direction:column;
  gap:24px;
}
.studio-images img{
  width:100%;
  height:auto;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 8px 16px rgba(0,0,0,0.12);
  /*box-shadow: var(--shadow);*/
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.studio-images img:first-child{
  margin-top: 45px;
}
.studio-images img:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.18);
}

/* Responsiv: alles untereinander */
@media (max-width: 900px){
  .studio-box{
    grid-template-columns: 1fr;
  }
  .studio-images{
    flex-direction: column;
  }
}



/* FAQ Section */

.faq-box h1{
  color: var(--text);
}

.faq-searchbar{
  position: relative !important;
  margin: 0 0 1.25rem 0;
}

#faq-search{
  display: block;
  width: 100%;
  padding: 14px 16px 14px 48px;
  background: #fff;
  border: 1px solid #e5e0d9;
  border-radius: 999px;
  font-size: 1rem;
  color: #2b2a28;
  outline: none;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
}

#faq-search::placeholder{
  color: #9b968f;
}

#faq-search:focus{
  border-color: #cbb199;
  box-shadow: 0 8px 22px rgba(20,17,15,.10);
}

/* Lupe links im Feld */
.faq-searchbar .search-ico{
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: #9b968f;
  stroke: currentColor;
  fill: none;
  display: block;
  pointer-events: none;
  z-index: 1;
}

/* Hinweis bei 0 Treffern */
#search-results-info{
  margin-top: .5rem;
  font-size: .95rem;
  color: #a33;
  display: none;
}





/* Filter */
.faq-filters{
  display: flex;
  gap: .5rem;
  margin: 1rem 0 2rem;
}
.filter-btn{
  padding: .4rem .8rem;
  border: 1px solid var(--brand);
  border-radius: .5rem;
  background: #fff;
  cursor: pointer;
}
.filter-btn.active{
  background: var(--brand);
  color: #fff;
}

/* Accordion */
/* Gesamte Liste oben/unten abrunden */
.faq-accordion{
  display: block;
  border-top: 1px solid #e9e3db;
  border-bottom: 1px solid #e9e3db;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

/* Einzelne Items: weiße Zeilen + Trenner */
.faq-item{
  background: #fff;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.faq-item + .faq-item{
  border-top: 1px solid #e9e3db;
}

/* Frage-Zeile – mehr Innenabstand links */
.faq-question{
  width:100%;
  display:block;
  text-align:left;
  background:#fff;
  border:0;
  padding:18px 44px 18px 18px;
  font:500 1.05rem/1.5 "Manrope", sans-serif;
  color:#3b3a38;
  cursor:pointer;
  position:relative;
  transition:background .2s ease, color .2s ease;
}
.faq-question:hover{ background:#fafafa; }

/* Chevron ▼ / ▲ (wie zuvor) */
.faq-question::after{
  content:"";
  position:absolute;
  right:12px; top:50%;
  width:10px; height:10px;
  border-right:2px solid #9b968f;
  border-bottom:2px solid #9b968f;
  transform:translateY(-50%) rotate(45deg);
  transition:transform .25s ease, border-color .25s ease;
}
.faq-item.open .faq-question::after{
  transform:translateY(-50%) rotate(-135deg);
  border-color:#6f8a63;
}

/* Antwortbereich – Padding links & Justify */
.faq-answer{
  display:none;
  padding:0 18px 18px 18px;
  background:#fff;
  color:var(--muted);
}
.faq-answer p{
  margin:0;
  text-align: justify;
}
.faq-item.open .faq-answer{ display:block; }




/* Kontaktformular */
/* SECTION PADDING */
.contact{
  padding: clamp(2rem, 4vw, 4rem) 0;
}

/* HEADLINE + LEAD */
.contact__title{
  font-size: 2em;
  line-height: 1.05;
  margin: 0 0 .75rem 0;
  letter-spacing: .2px;
}
.contact__lead{
  color: #8d8d8d;
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
}

/* 2-SPALTIGES LAYOUT: LINKS 1/3, RECHTS 2/3 */
.contact__inner{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;  /* 1/3 : 2/3 */
  gap: clamp(24px, 3vw, 48px);
}
@media (max-width: 980px){
  .contact__inner{ grid-template-columns: 1fr; }
}

/* FORMULAR */
.contact__form{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 16px;
  box-sizing: border-box;
}
@media (max-width: 720px){
  .contact__form{ grid-template-columns: 1fr; }
}
.field{ display: flex; flex-direction: column; gap: 8px; }
.field--full{ grid-column: 1 / -1; }

.contact label{
  font-size: .95rem;
  color: #1f1f1f;
  letter-spacing: .2px;
}
.req{ color: #8d8d8d; font-weight: 400; font-style: italic; font-size:0.8rem; margin-left: 4px; }

.contact input,
.contact textarea,
.contact select{
  font: inherit;
  color: #1f1f1f;
  background: #fff;
  border: 1px solid #c1ac97;
  border-radius: 6px;
  padding: 8px 14px;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
  box-sizing: border-box;
}
.contact textarea{ resize: vertical; }

.contact input::placeholder,
.contact textarea::placeholder{ color: #b7b7b2; }

/* Focus style – dezent, aber klar */
.contact input:focus,
.contact textarea:focus,
.contact select:focus{
  border-color: #2a2a2a;
  box-shadow: 0 0 0 2px rgba(0,0,0,.05);
}

/* Custom select arrow */
.select{ position: relative; }
.contact .select select{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  background-image:
    linear-gradient(45deg, transparent 50%, #777 50%),
    linear-gradient(135deg, #777 50%, transparent 50%),
    linear-gradient(to right, transparent, transparent);
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px),
    calc(100% - 2.2rem) 50%;
  background-size: 6px 6px, 6px 6px, 1px 60%;
  background-repeat: no-repeat;
  padding-right: 2.8rem;
}

.form-errors{
  grid-column: 1 / -1;
  border:1px solid #f1c3c3;
  background:#fff6f6;
  color:#741b1b;
  font-size:14px;
  border-radius:8px;
  padding:12px 14px;
  margin:0 0 8px 0;
  display: block;
  box-sizing: border-box;
}
.form-errors p{ margin:0 0 6px 0; font-weight:600; }
.form-errors ul{ margin:0 0 0 18px; padding:0; }
.form-errors li{ margin:4px 0; }

.field--error label{ color:#a40000; }
.field--error input,
.field--error textarea,
.field--error select{
  border-color:#cc3d3d !important;
  background:#fff6f6;
  box-shadow:0 0 0 2px rgba(204,61,61,.08);
}
.field--error input:focus,
.field--error textarea:focus,
.field--error select:focus{
  border-color:#b93434 !important;
  box-shadow:0 0 0 3px rgba(185,52,52,.15);
}

.notice--success{
  grid-column: 1 / -1;
  border:1px solid #cfe8cf;
  background:#f3faf3;
  color:#1f3b1f;
  font-size:14px;
  border-radius:8px;
  padding:12px 14px;
  margin:0 0 8px 0;
  display: block;
  box-sizing: border-box;
}
.notice--success p{ margin:0 0 6px 0; font-weight:600; }
.notice--success ul{ margin:0 0 0 18px; padding:0; }
.notice--success li{ margin:4px 0; }



/* Datenschutz-Hinweis */
.privacy-hint{
  grid-column: 1 / -1;
  margin: -4px 0 6px 0;
  font-size: .9rem;
  color: #8d8d8d;
}
.privacy-hint a{ color:#5e6f53; }

/* SEND-Button */
.actions{ grid-column: 1 / -1; margin-top: .25rem; }
.btn{
  display: inline-block;
  align-self: flex-start;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: var(--brand, #b89c84);
  border: 1px solid #fff;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.btn:hover{
  background: #a3856f;
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}
.btn:active{ transform: translateY(0); box-shadow: none; }

.contact__info{
  align-self: start;
  box-sizing: border-box;
}
.info-row{
  display:flex;
  align-items:flex-start;
  gap:14px;
  padding:5px 5px 20px 5px;
  text-decoration:none;
  color:#1f1f1f;
}
.info-row + .info-row{ margin-top:8px; }
.info-icon{ color:#1f1f1f; flex-shrink:0; line-height:0; }
.info-icon .ico{ width:36px; height:36px; }
.info-content{ display:flex; flex-direction:column; gap:4px; }
.info-label{ font-size:1rem; letter-spacing:.2px; color:#1f1f1f; }
.info-big{
  font-size:1rem;
  line-height:1.6;
  color:#1f1f1f;
  letter-spacing:.2px;
}
.info-cta{
  margin-top:4px;
  font-size:.95rem;
  color:#6a6a6a;
  text-decoration:underline;
}

@media (max-width:720px){
  .info-icon .ico{ width:32px; height:32px; }
}
/* iPhone (bis 600px) = untereinander */
@media (max-width: 600px){
  .info-row{
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
}





/* ===== CLASSES – Header & Filter ===== */

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

.classes-information {
  text-align: justify;
}

.class-filters{ display:flex; gap:.5rem; flex-wrap:wrap; margin:1rem 0 1.25rem; }
.class-filters .filter-btn{
  appearance:none; border:1px solid #e5e0d9; background:#fff; color:var(--text);
  padding:.45rem .8rem; border-radius:999px; cursor:pointer; font-size:.9rem;
  transition: background .2s, color .2s, border-color .2s;
}
.class-filters .filter-btn:hover{ border-color: var(--brand); }
.class-filters .filter-btn.active{ background: var(--brand); color:#fff; border-color:var(--brand); }

/* ===== CLASSES – Grid ===== */
.class-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.25rem;
  align-items:start;
}
@media (max-width:980px){ .class-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:640px){ .class-grid{ grid-template-columns:1fr; } }

/* ===== CLASSES – Card ===== */
.class-card{
  align-self:start;
  background:#fff;
  border-radius:22px;
  box-shadow: 3px 8px 10px -1px #0003;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  padding:0;
  transition: transform .2s ease, box-shadow .2s ease;
}
.class-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(20,17,15,.14);
}

/* Bild */
.class-media{
  width:100%;
  aspect-ratio: 16/9;
  overflow:hidden;
  margin:0;
  display:block;
}
.class-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  border-top-left-radius:22px;
  border-top-right-radius:22px;
  border-bottom-left-radius:5px;
  border-bottom-right-radius:5px;
}

/* Body */
.class-body{
  display:flex;
  min-height:200px;
  flex-direction:column;
  flex:1 1 auto;
  gap:.6rem;
}

.class-title{
  margin:.1rem 0 .2rem;
  padding:1rem 1.25rem 0;
  text-transform:uppercase !important;
  letter-spacing:.5px;
  font-size:1.3em;
}
.class-subline{
  font-style:italic;
  font-size:.85rem;
  color:var(--muted);
  margin:0 0 .5rem;
  padding:0 1.25rem 0;
}

/* ===== DE-Text: anfangs gekürzt sichtbar, beim Öffnen voll ===== */
.class-de{
  color:#2b2a28;
  line-height:1.55;
  letter-spacing:.2px;
  text-align:justify;
  overflow:hidden;
  margin-bottom:9px;
  padding:0 1.25rem 0;
  transition:max-height .35s ease;
}

/* gekürzt (3 Zeilen) – hübsch per line-clamp */
.class-de.is-clamped{
  display:-webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  max-height: 6.2em;
}

/* wenn Karte offen: volle Höhe (JS setzt max-height dynamisch hoch/runter) */
.class-card.open .class-de.is-clamped{
  -webkit-line-clamp: unset;
  display:block;
}

.class-de a{
  color:#cbb199;
  display:inline-block;
  margin-top:5px;
  text-decoration: none;
}
.class-de a:hover span{
  color:#cbb199;
  text-decoration: underline;
}

/* ===== EN-Text (separat ausklappbar) ===== */
.class-more-en{
  color:var(--muted);
  text-align:justify;
  overflow:hidden;
  height:0;
  padding:0 1.25rem 0;
  transition: height .35s ease;
}
.class-more-en[hidden]{ display:none; }

/* English-Button */
/* Linie über dem Button */
.lang-toggle{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 1rem;
  padding: .6rem 0;
  border: none;
  border-top: 1px solid #ccc;
  background: transparent;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;

  padding:1rem 1.25rem;
}

/* Pfeil nach rechts außen */
.lang-toggle::after{
  content: "";
  display: inline-block;
  width: .45rem;
  height: .45rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .25s ease;
  margin-left: auto;
}

/* Pfeil nach oben wenn geöffnet */
.lang-toggle[aria-expanded="true"]::after{
  transform: rotate(-135deg);
}


/* ===== Footer-Toggle (ganze Kartenbreite, nur Top-Border) ===== */
.class-toggle{
  width:100%;
  border:none;
  border-top:1px solid #e5e0d9;
  border-radius:0;
  background:#faf9f7;
  padding:.75rem 1rem;
  font-size:.95rem;
  font-weight:600;
  color:var(--text);
  text-align:center;
  cursor:pointer;
  transition: background .2s ease;
  position:relative;
  margin-top:auto;
}
.class-toggle:hover{ background:#f0ece7; }

.class-toggle::after{
  content:"";
  display:inline-block;
  margin-left:.6rem;
  width:.4rem; height:.4rem;
  border-right:2px solid currentColor;
  border-bottom:2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .25s ease;
  vertical-align:middle;
}
.class-card.open .class-toggle::after{
  transform: rotate(-135deg);
}
.class-card:not(.open) .lang-toggle{
  display: none;
}

/* Mobile Feinschliff */
@media (max-width:480px){
  .class-de.is-clamped{ -webkit-line-clamp: 4; max-height: 8.4em; }
}







/* ===== PRICING ===== */
.pricing-title{
margin: .5rem 0 0.5rem;
font-size: 1.4rem;
font-weight: 700;
}

.price-intro{
  text-align: justify;
}

.pricing-scroll{
    padding-bottom:25px;
    border-bottom:1px solid #ccc;
}

.pricing-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .5rem;
  align-items: stretch;
}

.pricing-head{
  font-weight: 600;
  text-transform: uppercase;
  color: #3f3a34;
  font-size: .75rem;
  text-align: center;
  margin-bottom:0px;
  padding: .05rem .6rem;
}

/* Basis für alle Zellen */
.pricing-cell{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  text-align: center;
  padding: .5rem .6rem;
  border-radius: 6px;
  font-size: .9rem;
  line-height: 1.3;
}

/* Pill-Styling */
.pill{
  background: #2b2a28;
  border:1px solid #CCC;
  color: #000;
}

/* Standard-Pill + Hover über CSS-Variablen */
.pricing .pricing-cell{ 
  background: var(--pill, #2b2a28);
  color:#000;
}

.pricing-cell.link::before{
    content: "»";
    font-size: 1.1rem;
    line-height: 1;
    position: relative;
    top: .5px;
  }

.pricing .pricing-cell.link:hover{
  background: var(--pill-hover, #3a3835);
}


/* Themenfarben */
.windel-dance          { --pill:#878787; --pill-hover:#878787; }
.theme-ballet          { --pill:#E8D3FF; --pill-hover:#E8D3FF; }
.theme-hiphop          { --pill:#B5E6F2; --pill-hover:#B5E6F2; }
.theme-kinderyoga      { --pill:#87a255; --pill-hover:#87a255; }

.theme-barre           { --pill:#FFD6A5; --pill-hover:#FFD6A5; }
.theme-latin           { --pill:#C2AC97; --pill-hover:#C2AC97; }

.theme-matpilates      { --pill:#E7A6A1; --pill-hover:#E7A6A1; }
.theme-pilatespreg     { --pill:#FAD2E1; --pill-hover:#FAD2E1; }

.theme-pilatesrueck    { --pill:#F2B6A0; --pill-hover:#F2B6A0; }
.theme-pilatesmamababy { --pill:#FDE2D0; --pill-hover:#FDE2D0; }

.theme-yoga            { --pill:#C3DAD6; --pill-hover:#C3DAD6; }
.theme-yogapreg        { --pill:#C6E2B5; --pill-hover:#C6E2B5; }

.theme-yogamamababy    { --pill:#D4ECDD; --pill-hover:#D4ECDD; }

@supports (color: color-mix(in srgb, white, black)){
  .pricing .pricing-cell{
    --hover-amt: 15%;
    --pill-hover: color-mix(in srgb, var(--pill) calc(100% - var(--hover-amt)), black var(--hover-amt));
  }
}



/* Link-Felder als Button */
.pricing-cell.link{
  text-decoration: none;
  font-weight: 600;
  transition: background-color .2s, transform .2s;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  line-height: 1;
  padding: .6rem 1rem;
  height: 100%;
}

/* iPhone / sehr kleine Screens: 4 Spalten beibehalten */
@media (max-width: 480px){

  .pricing-grid{
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .5rem;
    width: 100%;
    overflow: hidden;
  }

  .pricing-head{
    font-size: .72rem;
    letter-spacing: .05em;
    padding: .5rem .4rem;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
  }

  .pricing-cell{
    font-size: .71rem;
    line-height: 1.25;
    padding: .6rem .4rem;
    min-height: 48px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: normal;
    word-break: normal;
    overflow-wrap: anywhere;
    border-radius: 12px;
  }

  .pricing-cell.price{
    font-size: .95rem;
    font-weight: 700;
  }

  .pricing-cell.link{
    font-size: .71rem;
  }
  .pricing-cell.link::before{
    content: none;
  }

  .container{
    padding-left: 12px;
    padding-right: 12px;
  }
}







/* ===== PRICING ===== */
.timetable {

}






/* == KURS Subpages === */
.classes-sub-faq {
  margin-bottom:50px;
}

.classes-sub-faq-wrapper{
  background:#fff;
  border-radius: 14px 14px 0px 14px;
  box-shadow: 0px 15px 50px 0px rgba(0,0,0,0.12);
  overflow:hidden;
  flex-direction:column;
  transition: transform .2s ease, box-shadow .2s ease;
}

.classes-sub-faq summary{
  cursor: pointer;
  display: block;
  padding:5px 0px 5px 8px;
  position: relative;  
}


.classes-sub-faq summary::marker, 
.classes-sub-faq summary::-webkit-details-marker {
   color: transparent;
}

.classes-sub-faq details {
  padding:5px;
  border-bottom:1px solid #efe6de;
}


.classes-sub-faq summary::before {
   content:  "";
   background-color:#000;
   width:17px;
   height:1px; 
   position: absolute;
   color:#000;
   font-size: 2em;
   font-weight: bold; 
   right:12px;
   top:18px;
   transition: all 0.5s;
}

.classes-sub-faq summary::after {
   content:  "";
   background-color:#000;
   width:1px;
   height:17px; 
   position: absolute;
   color:#000;
   font-size: 2em;
   font-weight: bold; 
   right:20px;
   top:10px;
   transition: all 0.5s;
} 

.classes-sub-faq details[open] > summary::before {
   transform:rotate(90deg);
   display:none;
}

.classes-sub-faq details[open] > summary::after {
   transform:rotate(90deg);
}

.classes-sub-faq-desc{
  color:#6f6a63;
  font-size:15px;
  padding:0 8px;
  text-align: justify;
}

.classes-sub-faq-desc a{
  color:#6f6a63;
  text-decoration: none;
}


.classes-sub-faq-desc a:hover{
  text-decoration: underline;
}


@media (max-width: 480px){
  .classes-sub-faq summary{ max-width:332px !important;}
  .classes-sub-faq summary::before {right:-22px !important;} 
  .classes-sub-faq summary::after {right:-14px !important;} 
}

