/* Rose — Hair & Beauty · rose-salon.de
   Basis-Stylesheet, umgesetzt aus dem Claude-Design-Projekt
   "Rose Beauty & Hair Design System" (website/*.dc.html). */

@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,200;0,300;0,400;0,500;1,200;1,300&display=swap');

:root {
  --gruen: #4E5B44;          /* Grundfläche */
  --gruen-dunkel: #262A21;   /* Nav, Footer, dunkle Sektionen */
  --gruen-hell: #AEB6A2;     /* Overlines, Akzente auf dunkel */
  --creme: #F6F3EC;          /* helle Fläche / Text auf dunkel */
  --tinte: #262A21;          /* Text auf hell */
  --tinte-neben: #5B6052;    /* Nebentext auf hell */
  --tinte-label: #8C8778;    /* Labels auf hell */
  --linie-hell: #CFCCC2;     /* Trennlinien auf hell */
  --verlauf: linear-gradient(90deg, #89927F 0%, #D6DCCB 45%, #F8F9F3 70%, #A9B39C 100%);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--gruen);
  color: var(--creme);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

a { color: #D6DCCB; }
a:hover { color: #F8F9F3; }

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding-left: 48px;
  padding-right: 48px;
}

.overline {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.overline--dunkel { color: var(--gruen-hell); }
.overline--hell { color: var(--gruen); }

/* ---------- Navigation ---------- */

.nav { background: var(--gruen-dunkel); }

.nav__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 14px 32px;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px 28px;
  flex-wrap: wrap;
}

.nav__logo { display: flex; align-items: center; text-decoration: none; }
.nav__logo img { height: 46px; display: block; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 14px 26px;
  flex-wrap: wrap;
}

.nav__link {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  color: var(--creme);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}
.nav__link:hover { color: #D6DCCB; }
.nav__link--aktiv,
.nav__link--aktiv:hover {
  color: var(--gruen-hell);
  border-bottom-color: var(--gruen-hell);
}

.nav__termin {
  display: flex;
  align-items: baseline;
  gap: 10px;
  border: 1px solid rgba(174, 182, 162, 0.55);
  padding: 12px 20px;
  white-space: nowrap;
  flex: none;
}
.nav__termin-label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gruen-hell);
}
.nav__termin-nummer {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--creme);
  text-decoration: none;
}

.balken { height: 4px; background: var(--verlauf); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
}

.hero__muster {
  position: absolute;
  inset: 0;
  background-image: url('../assets/muster/muster_hell_auf_transparent.svg');
  background-size: 1000px auto;
  -webkit-mask-image: radial-gradient(ellipse 58% 120% at 50% 50%, transparent 34%, rgba(0,0,0,0.6) 72%, #000 100%);
  mask-image: radial-gradient(ellipse 58% 120% at 50% 50%, transparent 34%, rgba(0,0,0,0.6) 72%, #000 100%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  padding-top: 110px;
  padding-bottom: 90px;
  text-align: center;
}

.hero h1 {
  margin: 18px 0 0;
  font-weight: 300;
  font-size: clamp(36px, 7vw, 58px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__strich {
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, #89927F, #D6DCCB, #F8F9F3);
  margin: 30px auto 0;
}

/* ---------- Kontakt-Sektion (hell) ---------- */

.kontakt { background: var(--creme); color: var(--tinte); }

.kontakt__grid {
  padding-top: 100px;
  padding-bottom: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
}

.kontakt__liste { margin-top: 30px; display: flex; flex-direction: column; }

.kontakt__zeile {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 32px;
  padding: 22px 0;
  border-bottom: 1px solid var(--linie-hell);
}
.kontakt__zeile:last-child { border-bottom: none; }

.kontakt__label {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tinte-label);
}

.kontakt__wert {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--tinte);
  text-decoration: none;
}
a.kontakt__wert:hover { color: var(--gruen); }

.kontakt__hinweis {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--tinte-neben);
}

.kontakt__adresse-titel {
  margin-top: 30px;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.5;
}
.kontakt__adresse {
  margin-top: 6px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--tinte-neben);
}

.kontakt__block { margin-top: 38px; }
.kontakt__block-text {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: #33372C;
}
.kontakt__block p {
  margin: 12px 0 0;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--tinte-neben);
  text-wrap: pretty;
}

