/* ============================================================
   Shine with Caro – Stylesheet
   Fonts werden via Google Fonts geladen (siehe index.html)
   ============================================================ */

:root {
  --sand:         #f7f0e3;
  --sand2:        #efe5cf;
  --sand3:        #e5d8be;
  --terracotta:   #c4613a;
  --terra-light:  #d97a52;
  --terra-pale:   #f0c9b5;
  --sage:         #7a9e7e;
  --warm-dark:    #2d1f0f;
  --brown:        #5c3a1e;
  --text:         #2d1f0f;
  --text-mid:     #7a5c3a;
  --text-light:   #b09070;
  --border:       rgba(196, 97, 58, 0.18);
  --ff-d:         'Lora', Georgia, serif;
  --ff-b:         'Nunito', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-b);
  background: var(--sand);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
  max-width: 100vw;
}

/* ── CURSOR ── */
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--terracotta);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid var(--terracotta);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  opacity: .4;
  transition: width .2s, height .2s;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 52px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(247, 240, 227, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: none;
  text-decoration: none;
}
.nav-wordmark {
  font-family: var(--ff-d);
  font-size: 19px;
  color: var(--warm-dark);
  letter-spacing: .01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
  list-style: none;
}
.nav-links a {
  font-family: var(--ff-b);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  cursor: none;
  position: relative;
  transition: color .2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 100%;
  height: 1.5px;
  background: var(--terracotta);
  transition: right .25s ease;
}
.nav-links a:hover { color: var(--terracotta); }
.nav-links a:hover::after { right: 0; }

.nav-cta {
  background: var(--terracotta) !important;
  color: white !important;
  padding: 10px 24px;
  border-radius: 40px;
  letter-spacing: .12em !important;
  transition: background .25s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--brown) !important; }

/* ── PAGE SYSTEM (Legacy – nicht mehr genutzt im MPA) ── */
/* .page { display: none; min-height: 100vh; } */
/* .page.active { display: block; } */

/* ── BUTTONS ── */
.btn-primary {
  background: var(--terracotta);
  color: white;
  padding: 17px 36px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  cursor: none;
  font-family: var(--ff-b);
  font-weight: 600;
  transition: all .25s;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 6px 24px rgba(196, 97, 58, 0.3);
}
.btn-primary:hover {
  background: var(--brown);
  box-shadow: 0 8px 32px rgba(92, 58, 30, 0.35);
  transform: translateY(-2px);
}

