/* ============================================================
   Mainklang – Klangmeditation & Klangmassage, Kitzingen
   Warm, ruhig, editorial. Fraunces + Nunito Sans.
   ============================================================ */

:root {
  --cream: #f7f1e8;
  --cream-soft: #efe6d8;
  --card: #fbf7f0;
  --earth: #2b2019;
  --earth-soft: #4a3c30;
  --ink: #33281f;
  --ink-muted: #6f6152;
  --gold: #b08d57;
  --gold-light: #d3b98d;
  --gold-faint: rgba(176, 141, 87, 0.28);
  --forest: #5c6f47;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Nunito Sans", "Segoe UI", sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* subtle paper grain */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 300; line-height: 1.15; font-variation-settings: "WONK" 0, "SOFT" 0; font-feature-settings: "ss01" 0, "ss02" 0; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
.container-narrow { max-width: 880px; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(247, 241, 232, 0.97);
  box-shadow: 0 1px 0 rgba(43, 32, 25, 0.08);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #fff;
  transition: color 0.4s;
}
.nav.scrolled .nav-brand { color: var(--earth); }
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.25rem);
}
.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav.scrolled .nav-links a { color: var(--ink-muted); }
.nav-links a:hover { color: var(--gold); }
.nav-links .nav-cta {
  border: 1px solid var(--gold);
  padding: 0.55em 1.4em;
  color: var(--gold-light);
}
.nav.scrolled .nav-links .nav-cta { color: var(--gold); }
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover { background: var(--gold); color: var(--cream) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 34px; height: 26px;
  position: relative;
  cursor: pointer;
  z-index: 110;
}
.nav-toggle span {
  position: absolute;
  left: 4px; right: 4px;
  height: 1.5px;
  background: #fff;
  transition: all 0.35s var(--ease);
}
.nav.scrolled .nav-toggle span, .nav.open .nav-toggle span { background: var(--earth); }
.nav-toggle span:nth-child(1) { top: 8px; }
.nav-toggle span:nth-child(2) { top: 17px; }
.nav.open .nav-toggle span:nth-child(1) { top: 12px; transform: rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { top: 12px; transform: rotate(-45deg); }

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    z-index: 105;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    padding: 6rem 1.5rem 3rem;
    transition: opacity 0.35s var(--ease), visibility 0s linear 0.35s;
  }
  .nav.open .nav-links { opacity: 1; visibility: visible; pointer-events: auto; transition-delay: 0s; }
  .nav-links a { color: var(--ink) !important; font-size: 0.95rem; }
  .nav.open { background: transparent; box-shadow: none; backdrop-filter: none; }
  .nav.open .nav-brand { color: var(--earth); position: relative; z-index: 110; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 65%;
  transform: scale(1.06);
  animation: heroZoom 12s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30, 22, 16, 0.55) 0%, rgba(30, 22, 16, 0.42) 45%, rgba(30, 22, 16, 0.68) 100%);
}

/* concentric sound ripples */
.hero-ripples {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-ripples span {
  position: absolute;
  left: 50%; top: 50%;
  width: 40vmin; height: 40vmin;
  border: 1px solid rgba(211, 185, 141, 0.35);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: ripple 9s linear infinite;
  opacity: 0;
}
.hero-ripples span:nth-child(2) { animation-delay: 2.25s; }
.hero-ripples span:nth-child(3) { animation-delay: 4.5s; }
.hero-ripples span:nth-child(4) { animation-delay: 6.75s; }
@keyframes ripple {
  0% { width: 30vmin; height: 30vmin; opacity: 0; }
  15% { opacity: 0.7; }
  100% { width: 130vmin; height: 130vmin; opacity: 0; }
}

.hero-content { position: relative; z-index: 2; padding: 0 1.5rem; max-width: 860px; }
.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.3s forwards;
}
.hero-title {
  font-size: clamp(3.4rem, 10vw, 7rem);
  color: #fdfaf5;
  letter-spacing: 0.01em;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease) 0.55s forwards;
}
.hero-title em { font-style: normal; color: var(--gold-light); }
.hero-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 2.6vw, 1.6rem);
  color: rgba(253, 250, 245, 0.88);
  margin-top: 1.25rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.85s forwards;
}
.hero-content .btn { margin-top: 2.75rem; opacity: 0; animation: fadeUp 1s var(--ease) 1.15s forwards; }

.hero-scroll {
  position: absolute;
  bottom: 2.2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px; height: 44px;
  border: 1px solid rgba(253, 250, 245, 0.5);
  border-radius: 14px;
}
.hero-scroll span {
  position: absolute;
  left: 50%; top: 9px;
  width: 3px; height: 8px;
  margin-left: -1.5px;
  border-radius: 2px;
  background: var(--gold-light);
  animation: scrollDot 2.2s var(--ease) infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(16px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.95em 2.4em;
  transition: all 0.35s var(--ease);
}
.btn-ghost {
  border: 1px solid var(--gold-light);
  color: var(--gold-light);
}
.btn-ghost:hover { background: rgba(211, 185, 141, 0.14); }
.btn-solid {
  background: var(--gold);
  color: var(--cream);
  border: 1px solid var(--gold);
}
.btn-solid:hover { background: #9a7a49; border-color: #9a7a49; }
.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--cream); }