/* ---------- Abschluss-Sektion (dunkel) ---------- */

.abschluss { background: var(--gruen-dunkel); }

.abschluss__inner {
  padding-top: 90px;
  padding-bottom: 90px;
  text-align: center;
}

.abschluss h2 {
  margin: 16px 0 0;
  font-weight: 300;
  font-size: clamp(24px, 4vw, 32px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.abschluss__zitat {
  margin: 22px auto 0;
  font-weight: 200;
  font-style: italic;
  font-size: 22px;
  color: rgba(246, 243, 236, 0.62);
}

/* ---------- Footer ---------- */

.footer { background: var(--gruen-dunkel); color: var(--creme); }

.footer__grid {
  padding-top: 72px;
  padding-bottom: 56px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer__logo img { height: 52px; display: block; }

.footer__claim {
  margin: 22px 0 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(246, 243, 236, 0.62);
  max-width: 300px;
}

.footer__titel {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gruen-hell);
  margin-bottom: 18px;
}

.footer__text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(246, 243, 236, 0.85);
}
.footer__text a { color: inherit; text-decoration: none; }
.footer__text a:hover { color: #FFFFFF; }

.footer__linie { height: 1px; background: rgba(246, 243, 236, 0.14); }

.footer__unten {
  padding-top: 24px;
  padding-bottom: 32px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__copyright {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(246, 243, 236, 0.5);
}

.footer__rechtliches { display: flex; gap: 28px; }
.footer__rechtliches a {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(246, 243, 236, 0.62);
}
.footer__rechtliches a:hover { color: var(--creme); }

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .wrap { padding-left: 24px; padding-right: 24px; }

  .hero__inner { padding-top: 72px; padding-bottom: 60px; }

  .kontakt__grid {
    grid-template-columns: 1fr;
    gap: 56px;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .abschluss__inner { padding-top: 64px; padding-bottom: 64px; }
}

@media (max-width: 640px) {
  .nav__inner { padding: 14px 20px; }
  .nav__logo img { height: 40px; }

  .kontakt__zeile {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__unten { justify-content: center; text-align: center; }
}

/* ---------- Muster-Overlay (Varianten) ---------- */

.muster {
  position: absolute;
  inset: 0;
  background-image: url('../assets/muster/muster_hell_auf_transparent.svg');
  background-size: 1000px auto;
  -webkit-mask-image: radial-gradient(ellipse 58% 120% at 50% 50%, transparent 34%, rgba(0,0,0,0.6) 72%, #000 100%);
  mask-image: radial-gradient(ellipse 58% 120% at 50% 50%, transparent 34%, rgba(0,0,0,0.6) 72%, #000 100%);
  pointer-events: none;
}
.muster--sanft {
  opacity: 0.6;
  -webkit-mask-image: radial-gradient(ellipse 58% 110% at 50% 50%, transparent 36%, rgba(0,0,0,0.6) 74%, #000 100%);
  mask-image: radial-gradient(ellipse 58% 110% at 50% 50%, transparent 36%, rgba(0,0,0,0.6) 74%, #000 100%);
}
.muster--eng {
  background-size: 900px auto;
  opacity: 0.7;
  -webkit-mask-image: radial-gradient(ellipse 58% 130% at 50% 50%, transparent 38%, rgba(0,0,0,0.6) 74%, #000 100%);
  mask-image: radial-gradient(ellipse 58% 130% at 50% 50%, transparent 38%, rgba(0,0,0,0.6) 74%, #000 100%);
}
.muster--breit {
  background-size: 900px auto;
  -webkit-mask-image: radial-gradient(ellipse 60% 120% at 50% 50%, transparent 40%, rgba(0,0,0,0.55) 75%, #000 100%);
  mask-image: radial-gradient(ellipse 60% 120% at 50% 50%, transparent 40%, rgba(0,0,0,0.55) 75%, #000 100%);
}

/* ---------- Buttons & CTA ---------- */

.btn {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  padding: 13px 26px;
}
.btn--hell { border: 1px solid rgba(174, 182, 162, 0.55); color: var(--creme); }
.btn--hell:hover { border-color: var(--gruen-hell); color: var(--creme); }
.btn--dunkel { border: 1px solid #262A21; color: #262A21; padding: 15px 30px; }
.btn--dunkel:hover { background: rgba(38, 42, 33, 0.06); color: #262A21; }
.btn--dunkel-zart { border: 1px solid rgba(38, 42, 33, 0.4); color: #262A21; }
.btn--dunkel-zart:hover { border-color: #262A21; color: #262A21; }
.btn--gross { padding: 15px 30px; }

.link-pfeil {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  padding: 17px 6px;
  color: #D6DCCB;
}

.telefon-box {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  border: 1px solid var(--gruen-hell);
  padding: 16px 30px;
}
.telefon-box__label {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gruen-hell);
}
.telefon-box__nummer {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--creme);
  text-decoration: none;
}
.telefon-box--gross { padding: 18px 34px; }
.telefon-box--gross .telefon-box__nummer { font-size: 19px; }

.cta { position: relative; overflow: hidden; }
.cta--dunkel { background: var(--gruen-dunkel); }
.cta__inner {
  position: relative;
  padding-top: 90px;
  padding-bottom: 90px;
  text-align: center;
}
.cta h2 {
  margin: 16px 0 0;
  font-weight: 300;
  font-size: clamp(24px, 4.5vw, 32px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.cta .telefon-box { margin-top: 34px; }

/* ---------- Split-Hero (Unterseiten) ---------- */

.hero-split { position: relative; overflow: hidden; }
.hero-split__inner {
  position: relative;
  padding-top: 110px;
  padding-bottom: 90px;
  display: flex;
  gap: 72px;
  align-items: center;
}
.hero-split__inner--umgekehrt { flex-direction: row-reverse; }
.hero-split__text { flex: 1; }
.hero-split__bild { flex: 1; position: relative; }
.hero-split h1 {
  margin: 18px 0 0;
  font-weight: 300;
  font-size: clamp(38px, 6.5vw, 58px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-split__strich {
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, #89927F, #D6DCCB, #F8F9F3);
  margin: 30px 0 0;
}
.hero-split p {
  margin: 30px 0 0;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(246, 243, 236, 0.75);
  max-width: 480px;
  text-wrap: pretty;
}
.hero-split .zitat {
  margin: 24px 0 0;
  font-weight: 200;
  font-style: italic;
  font-size: 22px;
  color: rgba(246, 243, 236, 0.62);
}

/* ---------- Bilder ---------- */

.bild { display: block; width: 100%; height: 100%; object-fit: cover; }
.bild-rahmen { aspect-ratio: 4 / 3; position: relative; overflow: hidden; }
.bild-rahmen--hoch { aspect-ratio: 3 / 4; }

.portrait-platzhalter {
  aspect-ratio: 3 / 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.portrait-platzhalter--dunkel { border: 1px solid rgba(246, 243, 236, 0.22); }
.portrait-platzhalter--hell { border: 1px solid rgba(38, 42, 33, 0.25); }
.portrait-platzhalter__linie { width: 64px; height: 1px; background: rgba(246, 243, 236, 0.35); }
.portrait-platzhalter--hell .portrait-platzhalter__linie { background: rgba(38, 42, 33, 0.3); }
.portrait-platzhalter__label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gruen-hell);
}
.portrait-platzhalter--hell .portrait-platzhalter__label { color: var(--gruen); }

/* ---------- Sektions-Köpfe ---------- */

.sektion-kopf h2 {
  margin: 16px 0 0;
  font-weight: 300;
  font-size: clamp(26px, 4.5vw, 34px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--creme);
}
.sektion-kopf--hell h2 { color: var(--tinte); }
.sektion-kopf__strich {
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, #89927F, #D6DCCB, #F8F9F3);
  margin: 28px 0 0;
}
.sektion-kopf--hell .sektion-kopf__strich { background: var(--gruen); }

/* ---------- Leistungs-Liste (helle Sektion) ---------- */

.leistungen { background: var(--creme); color: var(--tinte); }
.leistungen__inner { padding-top: 90px; padding-bottom: 100px; }
.leistungen__liste { margin-top: 34px; display: flex; flex-direction: column; }

.leistung {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 40px;
  padding: 30px 0;
  border-bottom: 1px solid var(--linie-hell);
}
.leistung__name {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tinte);
}
.leistung p {
  margin: 8px 0 0;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--tinte-neben);
  max-width: 620px;
  text-wrap: pretty;
}
.leistung__badge {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gruen);
  border: 1px solid rgba(78, 91, 68, 0.4);
  padding: 5px 12px 4px;
  white-space: nowrap;
  flex: none;
}
.leistungen__hinweis {
  margin-top: 26px;
  font-size: 13px;
  font-weight: 300;
  color: var(--tinte-label);
}

/* ---------- Start-Seite ---------- */

.start-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 110px 48px 120px;
}
.start-hero__muster {
  background-size: 1100px auto;
  -webkit-mask-image: radial-gradient(ellipse 58% 85% at 50% 45%, transparent 32%, rgba(0,0,0,0.6) 70%, #000 100%);
  mask-image: radial-gradient(ellipse 58% 85% at 50% 45%, transparent 32%, rgba(0,0,0,0.6) 70%, #000 100%);
}
.start-hero__glanz {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 42%, rgba(94, 110, 80, 0.45) 0%, rgba(47, 56, 35, 0) 55%);
  pointer-events: none;
}
.start-hero__badge {
  position: relative;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gruen-hell);
  border: 1px solid rgba(174, 182, 162, 0.5);
  padding: 10px 22px 9px;
}
.start-hero__logo { height: 330px; position: relative; margin-top: 56px; max-width: 82vw; }
.start-hero__claim {
  position: relative;
  margin: 60px 0 0;
  font-weight: 200;
  font-style: italic;
  font-size: 26px;
  line-height: 1.5;
  color: rgba(246, 243, 236, 0.85);
  max-width: 560px;
}
.start-hero__aktionen {
  position: relative;
  margin-top: 52px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
}

.fakten { background: var(--gruen-dunkel); }
.fakten__grid {
  padding-top: 44px;
  padding-bottom: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  text-align: center;
}
.fakten__wert {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.fakten__label {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gruen-hell);
}

.bereiche-kopf { padding-top: 110px; padding-bottom: 40px; }
.bereiche-kopf h2 {
  margin: 16px 0 0;
  font-weight: 300;
  font-size: clamp(28px, 5vw, 38px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--creme);
}

.bereiche { position: relative; overflow: hidden; }
.bereiche__inner {
  position: relative;
  padding-top: 40px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 88px;
}
.bereich { display: flex; gap: 64px; align-items: center; }
.bereich--umgekehrt { flex-direction: row-reverse; }
.bereich__bild { flex: 1.1; }
.bereich__text { flex: 1; }
.bereich h3 {
  margin: 14px 0 0;
  font-weight: 300;
  font-size: clamp(24px, 4vw, 30px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--creme);
}
.bereich p {
  margin: 20px 0 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(246, 243, 236, 0.75);
  max-width: 440px;
  text-wrap: pretty;
}
.bereich .btn { margin-top: 26px; }

.ritual-highlight { background: var(--creme); color: var(--tinte); }
.ritual-highlight__inner {
  padding-top: 100px;
  padding-bottom: 100px;
  text-align: center;
}
.ritual-highlight__zitat {
  margin: 30px auto 0;
  font-weight: 200;
  font-style: italic;
  font-size: clamp(26px, 4.5vw, 34px);
  line-height: 1.4;
  color: var(--tinte);
  max-width: 620px;
}
.ritual-highlight p:not(.ritual-highlight__zitat) {
  margin: 26px auto 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--tinte-neben);
  max-width: 560px;
  text-wrap: pretty;
}
.ritual-highlight .btn { margin-top: 36px; }

.team-teaser { background: var(--gruen-dunkel); }
.team-teaser__inner {
  padding-top: 72px;
  padding-bottom: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.team-teaser__titel {
  margin-top: 12px;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.team-teaser p {
  margin: 14px 0 0;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(246, 243, 236, 0.62);
  max-width: 520px;
}

/* ---------- Head Spa ---------- */

.intro-grid { background: var(--creme); color: var(--tinte); }
.intro-grid__inner {
  padding-top: 100px;
  padding-bottom: 100px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: start;
}
.intro-grid h2 {
  margin: 16px 0 0;
  font-weight: 300;
  font-size: clamp(26px, 4.5vw, 34px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.25;
}
.intro-grid__strich { width: 72px; height: 1px; background: var(--gruen); margin: 28px 0 0; }
.intro-grid__text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: #33372C;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.intro-grid__text p { margin: 0; text-wrap: pretty; }

.ritual { position: relative; overflow: hidden; }
.ritual__inner { position: relative; padding-top: 110px; padding-bottom: 110px; }
.ritual__ablauf { position: relative; margin-top: 72px; }
.ritual__achse {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(246, 243, 236, 0.14);
}
.ritual__achse-fuellung {
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 0;
  background: linear-gradient(180deg, #89927F 0%, #D6DCCB 55%, #F8F9F3 100%);
}
.ritual__schritte { position: relative; display: flex; flex-direction: column; gap: 28px; }

.ritual-schritt {
  display: grid;
  grid-template-columns: 1fr 96px 1fr;
  align-items: center;
}
.ritual-schritt__punkt {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  width: 11px;
  height: 11px;
  transform: rotate(45deg) scale(0);
  background: var(--gruen);
  border: 1px solid var(--gruen-hell);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), background 0.7s;
}
.ritual-schritt__inhalt {
  grid-row: 1;
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  padding: 6px 0;
}
.ritual-schritt--links .ritual-schritt__inhalt { grid-column: 1; text-align: right; }
.ritual-schritt--rechts .ritual-schritt__inhalt { grid-column: 3; text-align: left; }
.ritual-schritt__nr {
  font-size: 96px;
  font-weight: 200;
  line-height: 1;
  color: rgba(174, 182, 162, 0.26);
}
.ritual-schritt__titel {
  margin-top: -36px;
  font-size: 21px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--creme);
}
.ritual-schritt p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(246, 243, 236, 0.75);
  max-width: 420px;
  text-wrap: pretty;
}
.ritual-schritt--links p { margin: 14px 0 0 auto; }
.ritual-schritt--rechts p { margin: 14px auto 0 0; }

.ritual__dauer {
  text-align: center;
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  padding-top: 12px;
}
.ritual__dauer-zeile { display: inline-flex; align-items: center; gap: 16px; }
.ritual__dauer-linie { width: 40px; height: 1px; background: rgba(246, 243, 236, 0.35); }
.ritual__dauer-text {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gruen-hell);
  padding-left: 0.3em;
}

.split-sektion--dunkel { background: var(--gruen-dunkel); }
.split-sektion__inner {
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  gap: 72px;
  align-items: center;
}
.split-sektion__bild { flex: 1; }
.split-sektion__text { flex: 1; }
.split-sektion h2 {
  margin: 16px 0 0;
  font-weight: 300;
  font-size: clamp(26px, 4.5vw, 34px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.25;
}
.split-sektion__text p {
  margin: 26px 0 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(246, 243, 236, 0.75);
  max-width: 480px;
  text-wrap: pretty;
}
.split-sektion__text p + p { margin-top: 20px; }

.wirkung { background: var(--creme); color: var(--tinte); }
.wirkung__inner { padding-top: 100px; padding-bottom: 100px; }
.wirkung__grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 56px;
}
.wirkung__titel {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gruen);
}
.wirkung__grid p {
  margin: 10px 0 0;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--tinte-neben);
  text-wrap: pretty;
}

.faq { position: relative; overflow: hidden; }
.faq__inner { position: relative; padding-top: 110px; padding-bottom: 110px; }
.faq__liste { margin-top: 40px; display: flex; flex-direction: column; max-width: 860px; }
.faq__eintrag { padding: 28px 0; border-bottom: 1px solid rgba(246, 243, 236, 0.14); }
.faq__frage {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.faq__eintrag p {
  margin: 12px 0 0;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(246, 243, 236, 0.75);
  text-wrap: pretty;
}

/* ---------- Team ---------- */

.team-portrait { background: var(--creme); color: var(--tinte); }
.team-portrait__inner {
  padding-top: 100px;
  padding-bottom: 100px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: center;
}
.team-portrait h2 {
  margin: 14px 0 0;
  font-weight: 300;
  font-size: clamp(28px, 5vw, 38px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.team-portrait__strich { width: 72px; height: 1px; background: var(--gruen); margin: 26px 0 0; }
.team-portrait p {
  margin: 28px 0 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: #33372C;
  max-width: 520px;
  text-wrap: pretty;
}
.team-portrait .btn { margin-top: 26px; }

.team-bald { position: relative; overflow: hidden; }
.team-bald__inner { position: relative; padding-top: 100px; padding-bottom: 120px; }
.team-bald p {
  margin: 22px 0 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(246, 243, 236, 0.75);
  max-width: 560px;
  text-wrap: pretty;
}
.team-bald__grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ---------- Rechtsseiten ---------- */

.rechtsseite { min-height: 100vh; display: flex; flex-direction: column; }
.rechtsseite main { flex: 1; }
.recht__inner { padding-top: 100px; padding-bottom: 120px; }
.recht__inner h1 {
  margin: 18px 0 0;
  font-weight: 300;
  font-size: clamp(32px, 5.5vw, 46px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.recht__strich {
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, #89927F, #D6DCCB, #F8F9F3);
  margin: 28px 0 48px;
}
.recht__text {
  max-width: 640px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(246, 243, 236, 0.85);
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.recht__text p { margin: 0; text-wrap: pretty; }
.recht__label {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gruen-hell);
  margin-bottom: 8px;
}
.recht__hinweis { font-size: 13px; color: rgba(246, 243, 236, 0.5); }

/* ---------- Responsive (neue Komponenten) ---------- */

@media (max-width: 900px) {
  .hero-split__inner,
  .hero-split__inner--umgekehrt,
  .bereich,
  .bereich--umgekehrt,
  .split-sektion__inner {
    flex-direction: column;
    gap: 40px;
  }
  .hero-split__bild,
  .bereich__bild,
  .split-sektion__bild { width: 100%; }
  .hero-split__inner { padding-top: 72px; padding-bottom: 64px; }

  .intro-grid__inner,
  .team-portrait__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .team-portrait__inner .bild-rahmen--hoch,
  .team-portrait__inner .portrait-platzhalter { max-width: 420px; }

  .wirkung__grid { grid-template-columns: 1fr 1fr; }
  .team-bald__grid { grid-template-columns: 1fr 1fr; }

  .fakten__grid { grid-template-columns: 1fr; gap: 28px; padding-top: 36px; padding-bottom: 36px; }

  .start-hero { padding: 72px 24px 80px; }
  .start-hero__logo { height: 240px; }

  .ritual-schritt { grid-template-columns: 40px 1fr; }
  .ritual-schritt__punkt { grid-column: 1; }
  .ritual-schritt--links .ritual-schritt__inhalt,
  .ritual-schritt--rechts .ritual-schritt__inhalt {
    grid-column: 2;
    text-align: left;
  }
  .ritual-schritt--links p { margin: 14px auto 0 0; }
  .ritual__achse, .ritual__achse-fuellung { left: 20px; }
}

@media (max-width: 640px) {
  .wirkung__grid { grid-template-columns: 1fr; }
  .team-bald__grid { grid-template-columns: 1fr; max-width: 320px; }
  .leistung { flex-direction: column; gap: 12px; }
  .start-hero__logo { height: 190px; }
  .start-hero__claim { font-size: 22px; }
  .ritual-schritt__nr { font-size: 72px; }
  .ritual-schritt__titel { margin-top: -26px; }
}

/* ---------- Mobiles Burgermenü ---------- */

.nav__burger {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  flex: none;
  padding: 0;
  background: none;
  border: 1px solid rgba(174, 182, 162, 0.55);
  cursor: pointer;
  z-index: 210;
  transition: border-color 0.3s;
}
.nav__burger:hover { border-color: var(--gruen-hell); }
.nav__burger-linie {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 1px;
  background: var(--creme);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), top 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav__burger-linie:nth-child(1) { top: 18px; }
.nav__burger-linie:nth-child(2) { top: 26px; }
.nav__burger--offen .nav__burger-linie:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav__burger--offen .nav__burger-linie:nth-child(2) { top: 22px; transform: rotate(-45deg); }

.menue {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--gruen-dunkel);
  display: flex;
  flex-direction: column;
  clip-path: circle(0px at calc(100% - 43px) 43px);
  visibility: hidden;
  transition: clip-path 0.75s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.75s;
}
.menue--offen {
  clip-path: circle(150% at calc(100% - 43px) 43px);
  visibility: visible;
  transition: clip-path 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.menue__balken { height: 4px; background: var(--verlauf); flex: none; }

.menue__muster {
  position: absolute;
  inset: 0;
  background-image: url('../assets/muster/muster_hell_auf_transparent.svg');
  background-size: 760px auto;
  opacity: 0.5;
  -webkit-mask-image: radial-gradient(ellipse 75% 90% at 50% 50%, transparent 30%, rgba(0,0,0,0.7) 72%, #000 100%);
  mask-image: radial-gradient(ellipse 75% 90% at 50% 50%, transparent 30%, rgba(0,0,0,0.7) 72%, #000 100%);
  pointer-events: none;
}

.menue__logo {
  position: absolute;
  top: 14px;
  left: 20px;
  height: 46px;
  display: flex;
  align-items: center;
}
.menue__logo img { height: 40px; display: block; }

.menue__liste {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 3.4vh, 30px);
  padding: 76px 24px 12px;
}

.menue__link {
  display: flex;
  align-items: baseline;
  gap: 16px;
  text-decoration: none;
  color: var(--creme);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), color 0.3s;
}
.menue__link:hover { color: #D6DCCB; }
.menue__nr {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: rgba(174, 182, 162, 0.7);
  min-width: 2.4em;
  text-align: right;
}
.menue__label {
  font-size: clamp(26px, 6.5vw, 34px);
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.2;
}
.menue__raute {
  width: 9px;
  height: 9px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, #D6DCCB, #F8F9F3);
  align-self: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.menue__link--aktiv { color: var(--gruen-hell); }
.menue__link--aktiv .menue__raute { opacity: 1; }

.menue--offen .menue__link { opacity: 1; transform: translateY(0); }
.menue--offen .menue__link:nth-child(1) { transition-delay: 0.22s; }
.menue--offen .menue__link:nth-child(2) { transition-delay: 0.29s; }
.menue--offen .menue__link:nth-child(3) { transition-delay: 0.36s; }
.menue--offen .menue__link:nth-child(4) { transition-delay: 0.43s; }
.menue--offen .menue__link:nth-child(5) { transition-delay: 0.5s; }
.menue--offen .menue__link:nth-child(6) { transition-delay: 0.57s; }

.menue__fuss {
  position: relative;
  flex: none;
  text-align: center;
  padding: 0 24px calc(26px + env(safe-area-inset-bottom, 0px));
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.menue--offen .menue__fuss { opacity: 1; transform: translateY(0); transition-delay: 0.64s; }
.menue__linie {
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, #89927F, #D6DCCB, #F8F9F3);
  margin: 0 auto 24px;
}
.menue__zeiten {
  margin-top: 18px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(174, 182, 162, 0.8);
  line-height: 2;
}

body.menue-scrollsperre { overflow: hidden; }

@media (max-width: 900px) {
  .nav__links, .nav__termin { display: none; }
  .nav__burger { display: block; }
}

@media (prefers-reduced-motion: reduce) {
  .menue, .menue__link, .menue__fuss, .nav__burger-linie { transition: none; }
}