.btn-ghost {
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--text-mid);
  text-decoration: none;
  cursor: none;
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 500;
  transition: color .2s;
}
.btn-ghost:hover { color: var(--terracotta); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding-top: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  background: linear-gradient(160deg, var(--sand) 0%, var(--sand2) 100%);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.hero-left::before {
  content: '';
  position: absolute;
  top: -100px; right: -60px;
  width: 340px; height: 340px;
  border: 1px solid rgba(196, 97, 58, 0.12);
  border-radius: 50%;
  pointer-events: none;
}
.hero-left::after {
  content: '';
  position: absolute;
  bottom: 60px; left: -80px;
  width: 220px; height: 220px;
  border: 1px solid rgba(196, 97, 58, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.hero-kicker {
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-kicker::before {
  content: '';
  display: block;
  width: 24px; height: 1.5px;
  background: var(--terracotta);
}

.hero-headline {
  font-family: var(--ff-d);
  font-size: clamp(50px, 5.5vw, 72px);
  line-height: 1.07;
  font-weight: 400;
  color: var(--warm-dark);
  margin-bottom: 28px;
}
.hero-headline em { font-style: italic; color: var(--terracotta); }

.hero-body {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--text-mid);
  font-weight: 300;
  max-width: 390px;
  margin-bottom: 36px;
}

.hero-actions { display: flex; gap: 22px; align-items: center; }

.hero-right {
  background: linear-gradient(160deg, var(--warm-dark) 0%, #1a0e04 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 56px 52px;
  z-index: 1;
}
.hero-right-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 55% 25%, rgba(196, 97, 58, 0.22) 0%, transparent 100%),
    radial-gradient(ellipse 40% 40% at 15% 80%, rgba(122, 158, 126, 0.1) 0%, transparent 100%),
    linear-gradient(to top, rgba(20, 10, 4, 1) 0%, rgba(20, 10, 4, 0.6) 40%, rgba(20, 10, 4, 0.1) 65%, transparent 80%);
}

/* Foto-Platzhalter – entfernen sobald echtes Foto gesetzt wird */
.hero-placeholder {
  position: absolute;
  top: 60px; left: 40px; right: 40px; bottom: 140px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  text-align: center;
  font-family: var(--ff-b);
}

/* Echtes Foto – class="hero-photo" auf <img> setzen */
.hero-photo {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.75;
}

.hero-stats { position: relative; z-index: 2; display: flex; gap: 44px; }
.hero-stat-num {
  font-family: var(--ff-d);
  font-size: 38px;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 4px;
  text-shadow: 0 0 20px rgba(0,0,0,0.9), 0 2px 8px rgba(0,0,0,0.9), 0 4px 24px rgba(0,0,0,0.7);
}
.hero-stat-lab {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(247, 240, 227, 0.75);
  font-weight: 500;
  text-shadow: 0 0 12px rgba(0,0,0,0.9), 0 2px 8px rgba(0,0,0,0.9);
}

/* ── MARQUEE ── */
.marquee-strip {
  background: linear-gradient(90deg, var(--terracotta) 0%, #b85530 100%);
  padding: 16px 0;
  overflow: hidden;
  display: flex;
}
.marquee-track {
  display: flex;
  animation: marquee 24s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  font-family: var(--ff-d);
  font-size: 14px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.92);
  padding: 0 44px;
  display: flex;
  align-items: center;
  gap: 44px;
}
.marquee-dot {
  width: 4px; height: 4px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SECTION INTRO ── */
.section-intro {
  padding: 120px 64px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.section-label {
  font-size: 10px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  padding-top: 8px;
  position: relative;
  padding-left: 20px;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 12px; height: 1.5px;
  background: var(--terracotta);
  transform: translateY(-50%);
}
.intro-text {
  font-family: var(--ff-d);
  font-size: clamp(26px, 2.8vw, 36px);
  line-height: 1.45;
  color: var(--warm-dark);
}
.intro-text em { font-style: italic; color: var(--terracotta); }

/* ── ANGEBOT CARDS ── */
.angebot-grid {
  padding: 120px 48px 100px;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.angebot-card {
  background: white;
  border-radius: 6px;
  cursor: none;
  transition: all .3s;
  text-decoration: none;
  color: inherit;
  display: block;
  border: 1px solid transparent;
  box-shadow: 0 2px 20px rgba(45, 31, 15, 0.06);
  overflow: hidden;
}
.angebot-card:hover {
  transform: translateY(-6px);
  border-color: var(--terra-pale);
  box-shadow: 0 16px 48px rgba(196, 97, 58, 0.14);
}
.angebot-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--sand2);
}
.angebot-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .4s ease;
  display: block;
}
.angebot-card:hover .angebot-img img { transform: scale(1.02); }
.angebot-body {
  padding: 36px 36px 40px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.angebot-card { display: flex; flex-direction: column; }
.angebot-title { font-family: var(--ff-d); font-size: 22px; color: var(--warm-dark); margin-bottom: 14px; }
.angebot-desc { font-size: 14px; line-height: 1.75; color: var(--text-mid); font-weight: 300; margin-bottom: 32px; flex: 1; }
.angebot-link { font-size: 12px; letter-spacing: .15em; text-transform: uppercase; color: var(--terracotta); font-weight: 600; margin-top: auto; }

/* ── FIRMENYOGA BANNER ── */
.firma-banner {
  background: linear-gradient(135deg, var(--warm-dark) 0%, var(--brown) 100%);
  padding: 72px 64px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  overflow: hidden;
  margin: 0 auto 80px;
  max-width: 972px;
  border-radius: 10px;
}
.firma-banner::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 320px; height: 320px;
  border: 1px solid rgba(196, 97, 58, 0.2);
  border-radius: 50%;
}
.firma-h2 {
  font-family: var(--ff-d);
  font-size: clamp(26px, 3vw, 38px);
  color: var(--sand);
  line-height: 1.3;
  font-weight: 400;
  margin-bottom: 14px;
}
.firma-h2 em { font-style: italic; color: var(--terra-light); }
.firma-body { font-size: 15px; color: rgba(247, 240, 227, 0.52); font-weight: 300; line-height: 1.7; }
.firma-action { display: flex; justify-content: flex-end; position: relative; z-index: 1; }

/* ── ÜBER PREVIEW ── */
.ueber-preview {
  padding: 80px 64px 120px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ueber-img-box {
  aspect-ratio: 3 / 4;
  background: var(--sand2);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-light);
  box-shadow: 0 20px 60px rgba(45, 31, 15, 0.12);
}
/* Echtes Foto – <img class="ueber-photo"> innerhalb von .ueber-img-box */
.ueber-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.ueber-img-inner {
  border: 1px dashed rgba(196, 97, 58, 0.25);
  padding: 30px 40px;
  border-radius: 4px;
  text-align: center;
}
.ueber-content { display: flex; flex-direction: column; gap: 28px; }
.ueber-sup {
  font-size: 10px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  position: relative;
  padding-left: 20px;
}
.ueber-sup::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 12px; height: 1.5px;
  background: var(--terracotta);
  transform: translateY(-50%);
}
.ueber-h2 { font-family: var(--ff-d); font-size: clamp(30px, 3.5vw, 44px); line-height: 1.2; font-weight: 400; color: var(--warm-dark); }
.ueber-h2 em { font-style: italic; color: var(--terracotta); }
.ueber-body { font-size: 15px; line-height: 1.8; color: var(--text-mid); font-weight: 300; }
.credentials { display: flex; flex-direction: column; gap: 10px; border-left: 2px solid var(--terra-pale); padding-left: 20px; }
.credential { font-size: 13px; color: var(--text-mid); font-weight: 400; display: flex; align-items: center; gap: 10px; }
.credential::before { content: ''; width: 6px; height: 6px; background: var(--terracotta); border-radius: 50%; flex-shrink: 0; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(160deg, var(--sand2) 0%, var(--sand3) 100%);
  padding: 110px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 560px; height: 560px;
  border: 1px solid rgba(196, 97, 58, 0.1);
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 360px; height: 360px;
  border: 1px solid rgba(196, 97, 58, 0.14);
  border-radius: 50%;
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-h2 { font-family: var(--ff-d); font-size: clamp(34px, 4vw, 52px); font-weight: 400; color: var(--warm-dark); margin-bottom: 20px; }
.cta-h2 em { font-style: italic; color: var(--terracotta); }
.cta-sub { font-size: 16px; color: var(--text-mid); font-weight: 300; margin-bottom: 44px; max-width: 440px; margin-left: auto; margin-right: auto; line-height: 1.75; }

/* ── FOOTER ── */
footer {
  background: var(--warm-dark);
  padding: 56px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand { font-family: var(--ff-d); font-size: 18px; color: var(--sand); }
.footer-links { display: flex; gap: 32px; list-style: none; }
.footer-links a { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: rgba(247, 240, 227, 0.35); text-decoration: none; cursor: none; transition: color .2s; font-weight: 500; }
.footer-links a:hover { color: var(--terra-light); }
.footer-copy { font-size: 11px; color: rgba(247, 240, 227, 0.2); font-weight: 300; }

/* ── PAGE HERO (Unterseiten) ── */
.page-hero {
  padding-top: 150px;
  min-height: 54vh;
  background: linear-gradient(160deg, var(--warm-dark) 0%, #1a0e04 100%);
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  padding-left: 64px;
  padding-right: 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 70% at 80% 40%, rgba(196, 97, 58, 0.18) 0%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 1; max-width: 700px; }
.page-kicker {
  font-size: 10px; letter-spacing: .35em; text-transform: uppercase;
  color: var(--terra-light); margin-bottom: 24px;
  display: flex; align-items: center; gap: 14px; font-weight: 600;
}
.page-kicker::before { content: ''; display: block; width: 22px; height: 1.5px; background: var(--terra-light); }
.page-hero-h1 { font-family: var(--ff-d); font-size: clamp(46px, 6vw, 78px); font-weight: 400; color: var(--sand); line-height: 1.06; }
.page-hero-h1 em { font-style: italic; color: var(--terra-light); }
.page-hero-sub { margin-top: 24px; font-size: 16px; color: rgba(247, 240, 227, 0.5); font-weight: 300; line-height: 1.7; max-width: 500px; }

/* ── YOGA ALTERNATING LAYOUT ── */
.yoga-formate { padding: 0; }

.yoga-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 680px;
}
.yoga-row--reverse { direction: rtl; }
.yoga-row--reverse > * { direction: ltr; }

.yoga-img {
  overflow: hidden;
  background: var(--sand2);
}
.yoga-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .5s ease;
}
.yoga-row:hover .yoga-img img { transform: scale(1.03); }

.yoga-text {
  background: var(--sand);
  padding: 72px 72px 72px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
}
.yoga-row:nth-child(even) .yoga-text { background: var(--sand2); }

.yoga-h2 {
  font-family: var(--ff-d);
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.1;
  font-weight: 400;
  color: var(--warm-dark);
}
.yoga-h2 em { font-style: italic; color: var(--terracotta); }

.yoga-desc {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--text-mid);
  font-weight: 300;
  max-width: 420px;
}

.yoga-detail {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}
.yoga-detail span {
  font-size: 13px;
  color: var(--text-mid);
  font-weight: 400;
  letter-spacing: .02em;
}
/* Wenn Badge nach yoga-detail kommt, kein doppeltes auto-margin */
.yoga-detail + .kurs-badge,
.yoga-detail + .btn-primary { margin-top: 20px; }

/* ── KURS-SEITE ── */
.kurs-section { padding: 100px 64px; max-width: 1100px; margin: 0 auto; }
.kurs-section-title { font-family: var(--ff-d); font-size: 36px; color: var(--warm-dark); margin-bottom: 52px; }
.kurs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.kurs-card {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  cursor: none; transition: all .28s;
  background: white;
  box-shadow: 0 2px 16px rgba(45, 31, 15, 0.05);
  overflow: hidden;
}
.kurs-card:hover { border-color: var(--terracotta); box-shadow: 0 10px 44px rgba(196, 97, 58, 0.14); transform: translateY(-5px); }
.kurs-img {
  width: 100%; height: 200px;
  overflow: hidden;
  background: var(--sand2);
}
.kurs-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .4s ease;
  display: block;
}
.kurs-card:hover .kurs-img img { transform: scale(1.04); }
.kurs-content { padding: 30px 28px 32px; }
.kurs-title { font-family: var(--ff-d); font-size: 20px; color: var(--warm-dark); margin-bottom: 10px; }
.kurs-meta { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 14px; font-weight: 600; }
.kurs-desc { font-size: 13.5px; line-height: 1.75; color: var(--text-mid); font-weight: 300; }
.kurs-badge { display: inline-block; background: var(--sand); padding: 7px 16px; border-radius: 40px; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--terracotta); font-weight: 600; }