/* ---------- Sections ---------- */
.section { padding: clamp(5rem, 10vw, 8.5rem) 0; position: relative; }
.section-alt { background: var(--cream-soft); }

.section-head { text-align: center; margin-bottom: clamp(3rem, 6vw, 4.5rem); }
.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.eyebrow-gold { color: var(--gold-light); }
.section-head h2, .service-text h2 {
  font-size: clamp(2.1rem, 4.6vw, 3.2rem);
  color: var(--earth);
}
.rule {
  width: 64px; height: 1px;
  background: var(--gold);
  margin: 1.6rem auto 0;
  position: relative;
}
.rule::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 7px; height: 7px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--gold);
}
.rule-left { margin-left: 0; }
.rule-gold { background: var(--gold-light); }
.rule-gold::after { background: var(--gold-light); }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.about-figure { position: relative; }
.about-figure img {
  position: relative;
  z-index: 1;
  border-radius: 2px;
  box-shadow: 0 24px 60px -24px rgba(43, 32, 25, 0.4);
}
.figure-frame {
  position: absolute;
  inset: -18px 18px 18px -18px;
  border: 1px solid var(--gold-faint);
  border-radius: 2px;
}
.about-text p { color: var(--ink-muted); margin-bottom: 1.35rem; }
.about-text p:last-child { margin-bottom: 0; }
.lead-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--earth) !important;
  line-height: 1.5;
  border-left: 2px solid var(--gold);
  padding-left: 1.25rem;
}

/* ---------- Services ---------- */
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
  max-width: 1060px;
  margin: 0 auto;
}
.service-grid-flip .service-figure { order: 2; }
.service-grid-flip .service-text { order: 1; }
.service-figure img {
  border-radius: 2px;
  box-shadow: 0 24px 60px -24px rgba(43, 32, 25, 0.35);
}
.service-text h2 { margin-bottom: 0; }
.service-text .rule { margin-top: 1.4rem; margin-bottom: 1.6rem; }
.service-text p { color: var(--ink-muted); margin-bottom: 1.25rem; }
.service-text .lead-quote { margin-bottom: 0; font-size: 1.12rem; }
.service-meta { margin-top: 0.5rem; }
.service-meta li {
  color: var(--ink-muted);
  font-size: 0.92rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(176, 141, 87, 0.18);
}
.service-meta li:last-child { border-bottom: none; }
.service-meta strong { color: var(--earth); font-weight: 600; }

/* ---------- Wirkung ---------- */
.wirkung-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 3rem;
}
.wirkung-grid li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.9rem;
  color: var(--ink-muted);
}
.wirkung-grid li::before {
  content: "";
  position: absolute;
  left: 0; top: 1.05rem;
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
}
.wirkung-grid li::after {
  content: "";
  position: absolute;
  left: 3px; top: calc(1.05rem + 3px);
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gold);
}
.wirkung-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
.wirkung-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4 / 3;
}
.wirkung-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 700px) {
  .wirkung-gallery { grid-template-columns: 1fr; }
}
.wirkung-gallery-single {
  grid-template-columns: 1fr;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Events ---------- */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 1040px;
  margin: 0 auto;
}
.event-card { margin: 0; }
.event-card-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid rgba(176, 141, 87, 0.16);
  border-radius: 4px;
  overflow: hidden;
  background: none;
  cursor: pointer;
  box-shadow: 0 14px 40px -22px rgba(43, 32, 25, 0.25);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.event-card-trigger:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 54px -24px rgba(43, 32, 25, 0.32);
}
.event-card-trigger img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}
.event-card figcaption {
  margin-top: 0.9rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}
@media (max-width: 780px) {
  .events-grid { grid-template-columns: 1fr; max-width: 380px; }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 5vw, 3rem);
  background: rgba(20, 15, 11, 0.92);
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 4px;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6);
}
.lightbox-close {
  position: absolute;
  top: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: transparent;
  color: #fdfaf5;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.6); }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 760px;
  margin: 0 auto;
  gap: 1.75rem;
}
.termine-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: stretch;
  max-width: 980px;
  margin: 0 auto;
}
.termine-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.termine-photo {
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  min-height: 260px;
}
.termine-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 700px) {
  .termine-body { display: flex; flex-direction: column; }
  .termine-body .termine-photo { order: -1; margin: 0 0 2.25rem; min-height: 200px; }
  .termine-cards { flex-direction: row; gap: 1rem; }
  .termine-cards .card { flex: 1 1 0; padding: 1.6rem 1.1rem; }
  .termine-cards .card h3 { font-size: 1.25rem; }
  .termine-cards .price-list li { justify-content: center; }
  .termine-cards .price-list li:not(.price-list-special) span { display: none; }
}
.card {
  background: var(--card);
  border: 1px solid rgba(176, 141, 87, 0.16);
  border-radius: 2px;
  padding: 2.4rem 2.2rem;
  box-shadow: 0 14px 40px -22px rgba(43, 32, 25, 0.25);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 54px -24px rgba(43, 32, 25, 0.32);
}
.card h3 { font-size: 1.6rem; color: var(--earth); margin-bottom: 0.4rem; }
.card-label {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}
.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.92rem;
  color: var(--ink-muted);
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(176, 141, 87, 0.14);
}
.price-list li:last-child { border-bottom: none; }
.price-list strong { color: var(--earth); font-weight: 600; white-space: nowrap; }
.price-list-special strong { color: var(--gold); }
.card-note { font-size: 0.82rem; font-style: italic; color: var(--ink-muted); margin-top: 1.3rem; }

