/* =========================================================
   Bioresonanz Stettler — Design System
   Leitmotiv: „Schwingung & Harmonie"
   ========================================================= */

:root {
  /* Farben – Licht */
  --cream:      #F7F3EC;
  --cream-2:    #FBF8F2;
  --sand:       #EFE7D8;
  --sage:       #7FA893;
  --sage-2:     #6B937E;
  --forest:     #3C5A4B;
  --forest-2:   #2C4436;
  --gold:       #C89B6A;
  --gold-2:     #B5854F;
  --ink:        #26302A;
  --muted:      #5E6C63;
  --line:       #E2D9C9;
  --card:       #FFFFFF;
  --card-soft:  #FFFDF9;

  --shadow-sm: 0 2px 10px rgba(44,68,54,.06);
  --shadow-md: 0 12px 34px rgba(44,68,54,.10);
  --shadow-lg: 0 28px 70px rgba(44,68,54,.16);

  --radius:    18px;
  --radius-lg: 28px;
  --radius-sm: 12px;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Nunito Sans", system-ui, -apple-system, sans-serif;

  --container: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);

  --header-h: 76px;
}

:root[data-theme="dark"] {
  --cream:      #161C19;
  --cream-2:    #1B221E;
  --sand:       #212a25;
  --sage:       #7FA893;
  --sage-2:     #8FB8A2;
  --forest:     #A9CBB8;
  --forest-2:   #C7DED2;
  --gold:       #D9AE7C;
  --gold-2:     #E6C08E;
  --ink:        #ECE7DC;
  --muted:      #A7B2AA;
  --line:       #2C3630;
  --card:       #1E2621;
  --card-soft:  #222b25;

  --shadow-sm: 0 2px 10px rgba(0,0,0,.3);
  --shadow-md: 0 14px 34px rgba(0,0,0,.4);
  --shadow-lg: 0 30px 70px rgba(0,0,0,.5);
}

