
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Jost', sans-serif;
  background: #faf8f5;
  color: #2d2020;
  overflow-x: hidden;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 3rem;
  background: rgba(250,248,245,0.95);
  border-bottom: 1px solid rgba(180,150,130,0.15);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  color: #2d2020;
}

nav ul { list-style: none; display: flex; gap: 2rem; align-items: center; }

nav a {
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7a6a60;
  cursor: pointer;
  transition: color 0.3s;
}

nav a:hover, nav a.active { color: #b07d5a; }

.nav-book {
  background: #2d2020;
  color: #faf8f5 !important;
  padding: 0.5rem 1.3rem;
  border-radius: 1px;
  transition: background 0.3s !important;
}

.nav-book:hover { background: #b07d5a !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #2d2020;
  transition: transform 0.3s ease, opacity 0.2s ease;
  transform-origin: center;
}

nav.open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
nav.open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.section { display: none; }
.section.active { display: block; }

/* HERO */
.hero {
  min-height: 88vh;
  background: linear-gradient(160deg, #e8dfd8 0%, #ddd0d8 30%, #cdd3dc 60%, #d8d4c8 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(240,210,190,0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(190,200,220,0.35) 0%, transparent 55%);
}

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

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 400;
  line-height: 1.05;
  color: #1e1414;
  margin-bottom: 1.2rem;
}

.hero-star { font-size: 1.4rem; color: #c9a882; margin: 0.8rem 0; display: block; }
.hero-line { width: 1px; height: 60px; background: rgba(100,70,50,0.25); margin: 0 auto 1.5rem; }

.hero-sub {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: #6a5a52;
  line-height: 2;
  font-weight: 300;
}

/* SERVICES */
.services { background: #faf8f5; padding: 6rem 2rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  max-width: 920px;
  margin: 0 auto;
}

.service-card { text-align: center; }

.service-circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Halo-Effekt */
.service-circle::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220,190,150,0.45) 0%, rgba(200,180,200,0.25) 60%, transparent 80%);
  filter: blur(7px);
  z-index: 0;
}