/* Badge und Button in yoga-text immer ans untere Ende */
.yoga-text .kurs-badge,
.yoga-text .btn-primary { margin-top: auto; align-self: flex-start; }

/* ── KONTAKT-ABSCHNITT (Hauptseite) ── */
.kontakt-section {
  background: linear-gradient(160deg, var(--sand2) 0%, var(--sand3) 100%);
  padding: 110px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.kontakt-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 560px; height: 560px;
  border: 1px solid rgba(196, 97, 58, 0.1);
  border-radius: 50%;
  pointer-events: none;
}
.kontakt-inner { position: relative; z-index: 1; }
.kontakt-inner .ueber-sup { padding-left: 0; }
.kontakt-inner .ueber-sup::before { display: none; }
.kontakt-h2 { font-family: var(--ff-d); font-size: clamp(34px, 4vw, 52px); font-weight: 400; color: var(--warm-dark); margin: 18px 0 20px; }
.kontakt-h2 em { font-style: italic; color: var(--terracotta); }
.kontakt-body { font-size: 16px; color: var(--text-mid); font-weight: 300; margin-bottom: 48px; max-width: 440px; margin-left: auto; margin-right: auto; line-height: 1.75; }
.kontakt-links { display: flex; justify-content: center; gap: 36px; flex-wrap: wrap; }
.kontakt-item {
  display: flex; align-items: center; justify-content: center;
  width: 64px; height: 64px;
  text-decoration: none; cursor: none;
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(45, 31, 15, 0.08);
  border: 1.5px solid transparent;
  transition: all .25s;
}
.kontakt-item:hover {
  border-color: var(--terracotta);
  box-shadow: 0 8px 32px rgba(196, 97, 58, 0.16);
  transform: translateY(-2px);
  color: var(--terracotta);
}

