/* Yoga Highlight — Pre-Launch / Coming-Soon (BAM Website Engine, 2026-07-09)
   Eigenständige Platzhalterseite. Verdeckt die finale Website bis zum Go-Live.
   Verbindliche Kundenpalette (Homepagegestaltung_Farben.pdf):
     Gold #d7b47a · Salbeigrün #d1c9a4 · Cremeweiß #F5F3EA · Dunkelbraun #533724
   Stimmung: warme „Goldene Stunde" — ruhig, hochwertig, achtsam, naturverbunden.
   Keine externen Fonts, kein CDN, keine Tracker (DSGVO). Reine CSS-Motion. */

:root {
  --cream: #F5F3EA;
  --cream-soft: #efe7d4;
  --sage: #d1c9a4;
  --gold: #d7b47a;
  --gold-light: #e9c88b;
  --gold-deep: #b8934f;
  --brown: #533724;
  --brown-ink: #3e2a1c;
  /* dunkle, warme Dämmerungs-Basis (aus der Braun-Familie abgeleitet) */
  --dusk-0: #1c120b;
  --dusk-1: #2a1a10;
  --dusk-2: #3a2416;
  --serif: "Cormorant Garamond", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  min-height: 100svh;
  background: var(--dusk-0);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--gold-light); text-decoration: none; }

/* ══════════════════════════════════════════════════════════════
   Atmosphäre — weiche Lichtverläufe, driftendes Licht, Foto-Wärme
   (fixe, dekorative Ebenen hinter dem Inhalt)
   ══════════════════════════════════════════════════════════════ */
.atmosphere { position: fixed; inset: 0; z-index: -2; overflow: hidden; pointer-events: none; }

/* Grund-Verlauf: dunkle warme Basis mit sanftem Glutkern in der Mitte-oben */
.atmosphere::before {
  content: "";
  position: absolute; inset: -10%;
  background:
    radial-gradient(120% 90% at 50% 8%, rgba(215,180,122,0.16), rgba(215,180,122,0) 55%),
    radial-gradient(130% 100% at 50% 120%, rgba(0,0,0,0.55), rgba(0,0,0,0) 60%),
    linear-gradient(180deg, var(--dusk-1) 0%, var(--dusk-0) 45%, #150d07 100%);
}

/* Echtes Abendlicht-Foto, tief abgedunkelt & weich — organische Wärme,
   nicht als erkennbares Motiv, sondern als „Licht durch Blätter". */
.atmosphere .photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 62% 42%;
  opacity: 0.22;
  mix-blend-mode: screen;
  filter: blur(2px) saturate(0.85) brightness(0.9);
  transform: scale(1.08);
  animation: drift-photo 46s ease-in-out infinite alternate;
}

/* Zwei große, weiche Lichtpools, die langsam atmen/wandern */
.atmosphere .glow { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.5; }
.atmosphere .glow-gold {
  width: 60vw; height: 60vw; left: -8vw; top: -14vw;
  background: radial-gradient(circle, rgba(215,180,122,0.5), rgba(215,180,122,0) 68%);
  animation: drift-a 30s ease-in-out infinite alternate;
}
.atmosphere .glow-sage {
  width: 52vw; height: 52vw; right: -10vw; bottom: -16vw;
  background: radial-gradient(circle, rgba(209,201,164,0.28), rgba(209,201,164,0) 68%);
  animation: drift-b 38s ease-in-out infinite alternate;
}

