/* =====================================================================
   MAHANA YOGA – Stylesheet
   Gleiche Markenfamilie wie mahana.at, aber sage-forward (Salbeigrün
   auf Creme) statt tannengrün-dominant. Etwas größere Grundschrift,
   weil die Zielgruppe 50+ ist.
   Markenfarben & Typografie laut Marken-Board von Julie Fornara.
   ===================================================================== */

/* --- Lokal eingebundene Schriften (SIL OFL, keine Google-Verbindung) --- */
@font-face { font-family: "Montserrat"; font-style: normal; font-weight: 300; font-display: swap; src: url("assets/fonts/montserrat-300.woff2") format("woff2"); }
@font-face { font-family: "Montserrat"; font-style: normal; font-weight: 400; font-display: swap; src: url("assets/fonts/montserrat-400.woff2") format("woff2"); }
@font-face { font-family: "Montserrat"; font-style: normal; font-weight: 500; font-display: swap; src: url("assets/fonts/montserrat-500.woff2") format("woff2"); }
@font-face { font-family: "Montserrat"; font-style: normal; font-weight: 600; font-display: swap; src: url("assets/fonts/montserrat-600.woff2") format("woff2"); }
@font-face { font-family: "Playfair Display"; font-style: normal; font-weight: 400; font-display: swap; src: url("assets/fonts/playfair-400.woff2") format("woff2"); }
@font-face { font-family: "Playfair Display"; font-style: normal; font-weight: 500; font-display: swap; src: url("assets/fonts/playfair-500.woff2") format("woff2"); }
@font-face { font-family: "Playfair Display"; font-style: normal; font-weight: 600; font-display: swap; src: url("assets/fonts/playfair-600.woff2") format("woff2"); }
@font-face { font-family: "Playfair Display"; font-style: italic; font-weight: 400; font-display: swap; src: url("assets/fonts/playfair-400-italic.woff2") format("woff2"); }

:root {
  /* --- Markenfarben (identisch zu mahana.at) --- */
  --off-white: #F7F5F2;
  --sand:      #E8E1D9;
  --sage:      #A3B18A;   /* Salbeigrün – Leitfarbe der Yoga-Seite */
  --forest:    #344E41;   /* Tannengrün – hier nur für Text/Überschriften (Kontrast) */
  --gold:      #C9A66B;
  --gold-ink:  #C9A66B;  /* aktuell = helles Marken-Gold (Julies Wunsch). Für WCAG-AA-Kontrast hier auf #785F26 stellen. */

  /* --- Abgeleitete Töne --- */
  --ink:        #2B2621;  /* warmes Dunkelbraun für Fließtext */
  --ink-soft:   #605A52;  /* etwas dunkler als Marketing → besserer Kontrast (AA) */
  --sand-line:  #DDD4C9;
  --forest-deep:#2A3F34;
  --sage-deep:  #5F7150;  /* tieferes Salbei für Buttons/Links – weiße Schrift bleibt lesbar (AA) */
  --sage-soft:  #EEF0E7;  /* sehr helle Salbei-Fläche für ruhige Panels */

  /* --- Typografie --- */
  --font-head: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Montserrat", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

  /* --- Layout --- */
  --container: 1160px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 18px 50px -24px rgba(52, 78, 65, 0.28);
  --shadow-sm: 0 8px 24px -16px rgba(52, 78, 65, 0.30);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* =====================================================================
   RESET & BASIS
   ===================================================================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--off-white);
  line-height: 1.72;
  font-size: 1.075rem; /* eine Stufe größer als mahana.at – Zielgruppe 50+ */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }

/* Sichtbarer Tastaturfokus (Barrierefreiheit, WCAG) */
:focus-visible { outline: 3px solid var(--sage-deep); outline-offset: 3px; border-radius: 4px; }
a:focus-visible, .btn:focus-visible { outline-offset: 4px; }

h1, h2, h3 { font-family: var(--font-head); font-weight: 500; line-height: 1.12; color: var(--forest); letter-spacing: .01em; text-wrap: balance; }
.lead { text-wrap: balance; }
.section-intro, .hero-hint, .moment-prompt { text-wrap: pretty; }

h1 { font-size: clamp(2.6rem, 6.5vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); }
h3 { font-size: 1.32rem; letter-spacing: .015em; }

::selection { background: var(--sage); color: #fff; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

.eyebrow {
  font-size: .78rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-ink);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* =====================================================================
   BUTTONS
   ===================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .04em;
  padding: .95rem 1.9rem;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-sm { padding: .6rem 1.3rem; font-size: .88rem; }
.btn-block { width: 100%; }

/* Sage-forward: primäre Aktionen in tiefem Salbei statt Tannengrün */
.btn-primary { background: var(--sage-deep); color: var(--off-white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: #526344; color: #fff; }

.btn-ghost { background: transparent; color: var(--forest); border-color: var(--sage); }
.btn-ghost:hover { border-color: var(--sage-deep); background: var(--sage-soft); }

.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: #b8945a; color: #fff; }

.btn-outline-light { background: transparent; color: var(--off-white); border-color: rgba(247,245,242,.5); }
.btn-outline-light:hover { border-color: var(--off-white); background: rgba(247,245,242,.1); }

/* =====================================================================
   NAVIGATION
   ===================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 1.1rem 0;
  transition: background .35s var(--ease), padding .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header.scrolled {
  background: rgba(247,245,242,.9);
  backdrop-filter: blur(12px);
  padding: .7rem 0;
  box-shadow: 0 1px 0 var(--sand-line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }

/* Wortmarke: MARKETING zentriert unter MAHANA.
   text-indent gleicht den rechten Endabstand des letter-spacing aus,
   damit der sichtbare Text in jeder Zeile mittig sitzt. */
.brand { display: flex; flex-direction: column; align-items: center; line-height: 1; }
.brand-word {
  font-family: var(--font-head);
  font-size: 1.5rem;
  letter-spacing: .34em;
  text-indent: .34em;
  color: var(--forest);
}
.brand-sub {
  font-family: var(--font-body);
  font-size: .62rem;
  letter-spacing: .42em;
  text-indent: .42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: .45rem;
}
.brand-word.light { color: var(--off-white); }
.brand-sub.light { color: var(--gold); }

.nav-list { list-style: none; display: flex; align-items: center; gap: 2.2rem; padding: 0; }
.nav-list a { font-size: .92rem; letter-spacing: .04em; color: var(--ink); font-weight: 500; }
.nav-list a:not(.btn):hover { color: var(--sage-deep); }
.nav-cta a { color: var(--off-white); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--forest); transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative;
  padding: clamp(8rem, 16vh, 12rem) 0 clamp(4rem, 8vh, 7rem);
  overflow: hidden;
}
.hero-decor {
  position: absolute; top: 0; right: -2%; height: 100%; color: var(--sage);
  opacity: .28; pointer-events: none;
}
.hero-decor svg { height: 100%; width: auto; }

.hero-inner {
  display: grid; grid-template-columns: 1.35fr .8fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center; position: relative; z-index: 2;
}
.hero h1 { margin: .3rem 0 1.5rem; }
.lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 50ch; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.6rem; }
.hero-note { font-size: .82rem; letter-spacing: .05em; color: var(--ink-soft); }

/* Portrait */
.portrait-frame {
  position: relative; aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--sand);
  box-shadow: var(--shadow);
}
.portrait-frame::after {
  content: ""; position: absolute; inset: 0;
  border-radius: inherit; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.4);
}
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; }
.portrait-tall { aspect-ratio: 3 / 4; }

.portrait-placeholder {
  display: none;
  position: absolute; inset: 0;
  flex-direction: column; align-items: center; justify-content: center;
  gap: .4rem; text-align: center;
  background: repeating-linear-gradient(135deg, var(--sand), var(--sand) 14px, #ded5c9 14px, #ded5c9 28px);
  color: var(--forest);
}
.portrait-frame.is-placeholder .portrait-placeholder { display: flex; }
.portrait-placeholder span { font-family: var(--font-head); font-size: 1.3rem; }
.portrait-placeholder small { font-size: .72rem; letter-spacing: .08em; color: var(--ink-soft); background: rgba(247,245,242,.8); padding: .2rem .6rem; border-radius: 6px; }

/* =====================================================================
   STATEMENT
   ===================================================================== */
.statement { padding: clamp(3rem, 7vh, 5.5rem) 0; }
.statement-text {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  line-height: 1.4;
  color: var(--forest);
  max-width: 20ch;
  margin-inline: auto;
  text-align: center;
}
.statement-text em { font-style: italic; color: var(--gold-ink); }

/* =====================================================================
   SECTIONS ALLGEMEIN
   ===================================================================== */
.section { padding: clamp(4rem, 9vh, 7rem) 0; }
.section-alt { background: var(--sand); }
.section-head { max-width: 620px; margin-bottom: 3.2rem; }
.section-head h2 { margin-bottom: 1rem; }
.section-intro { color: var(--ink-soft); font-size: 1.08rem; }

/* =====================================================================
   LEISTUNGEN – CARDS
   ===================================================================== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.card {
  background: #fff;
  border: 1px solid var(--sand-line);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card-icon {
  width: 52px; height: 52px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--off-white); color: var(--forest);
  margin-bottom: 1.4rem;
}
.card-icon svg { width: 26px; height: 26px; }
.card:hover .card-icon { background: var(--sage); color: #fff; }
.card h3 { margin-bottom: .6rem; color: var(--forest); }
.card p { color: var(--ink-soft); font-size: .96rem; }

/* =====================================================================
   ABLAUF – STEPS
   ===================================================================== */
.steps { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; counter-reset: step; }
.step { position: relative; padding-top: 1rem; }
.step-num {
  font-family: var(--font-head); font-size: 2.6rem; color: var(--gold-ink);
  display: block; margin-bottom: .6rem; line-height: 1;
}
.step h3 { margin-bottom: .5rem; }
.step p { color: var(--ink-soft); font-size: .95rem; }
.step::before {
  content: ""; position: absolute; top: 1.9rem; left: 3.4rem; right: -1.6rem; height: 1px;
  background: var(--sand-line);
}
.step:last-child::before { display: none; }

/* =====================================================================
   REFERENZEN
   ===================================================================== */
.ref-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.ref-card {
  background: var(--off-white);
  border: 1px solid var(--sand-line);
  border-radius: var(--radius);
  padding: 2rem 1.9rem;
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.ref-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.ref-tag {
  align-self: flex-start;
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--forest); background: var(--sage);
  padding: .3rem .8rem; border-radius: 100px; margin-bottom: 1.2rem;
  font-weight: 600;
}
.ref-card h3 { color: var(--forest); margin-bottom: .7rem; }
.ref-card p { color: var(--ink-soft); font-size: .93rem; }

/* Zwei-Karten-Variante (aktuell) – zentriert, nicht über volle Breite */
.ref-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 780px; margin-inline: auto; }

/* Branchen-Leiste */
.ref-branchen { text-align: center; margin-top: 3.4rem; }
.branchen-label { font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 1.2rem; }
.branchen-list { list-style: none; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem 1rem; }
.branchen-list li {
  font-family: var(--font-head); font-size: 1.05rem; color: var(--forest);
  padding: .5rem 1.4rem; border: 1px solid var(--sand-line); border-radius: 100px;
  background: #fff;
}
.ref-note { text-align: center; margin-top: 2.6rem; color: var(--ink-soft); font-size: .98rem; }
.ref-note a { color: var(--forest); text-decoration: underline; text-underline-offset: 3px; }
.ref-note a:hover { color: var(--gold-ink); }