/* ---------- Reset / Base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background .5s var(--ease), color .5s var(--ease);
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

.container { width: min(100% - 44px, var(--container)); margin-inline: auto; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.1; letter-spacing: -.01em; }

.section { padding: clamp(46px, 6vw, 84px) 0; }
.eyebrow {
  font-size: .8rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--sage-2); margin-bottom: 14px;
}
:root[data-theme="dark"] .eyebrow { color: var(--sage-2); }

.section__head { max-width: 640px; margin: 0 auto clamp(26px, 3.6vw, 42px); text-align: center; }
.section__head--left { text-align: left; margin-inline: 0; }
.section__title { font-size: clamp(2rem, 4.4vw, 3.15rem); color: var(--forest-2); }
.section__lead { margin-top: 16px; color: var(--muted); font-size: 1.08rem; }

.skip-link {
  position: absolute; left: 12px; top: -60px; background: var(--forest); color: #fff;
  padding: 10px 16px; border-radius: 8px; z-index: 200; transition: top .2s;
}
.skip-link:focus { top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px; justify-content: center;
  padding: 15px 26px; border-radius: 100px; font-weight: 700; font-size: .98rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  will-change: transform;
}
.btn--sm { padding: 12px 22px; font-size: .92rem; }
.btn--block { width: 100%; }
.btn svg { transition: transform .25s var(--ease); }
.btn--primary { background: var(--forest); color: #F7F3EC; box-shadow: var(--shadow-md); }
:root[data-theme="dark"] .btn--primary { background: var(--sage); color: #10160f; }
.btn--primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn--primary:hover svg { transform: translateX(4px); }
.btn--ghost { background: transparent; color: var(--forest-2); border: 1.5px solid var(--line); }
.btn--ghost:hover { border-color: var(--sage); background: var(--card-soft); transform: translateY(-3px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: color-mix(in srgb, var(--cream) 82%, transparent);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: var(--shadow-sm); border-color: var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; width: min(100% - 44px, var(--container)); margin-inline: auto; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--forest); }
.brand__mark { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, var(--sage), var(--forest)); color: var(--cream-2); box-shadow: var(--shadow-sm); flex-shrink: 0; }
:root[data-theme="dark"] .brand__mark { color: #10160f; }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name { font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; color: var(--forest-2); }
.brand__tag { font-size: .72rem; color: var(--muted); letter-spacing: .02em; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav__link {
  padding: 10px 15px; border-radius: 100px; font-weight: 600; font-size: .95rem; color: var(--ink);
  transition: background .2s, color .2s; position: relative;
}
.nav__link:hover { background: var(--card-soft); color: var(--forest-2); }
.nav__link.is-active { color: var(--forest-2); }
.nav__link.is-active::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 4px; height: 2px;
  background: var(--gold); border-radius: 2px;
}
.nav__link--cta { background: var(--forest); color: #F7F3EC; margin-left: 8px; }
:root[data-theme="dark"] .nav__link--cta { background: var(--sage); color: #10160f; }
.nav__link--cta:hover { background: var(--forest-2); color: #fff; }
.nav__link--cta.is-active::after { display: none; }

.header__actions { display: flex; align-items: center; gap: 8px; }
.theme-toggle {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  color: var(--forest); border: 1.5px solid var(--line); transition: background .2s, transform .2s, border-color .2s;
}
.theme-toggle:hover { background: var(--card-soft); transform: rotate(-12deg); border-color: var(--sage); }
.theme-toggle .icon-moon { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: block; }

.burger { display: none; width: 42px; height: 42px; border-radius: 12px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; border: 1.5px solid var(--line); }
.burger span { width: 20px; height: 2px; background: var(--forest); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding-top: var(--header-h); overflow: hidden;
  background:
    radial-gradient(120% 90% at 80% -10%, color-mix(in srgb, var(--sage) 26%, transparent), transparent 55%),
    radial-gradient(90% 80% at 0% 100%, color-mix(in srgb, var(--gold) 18%, transparent), transparent 55%),
    var(--cream);
}
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero__glow {
  position: absolute; width: 620px; height: 620px; right: -140px; top: -120px; z-index: 0;
  background: radial-gradient(circle, color-mix(in srgb, var(--sage) 40%, transparent), transparent 65%);
  filter: blur(30px); pointer-events: none; animation: float 14s ease-in-out infinite;
}
@keyframes float { 0%,100%{ transform: translateY(0) scale(1);} 50%{ transform: translateY(30px) scale(1.06);} }

.hero__inner { position: relative; z-index: 2; padding: 40px 0; max-width: 760px; }
.hero__eyebrow { color: var(--sage-2); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; font-size: .82rem; margin-bottom: 20px; }
.hero__title { font-size: clamp(2.7rem, 7vw, 5rem); color: var(--forest-2); font-weight: 500; }
.accent-word { position: relative; color: var(--gold-2); font-style: italic; white-space: nowrap; }
.accent-word::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 4px; height: .5em;
  background: color-mix(in srgb, var(--gold) 28%, transparent); z-index: -1; border-radius: 4px;
  transform: scaleX(0); transform-origin: left; animation: underline 1s .6s var(--ease) forwards;
}
@keyframes underline { to { transform: scaleX(1); } }
.hero__lead { margin-top: 24px; font-size: clamp(1.06rem, 2vw, 1.28rem); color: var(--muted); max-width: 560px; }
.hero__lead em { color: var(--forest-2); font-style: italic; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero__badges { display: flex; flex-wrap: wrap; gap: 34px; margin-top: 54px; }
.hero__badges li { display: flex; flex-direction: column; }
.hero__badges strong { font-family: var(--font-display); font-size: 2.4rem; color: var(--forest-2); font-weight: 600; line-height: 1; }
.hero__badges span { font-size: .86rem; color: var(--muted); margin-top: 6px; }

.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3;
  width: 26px; height: 44px; border: 2px solid var(--sage-2); border-radius: 20px;
}
.hero__scroll span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; border-radius: 3px; background: var(--sage-2); transform: translateX(-50%); animation: scrolldot 1.8s infinite; }
@keyframes scrolldot { 0%{ opacity:0; transform: translate(-50%,0);} 40%{opacity:1;} 80%{opacity:0; transform: translate(-50%,14px);} }

/* ---------- Trust ---------- */
.trust { padding: clamp(38px, 5.5vw, 68px) 0 clamp(28px,4vw,46px); background: var(--cream-2); overflow: hidden; }
.trust__quote { text-align: center; max-width: 780px; margin: 0 auto 34px; }
.trust__quote blockquote { font-family: var(--font-display); font-style: italic; font-size: clamp(1.5rem, 3.6vw, 2.4rem); color: var(--forest-2); line-height: 1.3; }
.trust__quote figcaption { margin-top: 18px; color: var(--gold-2); font-weight: 700; letter-spacing: .04em; }
.trust__marquee { display: flex; gap: 14px; width: max-content; animation: marquee 38s linear infinite; }
.trust__marquee li {
  padding: 9px 20px; border: 1px solid var(--line); border-radius: 100px; color: var(--muted);
  font-size: .92rem; white-space: nowrap; background: var(--card-soft);
}
@keyframes marquee { to { transform: translateX(-50%); } }
.trust:hover .trust__marquee { animation-play-state: paused; }

/* ---------- Services ---------- */
.services { background: var(--cream); }
.filter { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px; }
.filter__btn {
  padding: 10px 20px; border-radius: 100px; font-weight: 600; font-size: .92rem; color: var(--muted);
  border: 1.5px solid var(--line); background: var(--card-soft); transition: all .25s var(--ease);
}
.filter__btn:hover { border-color: var(--sage); color: var(--forest-2); }
.filter__btn.is-active { background: var(--forest); color: #F7F3EC; border-color: var(--forest); }
:root[data-theme="dark"] .filter__btn.is-active { background: var(--sage); color: #10160f; }

.services__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(288px, 1fr)); gap: 22px; }
.card {
  position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0; overflow: hidden; cursor: pointer; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s, opacity .4s, scale .4s;
}
.card__photo { position: relative; aspect-ratio: 68 / 42; overflow: hidden; background: var(--sand); }
.card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card__photo img { transform: scale(1.06); }
.card__photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 48%, color-mix(in srgb, var(--card) 55%, transparent) 82%, var(--card) 100%); }
.card__body { padding: 22px 26px 26px; position: relative; }
.card::before {
  content: ""; position: absolute; inset: 0; background: radial-gradient(120% 80% at 50% 0%, color-mix(in srgb, var(--sage) 12%, transparent), transparent 60%);
  opacity: 0; transition: opacity .4s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: color-mix(in srgb, var(--sage) 50%, var(--line)); }