.pricing-footnote {
  text-align: center;
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin-top: 2.75rem;
}
.pricing-cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

/* ---------- Kontakt ---------- */
.section-dark {
  background: var(--earth);
  color: rgba(253, 250, 245, 0.85);
  overflow: hidden;
}
.section-dark .section-head h2 { color: #fdfaf5; }
.ripples-dark {
  position: absolute;
  right: -18vmin; top: -18vmin;
  pointer-events: none;
}
.ripples-dark span {
  position: absolute;
  right: 0; top: 0;
  border: 1px solid rgba(211, 185, 141, 0.12);
  border-radius: 50%;
}
.ripples-dark span:nth-child(1) { width: 46vmin; height: 46vmin; }
.ripples-dark span:nth-child(2) { width: 66vmin; height: 66vmin; right: -10vmin; top: -10vmin; }
.ripples-dark span:nth-child(3) { width: 88vmin; height: 88vmin; right: -21vmin; top: -21vmin; }

.kontakt-photo {
  max-width: 480px;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.5);
}
.kontakt-photo img {
  width: 100%;
  height: auto;
  display: block;
}
.contact-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.15rem;
}
.contact-list li, .contact-list a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.contact-list svg { width: 18px; height: 18px; color: var(--gold-light); flex-shrink: 0; }
.contact-list a { transition: color 0.3s; }
.contact-list a:hover { color: var(--gold-light); }

.contact-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 4.25rem;
  padding-top: 4.25rem;
  border-top: 1px solid rgba(253, 250, 245, 0.1);
}
.contact-logos img {
  height: 84px;
  width: auto;
  object-fit: contain;
  border-radius: 3px;
  background: #fff;
  padding: 0.6rem 0.9rem;
}
.contact-logos img:last-child { height: 68px; }

.disclaimer {
  text-align: center;
  font-size: 0.76rem;
  color: rgba(253, 250, 245, 0.42);
  margin-top: 4rem;
}
.copyright {
  text-align: center;
  font-size: 0.76rem;
  color: rgba(253, 250, 245, 0.3);
  margin-top: 0.8rem;
}
.legal-links {
  text-align: center;
  font-size: 0.76rem;
  color: rgba(253, 250, 245, 0.3);
  margin-top: 0.5rem;
}
.legal-links a { text-decoration: underline; text-underline-offset: 2px; }
.legal-links a:hover { color: var(--gold-light); }

/* ---------- Legal pages (Impressum / Datenschutz) ---------- */
.legal-header {
  padding: clamp(6.5rem, 12vw, 8.5rem) 0 2rem;
}
.legal-header .nav-brand-static {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--earth);
  margin-bottom: 2.5rem;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--ink-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-back:hover { color: var(--gold); }
.legal-content { padding-bottom: clamp(4rem, 8vw, 6rem); }
.legal-content h1 {
  font-size: clamp(2.2rem, 5vw, 3rem);
  color: var(--earth);
  margin-bottom: 0.5rem;
}
.legal-content .rule { margin: 1.4rem 0 2.5rem; }
.legal-content h2 {
  font-size: 1.3rem;
  color: var(--earth);
  margin-top: 2.75rem;
  margin-bottom: 0.9rem;
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p { margin-bottom: 1rem; color: var(--ink); }
.legal-content p.muted { color: var(--ink-muted); font-size: 0.92rem; }
.legal-content ul { margin: 0 0 1rem 0; }
.legal-content ul li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 0.5rem;
}
.legal-content ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.65rem;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.legal-content a { text-decoration: underline; text-underline-offset: 2px; color: var(--earth); }
.legal-content a:hover { color: var(--gold); }
.legal-content strong { color: var(--earth); font-weight: 600; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal-delay { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
@media (max-width: 760px) {
  .about-grid, .service-grid { grid-template-columns: 1fr; }
  .service-grid-flip .service-figure { order: 1; }
  .service-grid-flip .service-text { order: 2; }
  .about-figure { max-width: 420px; margin: 0 auto; }
  .service-figure { max-width: 480px; margin: 0 auto; }
  .wirkung-grid { grid-template-columns: 1fr; }
  .figure-frame { inset: -12px 12px 12px -12px; }
}