/* Kundenstimme (Testimonial) – clean & elegant */
.testimonial {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--sand-line);
  border-radius: var(--radius-lg);
  padding: clamp(2.4rem, 5vw, 3.4rem);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.testimonial::before {
  content: ""; display: block; width: 44px; height: 2px; border-radius: 2px;
  background: var(--gold); margin: 0 auto clamp(1.4rem, 3vw, 1.8rem);
}
.testimonial blockquote {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  line-height: 1.55; color: var(--forest);
  margin: 0 0 1.8rem;
}
.testimonial figcaption { display: flex; flex-direction: column; align-items: center; gap: 1.1rem; }
.testimonial-author { line-height: 1.5; }
.testimonial-author strong { display: block; color: var(--ink); font-weight: 600; letter-spacing: .02em; }
.testimonial-author span { font-size: .86rem; color: var(--ink-soft); }
.testimonial-logos { display: flex; align-items: center; justify-content: center; gap: 1.4rem; flex-wrap: wrap; padding-top: 1.1rem; border-top: 1px solid var(--sand-line); width: 100%; }
.testimonial-logos img { height: 42px; width: auto; object-fit: contain; opacity: .9; }
.logo-divider { width: 1px; height: 30px; background: var(--sand-line); }

.ref-scope { text-align: center; max-width: 640px; margin: 2rem auto 0; color: var(--ink-soft); font-size: 1rem; }
.ref-scope strong { color: var(--forest); font-weight: 600; }

/* =====================================================================
   ÜBER MICH
   ===================================================================== */
.about-inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about-text h2 { margin-bottom: 1.3rem; }
.about-text p { color: var(--ink-soft); margin-bottom: 1.1rem; }
.about-list { list-style: none; padding: 0; margin: 1.5rem 0 2rem; }
.about-list li { position: relative; padding-left: 1.9rem; margin-bottom: .8rem; color: var(--ink); }
.about-list li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold);
}

/* =====================================================================
   CTA BAND (dunkel)
   ===================================================================== */
/* Salbei #a3b18a (Marken-Grün Yoga) statt dunklem Waldgrün.
   Dunkles Grün nur noch als Textfarbe (Akzent). */
.cta-band {
  background: #A3B18A;
  color: var(--ink);
  padding: clamp(4rem, 9vh, 6.5rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 82% -12%, rgba(255,255,255,.4), transparent 46%);
}
.cta-band > .container { position: relative; z-index: 2; }
.cta-band h2 { color: var(--forest); margin-bottom: 1rem; }
.cta-band p { color: var(--ink); max-width: 46ch; margin: 0 auto 2.2rem; font-size: 1.1rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
/* Buttons auf hellem Salbei lesbar halten */
.cta-band .btn-ghost { border-color: var(--forest); color: var(--forest); }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,.28); border-color: var(--forest); }

/* =====================================================================
   KONTAKT
   ===================================================================== */
.contact-inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.contact-details { list-style: none; padding: 0; margin-top: 2.4rem; }
.contact-details li { margin-bottom: 1.5rem; }
.contact-label { display: block; font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-ink); font-weight: 600; margin-bottom: .25rem; }
.contact-details a:hover { color: var(--gold-ink); }

.contact-next { margin-top: 2.6rem; padding: 1.6rem 1.7rem; background: var(--sage-soft); border-radius: var(--radius-lg); }
.cn-title { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--sage-deep); font-weight: 700; margin: 0 0 1rem; }
.cn-steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.cn-steps li { display: grid; grid-template-columns: 1.9rem 1fr; align-items: start; gap: .8rem; color: var(--ink-soft); line-height: 1.55; }
.cn-steps li span { display: grid; place-items: center; width: 1.9rem; height: 1.9rem; border-radius: 50%; background: var(--sage-deep); color: #fff; font-weight: 700; font-size: .95rem; }

.contact-form {
  background: #fff; border: 1px solid var(--sand-line);
  border-radius: var(--radius-lg); padding: clamp(1.8rem, 4vw, 2.8rem);
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 1.3rem; display: flex; flex-direction: column; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.field label { font-size: .82rem; letter-spacing: .06em; font-weight: 500; margin-bottom: .5rem; color: var(--ink); }
.field input, .field textarea {
  font-family: var(--font-body); font-size: .98rem; color: var(--ink);
  background: var(--off-white);
  border: 1.5px solid var(--sand-line); border-radius: 10px;
  padding: .85rem 1rem; transition: border-color .25s var(--ease), background .25s var(--ease);
  width: 100%; resize: vertical;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--sage); background: #fff;
  box-shadow: 0 0 0 4px rgba(163,177,138,.18);
}
.consent { display: flex; gap: .7rem; align-items: flex-start; font-size: .84rem; color: var(--ink-soft); margin-bottom: 1.5rem; line-height: 1.5; cursor: pointer; }
.consent input { margin-top: .25rem; accent-color: var(--forest); width: 16px; height: 16px; flex-shrink: 0; }
.consent a { color: var(--forest); text-decoration: underline; }
.form-hint { font-size: .78rem; color: var(--ink-soft); margin-top: .9rem; text-align: center; }
.hp-field { position: absolute; left: -9999px; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { background: var(--forest-deep); color: rgba(247,245,242,.85); padding: clamp(3rem, 6vh, 4.5rem) 0 2rem; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; align-items: start; }
.footer-brand p { font-size: .9rem; color: rgba(247,245,242,.6); margin-top: 1rem; max-width: 28ch; }
.footer-nav { display: flex; flex-direction: column; gap: .7rem; }
.footer-nav a { font-size: .92rem; color: rgba(247,245,242,.8); }
.footer-nav a:hover { color: var(--gold); }
.footer-meta { font-size: .88rem; color: rgba(247,245,242,.6); }
.footer-meta p { margin-bottom: .4rem; }
.footer-meta a:hover { color: var(--gold); }
.footer-inner + * { margin-top: 2rem; }

/* =====================================================================
   WHATSAPP FAB
   ===================================================================== */
.whatsapp-fab {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px -8px rgba(37,211,102,.6);
  transition: transform .3s var(--ease);
}
.whatsapp-fab svg { width: 30px; height: 30px; }
.whatsapp-fab:hover { transform: scale(1.08); }

/* =====================================================================
   SCROLL REVEAL
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* =====================================================================
   SCROLL-FORTSCHRITT (feine Linie oben)
   ===================================================================== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--sage));
  z-index: 200; will-change: width;
}

/* =====================================================================
   LAUFBAND (Kompetenzen)
   ===================================================================== */
.marquee {
  overflow: hidden;
  background: var(--off-white);
  border-top: 1px solid var(--sand-line);
  border-bottom: 1px solid var(--sand-line);
  padding: 1.7rem 0;
}
.marquee-track {
  display: flex; align-items: center; gap: 1.7rem;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span {
  font-family: var(--font-head); font-weight: 500;
  font-size: clamp(1.15rem, 2.4vw, 1.7rem);
  color: var(--forest); white-space: nowrap;
}
.marquee i { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex: 0 0 auto; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =====================================================================
   HERO-ZWEIG: zeichnet sich selbst
   ===================================================================== */
.hero-branch path { stroke-dasharray: 1; stroke-dashoffset: 1; animation: draw 2.6s var(--ease) forwards; }
.hero-branch > path { animation-delay: .25s; }
.hero-branch g path:nth-child(1) { animation-delay: .9s; }
.hero-branch g path:nth-child(2) { animation-delay: 1.05s; }
.hero-branch g path:nth-child(3) { animation-delay: 1.2s; }
.hero-branch g path:nth-child(4) { animation-delay: 1.35s; }
.hero-branch g path:nth-child(5) { animation-delay: 1.5s; }
@keyframes draw { to { stroke-dashoffset: 0; } }

.hero-decor { will-change: transform; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 940px) {
  .cards, .ref-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step::before { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { max-width: 380px; }
  .about-inner { grid-template-columns: 1fr; }
  .about-media { max-width: 400px; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav .nav-list {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px);
    background: var(--off-white); flex-direction: column; align-items: flex-start;
    justify-content: center; gap: 1.8rem; padding: 2rem 2.4rem;
    transform: translateX(100%); transition: transform .4s var(--ease);
    box-shadow: -20px 0 50px -20px rgba(0,0,0,.25);
  }
  .nav .nav-list.open { transform: translateX(0); }
  .nav-list a { font-size: 1.1rem; }
  .nav-toggle { display: flex; z-index: 110; }
  .cards, .ref-grid, .steps { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-decor { opacity: .12; height: 260px; top: 5rem; right: -20px; left: auto; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; }
  .section { padding: 2.75rem 0; }
  .statement { padding: 2.75rem 0; }
}

/* =====================================================================
   REDUCED MOTION
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .card:hover, .ref-card:hover, .whatsapp-fab:hover { transform: none; }
  .marquee-track { animation: none; }
  .hero-branch path { animation: none; stroke-dashoffset: 0; }
  .hero-decor { transform: none !important; }
}

/* =====================================================================
   UNTERSEITEN – gemeinsame Bausteine
   ===================================================================== */

/* Aktiver Navigationslink */
.nav-list a[aria-current="page"] { color: var(--sage-deep); }

/* Sub-Hero (kleiner als Startseiten-Hero) */
.subhero {
  padding: clamp(7rem, 15vh, 10rem) 0 clamp(2.5rem, 5vh, 4rem);
  background: var(--sand);
  position: relative;
}
.subhero .container { max-width: var(--container); }
.subhero h1 { margin: .4rem 0 1rem; }
.subhero .lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 60ch; }

/* Breadcrumb – visuell ausgeblendet (bleibt als JSON-LD fürs SEO erhalten) */
.breadcrumb { display: none; }
.breadcrumb-x { font-size: .82rem; color: var(--ink-soft); margin-bottom: 1rem; letter-spacing: .02em; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; padding: 0; }
.breadcrumb li::after { content: "›"; margin-left: .4rem; color: var(--sand-line); }
.breadcrumb li:last-child::after { content: ""; }
.breadcrumb a { color: var(--ink-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-ink); }
.breadcrumb [aria-current="page"] { color: var(--forest); }

/* Lesbarer Textbereich */
.prose { max-width: 760px; }
.prose p { color: var(--ink-soft); margin-bottom: 1.2rem; font-size: 1.05rem; }
.prose h2 { margin: 2.6rem 0 1rem; }
.prose h3 { color: var(--forest); margin: 1.8rem 0 .6rem; font-size: 1.2rem; }
.prose ul { padding-left: 0; list-style: none; margin: 0 0 1.4rem; }
.prose ul li { position: relative; padding-left: 1.8rem; margin-bottom: .7rem; color: var(--ink); }
.prose ul li::before { content: ""; position: absolute; left: 0; top: .55em; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); }
.prose strong { color: var(--forest); }

/* Zwei-Spalten Inhalt (Text + Aside) */
.split { display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.aside-card { background: var(--off-white); border: 1px solid var(--sand-line); border-radius: var(--radius); padding: 1.8rem; position: sticky; top: 6rem; }
.aside-card h3 { color: var(--forest); margin-bottom: .8rem; font-size: 1.1rem; }
.aside-card ul { list-style: none; padding: 0; }
.aside-card li { padding: .45rem 0; border-bottom: 1px solid var(--sand-line); font-size: .95rem; color: var(--ink-soft); }
.aside-card li:last-child { border-bottom: 0; }

/* Feature-/Leistungsraster als Links */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
a.card { text-decoration: none; display: block; color: inherit; }
a.card .card-more { color: var(--gold); font-size: .9rem; font-weight: 600; margin-top: 1rem; display: inline-flex; align-items: center; gap: .35rem; }

/* FAQ (native details/summary) */
.faq { max-width: 780px; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--sand-line); padding: .4rem 0; }
.faq summary {
  cursor: pointer; display: block; list-style: none; padding: 1.1rem 2.5rem 1.1rem 0; position: relative;
  font-family: var(--font-head); font-size: 1.15rem; color: var(--forest);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::marker { content: ""; }
.faq details p { margin-left: 0; padding-left: 0; }
.faq summary::after {
  content: "+"; position: absolute; right: .4rem; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--gold-ink); transition: transform .3s var(--ease);
}
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--ink-soft); padding: 0 0 1.2rem; max-width: 68ch; }

/* Info-/Statistik-Reihe */
.facts { display: flex; flex-wrap: wrap; gap: 2.5rem; justify-content: center; text-align: center; }
.fact strong { display: block; font-family: var(--font-head); font-size: 2.4rem; color: var(--gold); line-height: 1; }
.fact span { font-size: .9rem; color: var(--ink-soft); letter-spacing: .04em; }

/* Größerer Footer mit Spalten */
.footer-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 2.5rem; }
.footer-col h4 { font-family: var(--font-body); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; font-weight: 600; }
.footer-col a, .footer-col p { display: block; font-size: .92rem; color: rgba(247,245,242,.8); margin-bottom: .6rem; }
.footer-col a:hover { color: var(--gold); }
.footer-col address { font-style: normal; }
.footer-bottom { border-top: 1px solid rgba(247,245,242,.12); margin-top: 2.5rem; padding-top: 1.5rem; display: flex; flex-wrap: wrap; gap: .8rem 1.5rem; justify-content: space-between; font-size: .85rem; color: rgba(247,245,242,.6); }
.footer-bottom a:hover { color: var(--gold); }

@media (max-width: 940px) {
  .split { grid-template-columns: 1fr; }
  .aside-card { position: static; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .svc-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; gap: 2rem; }
  .facts { gap: 1.6rem; }
}

/* =====================================================================
   NAVIGATION – Untermenü (Dropdown)
   ===================================================================== */
.has-submenu { position: relative; }
.submenu-toggle { display: none; }

.nav-list .submenu {
  position: absolute; top: 100%; left: 0;
  min-width: 240px; margin: 0; padding: .5rem;
  list-style: none; background: var(--off-white);
  border: 1px solid var(--sand-line); border-radius: 12px;
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  z-index: 130;
}
.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-list .submenu a {
  display: block; padding: .6rem .9rem; border-radius: 8px;
  font-size: .9rem; color: var(--ink); white-space: nowrap;
}
.nav-list .submenu a:hover { background: var(--sand); color: var(--forest); }

/* =====================================================================
   MOBILES MENÜ – Fix & Untermenü
   ===================================================================== */
@media (max-width: 640px) {
  /* Kein backdrop-filter im mobilen Header: sonst wird das fixierte
     Off-Canvas-Menü eingeklemmt (transparent / abgeschnitten beim Scrollen). */
  .site-header.scrolled {
    -webkit-backdrop-filter: none; backdrop-filter: none;
    background-color: #F7F5F2;
  }
  .nav .nav-list { z-index: 105; overflow-y: auto; }

  .nav-list .has-submenu { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem; width: 100%; }
  .submenu-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 30px; height: 30px; border-radius: 8px;
    border: 1px solid var(--sand-line); background: #fff; color: var(--forest);
    font-size: 1.25rem; line-height: 1; cursor: pointer; padding: 0;
  }
  .submenu-toggle[aria-expanded="true"] { background: var(--sage); color: #fff; border-color: var(--sage); }
  .submenu-toggle .chev { width: 15px; height: 15px; transition: transform .3s var(--ease); }
  .submenu-toggle[aria-expanded="true"] .chev { transform: rotate(180deg); }

  .nav-list .submenu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; background: transparent;
    padding: .2rem 0 .4rem .4rem; min-width: 0; flex-basis: 100%;
    display: none;
  }
  .nav-list .has-submenu.subopen .submenu { display: block; }
  .nav-list .submenu a { font-size: 1rem; color: var(--ink-soft); padding: .45rem 0; white-space: normal; }
}