.card:hover::before { opacity: 1; }
.card.is-hidden { display: none; }
.card__icon {
  position: absolute; left: 22px; top: -27px; z-index: 2;
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow-md);
  font-size: 1.6rem;
}
.card__body { padding-top: 40px; }
.card h3 { font-size: 1.42rem; color: var(--forest-2); margin-bottom: 8px; position: relative; }
.card__tag { position: relative; display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 14px; }
.card__desc { position: relative; color: var(--muted); font-size: .98rem; }
.card__detail {
  position: relative; max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height .45s var(--ease), opacity .35s, margin .35s;
}
.card.is-open .card__detail { max-height: 260px; opacity: 1; margin-top: 16px; }
.card__detail p { color: var(--muted); font-size: .94rem; margin-bottom: 14px; }
.card__meta { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding-top: 14px; border-top: 1px solid var(--line); }
.card__price { font-family: var(--font-display); font-size: 1.4rem; color: var(--forest-2); font-weight: 600; }
.card__dur { font-size: .84rem; color: var(--muted); }
.card__more {
  position: relative; margin-top: 16px; display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; font-size: .88rem; color: var(--sage-2);
}
.card__more svg { transition: transform .35s var(--ease); }
.card.is-open .card__more svg { transform: rotate(180deg); }