/* Vignette + feine Körnung (Premium-Textur, verhindert Banding) */
.atmosphere .vignette {
  position: absolute; inset: 0;
  background: radial-gradient(115% 115% at 50% 45%, rgba(0,0,0,0) 52%, rgba(0,0,0,0.5) 100%);
}
.grain {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ══════════════════════════════════════════════════════════════
   Bühne — zentrierter Inhalt
   ══════════════════════════════════════════════════════════════ */
.stage {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: clamp(1.6rem, 5vh, 4rem) 1.5rem clamp(1.4rem, 3vh, 2rem);
  gap: 0.2rem;
}

/* ── Blume des Lebens: atmendes Zentrum + Atem-/Klangringe ── */
.mandala-wrap {
  position: relative;
  width: clamp(134px, min(24vh, 44vw), 190px);
  aspect-ratio: 1;
  display: grid; place-items: center;
  margin-bottom: clamp(1.1rem, 3vh, 2.1rem);
}
.mandala {
  width: 100%; height: 100%;
  color: var(--gold);
  filter: drop-shadow(0 0 26px rgba(215,180,122,0.34));
  animation: breathe 8s ease-in-out infinite;
  transform-origin: center;
}
.mandala .petals { stroke: var(--gold); }
.mandala .rings { stroke: var(--gold-light); }

/* Sich ausdehnende Ringe wie Atem / Klangwellen */
.ring {
  position: absolute; inset: 0; margin: auto;
  width: 78%; aspect-ratio: 1; border-radius: 50%;
  border: 1px solid rgba(215,180,122,0.45);
  opacity: 0;
  animation: pulse-ring 7s ease-out infinite;
}
.ring.r2 { animation-delay: 2.33s; }
.ring.r3 { animation-delay: 4.66s; }

/* ── Typografie ── */
.eyebrow {
  font-family: var(--serif);
  font-size: clamp(0.92rem, 2.4vw, 1.15rem);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding-left: 0.42em; /* optische Mitte trotz Letter-Spacing */
}
.eyebrow::after {
  content: ""; display: block;
  width: 58px; height: 1px; margin: 1.05rem auto 0;
  background: linear-gradient(90deg, rgba(215,180,122,0), var(--gold), rgba(215,180,122,0));
}
h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.62rem, 4.7vw, 2.72rem);
  line-height: 1.18;
  letter-spacing: 0.01em;
  color: #fbf7ee;
  max-width: 20ch;
  margin: clamp(0.9rem, 2.2vh, 1.7rem) auto 0;
  text-wrap: balance;
}
.sub {
  font-family: var(--serif);
  font-size: clamp(1.02rem, 2.6vw, 1.32rem);
  letter-spacing: 0.16em;
  color: var(--cream);
  margin-top: clamp(0.8rem, 1.7vh, 1.25rem);
}
.whisper {
  font-size: clamp(0.9rem, 2.2vw, 1rem);
  color: rgba(245,243,234,0.72);
  max-width: 34ch;
  margin: clamp(0.6rem, 1.3vh, 0.9rem) auto 0;
}

/* „Bald online" mit ruhig pulsierendem Punkt */
.status {
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin-top: clamp(1.1rem, 2.6vh, 2.2rem);
  font-size: 0.8rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold-light);
  padding: 0.55rem 1.25rem;
  border: 1px solid rgba(215,180,122,0.32);
  border-radius: 100px;
  background: rgba(215,180,122,0.05);
}
.status .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(215,180,122,0.6);
  animation: pulse-dot 2.6s ease-out infinite;
}

/* ── Fußzeile ── */
.foot {
  position: relative;
  margin-top: auto;
  padding-top: clamp(1.5rem, 3.5vh, 3.5rem);
  display: flex; flex-direction: column; align-items: center; gap: 0.55rem;
  font-size: 0.85rem;
  color: rgba(245,243,234,0.6);
}
.foot .place { letter-spacing: 0.06em; }
.foot .links { display: flex; gap: 0.4rem; align-items: center; flex-wrap: wrap; justify-content: center; }
.foot .links a { color: rgba(233,200,139,0.85); border-bottom: 1px solid transparent; padding-bottom: 1px; }
.foot .links a:hover, .foot .links a:focus-visible { color: var(--gold-light); border-bottom-color: var(--gold-deep); }
.foot .sep { color: rgba(215,180,122,0.4); }

/* Sichtbarer Fokusring für Tastaturnutzung (Barrierefreiheit) */
a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

/* ══════════════════════════════════════════════════════════════
   Sanftes Einblenden (gestaffelt)
   ══════════════════════════════════════════════════════════════ */