/* =====================================================================
   PAIN-SEKTION (Probleme plakativ ansprechen)
   ===================================================================== */
.pain { background: var(--forest); color: var(--off-white); }
.pain .eyebrow { color: var(--gold); }
.pain h2 { color: var(--off-white); }
.pain-lead { color: rgba(247,245,242,.85); max-width: 46ch; font-size: 1.1rem; margin-bottom: 2.6rem; }
.pain-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem 1.8rem; max-width: 820px; }
.pain-item { display: flex; gap: .9rem; align-items: flex-start; }
.pain-item svg { flex: 0 0 auto; width: 22px; height: 22px; color: var(--gold); margin-top: .2rem; }
.pain-item p { color: rgba(247,245,242,.9); font-size: 1.02rem; }
.pain-turn { margin-top: 2.8rem; font-family: var(--font-head); font-size: clamp(1.3rem,2.6vw,1.7rem); color: var(--off-white); }
.pain-turn em { color: var(--gold); font-style: italic; }

/* =====================================================================
   DEVICE-MOCKUPS
   ===================================================================== */
.mockups-row { display: flex; flex-wrap: wrap; gap: 2rem; align-items: center; justify-content: center; }
.mockup-ph { display: flex; flex-direction: column; align-items: center; gap: .8rem; }
.mockup-caption { font-size: .85rem; color: var(--ink-soft); letter-spacing: .02em; text-align: center; }

.mockup-phone {
  position: relative; width: clamp(190px, 48vw, 230px); aspect-ratio: 9 / 19;
  background: var(--forest-deep); border-radius: 32px; padding: 9px;
  box-shadow: var(--shadow);
}
.mockup-phone .screen { position: relative; width: 100%; height: 100%; border-radius: 24px; overflow: hidden; background: var(--sand); }
.mockup-phone .screen img { width: 100%; height: 100%; object-fit: cover; display: block; }

.mockup-browser {
  width: min(560px, 100%); border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow); background: #fff; border: 1px solid var(--sand-line);
}
.mockup-browser .bar { height: 36px; background: var(--sand); display: flex; align-items: center; gap: 7px; padding: 0 14px; }
.mockup-browser .bar i { width: 10px; height: 10px; border-radius: 50%; background: #cbbfa8; display: inline-block; }
.mockup-browser .screen { aspect-ratio: 16 / 10; background: var(--off-white); position: relative; }
.mockup-browser .screen img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }

/* Platzhalter, solange kein Screenshot vorhanden */
.mockup-phone .screen img, .mockup-browser .screen img { position: absolute; inset: 0; z-index: 1; }
.mockup-holder {
  position: absolute; inset: 0; z-index: 0; display: grid; place-items: center; text-align: center;
  font-size: .78rem; color: var(--ink-soft); padding: .5rem;
  background: repeating-linear-gradient(135deg, var(--sand), var(--sand) 12px, #ded5c9 12px, #ded5c9 24px);
}
.mockup-holder small { display: block; opacity: .7; margin-top: .2rem; font-size: .68rem; }

/* =====================================================================
   CASE-KARTEN (Referenzen – neues Konzept)
   ===================================================================== */
.cases { display: grid; gap: 2.2rem; }
.case-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  background: #fff; border: 1px solid var(--sand-line); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.6rem); box-shadow: var(--shadow-sm);
}
.case-card:nth-child(even) .case-visual { order: 2; }
.case-visual { display: flex; justify-content: center; }
.case-tag {
  align-self: flex-start; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--forest); background: var(--sage); padding: .3rem .8rem; border-radius: 100px; font-weight: 600;
}
.case-body h3 { color: var(--forest); margin: 1rem 0 .8rem; font-size: 1.5rem; }
.case-body .case-block { margin-bottom: .9rem; }
.case-body .case-block strong { display: block; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: .2rem; }
.case-body .case-block span { color: var(--ink-soft); font-size: .98rem; }
.case-result { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--sand-line); font-family: var(--font-head); color: var(--forest); font-size: 1.1rem; }
.case-logos { display: flex; flex-direction: column; gap: 1.6rem; align-items: center; justify-content: center; background: var(--off-white); border: 1px solid var(--sand-line); border-radius: var(--radius); padding: 2.2rem 1.5rem; width: 100%; }
.case-logos img { max-height: 66px; max-width: 78%; width: auto; object-fit: contain; }

/* =====================================================================
   ÜBER MICH – Fotogalerie & Kompetenz
   ===================================================================== */
.about-gallery { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 150px; gap: 1rem; }
.about-gallery figure { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--sand); box-shadow: var(--shadow-sm); }
.about-gallery img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-gallery .tall { grid-row: span 2; }
.about-gallery .wide { grid-column: span 2; }
.gallery-ph { display: grid; place-items: center; height: 100%; font-size: .78rem; color: var(--ink-soft); text-align: center; padding: .5rem;
  background: repeating-linear-gradient(135deg, var(--sand), var(--sand) 12px, #ded5c9 12px, #ded5c9 24px); }

.credentials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin: 2rem 0; }
.cred { background: var(--off-white); border: 1px solid var(--sand-line); border-radius: var(--radius); padding: 1.3rem; }
.cred strong { display: block; font-family: var(--font-head); color: var(--forest); font-size: 1.05rem; margin-bottom: .3rem; }
.cred span { font-size: .9rem; color: var(--ink-soft); }

/* =====================================================================
   PREIS-HINWEIS
   ===================================================================== */
.price-note {
  background: var(--sand); border-radius: var(--radius); padding: 1.3rem 1.5rem;
  margin: 1.6rem 0; border-left: 3px solid var(--gold);
}
.price-note strong { color: var(--forest); }
.price-note span { color: var(--ink-soft); display: block; font-size: .97rem; margin-top: .2rem; }

@media (max-width: 780px) {
  .pain-grid { grid-template-columns: 1fr; }
  .case-card { grid-template-columns: 1fr; }
  .case-card:nth-child(even) .case-visual { order: 0; }
  .credentials { grid-template-columns: 1fr; }
  .about-gallery { grid-template-columns: repeat(2, 1fr); }
}

/* =====================================================================
   CHARAKTER-GALERIE (Über mich – Persönlichkeit)
   ===================================================================== */
.char-grid { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; max-width: 920px; margin-inline: auto; }
.char-card {
  position: relative; z-index: 1; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 3 / 4; background: var(--sand); box-shadow: var(--shadow-sm);
}
.char-card img { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .9s var(--ease); }

/* Animierte Verbindungslinie, zieht sich beim Scrollen von Bild zu Bild */
.char-line { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; pointer-events: none; overflow: visible; }
.char-line path { fill: none; stroke: var(--gold); stroke-width: 2.5; stroke-linecap: round; stroke-dasharray: 1; stroke-dashoffset: 1; }
.char-grid.in .char-line path { stroke-dashoffset: 0; transition: stroke-dashoffset 2.4s var(--ease) .2s; }
.char-card:hover img, .char-card:focus-within img { transform: scale(1.07); }

/* Overlay mit Aussage – erscheint beim Hover / Fokus */
.char-ov {
  position: absolute; inset: 0; z-index: 2; display: flex; align-items: flex-end; padding: 1.5rem;
  background: linear-gradient(to top, rgba(42,63,52,.92) 0%, rgba(42,63,52,.4) 55%, rgba(42,63,52,0) 100%);
  opacity: 0; transition: opacity .45s var(--ease);
}
.char-card:hover .char-ov, .char-card:focus-within .char-ov { opacity: 1; }
.char-ov p {
  margin: 0; color: var(--off-white); font-family: var(--font-head); font-size: 1.2rem; line-height: 1.35;
  transform: translateY(14px); transition: transform .45s var(--ease);
}
.char-card:hover .char-ov p, .char-card:focus-within .char-ov p { transform: none; }

/* dezenter „+"-Hinweis, dass es etwas zu entdecken gibt */
.char-hint {
  position: absolute; top: .8rem; right: .8rem; z-index: 3; width: 30px; height: 30px; border-radius: 50%;
  background: rgba(247,245,242,.85); color: var(--forest); display: grid; place-items: center;
  font-size: 1.2rem; line-height: 1; transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.char-card:hover .char-hint, .char-card:focus-within .char-hint { opacity: 0; transform: scale(.6); }

/* Touch-Geräte (kein Hover): Aussage dauerhaft sichtbar */
@media (hover: none) {
  .char-ov { opacity: 1; }
  .char-ov p { transform: none; }
  .char-hint { display: none; }
}

/* Fakten-Leiste (Ausbildung & Erfahrung) */
.factstrip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--sand-line); border: 1px solid var(--sand-line); border-radius: var(--radius); overflow: hidden; }
.factstrip .f { background: var(--off-white); padding: 1.6rem 1.2rem; text-align: center; }
.factstrip .f strong { display: block; font-family: var(--font-head); font-size: 1.9rem; color: var(--gold); line-height: 1; margin-bottom: .4rem; }
.factstrip .f span { font-size: .88rem; color: var(--ink-soft); }