/* ---------- How it works ---------- */
.how { background: var(--cream-2); }
.how__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.steps { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.step {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px;
  position: relative; transition: transform .3s var(--ease), box-shadow .3s;
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.step__num { font-family: var(--font-display); font-size: 2.1rem; color: color-mix(in srgb, var(--sage) 60%, transparent); font-weight: 600; }
.step h3 { font-size: 1.24rem; color: var(--forest-2); margin: 8px 0 6px; }
.step p { color: var(--muted); font-size: .93rem; }

/* ---------- Klang ---------- */
.klang { background: linear-gradient(180deg, var(--cream) 0%, var(--sand) 100%); }
.klang__hint { display: inline-block; margin-left: 6px; font-size: .86rem; color: var(--gold-2); font-weight: 700; }
.klang__stage { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(30px, 5vw, 64px); }
.klang__photo { margin: 0; width: 264px; flex-shrink: 0; position: relative; }
.klang__photo::before {
  content: ""; position: absolute; inset: -14%; z-index: 0; border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--gold) 45%, transparent), transparent 68%);
  filter: blur(10px); animation: morph 20s ease-in-out infinite;
}
.klang__photo img {
  position: relative; z-index: 1; width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: 58% 42% 47% 53% / 48% 53% 47% 52%;
  box-shadow: 0 28px 56px -20px rgba(44,68,54,.55);
  animation: morph 17s ease-in-out infinite;
}
@media (max-width: 720px) { .klang__photo { display: none; } }
.bowl { position: relative; width: 300px; height: 260px; display: grid; place-items: center; user-select: none; }
.bowl:focus-visible { outline: 3px solid var(--sage); outline-offset: 8px; border-radius: 30px; }
.bowl__svg { width: 260px; overflow: visible; filter: drop-shadow(0 24px 30px rgba(44,68,54,.25)); }
.bowl__rim { fill: none; stroke: var(--gold-2); stroke-width: 6; }
.bowl__body { fill: url(#bowlgrad); fill: linear-gradient(var(--gold), var(--gold-2)); }
.bowl__body { fill: #C89B6A; }
:root[data-theme="dark"] .bowl__body { fill: #B5854F; }
.bowl__inner { fill: color-mix(in srgb, #000 22%, var(--gold-2)); }
.bowl__mallet {
  position: absolute; top: 6px; right: 40px; width: 14px; height: 90px; border-radius: 8px;
  background: linear-gradient(var(--forest), #6b4f32); transform-origin: bottom center; transform: rotate(16deg);
  transition: transform .12s var(--ease); pointer-events: none;
}
.bowl__mallet::after { content:""; position:absolute; top:-14px; left:50%; width:26px; height:26px; border-radius:50%; background:#8a6a45; transform: translateX(-50%); }
.bowl.is-struck .bowl__mallet { transform: rotate(-4deg); }
.bowl.is-struck .bowl__svg { animation: bowlshake .6s var(--ease); }
@keyframes bowlshake { 0%,100%{transform:translateX(0);} 20%{transform:translateX(-3px);} 60%{transform:translateX(2px);} }
.bowl__ripple {
  position: absolute; width: 200px; height: 60px; border-radius: 50%; border: 2px solid var(--sage);
  top: 92px; opacity: 0; pointer-events: none;
}
.bowl.is-struck .bowl__ripple { animation: ripple 1.4s var(--ease); }
@keyframes ripple { 0%{ transform: scale(.5); opacity:.8;} 100%{ transform: scale(2.4); opacity:0;} }

.klang__controls { text-align: center; min-width: 240px; }
.klang__label { font-family: var(--font-display); font-size: 1.2rem; color: var(--forest-2); margin-bottom: 16px; }
.tones { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; max-width: 300px; margin-inline: auto; }
.tone {
  padding: 12px 14px; border-radius: 14px; border: 1.5px solid var(--line); background: var(--card);
  font-weight: 700; color: var(--forest-2); transition: all .2s var(--ease); font-size: .9rem;
}
.tone small { display: block; font-weight: 500; font-size: .72rem; color: var(--muted); }
.tone:hover { border-color: var(--sage); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.tone.is-active { background: var(--forest); color: #F7F3EC; border-color: var(--forest); }
:root[data-theme="dark"] .tone.is-active { background: var(--sage); color: #10160f; }
.tone.is-active small { color: color-mix(in srgb, #F7F3EC 75%, transparent); }
.klang__playing { margin-top: 20px; font-size: .9rem; color: var(--muted); font-style: italic; min-height: 1.4em; }

/* ---------- About ---------- */
.about { background: var(--cream); }
.about__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(36px, 6vw, 76px); align-items: center; }
.portrait { position: relative; max-width: 440px; }
.portrait__img {
  position: relative; z-index: 1; width: 100%; aspect-ratio: 5 / 4; object-fit: cover; display: block;
  border-radius: 46% 54% 57% 43% / 52% 46% 54% 48%;
  box-shadow: 0 34px 64px -22px rgba(44,68,54,.5);
  animation: morph 18s ease-in-out infinite;
}
.portrait__blob {
  position: absolute; inset: -9% -7% -5% -9%; z-index: 0;
  background: radial-gradient(circle at 32% 28%, var(--sage), var(--forest) 75%);
  border-radius: 54% 46% 43% 57% / 46% 54% 46% 54%;
  filter: blur(8px); opacity: .55;
  animation: morph 22s ease-in-out infinite reverse;
}
.portrait__leaf {
  position: absolute; z-index: 2; right: -6px; top: -18px; color: var(--gold-2);
  animation: sway 7s ease-in-out infinite; transform-origin: bottom center;
}
.portrait__badge {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  background: var(--card); color: var(--forest-2); font-family: var(--font-display); font-weight: 600;
  padding: 10px 22px; border-radius: 100px; box-shadow: var(--shadow-md); font-size: 1.05rem; white-space: nowrap;
}
.about__body p { color: var(--muted); margin-bottom: 16px; max-width: 560px; }
.creds { display: grid; gap: 12px; margin-top: 26px; }
.creds li {
  background: var(--card); border: 1px solid var(--line); border-left: 3px solid var(--sage);
  border-radius: 12px; padding: 14px 18px; color: var(--muted); font-size: .92rem;
  transition: transform .25s var(--ease), border-color .25s;
}
.creds li:hover { transform: translateX(6px); border-left-color: var(--gold); }
.creds li span { display: block; font-family: var(--font-display); font-weight: 600; color: var(--forest-2); font-size: 1.02rem; margin-bottom: 2px; }

/* ---------- Pricing ---------- */
.pricing { background: var(--cream-2); }
.pricing__table { max-width: 760px; margin: 0 auto; display: grid; gap: 2px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.price-row {
  display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: center;
  padding: 20px 26px; background: var(--card); transition: background .25s;
}
.price-row:hover { background: var(--card-soft); }
.price-row__name { font-family: var(--font-display); font-size: 1.14rem; color: var(--forest-2); font-weight: 600; }
.price-row__dur { font-size: .84rem; color: var(--muted); }
.price-row__cost { font-family: var(--font-display); font-size: 1.35rem; color: var(--gold-2); font-weight: 600; white-space: nowrap; }
.pricing__note { text-align: center; margin-top: 24px; color: var(--muted); font-size: .92rem; }

/* ---------- Testimonials ---------- */
.testi { background: var(--cream); overflow: hidden; }
.testi__viewport { max-width: 800px; margin: 0 auto; }
.testi__track { display: flex; transition: transform .6s var(--ease); }
.testi__card {
  min-width: 100%; padding: 8px;
}
.testi__inner {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px); text-align: center; box-shadow: var(--shadow-sm);
}
.testi__stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 18px; font-size: 1.1rem; }
.testi__text { font-family: var(--font-display); font-style: italic; font-size: clamp(1.2rem, 2.6vw, 1.6rem); color: var(--forest-2); line-height: 1.45; }
.testi__author { margin-top: 22px; font-weight: 700; color: var(--ink); }
.testi__meta { font-size: .86rem; color: var(--muted); }
.testi__nav { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 28px; }
.testi__btn { width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--line); font-size: 1.5rem; color: var(--forest-2); display: grid; place-items: center; transition: all .2s; }
.testi__btn:hover { background: var(--forest); color: #fff; border-color: var(--forest); }
.testi__dots { display: flex; gap: 8px; }
.testi__dots button { width: 9px; height: 9px; border-radius: 50%; background: var(--line); transition: all .3s; }
.testi__dots button.is-active { background: var(--gold); width: 26px; border-radius: 6px; }

/* ---------- FAQ ---------- */
.faq { background: var(--cream-2); }
.faq__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(30px, 5vw, 64px); align-items: start; }
.faq__list { display: grid; gap: 12px; }
.faq__item { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color .3s, box-shadow .3s; }
.faq__item.is-open { border-color: color-mix(in srgb, var(--sage) 50%, var(--line)); box-shadow: var(--shadow-sm); }
.faq__q { width: 100%; text-align: left; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--font-display); font-size: 1.12rem; color: var(--forest-2); font-weight: 600; }
.faq__q span { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--sand); display: grid; place-items: center; transition: transform .35s var(--ease), background .3s; font-size: 1.2rem; line-height: 1; }
.faq__item.is-open .faq__q span { transform: rotate(45deg); background: var(--sage); color: #fff; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq__a p { padding: 0 24px 22px; color: var(--muted); }

/* ---------- Contact ---------- */
.contact { background: var(--cream); }
.contact__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(36px, 6vw, 72px); align-items: start; }
.contact__list { display: grid; gap: 20px; margin-top: 30px; }
.contact__list li { display: flex; gap: 16px; align-items: flex-start; }
.contact__ic { width: 46px; height: 46px; border-radius: 14px; background: var(--card); border: 1px solid var(--line); display: grid; place-items: center; font-size: 1.2rem; flex-shrink: 0; box-shadow: var(--shadow-sm); }
.contact__list strong { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 3px; }
.contact__list a, .contact__list span { color: var(--forest-2); font-size: 1.05rem; font-weight: 600; }
.contact__list a:hover { color: var(--gold-2); }

.contact__form { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow-md); }
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-weight: 700; font-size: .88rem; color: var(--forest-2); margin-bottom: 8px; }
.field .opt { font-weight: 400; color: var(--muted); font-size: .8rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border-radius: var(--radius-sm); border: 1.5px solid var(--line);
  background: var(--card-soft); color: var(--ink); font-family: inherit; font-size: 1rem; transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sage); box-shadow: 0 0 0 4px color-mix(in srgb, var(--sage) 20%, transparent);
}
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #cc6b5a; }
.field__err { display: block; color: #cc6b5a; font-size: .8rem; margin-top: 6px; min-height: 1em; }
.form__status { margin-top: 14px; font-weight: 700; text-align: center; min-height: 1.4em; }
.form__status.ok { color: var(--sage-2); }
.form__hint { text-align: center; font-size: .78rem; color: var(--muted); margin-top: 10px; }

/* ---------- Gallery ---------- */
.gallery { background: linear-gradient(180deg, var(--cream) 0%, var(--sand) 100%); }
.gallery__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  grid-auto-rows: 220px;
}
.gal {
  position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line); padding: 0; background: var(--sand);
}
.gal:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gal img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gal:hover img { transform: scale(1.07); }
.gal::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(20,30,25,.6)); opacity: .85; transition: opacity .3s; }
.gal:hover::after { opacity: 1; }
.gal__cap {
  position: absolute; left: 16px; right: 46px; bottom: 14px; z-index: 2; color: #F7F3EC;
  font-size: .9rem; font-weight: 600; text-align: left; line-height: 1.3;
  transform: translateY(6px); opacity: .9; transition: transform .3s, opacity .3s;
}
.gal:hover .gal__cap { transform: translateY(0); opacity: 1; }
.gal__zoom {
  position: absolute; right: 14px; bottom: 12px; z-index: 2; width: 32px; height: 32px; border-radius: 50%;
  background: rgba(247,243,236,.9); color: var(--forest-2); display: grid; place-items: center; font-size: 1.2rem; font-weight: 700;
  transform: scale(.85); transition: transform .3s;
}
.gal:hover .gal__zoom { transform: scale(1); }
.gal:focus-visible { outline: 3px solid var(--sage); outline-offset: 3px; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 300; display: none; align-items: center; justify-content: center;
  background: rgba(18,24,20,.86); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); padding: 24px;
}
.lightbox.is-open { display: flex; animation: lbfade .3s var(--ease); }
@keyframes lbfade { from { opacity: 0; } to { opacity: 1; } }
.lb__figure { margin: 0; max-width: min(1000px, 92vw); max-height: 86vh; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.lb__figure img { max-width: 100%; max-height: 78vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); object-fit: contain; }
.lb__figure figcaption { color: #F7F3EC; font-family: var(--font-display); font-size: 1.1rem; text-align: center; }
.lb__btn {
  position: absolute; width: 52px; height: 52px; border-radius: 50%; background: rgba(247,243,236,.14); color: #F7F3EC;
  font-size: 1.8rem; display: grid; place-items: center; transition: background .2s, transform .2s; backdrop-filter: blur(4px);
}
.lb__btn:hover { background: rgba(247,243,236,.28); transform: scale(1.08); }
.lb__close { top: 22px; right: 22px; font-size: 1.4rem; }
.lb__prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lb__next { right: 22px; top: 50%; transform: translateY(-50%); }
.lb__prev:hover, .lb__next:hover { transform: translateY(-50%) scale(1.08); }
@media (max-width: 620px) {
  .lb__prev { left: 10px; } .lb__next { right: 10px; }
  .lb__btn { width: 44px; height: 44px; }
}

/* ---------- Footer ---------- */
.footer { background: var(--forest-2); color: color-mix(in srgb, #F7F3EC 82%, transparent); padding: 64px 0 30px; }
:root[data-theme="dark"] .footer { background: #10160f; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(247,243,236,.14); }
.footer .brand__mark { background: rgba(247,243,236,.12); color: #F7F3EC; margin-bottom: 16px; }
.footer__name { font-family: var(--font-display); font-size: 1.3rem; color: #F7F3EC; }
.footer__mini { font-size: .92rem; margin-top: 6px; max-width: 260px; }
.footer__nav { display: grid; gap: 10px; align-content: start; }
.footer__nav a { font-weight: 600; transition: color .2s; }
.footer__nav a:hover { color: var(--gold); }
.footer__contact p { margin-bottom: 8px; font-size: .95rem; }
.footer__contact a:hover { color: var(--gold); }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-top: 24px; font-size: .82rem; color: rgba(247,243,236,.6); }

/* ---------- To top / toast ---------- */
.totop {
  position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 50px; height: 50px; border-radius: 50%;
  background: var(--forest); color: #F7F3EC; display: grid; place-items: center; box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(16px); transition: all .35s var(--ease);
}
:root[data-theme="dark"] .totop { background: var(--sage); color: #10160f; }
.totop.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.totop:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.toast {
  position: fixed; left: 50%; bottom: 30px; transform: translate(-50%, 120%); z-index: 200;
  background: var(--forest-2); color: #F7F3EC; padding: 14px 24px; border-radius: 100px; box-shadow: var(--shadow-lg);
  font-weight: 600; transition: transform .5s var(--ease); max-width: 90vw; text-align: center;
}
.toast.is-visible { transform: translate(-50%, 0); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(32px) scale(.985); filter: blur(9px); transition: opacity 1s var(--ease), transform 1s var(--ease), filter 1s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; filter: blur(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; filter: none !important; transition: none; }
  .hero__glow, .trust__marquee, .hero__scroll span, .accent-word::after { animation: none !important; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .05ms !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .how__grid, .about__grid, .faq__grid, .contact__grid { grid-template-columns: 1fr; }
  .about__portrait { order: -1; margin-inline: auto; }
  .faq__grid .section__head--left { text-align: center; }
}
@media (max-width: 820px) {
  .burger { display: flex; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--cream); padding: 16px 22px 26px; gap: 4px; box-shadow: var(--shadow-lg);
    transform: translateY(-120%); transition: transform .4s var(--ease); border-bottom: 1px solid var(--line);
  }
  .nav.is-open { transform: translateY(0); }
  .nav__link { padding: 14px 16px; font-size: 1.05rem; }
  .nav__link.is-active::after { display: none; }
  .nav__link--cta { margin: 8px 0 0; text-align: center; }
  .brand__tag { display: none; }
}
@media (max-width: 760px) {
  .gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .gal:nth-child(1) { grid-column: span 2; grid-row: auto; }
  .gal:nth-child(6) { grid-column: span 2; }
}
@media (max-width: 480px) {
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 210px; }
  .gal:nth-child(1), .gal:nth-child(6) { grid-column: auto; }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero__badges { gap: 22px; }
  .hero__badges strong { font-size: 2rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .tones { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   IMMERSIVE ENHANCEMENTS — Wohlfühl · Übergänge · Animationen
   ============================================================ */

/* Feine Körnung über der ganzen Seite (Wärme & Tiefe) */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 120; pointer-events: none;
  opacity: .04; mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Scroll-Fortschritt */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 150;
  background: linear-gradient(90deg, var(--sage), var(--gold));
  box-shadow: 0 0 12px color-mix(in srgb, var(--gold) 70%, transparent);
  transition: width .12s linear;
}

/* Fließende, abgerundete Sektions-Übergänge (sanftes Überlappen) */
main > section:not(.hero) {
  position: relative;
  border-top-left-radius: clamp(26px, 3.6vw, 52px);
  border-top-right-radius: clamp(26px, 3.6vw, 52px);
  margin-top: clamp(-48px, -3.2vw, -26px);
  overflow: hidden;
  box-shadow: 0 -26px 52px -34px rgba(44,68,54,.22);
}
.footer {
  position: relative;
  border-top-left-radius: clamp(26px, 3.6vw, 52px);
  border-top-right-radius: clamp(26px, 3.6vw, 52px);
  margin-top: clamp(-48px, -3.2vw, -26px);
}
.hero__scroll { bottom: 48px; }

/* Sanfte Farb-Orbs im Hero */
.hero__orbs { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.hero__orbs span { position: absolute; border-radius: 50%; filter: blur(36px); opacity: .42; will-change: transform; }
.hero__orbs span:nth-child(1) { width: 320px; height: 320px; left: -80px; top: 12%;
  background: radial-gradient(circle, var(--sage), transparent 70%); animation: drift 24s ease-in-out infinite; }
.hero__orbs span:nth-child(2) { width: 240px; height: 240px; right: -60px; top: 26%;
  background: radial-gradient(circle, var(--gold), transparent 70%); animation: drift 30s ease-in-out infinite reverse; }
.hero__orbs span:nth-child(3) { width: 210px; height: 210px; left: 42%; bottom: -30px;
  background: radial-gradient(circle, color-mix(in srgb, var(--forest) 60%, transparent), transparent 70%); animation: drift 27s 2s ease-in-out infinite; }

/* Driftende Blütenblätter */
.petals { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.petals span {
  position: absolute; top: -6%; width: 16px; height: 16px; opacity: 0; color: var(--sage-2);
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 0C3 5 3 11 8 16 13 11 13 5 8 0Z' fill='black'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 0C3 5 3 11 8 16 13 11 13 5 8 0Z' fill='black'/%3E%3C/svg%3E") center/contain no-repeat;
  animation: fall linear infinite; will-change: transform;
}
.petals--light span { color: rgba(247,243,236,.85); }

/* Hero-CTA sanftes Pulsieren */
.hero__cta .btn--primary { animation: ctaPulse 3.6s ease-in-out infinite; }

/* ---------- Ruhe-Band „Durchatmen" ---------- */
.breathe {
  position: relative; min-height: 62vh; display: grid; place-items: center; text-align: center;
  color: #F7F3EC; isolation: isolate;
}
.breathe__bg {
  position: absolute; inset: -22% 0; z-index: -2; will-change: transform;
  background: url("../assets/images/atmosphere.jpg") center/cover no-repeat;
}
.breathe__overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(26,40,32,.88), rgba(26,40,32,.58) 45%, rgba(26,40,32,.92));
}
.breathe__inner { position: relative; padding: clamp(48px, 7vw, 88px) 0; }
.eyebrow--light { color: var(--gold); }
.breathe__title { color: #fff; font-size: clamp(2.1rem, 5vw, 3.6rem); }
.breathe__lead { max-width: 540px; margin: 26px auto 0; color: rgba(247,243,236,.9); font-size: 1.08rem; }

/* Atem-Kreis */
.breather { position: relative; width: clamp(150px, 32vw, 190px); aspect-ratio: 1; margin: 42px auto 6px; display: grid; place-items: center; }
.breather__ring, .breather__glow, .breather__core { position: absolute; border-radius: 50%; will-change: transform; }
.breather__ring { inset: 0; border: 2px solid rgba(247,243,236,.55); animation: breathe 9s ease-in-out infinite; }
.breather__glow { inset: 6%; background: radial-gradient(circle, rgba(200,155,106,.7), transparent 70%); animation: breathe 9s ease-in-out infinite; }
.breather__core { width: 38%; aspect-ratio: 1; background: rgba(247,243,236,.92); box-shadow: 0 0 40px rgba(247,243,236,.5); animation: breatheCore 9s ease-in-out infinite; }
.breather__label { position: relative; z-index: 1; color: var(--forest-2); font-weight: 800; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; }

/* ---------- Keyframes ---------- */
@keyframes morph {
  0%, 100% { border-radius: 46% 54% 57% 43% / 52% 46% 54% 48%; }
  33% { border-radius: 60% 40% 42% 58% / 48% 60% 40% 52%; }
  66% { border-radius: 42% 58% 60% 40% / 58% 42% 56% 44%; }
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(28px, -22px) scale(1.08); }
}
@keyframes fall {
  0% { transform: translateY(-10%) translateX(0) rotate(0deg); opacity: 0; }
  12% { opacity: .85; }
  88% { opacity: .7; }
  100% { transform: translateY(105vh) translateX(46px) rotate(300deg); opacity: 0; }
}
@keyframes sway { 0%, 100% { transform: rotate(-9deg) translateY(0); } 50% { transform: rotate(9deg) translateY(-6px); } }
@keyframes breathe { 0%, 100% { transform: scale(.66); } 45%, 55% { transform: scale(1.12); } }
@keyframes breatheCore { 0%, 100% { transform: scale(.8); opacity: .85; } 45%, 55% { transform: scale(1.18); opacity: 1; } }
@keyframes ctaPulse {
  0%, 100% { box-shadow: var(--shadow-md); }
  50% { box-shadow: 0 20px 46px -12px color-mix(in srgb, var(--forest) 55%, transparent); }
}

@media (max-width: 720px) {
  .breathe { min-height: 54vh; }
  .breathe__bg { background-attachment: scroll; }
}

/* ============================================================
   FUN & EXTREME v2 — Cursor, Tilt, Magnet, Siegel, Varianz
   ============================================================ */

/* Cursor-Glow */
.cursor-glow {
  position: fixed; top: 0; left: 0; width: 42px; height: 42px; border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--gold) 55%, transparent), transparent 70%);
  pointer-events: none; z-index: 90; mix-blend-mode: multiply; opacity: 0;
  transition: width .3s var(--ease), height .3s var(--ease), background .3s, opacity .4s; will-change: transform;
}
:root[data-theme="dark"] .cursor-glow { mix-blend-mode: screen; }
.cursor-glow.is-active { opacity: 1; }
.cursor-glow.is-hover { width: 96px; height: 96px; background: radial-gradient(circle, color-mix(in srgb, var(--sage) 50%, transparent), transparent 70%); }
@media (hover: none), (pointer: coarse) { .cursor-glow { display: none; } }

/* Magnet & Tilt */
.magnetic { transition: transform .3s var(--ease); }
[data-tilt] { transition: transform .2s ease-out; transform-style: preserve-3d; }

/* Rotierendes Siegel */
.seal {
  position: absolute; z-index: 3; right: clamp(10px, 4vw, 56px); bottom: clamp(80px, 12vh, 128px);
  width: clamp(94px, 11vw, 128px); aspect-ratio: 1; display: grid; place-items: center;
}
.seal svg { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 26s linear infinite; }
.seal text { font-size: 12.5px; font-weight: 700; letter-spacing: 1.4px; fill: var(--forest-2); text-transform: uppercase; }
.seal__center { font-size: 1.35rem; color: var(--gold-2); animation: pulse-soft 3s ease-in-out infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse-soft { 0%, 100% { transform: scale(1); opacity: .75; } 50% { transform: scale(1.3); opacity: 1; } }
@media (max-width: 640px) { .seal { display: none; } }

/* Wort-Rotator */
.accent-word.is-swap { animation: wordSwap .55s var(--ease); }
@keyframes wordSwap {
  0% { opacity: 0; transform: translateY(22px) rotateX(-55deg); filter: blur(7px); }
  60% { filter: blur(0); }
  100% { opacity: 1; transform: none; }
}

/* Klang: Noten-Partikel */
.note {
  position: absolute; left: 50%; top: 42%; z-index: 6; pointer-events: none;
  font-size: 1.5rem; color: var(--gold-2); text-shadow: 0 2px 12px rgba(200,155,106,.5);
  will-change: transform, opacity; animation: noteFloat 1.6s ease-out forwards;
}
@keyframes noteFloat {
  0% { opacity: 0; transform: translate(-50%, 8px) scale(.4); }
  15% { opacity: 1; }
  100% { opacity: 0; transform: translate(calc(-50% + var(--nx, 0)), -134px) scale(1.3) rotate(var(--nr, 0)); }
}

/* Seitliche Punkt-Navigation */
.side-dots { position: fixed; right: 20px; top: 50%; transform: translateY(-50%); z-index: 88; display: flex; flex-direction: column; gap: 14px; align-items: center; }
.side-dots a { width: 11px; height: 11px; border-radius: 50%; background: color-mix(in srgb, var(--forest) 26%, transparent); transition: all .3s var(--ease); position: relative; }
.side-dots a:hover { background: var(--gold); transform: scale(1.35); }
.side-dots a.is-active { background: var(--gold); height: 28px; border-radius: 6px; }
.side-dots a span {
  position: absolute; right: 24px; top: 50%; transform: translateY(-50%) translateX(6px);
  background: var(--forest-2); color: #F7F3EC; font-size: .72rem; font-weight: 600; padding: 5px 11px; border-radius: 10px;
  white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s; box-shadow: var(--shadow-md);
}
.side-dots a:hover span { opacity: 1; transform: translateY(-50%) translateX(0); }
@media (max-width: 1100px) { .side-dots { display: none; } }

/* Dekorative Parallax-Blobs */
.deco-blob { position: absolute; border-radius: 50%; filter: blur(46px); opacity: .3; pointer-events: none; z-index: 0; will-change: transform; }

/* Reveal-Richtungsvarianten (Einflug von den Seiten) */
.reveal--left { transform: translateX(-70px) scale(.97); }
.reveal--right { transform: translateX(70px) scale(.97); }
.reveal--left.is-in, .reveal--right.is-in { transform: none; }

/* Kopf-Ausrichtung rechts */
.section__head--right { text-align: right; margin-left: auto; margin-right: 0; }

/* Layout-Varianz: Über-mich gespiegelt, Angebote versetzt (Desktop) */
@media (min-width: 941px) {
  .about__grid { grid-template-columns: 1.15fr .85fr; }
  .about__portrait { order: 2; }
}
@media (min-width: 760px) {
  .services__grid .card:nth-child(even) { margin-top: 34px; }
}