.reveal { opacity: 0; animation: fade-up 1.15s cubic-bezier(0.22, 0.61, 0.36, 1) forwards; }
.d1 { animation-delay: 0.15s; }
.d2 { animation-delay: 0.5s; }
.d3 { animation-delay: 0.85s; }
.d4 { animation-delay: 1.2s; }
.d5 { animation-delay: 1.55s; }
.d6 { animation-delay: 2s; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes breathe {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 22px rgba(215,180,122,0.28)); }
  50%      { transform: scale(1.045); filter: drop-shadow(0 0 34px rgba(215,180,122,0.42)); }
}
@keyframes pulse-ring {
  0%   { opacity: 0; transform: scale(0.72); }
  22%  { opacity: 0.55; }
  100% { opacity: 0; transform: scale(1.5); }
}
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(215,180,122,0.5); }
  70%  { box-shadow: 0 0 0 11px rgba(215,180,122,0); }
  100% { box-shadow: 0 0 0 0 rgba(215,180,122,0); }
}
@keyframes drift-a {
  from { transform: translate(0, 0); } to { transform: translate(6vw, 4vw); }
}
@keyframes drift-b {
  from { transform: translate(0, 0); } to { transform: translate(-5vw, -3vw); }
}
@keyframes drift-photo {
  from { transform: scale(1.08) translate(0, 0); }
  to   { transform: scale(1.16) translate(-2%, -1.5%); }
}

/* ══════════════════════════════════════════════════════════════
   Rechtstexte (Impressum / Datenschutz) — dunkel, ruhig, lesbar
   ══════════════════════════════════════════════════════════════ */
.legal-page { display: block; min-height: 100svh; }
.legal-nav {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  max-width: 760px; margin: 0 auto; padding: 1.6rem 1.5rem 0;
}
.legal-nav .brand { display: inline-flex; align-items: center; gap: 0.65rem; }
.legal-nav .brand svg { width: 34px; height: 34px; color: var(--gold); }
.legal-nav .brand span {
  font-family: var(--serif); font-size: 1.22rem; letter-spacing: 0.06em; color: var(--cream);
}
.legal-nav .back { font-size: 0.88rem; letter-spacing: 0.04em; color: var(--gold-light); }
.legal-nav .back:hover { color: #fff; }

.legal {
  position: relative; z-index: 1;
  max-width: 720px; margin: 0 auto; padding: 2.4rem 1.5rem 4rem;
}
.legal h1 {
  font-family: var(--serif); font-weight: 500; color: #fbf7ee;
  font-size: clamp(1.8rem, 4vw, 2.4rem); text-align: left; max-width: none;
  margin: 1.2rem 0 0.4rem;
}
.legal h1::after {
  content: ""; display: block; width: 60px; height: 2px;
  margin: 1rem 0 0; background: var(--gold);
}
.legal h2 {
  font-family: var(--serif); font-weight: 500; color: var(--gold-light);
  font-size: 1.28rem; margin: 2rem 0 0.4rem;
}
.legal p { color: rgba(245,243,234,0.86); margin-top: 0.55rem; max-width: 68ch; }
.legal strong { color: var(--cream); }
.legal .lead { color: var(--cream); font-size: 1.08rem; }
.legal-foot {
  position: relative; z-index: 1;
  max-width: 720px; margin: 0 auto; padding: 1.6rem 1.5rem 3rem;
  border-top: 1px solid rgba(215,180,122,0.18);
  font-size: 0.85rem; color: rgba(245,243,234,0.55);
  display: flex; gap: 0.5rem; flex-wrap: wrap; align-items: center;
}
.legal-foot a { color: rgba(233,200,139,0.85); }
.legal-foot a:hover { color: var(--gold-light); }

/* ══════════════════════════════════════════════════════════════
   Barrierefreiheit: Bewegung respektieren
   ══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; animation: none !important; transform: none !important; }
  .mandala, .ring, .status .dot,
  .atmosphere .photo, .atmosphere .glow { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* Kleine Schärfungen für sehr schmale Screens */
@media (max-width: 380px) {
  .eyebrow { letter-spacing: 0.32em; }
  .sub { letter-spacing: 0.1em; }
  .stage { padding-top: 3rem; }
}