/* ── PREIS-SEITE ── */
.preis-section { background: var(--sand2); padding: 100px 64px; }
.preis-inner { max-width: 900px; margin: 0 auto; }
.preis-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-bottom: 52px; }
.preis-h2 { font-family: var(--ff-d); font-size: 38px; color: var(--warm-dark); }
.preis-h2 em { font-style: italic; color: var(--terracotta); }
.preis-body { font-size: 15px; line-height: 1.8; color: var(--text-mid); font-weight: 300; padding-top: 6px; }
.preis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.preis-card { background: white; padding: 42px 32px; border-radius: 8px; box-shadow: 0 2px 16px rgba(45, 31, 15, 0.06); }
.preis-card.featured { background: var(--warm-dark); }
.preis-label { font-size: 10px; letter-spacing: .28em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 18px; font-weight: 600; }
.preis-amount { font-family: var(--ff-d); font-size: 48px; color: var(--warm-dark); line-height: 1; margin-bottom: 6px; }
.preis-card.featured .preis-amount { color: var(--sand); }
.preis-unit { font-size: 12px; color: var(--text-light); margin-bottom: 26px; }
.preis-card.featured .preis-unit { color: rgba(247, 240, 227, 0.38); }
.preis-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.preis-features li { font-size: 13px; color: var(--text-mid); font-weight: 300; display: flex; align-items: center; gap: 10px; }
.preis-card.featured .preis-features li { color: rgba(247, 240, 227, 0.55); }
.preis-features li::before { content: ''; width: 6px; height: 6px; background: var(--terracotta); border-radius: 50%; flex-shrink: 0; }
.preis-info-box { background: linear-gradient(135deg, var(--terra-pale) 0%, #f5d8c8 100%); border-radius: 8px; padding: 22px 26px; margin-top: 18px; }
.preis-info-box p { font-size: 13px; color: var(--brown); line-height: 1.7; }
.preis-info-box strong { font-weight: 600; }

/* ── COACHING-SEITE ── */
.coaching-main {
  display: grid;
  grid-template-columns: 3fr 2fr;
  min-height: 80vh;
  align-items: stretch;
}
.coaching-content {
  background: linear-gradient(160deg, var(--sand) 0%, var(--sand2) 100%);
  padding: 100px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}
.coaching-h2 { font-family: var(--ff-d); font-size: clamp(30px, 3vw, 44px); color: var(--warm-dark); line-height: 1.2; }
.coaching-h2 em { font-style: italic; color: var(--terracotta); }
.coaching-body { font-size: 15px; line-height: 1.8; color: var(--text-mid); font-weight: 300; }

.methoden-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
}
.methode-card {
  background: white;
  border-radius: 8px;
  padding: 24px 22px;
  border: 1.5px solid var(--border);
}
.methode-title { font-family: var(--ff-d); font-size: 16px; color: var(--warm-dark); margin-bottom: 8px; }
.methode-desc { font-size: 13px; line-height: 1.7; color: var(--text-mid); font-weight: 300; }

.coaching-photo {
  overflow: hidden;
  background: var(--sand2);
  position: relative;
}
.coaching-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── ÜBER-SEITE ── */
.about-layout { padding: 100px 64px; max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 3fr; gap: 80px; align-items: start; }
.about-img {
  aspect-ratio: 3 / 4;
  background: var(--sand2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--text-light);
  position: sticky; top: 100px;
  box-shadow: 0 20px 60px rgba(45, 31, 15, 0.12);
  overflow: hidden;
}
.about-img-inner { border: 1px dashed rgba(196, 97, 58, 0.28); padding: 30px 40px; border-radius: 4px; text-align: center; }
/* Echtes Foto – <img class="about-photo"> in .about-img */
.about-photo { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-content { display: flex; flex-direction: column; gap: 44px; }
.about-h2 { font-family: var(--ff-d); font-size: clamp(34px, 4vw, 50px); color: var(--warm-dark); line-height: 1.15; }
.about-h2 em { font-style: italic; color: var(--terracotta); }
.about-para { font-size: 15.5px; line-height: 1.85; color: var(--text-mid); font-weight: 300; }
.about-highlight {
  background: linear-gradient(135deg, var(--sand2) 0%, var(--sand) 100%);
  border-left: 3px solid var(--terracotta);
  padding: 28px 32px;
  border-radius: 0 6px 6px 0;
  font-family: var(--ff-d);
  font-size: 20px; font-style: italic;
  color: var(--warm-dark); line-height: 1.55;
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.about-item { border-top: 1.5px solid var(--border); padding-top: 20px; }
.about-item-title { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 8px; font-weight: 600; }
.about-item-text { font-size: 13.5px; color: var(--text-mid); font-weight: 300; line-height: 1.65; }

/* ── KONTAKT-SEITE ── */
.contact-layout { padding: 80px 64px 100px; max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 3fr; gap: 80px; }
.contact-info { display: flex; flex-direction: column; gap: 36px; }
.contact-h2 { font-family: var(--ff-d); font-size: 42px; color: var(--warm-dark); line-height: 1.2; }
.contact-h2 em { font-style: italic; color: var(--terracotta); }
.contact-body { font-size: 15px; line-height: 1.8; color: var(--text-mid); font-weight: 300; }
.contact-item-label { font-size: 10px; letter-spacing: .28em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 5px; font-weight: 600; }
.contact-item-value { font-family: var(--ff-d); font-size: 17px; color: var(--warm-dark); }
.contact-form { display: flex; flex-direction: column; gap: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--text-light); font-weight: 600; }
.form-input, .form-select, .form-textarea {
  font-family: var(--ff-b); font-size: 15px; font-weight: 300;
  color: var(--warm-dark); background: white;
  border: 1.5px solid var(--border); border-radius: 6px;
  padding: 14px 18px; outline: none; transition: border-color .2s; cursor: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--terracotta); }
.form-textarea { height: 140px; resize: none; }
.form-select { appearance: none; }
.form-submit {
  align-self: flex-start;
  background: var(--terracotta); color: white;
  padding: 18px 48px; font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  border: none; border-radius: 50px; cursor: none;
  font-family: var(--ff-b); font-weight: 600; transition: all .25s;
  box-shadow: 0 6px 24px rgba(196, 97, 58, 0.28);
}
.form-submit:hover { background: var(--brown); transform: translateY(-2px); }
.form-note { font-size: 12px; color: var(--text-light); font-weight: 300; line-height: 1.6; }

/* ── ANIMATIONEN ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .7s ease both; }
.d1 { animation-delay: .1s; }
.d2 { animation-delay: .22s; }
.d3 { animation-delay: .38s; }
.d4 { animation-delay: .54s; }

/* ── RESPONSIVE – Tablet (max 900px) ── */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 11px; }

  .hero,
  .ueber-preview,
  .coaching-main,
  .about-layout { grid-template-columns: 1fr !important; }

  .yoga-row,
  .yoga-row--reverse { grid-template-columns: 1fr; direction: ltr; height: auto; }
  .yoga-row .yoga-img { height: 340px; }
  .yoga-text { padding: 48px 32px; }

  .methoden-grid { grid-template-columns: 1fr; }
  .coaching-photo { min-height: 320px; }

  .angebot-grid,
  .kurs-grid { grid-template-columns: 1fr !important; }

  .hero-right { min-height: 320px; }

  .hero-left,
  .kurs-section,
  .coaching-content,
  .about-layout { padding-left: 32px; padding-right: 32px; }

  .angebot-grid { padding: 60px 32px 60px; }
  .page-hero { padding-left: 32px; padding-right: 32px; }
  .kontakt-section { padding: 80px 32px; }
  .kontakt-links { flex-direction: row; gap: 20px; justify-content: center; }

  .cta-banner { padding: 80px 32px; }
  .ueber-preview { padding: 60px 32px 80px; }

  footer {
    flex-direction: column;
    gap: 22px;
    text-align: center;
    padding: 40px 24px;
  }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