/* USP-Karten */
.usp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.usp { background: #fff; border: 1px solid var(--sand-line); border-radius: var(--radius); padding: 1.6rem; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.usp:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.usp h3 { font-size: 1.08rem; margin-bottom: .5rem; }
.usp p { font-size: .93rem; color: var(--ink-soft); }

/* Subtile Akzent-Animation für Überschriften auf Unterseiten */
.prose h2 { position: relative; padding-bottom: .5rem; }
.prose h2::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--gold); transition: width .8s var(--ease); }
.prose h2.in::after, .reveal.in .prose h2::after, .in .prose h2::after { width: 42px; }
.prose h2::after { width: 42px; }

@media (max-width: 820px) {
  .char-grid { grid-template-columns: repeat(3, 1fr); max-width: 520px; }
  .char-line { display: none; }
  .factstrip { grid-template-columns: repeat(2, 1fr); }
  .usp-grid { grid-template-columns: 1fr; }
}
@media (max-width: 460px) {
  .char-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =====================================================================
   LEISTUNGSSEITEN – Feature-Karten & Akzente
   ===================================================================== */
.svc-hero { position: relative; overflow: hidden; }
.svc-hero .svc-decor { position: absolute; top: 50%; right: -40px; transform: translateY(-50%); color: var(--sage); opacity: .22; pointer-events: none; }
.svc-hero .svc-decor svg { width: 200px; height: 200px; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.feature {
  background: #fff; border: 1px solid var(--sand-line); border-radius: var(--radius);
  padding: 1.6rem 1.5rem; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.feature .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--off-white); color: var(--forest); display: grid; place-items: center; margin-bottom: 1rem; transition: background .4s var(--ease), color .4s var(--ease); }
.feature:hover .ic { background: var(--sage); color: #fff; }
.feature .ic svg { width: 24px; height: 24px; }
.feature h3 { font-size: 1.08rem; color: var(--forest); margin-bottom: .4rem; }
.feature p { font-size: .93rem; color: var(--ink-soft); margin: 0; }

/* Reveal-Varianten: von der Seite + Skalierung, gestaffelt via JS */
.reveal-left { opacity: 0; transform: translateX(-26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-left.in { opacity: 1; transform: none; }
.reveal-scale { opacity: 0; transform: scale(.94); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-scale.in { opacity: 1; transform: none; }

/* Aussage-Sektion (Approach) – ruhiges Statement-Panel im Marken-Look */
.svc-statement { background: var(--sand); color: var(--forest); border-radius: var(--radius-lg); position: relative;
  padding: clamp(2.2rem,5vw,3.4rem) clamp(1.6rem,4vw,3rem); text-align: center; }
.svc-statement::before { content: ""; display: block; width: 44px; height: 2px; border-radius: 2px;
  background: var(--gold); margin: 0 auto clamp(1rem,2vw,1.4rem); }
.svc-statement .eyebrow { color: var(--gold); }
.svc-statement p { font-family: var(--font-head); font-style: normal; font-size: clamp(1.4rem, 2.8vw, 2rem);
  line-height: 1.4; color: var(--forest); max-width: 32ch; margin-inline: auto; }

@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .feature-grid { grid-template-columns: 1fr; } .svc-hero .svc-decor { display: none; } }

/* =====================================================================
   WIEDERKEHRENDES STRICHE-MOTIV (Linie zeichnet sich beim Scrollen)
   Aufgegriffen vom Hero-Zweig – als feiner Trenner zwischen Sektionen.
   ===================================================================== */
.stroke-divider { display: flex; justify-content: center; padding: clamp(1.6rem, 4vh, 3rem) 0; }
.stroke-divider svg { display: block; width: 180px; height: 34px; overflow: visible; color: var(--sage); }
/* feine botanische Sprig: waagrechte Linie zeichnet sich, zwei kleine Blätter erscheinen */
.stroke-divider .ln { fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round;
  stroke-dasharray: 1; stroke-dashoffset: 1; }
.stroke-divider .leaf { fill: var(--gold); stroke: none; opacity: 0; transform-box: fill-box; transform-origin: center; transform: scale(.3); }
.stroke-divider.in .ln { transition: stroke-dashoffset 1.9s var(--ease); stroke-dashoffset: 0; }
.stroke-divider.in .leaf { transition: opacity .6s var(--ease) 1.15s, transform .6s var(--ease) 1.15s; opacity: 1; transform: scale(1); }

/* =====================================================================
   LEISTUNGSSEITEN – SHOWCASE (Checkliste links + sticky Mockup rechts)
   ===================================================================== */
/* Rechte Spalte fix & gerätegerecht schmal, links bekommt den ganzen Rest → kein Riesen-Leerraum mehr */
.showcase-grid { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: clamp(1.8rem, 4vw, 3.2rem); align-items: center; }
.showcase-points { max-width: 680px; }
.showcase-points h2 { margin-bottom: 1.1rem; }
.showcase-points .price-note { margin: 1.4rem 0; }

.tick-list { list-style: none; padding: 0; margin: 0 0 1.4rem; display: grid; gap: .7rem; }
.tick-list li { display: grid; grid-template-columns: 24px 1fr; gap: .8rem; align-items: start; }
.tick-list .tick {
  width: 24px; height: 24px; border-radius: 50%; background: var(--sage); color: #fff;
  display: grid; place-items: center; flex: 0 0 auto; margin-top: .1rem;
}
.tick-list .tick svg { width: 13px; height: 13px; }
.tick-list strong { color: var(--forest); font-weight: 600; }
.tick-list p { color: var(--ink-soft); font-size: .9rem; line-height: 1.5; margin: .1rem 0 0; }

.showcase-visual { position: sticky; top: 92px; text-align: center; }
.device-stage { position: relative; display: grid; place-items: center; min-height: 440px; width: 100%; }
.device-cap { display: inline-block; text-align: center; margin-top: 1.4rem; max-width: 340px; font-size: .86rem; color: var(--ink-soft); letter-spacing: .03em; }
.device-cap strong { color: var(--forest); font-weight: 600; }

/* --- Gemeinsamer „glüht dezent"-Hintergrund hinter den Mockups --- */
.device-stage::before {
  content: ""; position: absolute; inset: -6% 4%; z-index: 0; border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, rgba(163,177,138,.35), transparent 62%);
  filter: blur(6px);
}
.device-stage > * { position: relative; z-index: 1; }

/* ---------- 1) SOCIAL – Handy mit laufendem Feed ---------- */
.dv-phone {
  width: clamp(220px, 74%, 258px); aspect-ratio: 9 / 19;
  background: #14211b; border-radius: 34px; padding: 9px;
  box-shadow: var(--shadow), inset 0 0 0 2px rgba(201,166,107,.25);
}
.dv-phone-screen { position: relative; width: 100%; height: 100%; border-radius: 26px; overflow: hidden; background: var(--off-white); display: flex; flex-direction: column; }
.dv-phone::after { /* Notch */ content: ""; position: absolute; top: 15px; left: 50%; transform: translateX(-50%); width: 58px; height: 5px; border-radius: 5px; background: rgba(247,245,242,.35); z-index: 6; }
.dv-ig-top { display: flex; align-items: center; gap: .5rem; padding: 1.1rem .7rem .5rem; background: var(--off-white); z-index: 4; }
.dv-ig-ava { width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--sage)); flex: 0 0 auto; box-shadow: 0 0 0 2px #fff, 0 0 0 3.5px var(--gold); }
.dv-ig-name { font-size: .68rem; font-weight: 600; color: var(--forest); letter-spacing: .02em; }
.dv-ig-live { margin-left: auto; width: 6px; height: 6px; border-radius: 50%; background: var(--sage); box-shadow: 0 0 0 0 rgba(163,177,138,.6); animation: dv-pulse 2.4s ease-out infinite; }
.dv-swipe-wrap { position: relative; flex: 1; overflow: hidden; }
.dv-swipe { display: flex; width: 700%; height: 100%; animation: dv-swipe 21s var(--ease) infinite; }
.device-stage:hover .dv-swipe { animation-play-state: paused; }
.dv-slide { flex: 0 0 14.2857%; height: 100%; position: relative; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .4rem; text-align: center; padding: 1rem; color: #fff; }
.dv-slide .dv-desc { font-size: .68rem; line-height: 1.45; opacity: .92; max-width: 88%; margin-top: .15rem; }
.dv-slide.g1 { background: linear-gradient(150deg, var(--sage), var(--forest)); }
.dv-slide.g2 { background: linear-gradient(150deg, var(--gold), #b8945a); }
.dv-slide.g3 { background: linear-gradient(150deg, var(--forest), var(--forest-deep)); }
.dv-slide.g4 { background: linear-gradient(150deg, #b0bd97, var(--sage)); }
.dv-slide .dv-ic { width: 30px; height: 30px; opacity: .92; margin-bottom: .2rem; }
.dv-slide .dv-kw { font-family: var(--font-head); font-size: 1.2rem; line-height: 1.15; }
.dv-slide .dv-kw-sub { font-size: .55rem; letter-spacing: .24em; text-transform: uppercase; opacity: .85; }
.dv-dots { position: absolute; bottom: 8px; left: 0; right: 0; display: flex; justify-content: center; gap: 5px; z-index: 3; }
.dv-dots i { width: 5px; height: 5px; border-radius: 50%; background: var(--forest); opacity: .22; }
.dv-ig-tab { display: flex; justify-content: space-around; align-items: center; padding: .5rem 0 .7rem; background: #fff; border-top: 1px solid var(--sand-line); z-index: 4; }
.dv-ig-tab i { width: 15px; height: 15px; border-radius: 4px; border: 1.7px solid var(--ink-soft); opacity: .55; }
.dv-ig-tab i:first-child { background: var(--forest); border-color: var(--forest); opacity: 1; }
@keyframes dv-swipe {
  0%, 11% { transform: translateX(0); }
  13.5%, 24.5% { transform: translateX(-14.2857%); }
  27%, 38% { transform: translateX(-28.5714%); }
  40.5%, 51.5% { transform: translateX(-42.8571%); }
  54%, 65% { transform: translateX(-57.1428%); }
  67.5%, 78.5% { transform: translateX(-71.4285%); }
  81%, 100% { transform: translateX(-85.7142%); }
}
@keyframes dv-pulse { 0% { box-shadow: 0 0 0 0 rgba(163,177,138,.55); } 70%, 100% { box-shadow: 0 0 0 7px rgba(163,177,138,0); } }

/* ---------- 2) WEBSITE – Browser: Keywords erscheinen beim Runterscrollen ---------- */
.dv-browser { width: min(430px, 100%); border-radius: 14px; overflow: hidden; background: #fff; border: 1px solid var(--sand-line); box-shadow: var(--shadow); }
.dv-browser-bar { height: 34px; background: var(--sand); display: flex; align-items: center; gap: 6px; padding: 0 12px; }
.dv-browser-bar i { width: 9px; height: 9px; border-radius: 50%; background: #cbbfa8; }
.dv-url { margin-left: 10px; font-size: .64rem; color: var(--ink-soft); background: #fff; border-radius: 20px; padding: .18rem .8rem; letter-spacing: .04em; }
.dv-browser-screen { aspect-ratio: 16 / 11; background: var(--off-white); display: flex; flex-direction: column; overflow: hidden; }
.dv-web-nav { display: flex; align-items: center; gap: 8px; padding: 11px 14px; background: #fff; border-bottom: 1px solid var(--sand-line); z-index: 2; }
.dv-web-logo { width: 44px; height: 12px; border-radius: 3px; background: var(--forest); }
.dv-web-links { margin-left: auto; display: flex; gap: 7px; }
.dv-web-links span { width: 26px; height: 7px; border-radius: 3px; background: var(--sand-line); }
.dv-web-scrollwrap { position: relative; flex: 1; overflow: hidden; }
.dv-web-scroll { display: flex; flex-direction: column; gap: 9px; padding: 12px 14px; animation: dv-vscroll 15s linear infinite; }
.device-stage:hover .dv-web-scroll { animation-play-state: paused; }
.dv-web-sec { display: flex; align-items: center; gap: 9px; background: #fff; border: 1px solid var(--sand-line); border-radius: 9px; padding: 11px 12px; box-shadow: 0 6px 14px -12px rgba(52,78,65,.5); }
.dv-web-sec .ic { width: 26px; height: 26px; border-radius: 7px; background: var(--sage); color: #fff; display: grid; place-items: center; flex: 0 0 auto; }
.dv-web-sec .ic svg { width: 14px; height: 14px; }
.dv-web-sec .kw { font-size: .74rem; font-weight: 600; color: var(--forest); letter-spacing: .01em; }
.dv-web-sec.hero { background: var(--forest); border-color: var(--forest); }
.dv-web-sec.hero .kw { color: var(--off-white); }
.dv-web-sec.hero .ic { background: var(--gold); }
@keyframes dv-vscroll { 0%, 8% { transform: translateY(0); } 92%, 100% { transform: translateY(-50%); } }

/* ---------- 3) GRAFIK – echte Foto-Mockups im Wechsel ---------- */
.dv-print { position: relative; width: 100%; max-width: 440px; height: 300px; margin-inline: auto; }
.dv-piece { position: absolute; inset: 0; display: grid; place-items: center; opacity: 0;
  animation: dv-print 14s var(--ease) infinite backwards; }
.device-stage:hover .dv-piece { animation-play-state: paused; }
.dv-piece:nth-child(1) { animation-delay: 0s; }
.dv-piece:nth-child(2) { animation-delay: 7s; }
/* Echtes Mockup-Foto */
.pc-photo { display: block; width: 100%; max-width: 440px; height: auto; border-radius: 12px;
  box-shadow: 0 4px 10px rgba(43,38,33,.14), 0 26px 50px -22px rgba(43,38,33,.5); }
.pc { position: relative; border-radius: 10px; overflow: hidden;
  box-shadow: 0 2px 5px rgba(43,38,33,.10), 0 30px 55px -22px rgba(43,38,33,.55); }
/* feiner Licht-Schimmer wie bei einem fotografierten Druckstück */
.pc::before { content: ""; position: absolute; inset: 0; z-index: 4; pointer-events: none;
  background: linear-gradient(115deg, rgba(255,255,255,.16) 0%, rgba(255,255,255,0) 34%); }
.pc-tag { position: absolute; top: 10px; left: 10px; z-index: 5; font-size: .56rem; letter-spacing: .14em;
  text-transform: uppercase; font-weight: 600; padding: .24rem .6rem; border-radius: 100px; background: var(--gold); color: #2B2621; }
/* Visitenkarte (quer) */
.pc-biz { width: 268px; aspect-ratio: 85 / 55; background: var(--forest); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .35rem; color: var(--off-white); transform: rotate(-3deg); }
.pc-biz .l1 { font-family: var(--font-head); font-size: 1.5rem; letter-spacing: .3em; text-indent: .3em; }
.pc-biz .l2 { font-size: .5rem; letter-spacing: .46em; text-indent: .46em; text-transform: uppercase; color: var(--gold); }
.pc-biz .rule { width: 46px; height: 1px; background: var(--gold); margin: .25rem 0; }
.pc-biz .l3 { font-size: .52rem; letter-spacing: .05em; opacity: .8; }
/* Flyer (hoch) */
.pc-flyer { width: 232px; aspect-ratio: 3 / 4; background: #fff; display: flex; flex-direction: column; transform: rotate(2.5deg); }
.pc-flyer .fimg { height: 44%; background: linear-gradient(150deg, var(--sage), var(--forest)); position: relative; }
.pc-flyer .fimg::after { content: "MAHANA"; position: absolute; left: 15px; bottom: 12px; color: rgba(255,255,255,.92);
  font-family: var(--font-head); letter-spacing: .18em; font-size: .72rem; }
.pc-flyer .fbody { padding: 15px 16px; display: flex; flex-direction: column; gap: 7px; }
.pc-flyer .fh { font-family: var(--font-head); color: var(--forest); font-size: 1.15rem; line-height: 1.1; margin-bottom: 2px; }
.pc-flyer .fl { height: 5px; border-radius: 3px; background: var(--sand-line); }
.pc-flyer .fl.s { width: 68%; }
.pc-flyer .fbtn { margin-top: 6px; align-self: flex-start; background: var(--gold); color: #2B2621; font-size: .54rem;
  font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: .4rem .9rem; border-radius: 100px; }
/* Plakat (hoch, plakativ) */
.pc-poster { width: 230px; aspect-ratio: 2 / 3; background: var(--sage); display: flex; flex-direction: column;
  justify-content: space-between; padding: 22px 20px; transform: rotate(-2deg); }
.pc-poster .pk-top { font-size: .54rem; letter-spacing: .26em; text-transform: uppercase; color: var(--forest-deep); }
.pc-poster .pk-h { font-family: var(--font-head); font-size: 2rem; line-height: 1.02; color: var(--forest-deep); }
.pc-poster .pk-badge { align-self: flex-end; width: 62px; height: 62px; border-radius: 50%; background: var(--gold);
  display: grid; place-items: center; text-align: center; color: #2B2621; font-family: var(--font-head); font-size: .82rem; line-height: 1; transform: rotate(-8deg); }
/* Speisekarte (hoch) */
.pc-menu { width: 228px; aspect-ratio: 3 / 4; background: var(--off-white); border: 1px solid var(--sand-line);
  padding: 24px 20px; display: flex; flex-direction: column; transform: rotate(2.5deg); }
.pc-menu .mh { font-family: var(--font-head); color: var(--forest); font-size: 1.2rem; text-align: center; letter-spacing: .1em; }
.pc-menu .mrule { width: 40px; height: 1px; background: var(--gold); margin: 8px auto 18px; }
.pc-menu .mrow { display: flex; align-items: baseline; gap: 8px; margin-bottom: 15px; }
.pc-menu .mrow .nm { font-family: var(--font-head); color: var(--ink); font-size: .8rem; }
.pc-menu .mrow .dots { flex: 1; border-bottom: 1px dotted var(--sand-line); align-self: center; }
.pc-menu .mrow .pr { color: var(--gold); font-weight: 600; font-size: .74rem; }
@keyframes dv-print {
  0% { opacity: 0; transform: translateY(14px); }
  5% { opacity: 1; transform: none; }
  45% { opacity: 1; transform: none; }
  50% { opacity: 0; transform: translateY(-12px); }
  100% { opacity: 0; transform: translateY(14px); }
}

/* ---------- 4) STRATEGIE – Dartscheibe: baut sich ruhig auf, in Schleife ----------
   Ablauf pro Zyklus (13s, linear, endlos): Mittelpunkt → Ringe (innen→außen)
   → Fadenkreuz → Pfeil ins Zentrum → sanftes Ausblenden → wieder von vorn. */
.dv-target { width: min(300px, 92%); height: auto; overflow: visible; }
.dv-target .tg-ring, .dv-target .tg-cross { fill: none; stroke: var(--gold); stroke-linecap: round; stroke-dasharray: 1; stroke-dashoffset: 1; }
.dv-target .tg-ring { stroke-width: 2.6; }
.dv-target .tg-cross { stroke-width: 1.4; opacity: .4; }
.dv-target .tg-bull { fill: var(--gold); opacity: 0; transform-box: fill-box; transform-origin: center; transform: scale(.3); }
.dv-target .tg-arrow, .dv-target .tg-head { fill: none; stroke: var(--forest); stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 1; stroke-dashoffset: 1; }
.dv-target .tg-arrow { stroke-width: 3.4; }
.dv-target .tg-head { stroke-width: 3; }
.dv-target .tg-bull { animation: tg-bull 13s linear infinite; }
.dv-target .tg-ring.r3 { animation: tg-r3 13s linear infinite; }
.dv-target .tg-ring.r2 { animation: tg-r2 13s linear infinite; }
.dv-target .tg-ring.r1 { animation: tg-r1 13s linear infinite; }
.dv-target .tg-cross { animation: tg-cross 13s linear infinite; }
.dv-target .tg-arrow { animation: tg-arrow 13s linear infinite; }
.dv-target .tg-head { animation: tg-head 13s linear infinite; }
.device-stage:hover .dv-target * { animation-play-state: paused; }
@keyframes tg-bull { 0%,3% { opacity:0; transform:scale(.3); } 7%,90% { opacity:1; transform:scale(1); } 95%,100% { opacity:0; transform:scale(1); } }
@keyframes tg-r3 { 0%,10% { stroke-dashoffset:1; opacity:1; } 17%,90% { stroke-dashoffset:0; opacity:1; } 95%,100% { stroke-dashoffset:0; opacity:0; } }
@keyframes tg-r2 { 0%,17% { stroke-dashoffset:1; opacity:1; } 24%,90% { stroke-dashoffset:0; opacity:1; } 95%,100% { stroke-dashoffset:0; opacity:0; } }
@keyframes tg-r1 { 0%,24% { stroke-dashoffset:1; opacity:1; } 32%,90% { stroke-dashoffset:0; opacity:1; } 95%,100% { stroke-dashoffset:0; opacity:0; } }
@keyframes tg-cross { 0%,36% { stroke-dashoffset:1; opacity:.4; } 44%,90% { stroke-dashoffset:0; opacity:.4; } 95%,100% { stroke-dashoffset:0; opacity:0; } }
@keyframes tg-arrow { 0%,50% { stroke-dashoffset:1; opacity:1; } 64%,90% { stroke-dashoffset:0; opacity:1; } 95%,100% { stroke-dashoffset:0; opacity:0; } }
@keyframes tg-head { 0%,64% { stroke-dashoffset:1; opacity:1; } 69%,90% { stroke-dashoffset:0; opacity:1; } 95%,100% { stroke-dashoffset:0; opacity:0; } }

@media (max-width: 900px) {
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-points { max-width: none; }
  .showcase-visual { position: static; margin-top: .5rem; }
  .device-stage { min-height: 400px; }
}

/* =====================================================================
   ÜBER MICH – Portrait rechts (sticky) + Punkte, die dazukommen
   ===================================================================== */
.about-showcase { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.about-portrait { position: sticky; top: 100px; }
.about-portrait .portrait-frame { margin-bottom: 1.2rem; }
.about-badges { display: grid; gap: .7rem; }
.about-badge {
  display: grid; grid-template-columns: 30px 1fr; gap: .8rem; align-items: center;
  background: var(--off-white); border: 1px solid var(--sand-line); border-radius: 100px;
  padding: .7rem 1.2rem .7rem .7rem; box-shadow: var(--shadow-sm);
  opacity: 0; transform: translateX(24px);
}
.about-badge .b-ic { width: 30px; height: 30px; border-radius: 50%; background: var(--sage); color: #fff; display: grid; place-items: center; }
.about-badge .b-ic svg { width: 15px; height: 15px; }
.about-badge span { font-size: .92rem; color: var(--forest); font-weight: 500; }
.about-portrait.in .about-badge { animation: dv-slidein .7s var(--ease) forwards; }
.about-portrait.in .about-badge:nth-child(1) { animation-delay: .2s; }
.about-portrait.in .about-badge:nth-child(2) { animation-delay: .4s; }
.about-portrait.in .about-badge:nth-child(3) { animation-delay: .6s; }
.about-portrait.in .about-badge:nth-child(4) { animation-delay: .8s; }
@keyframes dv-slidein { to { opacity: 1; transform: none; } }

/* „Lern mich kennen" – kompakte Foto-Reihe, verbunden durch eine gezeichnete Linie */
.journey { position: relative; max-width: 1040px; margin: 2.4rem auto 0; }
/* Linie ragt seitlich über die Bilder hinaus (weiter außen) + größere Amplitude → klar sichtbar */
.journey-line { position: absolute; left: -9%; right: -9%; top: -14px; height: 270px; z-index: 0; pointer-events: none; }
.journey-line svg { width: 100%; height: 100%; overflow: visible; }
.journey-line path { fill: none; stroke: var(--gold); stroke-width: 2.6; stroke-linecap: round; stroke-dasharray: 1; stroke-dashoffset: 1; }
.journey-line.in path { transition: stroke-dashoffset 3.6s var(--ease); stroke-dashoffset: 0; }
.journey-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.35rem; }
.journey-item { text-align: center; }
.journey-item .j-img { aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden; background: var(--sand); box-shadow: var(--shadow); }
.journey-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s var(--ease); }
.journey-item:hover img { transform: scale(1.06); }
.journey-item h3 { color: var(--forest); font-size: 1rem; margin: .8rem 0 .2rem; }
.journey-item p { color: var(--ink-soft); font-size: .82rem; line-height: 1.5; }

@media (max-width: 820px) {
  .about-showcase { grid-template-columns: 1fr; }
  .about-portrait { position: static; max-width: 420px; }
  .journey-grid { grid-template-columns: repeat(3, 1fr); }
  .journey-line { display: none; }
}
@media (max-width: 460px) {
  .journey-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =====================================================================
   REFERENZEN – Branchen als „wachsende" Karten mit Linien-Motiv
   ===================================================================== */
.branch-flow { position: relative; }
.branch-flow .usp { position: relative; overflow: hidden; }
.branch-flow .usp::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(var(--gold), var(--sage)); transform: scaleY(0); transform-origin: top;
  transition: transform .8s var(--ease);
}
.branch-flow .usp.in::before { transform: scaleY(1); }
.branch-flow .usp { padding-left: 1.9rem; }

/* =====================================================================
   ERGÄNZENDE LEISTUNGEN (kleiner & abgesetzt von den 4 Hauptkarten)
   ===================================================================== */
.addon-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem 1.4rem; max-width: 880px; margin: 2rem auto 0; }
.addon { display: grid; grid-template-columns: 26px 1fr; gap: .85rem; background: var(--off-white); border: 1px solid var(--sand-line); border-radius: var(--radius); padding: 1.1rem 1.3rem; }
.addon .a-ic { width: 26px; height: 26px; border-radius: 50%; background: var(--sage); color: #fff; display: grid; place-items: center; margin-top: .15rem; flex: 0 0 auto; }
.addon .a-ic svg { width: 14px; height: 14px; }
.addon h3 { font-size: 1rem; color: var(--forest); margin-bottom: .2rem; }
.addon p { font-size: .9rem; color: var(--ink-soft); margin: 0; }
@media (max-width: 640px) { .addon-grid { grid-template-columns: 1fr; } }

/* =====================================================================
   REFERENZEN – Case als Story-Arc (Krise → Start → Konflikt → Höhepunkt → Ergebnis)
   ===================================================================== */
.refstory { max-width: 780px; margin: 0 auto; }
.refstory-head { text-align: center; margin-bottom: 2.6rem; }
.refstory-head .case-tag { margin-bottom: 1rem; }
.refstory-logos { display: flex; justify-content: center; align-items: center; gap: 1.4rem; flex-wrap: wrap; margin: 1rem 0 .8rem; }
.refstory-logos img { height: 56px; width: auto; object-fit: contain; }
.refstory-sub { color: var(--ink-soft); font-size: .95rem; }
.refstory-sub strong { color: var(--forest); font-weight: 600; }

.refstory-steps { position: relative; }
.refstory-step { position: relative; padding-left: 3.6rem; padding-bottom: 2.2rem; }
.refstory-step:last-child { padding-bottom: 0; }
.refstory-step::before { content: ""; position: absolute; left: 17px; top: 40px; bottom: -2px; width: 2px; background: var(--sand-line); }
.refstory-step:last-child::before { display: none; }
.refstory-num {
  position: absolute; left: 0; top: 0; width: 36px; height: 36px; border-radius: 50%;
  background: var(--off-white); border: 2px solid var(--sage); color: var(--forest);
  display: grid; place-items: center; font-family: var(--font-head); font-size: 1rem; z-index: 1;
}
.refstory-step.climax .refstory-num { background: var(--gold); border-color: var(--gold); color: #2B2621; }
.refstory-label { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: .3rem; }
.refstory-step h3 { font-size: 1.15rem; color: var(--forest); margin-bottom: .4rem; }
.refstory-step p { color: var(--ink-soft); font-size: .98rem; }

.refstory-quote {
  margin: 2.4rem 0 0; background: var(--sand); border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.6rem); text-align: center; position: relative;
}
.refstory-quote blockquote { font-family: var(--font-head); font-size: clamp(1.2rem, 2.4vw, 1.55rem); line-height: 1.45; color: var(--forest); margin: 0 0 1rem; }
.refstory-quote figcaption { font-size: .9rem; color: var(--ink-soft); }
.refstory-quote figcaption strong { color: var(--ink); font-weight: 600; }

@media (max-width: 560px) {
  .refstory-step { padding-left: 3rem; }
}
.refstory-meta { color: var(--ink-soft); font-size: .9rem; margin-top: .5rem; }
.refstory-meta strong { color: var(--forest); font-weight: 600; }
/* Projektkarten (Weitere Projekte) */
.proj-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1rem; }
.proj-tag { font-size: .68rem; letter-spacing: .04em; color: var(--forest); background: var(--sand);
  border: 1px solid var(--sand-line); border-radius: 100px; padding: .22rem .7rem; }
.usp h3.proj-title { font-size: 1.1rem; margin: .8rem 0 .4rem; }

@media (prefers-reduced-motion: reduce) {
  .dv-swipe, .dv-web-scroll, .dv-ig-live, .dv-piece { animation: none !important; }
  .dv-swipe, .dv-web-scroll { transform: none; }
  .dv-piece:first-child { opacity: 1 !important; }
  .about-badge { opacity: 1 !important; transform: none !important; animation: none !important; }
  .dv-target .tg-ring, .dv-target .tg-cross, .dv-target .tg-arrow, .dv-target .tg-head { stroke-dashoffset: 0; animation: none !important; }
  .dv-target .tg-bull { opacity: 1; transform: none; animation: none !important; }
  .stroke-divider path { stroke-dashoffset: 0; } .stroke-divider .leaf { opacity: 1; transform: none; }
  .journey-line path { stroke-dashoffset: 0; }
  .branch-flow .usp::before { transform: scaleY(1); }
}

/* =====================================================================
   MAHANA YOGA – zusätzliche Bausteine
   ===================================================================== */

/* --- Sichtbarer Platzhalter für noch offene Angaben (Julie füllt aus) --- */
.todo {
  display: inline-block;
  background: #FBE7C7; color: #7A5B12;
  border: 1px dashed #D9A93E; border-radius: 6px;
  padding: .05em .5em; font-size: .92em; font-weight: 600;
  letter-spacing: .01em;
}

/* --- „Stand: Monat Jahr" bei Preisen/Stundenplan (GEO: Aktualität) --- */
.stand { font-size: .82rem; color: var(--ink-soft); letter-spacing: .04em; margin-top: 1rem; }
.stand time { font-weight: 600; color: var(--forest); }

/* --- Tabellen (Stundenplan & Preise) – als echter Text, GEO-zitierfähig --- */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 1.4rem 0; }
.data-table {
  width: 100%; border-collapse: collapse; background: #fff;
  border: 1px solid var(--sand-line); border-radius: var(--radius); overflow: hidden;
  font-size: 1.02rem; min-width: 460px;
}
.data-table caption { text-align: left; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-ink); font-weight: 600; padding: 0 0 .8rem; }
.data-table th, .data-table td { padding: .95rem 1.1rem; text-align: left; border-bottom: 1px solid var(--sand-line); }
.data-table thead th { background: var(--sage-soft); color: var(--forest); font-family: var(--font-body); font-weight: 600; font-size: .92rem; letter-spacing: .04em; }
.data-table tbody tr:last-child td { border-bottom: 0; }
.data-table tbody tr:hover { background: var(--off-white); }
.data-table .price { font-family: var(--font-head); color: var(--forest); white-space: nowrap; }
.data-table td strong { color: var(--forest); }

/* --- Nächste Stunden (kompakte Liste auf der Startseite) --- */
.next-list { list-style: none; padding: 0; display: grid; gap: .8rem; max-width: 560px; }
.next-list li {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: .3rem 1rem;
  background: #fff; border: 1px solid var(--sand-line); border-radius: var(--radius);
  padding: 1rem 1.3rem; border-left: 3px solid var(--sage);
}
.next-list .day { font-family: var(--font-head); font-size: 1.15rem; color: var(--forest); min-width: 5.5rem; }
.next-list .time { font-weight: 600; color: var(--sage-deep); }
.next-list .what { color: var(--ink-soft); font-size: .96rem; margin-left: auto; }

/* --- Gesundheits-Hinweis (rechtlich: kein Heilversprechen) --- */
.disclaimer {
  background: var(--sage-soft); border: 1px solid #D5DBC6; border-radius: var(--radius);
  padding: 1.2rem 1.4rem; font-size: .95rem; color: var(--ink); line-height: 1.6;
  display: flex; gap: .9rem; align-items: flex-start; max-width: 760px;
}
.disclaimer svg { flex: 0 0 auto; width: 22px; height: 22px; color: var(--sage-deep); margin-top: .15rem; }
.disclaimer strong { color: var(--forest); }

/* --- Zwei ruhige „Ängste abräumen"-Karten --- */
.reassure { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 900px; }
.reassure .rc { background: #fff; border: 1px solid var(--sand-line); border-radius: var(--radius); padding: 1.8rem; }
.reassure .rc .q { font-family: var(--font-head); font-size: 1.25rem; color: var(--forest); margin-bottom: .6rem; }
.reassure .rc p { color: var(--ink-soft); margin: 0; font-size: 1rem; }
@media (max-width: 700px){ .reassure { grid-template-columns: 1fr; } }

/* --- Hero: aufgehende Sonne (Mahana = Sonne) – erst Halbkreis + Grundlinie,
       dann fächern die Strahlen einer nach dem anderen auf --- */
.hero-sun { position: absolute; top: clamp(3.5rem, 11vh, 7rem); right: 4%; width: clamp(170px, 24vw, 300px); color: var(--sage-deep); opacity: .8; pointer-events: none; }
.hero-sun svg { width: 100%; height: auto; overflow: visible; display: block; }
.risingsun line, .risingsun path { stroke: currentColor; fill: none; stroke-linecap: round; }
.risingsun .base { stroke-width: 1.5; opacity: 0; animation: sun-fade .5s var(--ease) .15s forwards; }
.risingsun .dome { stroke-width: 1.7; stroke-dasharray: 1; stroke-dashoffset: 1; animation: sun-draw .75s var(--ease) .35s forwards; }
.risingsun .ray  { stroke-width: 1.3; stroke-dasharray: 1; stroke-dashoffset: 1;
  animation: sun-draw .45s var(--ease) both; animation-delay: calc(1.05s + var(--i) * .06s); }
@keyframes sun-draw { to { stroke-dashoffset: 0; } }
@keyframes sun-fade { to { opacity: 1; } }

/* --- Zitat/Leitsatz im Yoga-Ton (ruhiges Panel) --- */
.leitsatz { background: var(--sage-soft); }
.leitsatz .statement-text { color: var(--forest); }
.leitsatz .statement-text em { color: var(--sage-deep); font-style: italic; }

/* --- Foto-Reihe (Kursstile mit Bild) --- */
.style-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.style-card { background: #fff; border: 1px solid var(--sand-line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.style-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.style-card .pic { aspect-ratio: 4 / 3; background: var(--sand); position: relative; }
.style-card .pic img { width: 100%; height: 100%; object-fit: cover; }
.style-card .body { padding: 1.5rem 1.6rem 1.8rem; }
.style-card h3 { color: var(--forest); margin-bottom: .5rem; }
.style-card p { color: var(--ink-soft); font-size: .97rem; margin: 0; }
.style-card .tag { display: inline-block; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--sage-deep); font-weight: 600; margin-bottom: .7rem; }
@media (max-width: 900px){ .style-row { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }

/* --- Bild-Platzhalter (bis Fotos geliefert sind) – klar erkennbar --- */
.foto-ph { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; padding: 1rem;
  background: repeating-linear-gradient(135deg, var(--sand), var(--sand) 14px, #ded5c9 14px, #ded5c9 28px);
  color: var(--forest); font-size: .82rem; }
.foto-ph span { background: rgba(247,245,242,.85); padding: .3rem .7rem; border-radius: 6px; line-height: 1.4; }

/* --- Kontakt: Instagram-Zeile --- */
.social-inline { display: inline-flex; align-items: center; gap: .5rem; }
.social-inline svg { width: 20px; height: 20px; }

/* Reduced motion: Sonne & Tabellen ruhigstellen */
@media (prefers-reduced-motion: reduce) {
  .risingsun .base, .risingsun .dome, .risingsun .ray { animation: none; opacity: 1; stroke-dashoffset: 0; }
  .style-card:hover { transform: none; }
}

/* --- Skip-Link (Barrierefreiheit: direkt zum Inhalt) --- */
.skip-link { position: absolute; left: -999px; top: 0; z-index: 300;
  background: var(--forest); color: #fff; padding: .7rem 1.1rem; border-radius: 0 0 8px 0; font-size: .9rem; }
.skip-link:focus { left: 0; }

/* --- Gesundheits-Hinweis im Footer --- */
.footer-disclaimer { margin-top: 2rem; padding-top: 1.4rem; border-top: 1px solid rgba(247,245,242,.12);
  font-size: .82rem; line-height: 1.6; color: rgba(247,245,242,.6); max-width: 92ch; }

/* Hero-Sonne auf kleinen Handys ausblenden (kein Gedränge mit der Überschrift) */
@media (max-width: 640px) { .hero-sun { display: none; } }

/* --- Kursraum-Foto (Kurse-Seite) --- */
.room-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); max-width: 460px; margin: 0 0 2rem; }
.room-photo img { width: 100%; height: auto; display: block; }

/* --- Praxis-Galerie (Über mich) --- */
.praxis-galerie { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.praxis-galerie figure { border-radius: var(--radius); overflow: hidden; background: var(--sand); box-shadow: var(--shadow-sm); aspect-ratio: 3 / 4; margin: 0; }
.praxis-galerie img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.praxis-galerie figure:hover img { transform: scale(1.05); }
@media (max-width: 700px) { .praxis-galerie { grid-template-columns: 1fr 1fr; } }
@media (prefers-reduced-motion: reduce) { .praxis-galerie figure:hover img { transform: none; } }

/* --- FIX: geladenes Foto liegt VOR dem Platzhalter (sonst verdeckt der Streifen das Bild) --- */
.portrait-frame img, .style-card .pic img { position: absolute; inset: 0; z-index: 1; }
.portrait-frame .foto-ph, .style-card .pic .foto-ph { z-index: 0; }

/* =====================================================================
   FUN: Atemkreis zum Mitatmen (länger aus als ein)
   ===================================================================== */
.breath { display: grid; place-items: center; gap: .9rem; margin: 2.8rem auto 0; }
.breath-ring {
  width: clamp(120px, 34vw, 160px); aspect-ratio: 1; border-radius: 50%;
  display: grid; place-items: center; position: relative;
  background: radial-gradient(circle at 50% 42%, #fff, var(--sage-soft) 72%);
  border: 2px solid var(--sage);
  animation: breathe 12s ease-in-out infinite;
}
.breath-ring .lbl { position: absolute; font-family: var(--font-head); font-size: 1.2rem; color: var(--forest); opacity: 0; letter-spacing: .04em; }
.breath-ring .lbl.in  { animation: lbl-in 12s ease-in-out infinite; }
.breath-ring .lbl.out { animation: lbl-out 12s ease-in-out infinite; }
.breath-cap { font-size: .9rem; color: var(--ink-soft); letter-spacing: .02em; }
@keyframes breathe {
  0%   { transform: scale(.7);  box-shadow: 0 0 0 0 rgba(163,177,138,0); }
  33%  { transform: scale(1);   box-shadow: 0 0 0 16px rgba(163,177,138,.14); }
  46%  { transform: scale(1);   box-shadow: 0 0 0 16px rgba(163,177,138,.14); }
  100% { transform: scale(.7);  box-shadow: 0 0 0 0 rgba(163,177,138,0); }
}
@keyframes lbl-in  { 0%,46%,100% { opacity: 0; } 8%,32% { opacity: 1; } }
@keyframes lbl-out { 0%,48% { opacity: 0; } 58%,92% { opacity: 1; } 100% { opacity: 0; } }

/* =====================================================================
   FUN: Wellen-Trenner (Meer-Motiv, zeichnet sich beim Scrollen)
   ===================================================================== */
.wave-divider { display: flex; justify-content: center; padding: clamp(1.2rem, 3.5vh, 2.4rem) 0; }
.wave-divider svg { width: 210px; height: 28px; color: var(--sage); overflow: visible; }
.wave-divider path { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-dasharray: 1; stroke-dashoffset: 1; }
.wave-divider.in path { transition: stroke-dashoffset 2.2s var(--ease); stroke-dashoffset: 0; }

@media (prefers-reduced-motion: reduce) {
  .breath-ring { animation: none; transform: scale(.9); }
  .breath-ring .lbl.in { opacity: 1; animation: none; }
  .breath-ring .lbl.out { opacity: 0; animation: none; }
  .wave-divider path { transition: none; stroke-dashoffset: 0; }
}

/* --- Stil-Karten: Line-Art-Symbol, Untertitel, „Für dich"-Zeile --- */
.style-symbol { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%;
  border: 1.5px solid var(--sage); color: var(--sage-deep); background: #fff; margin-bottom: 1rem; }
.style-symbol svg { width: 24px; height: 24px; }
.style-card .body p { margin: 0 0 .7rem; }
.style-card .body p:last-child { margin-bottom: 0; }
.style-sub { font-family: var(--font-head); font-style: italic; color: var(--sage-deep); font-size: 1.05rem; }
.style-for { margin-top: .9rem !important; padding-top: .85rem; border-top: 1px solid var(--sand-line);
  font-size: .9rem; color: var(--ink-soft); }

/* --- Kurse: Sommer-Foto + Stil-Detailblöcke --- */
.summer-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); margin: 0 0 2rem; max-height: 460px; }
.summer-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.style-detail { max-width: 780px; }
.style-detail + .style-detail { margin-top: 2.4rem; padding-top: 2.4rem; border-top: 1px solid var(--sand-line); }

/* --- Workshop-Themen-Karten --- */
.card-cat { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--sage-deep); font-weight: 600; margin-bottom: .5rem; }
.card-icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--sage-soft); margin-bottom: 1rem; }
.card-icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.card-icon.ruhe { color: var(--sage-deep); }
.card-icon.koerper { color: var(--forest); }
.card-icon.neugier { color: var(--gold-ink); }
.card-icon.team { color: var(--forest); }

.about-things { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.at-card { background: #fff; border: 1px solid var(--sand-line); border-radius: var(--radius-lg); padding: 1.8rem; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.at-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.at-card h3 { color: var(--forest); margin: 0 0 .5rem; font-size: 1.25rem; }
.at-card p { color: var(--ink-soft); margin: 0; }
@media (max-width: 720px) { .about-things { grid-template-columns: 1fr; } }
.card-for { margin-top: .9rem; font-size: .88rem; color: var(--ink-soft); font-style: italic; }

/* --- „Mehr über …"-Link in den Stil-Karten --- */
.style-link { display: inline-block; margin-top: .9rem; color: var(--sage-deep); font-weight: 600; font-size: .92rem; letter-spacing: .01em; }
.style-link:hover { color: var(--forest); }

/* --- Aktueller Kursstatus (Jetzt / Ab Herbst) --- */
.status-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 900px; }
.status-card { background: #fff; border: 1px solid var(--sand-line); border-radius: 14px; padding: 1.9rem; box-shadow: var(--shadow-sm); }
.status-card h3 { color: var(--forest); margin: .8rem 0 .5rem; font-size: 1.2rem; }
.status-card p { color: var(--ink-soft); font-size: .97rem; margin: 0; }
.status-tag { display: inline-block; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--sage-deep); font-weight: 700; background: var(--sage-soft); padding: .35rem .75rem; border-radius: 999px; }
@media (max-width: 700px) { .status-cards { grid-template-columns: 1fr; } }

/* =====================================================================
   FIX: Einzug auf Unterseiten – .container.prose zentrierte einen
   schmalen 760px-Block; jetzt linksbündig auf Containerbreite, Text-
   spalte bleibt lesbar begrenzt.
   ===================================================================== */
.container.prose { max-width: var(--container); }
.container.prose > * { max-width: 62rem; }
.container.prose > p, .container.prose > ul, .container.prose > ol { max-width: 44rem; }

/* =====================================================================
   MEHR PEPP – dezente Bewegungselemente (alle mit reduced-motion-Stopp)
   ===================================================================== */
/* Aktueller-Hinweis-Pill im Hero */
.hero-hint { display: inline-flex; align-items: center; gap: .55rem; background: var(--sage-soft);
  border: 1px solid #D5DBC6; border-radius: 100px; padding: .5rem 1rem; font-size: .9rem;
  color: var(--forest); margin-bottom: 1.5rem; max-width: 100%; }
.hero-hint .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--sage-deep); flex: 0 0 auto; }
.hero-hint .dot { animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(95,113,80,.5);} 50% { box-shadow: 0 0 0 6px rgba(95,113,80,0);} }

/* Hero-Portrait: sanftes Schweben */
.hero-media .portrait-frame { animation: floaty 7s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-8px);} }

/* Scroll-Hinweis unter dem Hero */
.scroll-cue { display: flex; justify-content: center; padding-top: 1.4rem; }
.scroll-cue svg { width: 24px; height: 24px; color: var(--sage-deep); animation: bob 1.9s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); opacity: .55;} 50% { transform: translateY(7px); opacity: 1;} }

/* Stil-Symbole: leichtes Wachsen beim Hover */
.style-card .style-symbol { transition: transform .4s var(--ease), border-color .4s var(--ease); }
.style-card:hover .style-symbol { transform: scale(1.1) rotate(-4deg); border-color: var(--sage-deep); }

/* Testimonials */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testi { background: #fff; border: 1px solid var(--sand-line); border-radius: var(--radius); padding: 1.8rem; position: relative; }
.testi::before { content: "\201C"; font-family: var(--font-head); font-size: 3rem; color: var(--sage); line-height: 1; display: block; margin-bottom: .2rem; }
.testi p { color: var(--ink); font-style: italic; margin: 0 0 1rem; }
.testi-head { font-family: var(--font-head); font-style: normal !important; font-size: 1.12rem; color: var(--forest); margin: 0 0 .7rem !important; }
.testi .who { font-size: .9rem; color: var(--ink-soft); font-weight: 600; font-style: normal; }
@media (max-width: 820px) { .testi-grid { grid-template-columns: 1fr; } }

@media (prefers-reduced-motion: reduce) {
  .hero-media .portrait-frame, .scroll-cue svg, .hero-hint .dot { animation: none; }
  .style-card:hover .style-symbol { transform: none; }
}

/* Hero-Subzeile */
.hero-sub { font-size: 1rem; color: var(--ink-soft); max-width: 52ch; margin: -0.6rem 0 1.2rem; }

/* =====================================================================
   Interne Links im Fließtext hervorheben (klar erkennbar, wo verlinkt ist)
   ===================================================================== */
.prose a:not(.btn), .section-intro a:not(.btn), .stand a:not(.btn), .ref-note a:not(.btn), .about-text p a:not(.btn),
.status-card a:not(.btn), .contact-info a:not(.btn), .reassure a:not(.btn), .price-note a:not(.btn) {
  color: var(--sage-deep); font-weight: 600;
  text-decoration: underline; text-decoration-thickness: 1.5px;
  text-underline-offset: 3px; text-decoration-color: var(--sage);
}
.prose a:not(.btn):hover, .section-intro a:not(.btn):hover, .stand a:not(.btn):hover, .ref-note a:not(.btn):hover,
.about-text p a:not(.btn):hover, .status-card a:not(.btn):hover, .contact-info a:not(.btn):hover,
.reassure a:not(.btn):hover, .price-note a:not(.btn):hover { color: var(--forest); text-decoration-color: var(--forest); }

/* =====================================================================
   „EIN MOMENT FÜR DICH" – wiederkehrende kleine Pausen (Reise über die Seite)
   Verschiedene Symbole (Atem, Erdung …), jeweils mit einer Einladung,
   kurz innezuhalten. Alle mit reduced-motion-Stopp.
   ===================================================================== */
.moment-intro { text-align: center; max-width: 46ch; margin: 2.6rem auto 0; color: var(--ink-soft); font-size: .98rem; }
.moment-intro strong { color: var(--sage-deep); }

.moment { display: grid; place-items: center; gap: .5rem; text-align: center; margin: 1.4rem auto 0; max-width: 440px;
  background: radial-gradient(circle at 50% 32%, #fff, var(--sage-soft) 92%);
  border: 1px solid #DBE1CD; border-radius: var(--radius-lg); padding: 2.2rem 1.6rem; }
.moment + .moment { margin-top: 1.6rem; }
.moment-label { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--sage-deep); font-weight: 700; }
.moment-prompt { font-family: var(--font-head); font-size: 1.18rem; color: var(--forest); max-width: 30ch; margin: .5rem 0 0; line-height: 1.4; }

/* Erdung: Wurzeln wachsen sanft in den Boden */
.moment-ground { color: var(--sage-deep); margin: .4rem 0; }
.moment-ground svg { width: 92px; height: auto; overflow: visible; }
.moment-ground .root { stroke-dasharray: 1; stroke-dashoffset: 1; animation: rootdraw 3.6s ease-in-out infinite; animation-delay: calc(var(--r) * .3s); }
@keyframes rootdraw { 0% { stroke-dashoffset: 1; } 40% { stroke-dashoffset: 0; } 72% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: 1; } }

@media (prefers-reduced-motion: reduce) {
  .moment-ground .root { animation: none; stroke-dashoffset: 0; }
}

/* Nachspüren/Reflexion: auslaufende Kreise (wie ein Gedanke, der Kreise zieht) */
.moment-ripple { color: var(--sage-deep); margin: .3rem 0; }
.moment-ripple svg { width: 84px; height: 84px; overflow: visible; }
.moment-ripple .rp { transform-box: fill-box; transform-origin: 50% 50%; animation: ripple 3.6s ease-out infinite; animation-delay: calc(var(--k) * 1.2s); }
@keyframes ripple { 0% { transform: scale(.35); opacity: .85; } 100% { transform: scale(3); opacity: 0; } }
.moment--reflect .moment-prompt { font-style: italic; }
@media (prefers-reduced-motion: reduce) { .moment-ripple .rp { animation: none; opacity: .5; transform: scale(1.4); } }

/* =====================================================================
   ÜBER MICH – Foto-Story (Text + Bild abwechselnd, mit Wellenlinie verbunden)
   ===================================================================== */
.story-row { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(2rem, 5vw, 3.6rem);
  align-items: center; max-width: 1000px; margin-inline: auto; }
.story-row.reverse .story-img { order: 2; }
.story-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: var(--sand); }
.story-img img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4/5; }
.story-text h2 { margin-bottom: 1rem; }
.story-text p { color: var(--ink-soft); margin-bottom: 1rem; }
.story-text p:last-child { margin-bottom: 0; }
.story-text .eyebrow { margin-bottom: .6rem; }
@media (max-width: 820px) {
  .story-row { grid-template-columns: 1fr; gap: 1.6rem; }
  .story-img { order: 0 !important; max-width: 380px; margin-inline: auto; }
}

/* Moment: Lächeln (der Mund zeichnet sich) */
.moment-smile { color: var(--sage-deep); margin: .3rem 0; }
.moment-smile svg { width: 82px; height: 82px; overflow: visible; }
.moment-smile .mouth { stroke-dasharray: 1; stroke-dashoffset: 1; animation: smiledraw 4.2s ease-in-out infinite; }
@keyframes smiledraw { 0%,18% { stroke-dashoffset: 1; } 48%,82% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: 1; } }
@media (prefers-reduced-motion: reduce) { .moment-smile .mouth { animation: none; stroke-dashoffset: 0; } }

/* Weitere Moment-Symbole (Berg/Welle/Mond) – zeichnen sich, Mond leuchtet sanft */
.moment-icon2 { color: var(--sage-deep); margin: .3rem 0; }
.moment-icon2 svg { width: 90px; height: auto; overflow: visible; }
.moment-icon2 .dr { stroke-dasharray: 1; stroke-dashoffset: 1; animation: mdraw 4.6s ease-in-out infinite; animation-delay: calc(var(--d, 0) * .35s); }
@keyframes mdraw { 0%,12% { stroke-dashoffset: 1; } 52%,84% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: 1; } }
.moment-icon2 .glow { animation: moonglow 4.6s ease-in-out infinite; }
@keyframes moonglow { 0%,100% { opacity: .5; } 50% { opacity: 1; } }

/* Vergleichs-Karten auf den Stil-Seiten (Hatha oder Vinyasa? …) */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; max-width: 820px; }
.compare .cmp { background: #fff; border: 1px solid var(--sand-line); border-radius: var(--radius); padding: 1.5rem 1.6rem; }
.compare .cmp h3 { color: var(--forest); font-size: 1.1rem; margin-bottom: .5rem; }
.compare .cmp p { color: var(--ink-soft); font-size: .96rem; margin: 0 0 .8rem; }
@media (max-width: 700px) { .compare { grid-template-columns: 1fr; } }

/* „Auf einen Blick"-Faktenbox */
.ataglance { background: var(--sage-soft); border: 1px solid #D9DFCC; border-radius: var(--radius-lg); padding: 1.8rem 2rem; max-width: 720px; }
.ataglance dl { display: grid; grid-template-columns: max-content 1fr; gap: .5rem 1.4rem; margin: 0; }
.ataglance dt { font-weight: 600; color: var(--sage-deep); font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; align-self: baseline; }
.ataglance dd { margin: 0; color: var(--ink); }
@media (max-width: 560px) { .ataglance dl { grid-template-columns: 1fr; gap: .1rem .5rem; } .ataglance dt { margin-top: .7rem; } }

/* =====================================================================
   STIL-FINDER – interaktiver „Welcher Yoga-Stil passt zu dir?" (nur CSS)
   ===================================================================== */
.stil-finder { background: var(--sage-soft); border: 1px solid #D9DFCC; border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.4rem); max-width: 860px; margin-inline: auto; }
.stil-finder .sf-q { font-family: var(--font-head); font-size: 1.35rem; color: var(--forest); margin-bottom: 1rem; }
.sf-opts { display: flex; flex-wrap: wrap; gap: .7rem; margin-bottom: 1.3rem; }
.sf-opts label { display: inline-flex; align-items: center; gap: .5rem; background: #fff;
  border: 1.5px solid var(--sand-line); border-radius: 100px; padding: .6rem 1.15rem; cursor: pointer;
  font-size: .96rem; color: var(--ink); transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
.sf-opts label:hover { border-color: var(--sage); }
.sf-opts input { accent-color: var(--sage-deep); width: 16px; height: 16px; }
.sf-opts label:has(input:checked) { border-color: var(--sage-deep); box-shadow: 0 0 0 3px rgba(95,113,80,.16); }
.sf-hint { color: var(--ink-soft); font-size: .96rem; margin: 0; }
.sf-res { display: none; background: #fff; border-radius: var(--radius); padding: 1.4rem 1.5rem; border-left: 3px solid var(--sage-deep); }
.sf-res h3 { color: var(--forest); margin-bottom: .4rem; }
.sf-res p { color: var(--ink-soft); margin: 0 0 .7rem; }
.stil-finder:has(#sf-kraft:checked) .sf-res.kraft,
.stil-finder:has(#sf-bewegung:checked) .sf-res.bewegung,
.stil-finder:has(#sf-ruhe:checked) .sf-res.ruhe { display: block; }
.stil-finder:has(input:checked) .sf-hint { display: none; }

/* Moment: Schultern lockern (Kreisbewegung) */
.moment-roll { color: var(--sage-deep); margin: .3rem 0; }
.moment-roll svg { width: 76px; height: 76px; animation: rollspin 7s linear infinite; }
@keyframes rollspin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .moment-roll svg { animation: none; } }

/* =====================================================================
   Angebot-Seite: kompakte Stil-Kacheln (nur Symbol + kurz) – KEIN Duplicate
   ===================================================================== */
.style-mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; max-width: 840px; margin-inline: auto; }
.style-mini { display: flex; flex-direction: column; align-items: center; text-align: center; gap: .4rem;
  background: #fff; border: 1px solid var(--sand-line); border-radius: var(--radius); padding: 1.9rem 1.4rem;
  color: inherit; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease); }
.style-mini:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.style-mini .style-symbol { margin: 0 0 .5rem; }
.style-mini:hover .style-symbol { transform: scale(1.1) rotate(-4deg); border-color: var(--sage-deep); }
.style-mini h3 { color: var(--forest); margin: 0; }
.style-mini .mini-sub { color: var(--sage-deep); font-family: var(--font-head); font-style: italic; font-size: 1rem; margin: 0; }
.style-mini .mini-more { color: var(--sage-deep); font-weight: 600; font-size: .88rem; margin-top: .4rem; }
@media (max-width: 700px) { .style-mini-grid { grid-template-columns: 1fr; max-width: 360px; } }

/* =====================================================================
   MOOD-PICKER – „Wonach ist dir heute?" als anklickbare Kreise (nur CSS)
   ===================================================================== */
.mood-picker { text-align: center; max-width: 780px; margin-inline: auto; }
.mp-q { font-family: var(--font-head); font-size: 1.4rem; color: var(--forest); margin-bottom: 1.6rem; }
.mp-circles { display: flex; justify-content: center; gap: clamp(1rem, 4vw, 2.6rem); flex-wrap: wrap; margin-bottom: 1.8rem; }
.mp-circle { cursor: pointer; }
.mp-circle input { position: absolute; opacity: 0; width: 0; height: 0; }
.mp-circle span { display: grid; place-items: center; width: clamp(94px, 26vw, 122px); aspect-ratio: 1; border-radius: 50%;
  border: 2px solid var(--sage); color: var(--forest); font-family: var(--font-head); font-size: 1.12rem; letter-spacing: .01em;
  background: radial-gradient(circle at 50% 34%, #fff, var(--sage-soft)); transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease); }
.mp-circle:hover span { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.mp-circle:has(input:checked) span { background: var(--sage-deep); color: #fff; border-color: var(--sage-deep); transform: scale(1.06); box-shadow: 0 0 0 6px rgba(95,113,80,.14); }
.mp-circle input:focus-visible ~ span { outline: 3px solid var(--sage-deep); outline-offset: 4px; }
.mp-hint { color: var(--ink-soft); font-size: .96rem; }
.mp-res { display: none; background: #fff; border: 1px solid var(--sand-line); border-radius: var(--radius-lg);
  padding: 1.7rem; max-width: 520px; margin: 0 auto; box-shadow: var(--shadow-sm); }
.mp-res .style-symbol { margin: 0 auto .8rem; }
.mp-res h3 { color: var(--forest); margin-bottom: .4rem; }
.mp-res p { color: var(--ink-soft); margin: 0 0 .8rem; }
.mood-picker:has(#sf-kraft:checked) .mp-res.kraft,
.mood-picker:has(#sf-bewegung:checked) .mp-res.bewegung,
.mood-picker:has(#sf-ruhe:checked) .mp-res.ruhe,
.mood-picker:has(#wf-ruhe:checked) .mp-res.ruhe,
.mood-picker:has(#wf-koerper:checked) .mp-res.koerper,
.mood-picker:has(#wf-neugier:checked) .mp-res.neugier { display: block; animation: momentin .5s var(--ease); }
.mood-picker:has(input:checked) .mp-hint { display: none; }
@keyframes momentin { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .mood-picker :is(.mp-res) { animation: none; } }
