@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Space+Grotesk:wght@300;400;500&family=Poppins:ital,wght@0,200;0,300;0,400&display=swap');

/* ═══════ TOKENS ═══════ */
:root {
  --bg-cream:   #FDFBF7;
  --bg-white:   #FFFFFF;
  --bg-dark:    #11000D;
  --text-dark:  #11000D;
  --text-gold:  #B6811E;
  --text-muted: #8F8080;
  --border:     #EFF1F2;
  --h: 'Playfair Display', serif;
  --b: 'Space Grotesk', sans-serif;
  --a: 'Poppins', sans-serif;
}
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--b); background: var(--bg-cream); color: var(--text-dark); line-height:1.75; -webkit-font-smoothing:antialiased; }

/* ═══════ NAV ═══════ */
.nav {
  position: fixed; top:0; left:0; right:0; z-index:200;
  background: rgba(253,251,247,0.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  height: 68px;
}
.nav-logo { font-family: var(--h); font-size:1.45rem; font-weight:700; color:var(--text-dark); text-decoration:none; letter-spacing:-0.5px; }
.nav-links { display:flex; gap:28px; list-style:none; }
.nav-links a { font-family:var(--a); font-weight:300; font-size:0.82rem; color:var(--text-dark); text-decoration:none; letter-spacing:0.5px; opacity:0.75; transition:opacity .2s; }
.nav-links a:hover, .nav-links a.active { opacity:1; color:var(--text-gold); }
.nav-cta {
  background: var(--text-dark); color: var(--bg-cream);
  font-family:var(--a); font-weight:400; font-size:0.78rem;
  padding:9px 22px; text-decoration:none; border-radius:2px;
  letter-spacing:1.2px; text-transform:uppercase; transition:all .25s;
  white-space: nowrap;
}
.nav-cta:hover { background:#2a0020; transform:translateY(-1px); }
.nav-burger { display:none; flex-direction:column; gap:5px; cursor:pointer; border:none; background:none; padding:4px; }
.nav-burger span { display:block; width:22px; height:2px; background:var(--text-dark); border-radius:1px; transition:all .3s; }
.nav-mobile { display:none; flex-direction:column; gap:0; border-top:1px solid var(--border); padding:8px 0 16px; }
.nav-mobile a { font-family:var(--a); font-size:0.9rem; padding:10px 0; color:var(--text-dark); text-decoration:none; opacity:0.8; }
.nav-mobile a:hover { color:var(--text-gold); opacity:1; }
.nav-mobile .nav-cta { margin:12px 0 0; text-align:center; padding:12px; }
@media(max-width:860px){
  .nav-links, .nav-cta { display:none; }
  .nav-burger { display:flex; }
  .nav-mobile.open { display:flex; }
}

/* ═══════ LOTUS HERO ═══════ */
.hero-dark {
  background: var(--bg-dark);
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 100px 24px 60px;
  position: relative; overflow: hidden;
}
.hero-dark::after {
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse at center, rgba(182,129,30,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-label {
  font-family:var(--a); font-weight:300; font-size:0.75rem;
  color:var(--text-gold); text-transform:uppercase; letter-spacing:4px; margin-bottom:48px;
  opacity:0.9;
}
.lotus-wrap {
  position: relative; width: 260px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:-70px;
  pointer-events:none;
}
/* ── LOTUS CSS ANIMATION (adapted from gabriellewee/XeeWwY) ── */
.lotus-scene {
  perspective: 1000px;
  width:220px; height:220px;
  display:flex; align-items:center; justify-content:center;
}
.lotus-scene *, .lotus-scene *::before, .lotus-scene *::after {
  -webkit-backface-visibility: hidden; backface-visibility: hidden;
}
.lotus-scene div, .lotus-scene ul, .lotus-scene li, .lotus-scene svg {
  will-change: transform; transform-style: preserve-3d;
}
.lotus-scene li, .lotus-scene svg { transform-origin: center top; }
.lotus-scene .gradient { opacity:0; height:0; width:0; position:absolute; }
.lotus {
  transform-origin: center center;
  transform: rotateX(70deg);
  position: absolute;
  top: calc(50% - 18px); left: calc(50% - 18px);
  width: 36px; height: 36px;
}
.lotus ul { position:relative; width:36px; height:36px; }
.lotus li { position:absolute; list-style:none; }
.lotus li svg { display:block; height:auto; }
.lotus li svg path { fill: url(#lotusGradient); }
/* Layer 1 – 8 petals */
.lotus:nth-child(1) li { top:18px; left:calc(50% - 18px); }
.lotus:nth-child(1) li:nth-child(1){ transform:rotateZ(45deg)  rotateX(15deg) rotateY(5deg); }
.lotus:nth-child(1) li:nth-child(2){ transform:rotateZ(90deg)  rotateX(15deg) rotateY(5deg); }
.lotus:nth-child(1) li:nth-child(3){ transform:rotateZ(135deg) rotateX(15deg) rotateY(5deg); }
.lotus:nth-child(1) li:nth-child(4){ transform:rotateZ(180deg) rotateX(15deg) rotateY(5deg); }
.lotus:nth-child(1) li:nth-child(5){ transform:rotateZ(225deg) rotateX(15deg) rotateY(5deg); }
.lotus:nth-child(1) li:nth-child(6){ transform:rotateZ(270deg) rotateX(15deg) rotateY(5deg); }
.lotus:nth-child(1) li:nth-child(7){ transform:rotateZ(315deg) rotateX(15deg) rotateY(5deg); }
.lotus:nth-child(1) li:nth-child(8){ transform:rotateZ(360deg) rotateX(15deg) rotateY(5deg); }
.lotus:nth-child(1) li svg { width:72px; transform:rotateX(75deg); }
/* Layer 2 – 6 petals */
.lotus:nth-child(2) li { top:15px; left:calc(50% - 15px); }
.lotus:nth-child(2) li:nth-child(1){ transform:rotateZ(60deg)  rotateX(30deg) rotateY(5deg); }
.lotus:nth-child(2) li:nth-child(2){ transform:rotateZ(120deg) rotateX(30deg) rotateY(5deg); }
.lotus:nth-child(2) li:nth-child(3){ transform:rotateZ(180deg) rotateX(30deg) rotateY(5deg); }
.lotus:nth-child(2) li:nth-child(4){ transform:rotateZ(240deg) rotateX(30deg) rotateY(5deg); }
.lotus:nth-child(2) li:nth-child(5){ transform:rotateZ(300deg) rotateX(30deg) rotateY(5deg); }
.lotus:nth-child(2) li:nth-child(6){ transform:rotateZ(360deg) rotateX(30deg) rotateY(5deg); }
.lotus:nth-child(2) li svg { width:60px; transform:rotateX(60deg); }
/* Layer 3 – 3 petals */
.lotus:nth-child(3) li { top:12px; left:calc(50% - 12px); }
.lotus:nth-child(3) li:nth-child(1){ transform:rotateZ(120deg) rotateX(60deg) rotateY(5deg); }
.lotus:nth-child(3) li:nth-child(2){ transform:rotateZ(240deg) rotateX(60deg) rotateY(5deg); }
.lotus:nth-child(3) li:nth-child(3){ transform:rotateZ(360deg) rotateX(60deg) rotateY(5deg); }
.lotus:nth-child(3) li svg { width:48px; transform:rotateX(30deg); }
/* Lotus animation — original by codepen.io/gabriellewee/pen/XeeWwY (CC BY 4.0) */
/* Ohne .blooming: geschlossene Knospe (svg-Inline-Transform = Start). */
/* Mit .blooming: Bloom-Animation entfaltet auf transform:none, danach Dauerrotation. */
.lotus-scene.blooming .lotus { animation: lotusRotate 20000ms linear infinite forwards; }
.lotus-scene.blooming .lotus:nth-child(1) li svg { animation: lotusBloom 1000ms cubic-bezier(0,.75,.25,1) forwards; }
.lotus-scene.blooming .lotus:nth-child(2) li svg { animation: lotusBloom 1100ms cubic-bezier(0,.75,.25,1) 150ms forwards; }
.lotus-scene.blooming .lotus:nth-child(3) li svg { animation: lotusBloom 1200ms cubic-bezier(0,.75,.25,1) 300ms forwards; }
@keyframes lotusRotate { from { transform:rotateX(70deg) rotateZ(0deg); } to { transform:rotateX(70deg) rotateZ(360deg); } }
@keyframes lotusBloom  { to { transform: none; } }





.hero-play-btn .play-icon { width:22px; height:22px; fill:var(--bg-cream); margin-left:3px; }
.hero-play-btn .pause-icon { display:none; width:20px; height:20px; fill:var(--bg-cream); }
.hero-play-btn.playing .play-icon { display:none; }
.hero-play-btn.playing .pause-icon { display:block; }

.hero-play-btn {
  display:flex; align-items:center; gap:12px; cursor:pointer;
  border:1px solid rgba(253,251,247,0.3);
  color:rgba(253,251,247,0.9); font-family:var(--a); font-size:0.82rem;
  letter-spacing:1.5px; text-transform:uppercase; padding:13px 30px;
  border-radius:2px; transition:all .3s; margin-bottom:28px; margin-top:0;
  user-select:none;
}
.hero-play-btn:hover { background:rgba(253,251,247,0.07); border-color:rgba(253,251,247,0.7); }
.hero-play-btn.playing { border-color:var(--text-gold); color:var(--text-gold); }
.hero-play-btn .play-icon { width:16px; height:16px; fill:rgba(253,251,247,0.9); flex-shrink:0; }
.hero-play-btn .pause-icon { display:none; width:16px; height:16px; fill:var(--text-gold); flex-shrink:0; }
.hero-play-btn.playing .play-icon { display:none; }
.hero-play-btn.playing .pause-icon { display:block; }

.hero-audio { display:none; }
.hero-name { font-family:var(--h); font-size:2.8rem; font-weight:700; color:var(--bg-cream); letter-spacing:-0.5px; line-height:1.1; text-align:center; margin-bottom:12px; }
.hero-name em { font-style:italic; color:var(--text-gold); }
.hero-tagline { font-family:var(--a); font-weight:300; font-size:0.88rem; color:rgba(253,251,247,0.55); letter-spacing:2px; text-transform:uppercase; margin-bottom:40px; text-align:center; }
.hero-scroll { font-family:var(--a); font-size:0.75rem; color:rgba(253,251,247,0.4); letter-spacing:2px; text-transform:uppercase; text-decoration:none; margin-top:20px; display:inline-flex; align-items:center; gap:8px; transition:color .3s; }
.hero-scroll:hover { color:rgba(253,251,247,0.8); }

/* ═══════ SECTIONS ═══════ */
.section { padding:80px 40px; }
.section-inner { max-width:1100px; margin:0 auto; text-align:center; }
.section-label { font-family:var(--a); font-weight:300; font-size:0.72rem; color:var(--text-gold); text-transform:uppercase; letter-spacing:3.5px; margin-bottom:16px; }
.section h2 { font-family:var(--h); font-size:2.4rem; font-weight:700; letter-spacing:-0.5px; line-height:1.2; margin-bottom:24px; }
.section-sub { font-size:1rem; color:var(--text-dark); opacity:0.7; max-width:600px; line-height:1.8; margin:0 auto 40px; }

/* Services Grid */
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-top:48px; }
.service-card {
  border:1px solid var(--border); padding:36px 28px; border-radius:2px;
  transition:border-color .3s, transform .3s;
  text-decoration:none; color:var(--text-dark);
  display:block;
}
.service-card:hover { border-color:var(--text-gold); transform:translateY(-4px); }
.service-icon { font-size:1.6rem; margin-bottom:16px; }
.service-card h3 { font-family:var(--h); font-size:1.3rem; font-weight:600; margin-bottom:10px; }
.service-card p { font-size:0.9rem; opacity:0.7; line-height:1.7; }
.service-card .card-link { display:inline-block; margin-top:18px; font-family:var(--a); font-size:0.78rem; letter-spacing:1px; text-transform:uppercase; color:var(--text-gold); }

/* ═══════ PAGE HERO (Unterseiten) ═══════ */
.page-hero { padding:120px 40px 56px; max-width:860px; margin:0 auto; text-align:center; }
.page-hero .section-label { display:block; margin-bottom:12px; }
.page-hero h1 { font-family:var(--h); font-size:3.8rem; font-weight:700; letter-spacing:-0.8px; line-height:1.12; margin-bottom:20px; }
.page-hero h1 em { font-style:italic; color:var(--text-gold); }
.page-hero p { font-size:1.1rem; opacity:0.7; max-width:640px; margin:0 auto; line-height:1.8; }

/* ═══════ CONTENT BLOCKS ═══════ */
.content-block { max-width:760px; margin:0 auto 60px; padding:0 40px; }
.content-block h2 { font-family:var(--h); font-size:2rem; font-weight:700; margin-bottom:20px; letter-spacing:-0.4px; }
.content-block p { font-size:1rem; opacity:0.82; line-height:1.85; margin-bottom:18px; }
.content-block ul { list-style:none; padding:0; margin:20px 0; }
.content-block ul li { position:relative; padding-left:20px; margin-bottom:12px; font-size:0.97rem; opacity:0.82; line-height:1.7; }
.content-block ul li::before { content:'·'; position:absolute; left:0; color:var(--text-gold); font-weight:700; font-size:1.2rem; line-height:1.5; }

/* ═══════ ANGEBOT / PRICE CARD ═══════ */
.offer-section { background:var(--bg-white); padding:80px 40px; }
.offer-inner { max-width:680px; margin:0 auto; text-align:center; }
.offer-inner h2 { font-family:var(--h); font-size:2rem; font-weight:700; margin-bottom:36px; letter-spacing:-0.4px; line-height:1.3; }
.offer-card { background:var(--bg-cream); border:1px solid var(--border); border-radius:2px; padding:44px 36px; margin-bottom:48px; }
.offer-card p { font-size:0.97rem; opacity:0.82; line-height:1.75; }
.offer-price { font-family:var(--h); font-size:3.8rem; font-weight:700; color:var(--text-dark); margin:20px 0 10px; }
.offer-perks { font-size:0.88rem; color:var(--text-muted); margin-bottom:28px; }
.btn { display:inline-block; background:var(--text-dark); color:var(--bg-cream); font-family:var(--a); font-weight:400; font-size:0.82rem; padding:13px 30px; text-decoration:none; border-radius:2px; letter-spacing:1.1px; text-transform:uppercase; transition:all .3s; border:none; cursor:pointer; }
.btn:hover { background:#2a0020; transform:translateY(-2px); box-shadow:0 6px 20px rgba(0,0,0,0.1); }
.btn-outline { background:transparent; border:1px solid var(--text-dark); color:var(--text-dark); }
.btn-outline:hover { background:var(--text-dark); color:var(--bg-cream); }
.btn-block { display:block; width:100%; text-align:center; }

/* ═══════ FORM ═══════ */
.form-section { text-align:left; }
.form-section h3 { font-family:var(--h); font-size:1.6rem; font-weight:600; margin-bottom:8px; }
.form-intro { color:var(--text-muted); margin-bottom:28px; font-size:0.93rem; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:16px; }
.form-group { margin-bottom:16px; }
.form-group label { display:block; font-family:var(--a); font-weight:300; font-size:0.8rem; margin-bottom:6px; letter-spacing:0.4px; }
.form-group input, .form-group textarea, .form-group select {
  width:100%; padding:12px 14px; font-family:var(--b); font-size:0.92rem;
  border:1px solid #ddd; border-radius:2px; background:var(--bg-white);
  color:var(--text-dark); transition:border-color .25s, box-shadow .25s;
}
.form-group input:focus, .form-group textarea:focus { outline:none; border-color:var(--text-dark); box-shadow:0 0 0 3px rgba(0,0,0,0.04); }
.form-group textarea { resize:vertical; min-height:150px; }
.form-success { display:none; background:#f0faf0; color:#2e7d32; border:1px solid #c8e6c9; padding:20px 24px; border-radius:2px; margin-bottom:20px; font-size:0.95rem; text-align:center; }
.form-success.show { display:block; }

/* ═══════ BLOG ═══════ */
.blog-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(300px,1fr)); gap:28px; margin-top:40px; }
.blog-card { border:1px solid var(--border); padding:28px 24px; border-radius:2px; transition:border-color .3s, transform .3s; cursor:pointer; }
.blog-card:hover { border-color:var(--text-gold); transform:translateY(-3px); }
.blog-card-date { font-family:var(--a); font-size:0.75rem; color:var(--text-muted); letter-spacing:1px; margin-bottom:10px; text-transform:uppercase; }
.blog-card h3 { font-family:var(--h); font-size:1.2rem; font-weight:600; margin-bottom:10px; line-height:1.3; }
.blog-card p { font-size:0.88rem; opacity:0.7; line-height:1.65; }
.blog-card-link { display:inline-block; margin-top:14px; font-family:var(--a); font-size:0.76rem; letter-spacing:1px; text-transform:uppercase; color:var(--text-gold); }
.blog-empty { text-align:center; padding:60px 20px; opacity:0.5; font-family:var(--h); font-size:1.3rem; font-style:italic; }

/* Blog Post */
.post-content { max-width:720px; margin:0 auto; padding:0 40px 80px; }
.post-content h1 { font-family:var(--h); font-size:2.6rem; font-weight:700; letter-spacing:-0.6px; line-height:1.15; margin-bottom:12px; }
.post-meta { font-family:var(--a); font-size:0.78rem; color:var(--text-muted); letter-spacing:1px; text-transform:uppercase; margin-bottom:40px; }
.post-body { font-size:1.02rem; line-height:1.9; }
.post-body p { margin-bottom:20px; opacity:0.85; }
.post-body h2 { font-family:var(--h); font-size:1.6rem; margin:36px 0 16px; }
.post-body iframe { width:100%; border:none; border-radius:2px; margin:24px 0; aspect-ratio:16/9; }
.post-body img { max-width:100%; border-radius:2px; margin:20px 0; }

/* ═══════ STORY ═══════ */
.story-grid { display:grid; grid-template-columns:1fr 380px; gap:60px; align-items:start; max-width:1000px; margin:0 auto; padding:0 40px 80px; }
.story-img { border-radius:2px; overflow:hidden; position:sticky; top:90px; }
.story-img img { width:100%; display:block; filter:grayscale(20%); }
@media(max-width:760px){ .story-grid { grid-template-columns:1fr; } .story-img { position:static; } }

/* ═══════ FOOTER ═══════ */
footer { background:var(--bg-dark); color:var(--bg-cream); padding:56px 40px 40px; }
.footer-inner { max-width:1100px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr 1fr; gap:40px; }
.footer-brand .nav-logo { color:var(--bg-cream); font-size:1.3rem; display:block; margin-bottom:12px; }
.footer-brand p { font-size:0.85rem; opacity:0.45; line-height:1.7; }
.footer-col h4 { font-family:var(--a); font-size:0.75rem; text-transform:uppercase; letter-spacing:2px; opacity:0.45; margin-bottom:14px; }
.footer-col ul { list-style:none; }
.footer-col ul li { margin-bottom:8px; }
.footer-col ul a { color:var(--bg-cream); text-decoration:none; font-size:0.88rem; opacity:0.65; transition:opacity .2s; }
.footer-col ul a:hover { opacity:1; }
.footer-bottom { max-width:1100px; margin:36px auto 0; padding-top:20px; border-top:1px solid rgba(253,251,247,0.08); font-size:0.75rem; opacity:0.3; display:flex; justify-content:space-between; }
@media(max-width:680px){ .footer-inner { grid-template-columns:1fr; gap:28px; } .footer-bottom { flex-direction:column; gap:6px; } }

/* ═══════ MEDIA EMBED ═══════ */
.embed-wrap { position:relative; padding-bottom:56.25%; height:0; overflow:hidden; border-radius:2px; margin:24px 0; }
.embed-wrap iframe { position:absolute; top:0; left:0; width:100%; height:100%; border:0; }
.spotify-wrap { margin:24px 0; }
.spotify-wrap iframe { width:100%; border:none; border-radius:12px; }

/* ═══════ PHOTO SECTIONS ═══════ */
.photo-split { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; max-width:1000px; margin:0 auto; padding:80px 40px; }
.photo-split img { width:100%; border-radius:2px; display:block; object-fit:cover; aspect-ratio:3/4; }
.photo-split-wide img { aspect-ratio:4/3; }
.photo-gallery-2 { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin:32px 0; }
.photo-gallery-2 img { width:100%; aspect-ratio:4/3; object-fit:cover; border-radius:2px; display:block; }
.section-photo { width:100%; max-height:420px; object-fit:cover; object-position:center 20%; border-radius:2px; display:block; margin:32px 0; }
.teach-photo { width:100%; aspect-ratio:16/9; object-fit:cover; object-position:center; border-radius:2px; display:block; margin-bottom:32px; }
@media(max-width:768px){ .photo-split { grid-template-columns:1fr; gap:32px; padding:56px 20px; } .photo-gallery-2 { grid-template-columns:1fr; } .musik-photo-row { grid-template-columns:1fr !important; } .musik-photo-row img { order:-1; } }
@media(max-width:860px){ #stunden > div > div { grid-template-columns:1fr !important; } #stunden > div > div img { position:static !important; } }

/* ═══════ RESPONSIVE ═══════ */
@media(max-width:768px){
  .section { padding:56px 20px; }
  .section h2 { font-size:1.8rem; }
  .services-grid { grid-template-columns:1fr; gap:16px; }
  .page-hero { padding:100px 20px 40px; }
  .page-hero h1 { font-size:2rem; }
  .content-block { padding:0 20px; }
  .offer-section { padding:56px 20px; }
  .form-row { grid-template-columns:1fr; }
  .post-content { padding:0 20px 56px; }
  .post-content h1 { font-size:1.8rem; }
  .hero-name { font-size:2rem; }
  .nav { padding:0 20px; }
  .about-grid { grid-template-columns:1fr !important; text-align:center; }
  .about-grid img { width:200px !important; margin:0 auto 24px; }
  .about-grid .btn { margin:0 auto; }
}