.circle-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.si-1 { background: linear-gradient(135deg, #e8ddd5, #d5c8e0); padding: 0.5em; }
.si-2 { background: linear-gradient(135deg, #d8e5d5, #c8d8e8); }
.si-3 { background: linear-gradient(135deg, #e5d8d5, #e0d0c8); padding: 1em; }
.si-4 { background: linear-gradient(135deg, #dde0e8, #d8cce0); }

/* Silhouette-Bilder in den Kreisen */
.circle-inner img {
  width: 75%;
  height: 75%;
  object-fit: contain;
  filter: opacity(0.7) sepia(0.3);
}

/* Retreat Foto */
.circle-inner.retreat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  border-radius: 50%;
}

/* Coaching SVG inline */
.circle-inner svg {
  width: 70%;
  height: 70%;
  opacity: 0.65;
  margin-top: 1em;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: #1e1414;
}

.service-card p { font-size: 0.78rem; color: #7a6a60; line-height: 1.7; margin-bottom: 0.8rem; }

.service-link {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b07d5a;
  cursor: pointer;
  border-bottom: 1px solid rgba(176,125,90,0.3);
  padding-bottom: 1px;
}

/* TESTIMONIALS */
.testimonials { background: #faf8f5; padding: 5rem 2rem; }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 3rem;
  color: #1e1414;
  font-style: italic;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.testi-card {
  background: #f5f0ea;
  border-radius: 4px;
  padding: 1.6rem;
  position: relative;
  overflow: hidden;
}

.testi-card::before {
  content: '';
  position: absolute;
  bottom: -20px; left: -20px;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,180,210,0.5), transparent 70%);
}

.testi-text { font-size: 0.85rem; line-height: 1.75; color: #4a3a32; margin-bottom: 0.8rem; }
.testi-name { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: #b07d5a; font-weight: 500; }

/* KURSE */
.kurse-wrap { max-width: 820px; margin: 0 auto; padding: 5rem 2rem; }
.kurse-list { display: flex; flex-direction: column; gap: 1rem; }

.kurs-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
  background: #f5f0ea;
  border-radius: 4px;
  padding: 1.8rem 2rem;
  border: 1px solid rgba(180,150,130,0.12);
  transition: border-color 0.3s;
  scroll-margin-top: 5rem;
}

.kurs-item:hover { border-color: rgba(176,125,90,0.28); }

.kurs-badge {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
  margin-bottom: 0.6rem;
}

.b-vin { background: #fde8d8; color: #b05838; }
.b-yin { background: #ddeedd; color: #386840; }
.b-coa { background: #fde0e8; color: #a04868; }

.kurs-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #1e1414;
  margin-bottom: 0.4rem;
}

.kurs-item p { font-size: 0.8rem; line-height: 1.8; color: #7a6a60; }
.kurs-right { text-align: right; }
.kurs-time { font-size: 0.72rem; color: #9a8a80; line-height: 2; white-space: nowrap; }

.kurs-link {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b07d5a;
  cursor: pointer;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(176,125,90,0.3);
  padding-bottom: 1px;
  font-family: 'Jost', sans-serif;
  text-decoration: none;
}

/* ABOUT */
.about-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: center;
}

.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 4px;
  background: linear-gradient(135deg, #ede5d8, #ddd0c0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}

.about-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 40% 30%, rgba(220,180,140,0.3), transparent 60%);
}

.about-img img {
  width: 100%;
}

.about-tag { font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase; color: #b07d5a; margin-bottom: 1rem; }

.about h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 400;
  font-style: italic;
  color: #1e1414;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.about p { font-size: 0.87rem; line-height: 1.75; color: #7a6a60; margin-bottom: 0.5rem; }

.certs { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }

.cert {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(176,125,90,0.22);
  color: #b07d5a;
  padding: 0.3rem 0.9rem;
  border-radius: 2px;
}

/* CONTACT */
.contact-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-wrap h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 400;
  font-style: italic;
  color: #1e1414;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.contact-left p { font-size: 0.85rem; line-height: 1.9; color: #7a6a60; margin-bottom: 2rem; }

.contact-detail { margin-bottom: 1.3rem; }

.email-link { color: #7a6a60; }

.contact-detail label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b07d5a;
  display: block;
  margin-bottom: 0.3rem;
}

.contact-detail p { font-size: 0.85rem; color: #4a3a32; line-height: 1.7; margin: 0; }

.form { display: flex; flex-direction: column; gap: 0.85rem; }

.field {
  background: #f5f0ea;
  border: 1px solid rgba(180,150,130,0.18);
  border-radius: 2px;
  padding: 0.85rem 1rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.84rem;
  color: #2d2020;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}

.field::placeholder { color: #b09888; }
.field:focus { border-color: rgba(176,125,90,0.4); }
textarea.field { resize: vertical; min-height: 120px; }

.btn-submit {
  background: #2d2020;
  color: #faf8f5;
  padding: 0.9rem 2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 1px;
  font-weight: 500;
  transition: background 0.3s;
  width: 100%;
}

.btn-submit:hover { background: #b07d5a; }

/* FOOTER */
footer {
  background: linear-gradient(160deg, #e0d8d0 0%, #d8d0d8 50%, #d0d8d0 100%);
  padding: 4rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 3rem;
  align-items: start;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: #1e1414;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.footer-tagline { font-size: 0.75rem; color: #7a6a60; letter-spacing: 0.05em; line-height: 1.8; }
.footer-divider { background: rgba(100,70,50,0.15); }

.footer-info h4 {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b07d5a;
  font-weight: 500;
  margin-bottom: 0.6rem;
  margin-top: 1.2rem;
}

.footer-info h4:first-child { margin-top: 0; }

.footer-info p, .footer-info a {
  font-size: 0.82rem;
  color: #4a3a32;
  line-height: 1.9;
  display: block;
}

.footer-star { color: #c9a882; margin-bottom: 0.5rem; font-size: 1.1rem; display: block; }

@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }

  .nav-toggle { display: flex; }

  nav ul {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1.5rem 1.5rem;
    background: rgba(250,248,245,0.98);
    border-bottom: 1px solid rgba(180,150,130,0.15);
    backdrop-filter: blur(8px);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

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

  nav ul li { border-top: 1px solid rgba(180,150,130,0.12); }

  nav ul a {
    display: block;
    padding: 1rem 0.25rem;
    font-size: 0.82rem;
  }

  nav .nav-book {
    margin-top: 0.8rem;
    text-align: center;
    padding: 0.9rem 1.3rem;
  }

  nav ul li:has(.nav-book) { border-top: none; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .about-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .contact-wrap { grid-template-columns: 1fr; }
  .kurs-item { grid-template-columns: 1fr; padding: 1.5rem 1.25rem; }
  .kurs-item > div[style*="flex"] {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 0.8rem;
  }
  .kurs-time { white-space: normal; line-height: 1.6; }
  .kurs-right { text-align: left; }
  footer { grid-template-columns: 1fr; }
  .footer-divider { display: none; }
}