/* ── RESPONSIVE – Mobile (max 600px) ── */
@media (max-width: 600px) {
  /* Navigation: Logo + nur CTA-Button */
  .nav-links li:not(:last-child) { display: none; }
  .nav-links { gap: 0; }

  /* Hero */
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 52px 24px 48px; }
  .hero-right { min-height: 260px; }
  .hero-stats { gap: 24px; }
  .hero-stat-num { font-size: 28px; }

  /* Angebot */
  .angebot-grid { padding: 48px 16px 48px; gap: 20px; }
  .angebot-img { height: 180px; }
  .angebot-body { padding: 24px 24px 28px; }

  /* Über-Vorschau */
  .ueber-preview { padding: 48px 20px 60px; gap: 40px; }
  .ueber-img-box { aspect-ratio: unset; height: 420px; width: 100%; }
  .ueber-photo { object-position: center center; }

  /* Yoga / Coaching Reihen */
  .yoga-row .yoga-img { height: 260px; }
  .yoga-text { padding: 36px 20px 40px; gap: 16px; }
  .yoga-h2 { font-size: 32px; }

  /* Page Hero */
  .page-hero { padding: 140px 20px 60px; min-height: auto; }
  .page-hero-h1 { font-size: 38px; }

  /* Über-Seite */
  .about-layout { padding: 48px 20px; gap: 40px; }
  .about-img { position: static; aspect-ratio: 4 / 3; }
  .about-grid { grid-template-columns: 1fr; }

  /* Kontakt */
  .kontakt-section { padding: 60px 20px; }
  .kontakt-h2 { font-size: 32px; }

  /* CTA */
  .cta-banner { padding: 60px 20px; }
  .cta-h2 { font-size: 30px; }

  /* Footer */
  footer { padding: 36px 20px; }
  .footer-links { gap: 16px; }
}
