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

:root {
  /* Original site accent: rgba(146,60,111) — deep magenta */
  --accent:       #923C6F;
  --accent-light: #B5538E;
  --accent-pale:  #F0D8E8;
  --accent-dim:   rgba(146,60,111,0.15);

  --cream:      #F4EFE8;
  --warm-white: #F9F6F1;
  --dark:       #18120F;
  --mid-dark:   #201A17;
  --deep:       #0C0908;
  --text-main:  #1C1510;
  --text-muted: #6A5C52;
  --text-light: #9B8C82;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;
  --sp: 6rem;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--warm-white);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ─────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(249,246,241,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(146,60,111,0.14);
  padding: 0 4rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 58px;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.1rem; font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--text-main); text-decoration: none;
}
.nav-links { display: flex; gap: 2.75rem; list-style: none; }
.nav-links a {
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-light); text-decoration: none;
  transition: color 0.25s; position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { transform: scaleX(1); }

/* ── HERO ────────────────────────── */
.hero { min-height: 100vh; display: grid; grid-template-columns: 52% 48%; }
.hero-left {
  background: var(--dark);
  display: flex; flex-direction: column; justify-content: center;
  padding: 8rem 5.5rem 6rem;
  position: relative; overflow: hidden;
}
.hero-left::after {
  content: '';
  position: absolute; right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(146,60,111,0.5), transparent);
}
.hero-arc {
  position: absolute; bottom: -120px; left: -120px;
  width: 400px; height: 400px;
  border: 1px solid rgba(146,60,111,0.08);
  border-radius: 50%; pointer-events: none;
}
.hero-arc-2 {
  position: absolute; bottom: -60px; left: -60px;
  width: 280px; height: 280px;
  border: 1px solid rgba(146,60,111,0.06);
  border-radius: 50%; pointer-events: none;
}
.hero-eyebrow {
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 2rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-eyebrow::before {
  content: ''; display: inline-block;
  width: 24px; height: 1px; background: var(--accent); flex-shrink: 0;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5vw, 5.5rem);
  font-weight: 300; line-height: 1.05;
  color: var(--cream); margin-bottom: 2rem;
  letter-spacing: -0.01em;
}
.hero-title em { font-style: italic; color: var(--accent-light); }
.hero-sub {
  font-size: 0.9rem; color: rgba(244,239,232,0.5);
  max-width: 360px; line-height: 1.9;
  font-weight: 300; margin-bottom: 2.75rem;
}
.cta-row { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.hero-right { position: relative; overflow: hidden; }
.hero-right img {
  width: 100%; height: 100%; object-fit: cover;
  filter: sepia(15%) contrast(1.06) brightness(0.96);
  display: block; transition: transform 8s ease;
}
.hero-right:hover img { transform: scale(1.03); }
.hero-right::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(24,18,15,0.4), transparent 45%),
              linear-gradient(to top, rgba(24,18,15,0.3), transparent 40%);
}

/* ── BUTTONS ─────────────────────── */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-family: var(--sans);
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none; transition: all 0.25s ease;
  position: relative; overflow: hidden;
}
.btn-solid { background: var(--accent); color: #fff; }
.btn-solid::after {
  content: ''; position: absolute; inset: 0;
  background: var(--accent-light);
  transform: translateX(-100%); transition: transform 0.3s ease;
}
.btn-solid:hover::after { transform: translateX(0); }
.btn-solid { color: #fff; }
.btn-outline {
  border: 1px solid rgba(146,60,111,0.38);
  color: rgba(181,83,142,0.8);
}
.btn-outline:hover {
  border-color: var(--accent); color: var(--accent);
  background: rgba(146,60,111,0.06);
}

/* ── QUOTE BAND ──────────────────── */
.quote-band {
  background: var(--mid-dark);
  padding: 4rem 2rem; text-align: center;
  position: relative; overflow: hidden;
}
.quote-band::before {
  content: ''; position: absolute; left: 50%; top: 0; transform: translateX(-50%);
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(146,60,111,0.4));
}
.quote-band::after {
  content: ''; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 1px; height: 40px;
  background: linear-gradient(to top, transparent, rgba(146,60,111,0.4));
}
.quote-inner { max-width: 640px; margin: 0 auto; }
.quote-mark {
  font-family: var(--serif); font-size: 4rem;
  color: var(--accent); line-height: 0.6;
  margin-bottom: 1.5rem; display: block; opacity: 0.7;
}
.quote-band blockquote {
  font-family: var(--serif); font-size: 1.35rem;
  font-weight: 300; line-height: 1.75;
  color: rgba(244,239,232,0.6); font-style: italic;
}

/* ── SECTIONS ────────────────────── */
section { padding: var(--sp) 4rem; }
.wrap { max-width: 1080px; margin: 0 auto; }
.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(146,60,111,0.18), transparent);
}

.lbl {
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.1rem;
  display: flex; align-items: center; gap: 0.7rem;
}
.lbl::before {
  content: ''; display: inline-block;
  width: 18px; height: 1px; background: var(--accent); flex-shrink: 0;
}
h2.heading {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 300; line-height: 1.15;
  color: var(--text-main); margin-bottom: 2rem;
  letter-spacing: -0.01em;
}
.rule { width: 36px; height: 1px; background: var(--accent); margin-bottom: 2rem; }

.prose p {
  font-size: 0.93rem; color: var(--text-muted);
  line-height: 1.95; font-weight: 300; margin-bottom: 1rem;
}
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--text-main); font-weight: 500; }

.price {
  display: inline-flex; align-items: center; gap: 1rem;
  margin-top: 2rem; padding: 1rem 1.75rem;
  background: var(--dark); color: var(--accent-pale);
  font-family: var(--serif); font-size: 1.2rem;
  font-weight: 300; letter-spacing: 0.02em;
  border-left: 2px solid var(--accent);
}

/* ── LAYOUT ──────────────────────── */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 7rem; align-items: center;
}
.two-col.flip .col-img { order: 2; }
.two-col.flip .col-text { order: 1; }

.img-frame { position: relative; }
.img-frame img { width: 100%; display: block; filter: sepia(8%) contrast(1.05); }
.img-frame::before {
  content: ''; position: absolute; top: -12px; left: -12px;
  width: 55%; height: 55%;
  border: 1px solid rgba(146,60,111,0.18); pointer-events: none;
}
.img-frame::after {
  content: ''; position: absolute; bottom: -12px; right: -12px;
  width: 55%; height: 55%;
  border: 1px solid rgba(146,60,111,0.18); pointer-events: none;
}

#jenseitskontakte { background: var(--warm-white); }
#reiki { background: var(--cream); }

.fact-list { margin-top: 1.75rem; }
.fact {
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(146,60,111,0.12);
  display: grid; grid-template-columns: 1.5rem 1fr;
  gap: 0 1rem; align-items: start;
}
.fact:first-child { border-top: 1px solid rgba(146,60,111,0.12); }
.fact-dot { color: var(--accent); font-size: 0.5rem; margin-top: 0.45rem; line-height: 1; }
.fact h4 {
  font-family: var(--serif); font-size: 1.1rem;
  font-weight: 400; color: var(--text-main); margin-bottom: 0.2rem;
}
.fact p { font-size: 0.85rem; color: var(--text-muted); font-weight: 300; line-height: 1.7; }

.img-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; align-items: start; }
.img-pair img { width: 100%; object-fit: cover; filter: sepia(8%); display: block; }
.img-pair img:first-child { margin-top: 3rem; aspect-ratio: 2/3; }
.img-pair img:last-child { aspect-ratio: 2/3; }

/* ── ÜBER MICH ───────────────────── */
#ueber-mich { background: var(--dark); }
#ueber-mich h2.heading { color: var(--cream); }

.about-grid { display: grid; grid-template-columns: 320px 1fr; gap: 6rem; align-items: start; }
.about-photo { position: relative; }
.about-photo img { width: 100%; display: block; filter: sepia(12%) contrast(1.06); }
.about-photo::before {
  content: ''; position: absolute; inset: -1px;
  box-shadow: -12px -12px 0 rgba(146,60,111,0.1), 12px 12px 0 rgba(146,60,111,0.07);
  pointer-events: none;
}
.about-photo::after {
  content: ''; position: absolute; bottom: 0; right: -1.5rem;
  width: 1px; height: 60%;
  background: linear-gradient(to bottom, transparent, rgba(146,60,111,0.3), transparent);
}
.about-prose p {
  font-size: 0.92rem; color: rgba(244,239,232,0.55);
  line-height: 1.95; font-weight: 300; margin-bottom: 1rem;
}
.about-prose p:first-child {
  font-family: var(--serif); font-size: 1.2rem; font-style: italic;
  color: rgba(244,239,232,0.78); line-height: 1.7; margin-bottom: 1.5rem;
}
.badges { display: flex; gap: 0.75rem; margin-top: 2.25rem; flex-wrap: wrap; }
.badge {
  display: flex; align-items: center; gap: 0.65rem;
  padding: 0.65rem 1.2rem;
  border: 1px solid rgba(146,60,111,0.22);
  background: rgba(146,60,111,0.04);
  transition: border-color 0.2s, background 0.2s;
}
.badge:hover { border-color: rgba(146,60,111,0.4); background: rgba(146,60,111,0.08); }
.badge-dot { color: var(--accent); font-size: 0.55rem; }
.badge span { font-size: 0.75rem; color: var(--accent-pale); letter-spacing: 0.07em; line-height: 1.4; }

/* ── VIDEO ───────────────────────── */
.video-band { background: var(--mid-dark); padding: 5rem 4rem; text-align: center; }
.video-lbl {
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 2.5rem;
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
}
.video-lbl::before, .video-lbl::after {
  content: ''; display: inline-block;
  width: 32px; height: 1px; background: rgba(146,60,111,0.35);
}
.video-wrap { max-width: 760px; margin: 0 auto; position: relative; }
.video-wrap::before {
  content: ''; position: absolute; inset: -8px;
  border: 1px solid rgba(146,60,111,0.16); pointer-events: none;
}
.video-wrap iframe { width: 100%; aspect-ratio: 16/9; display: block; border: none; }

/* ── KONTAKT ─────────────────────── */
#kontakt { background: var(--warm-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 6rem; align-items: start; }
.contact-intro { font-size: 0.9rem; color: var(--text-muted); font-weight: 300; line-height: 1.85; margin-bottom: 2.5rem; }
.contact-item {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1.25rem 0; border-bottom: 1px solid rgba(146,60,111,0.1);
}
.contact-item:first-of-type { border-top: 1px solid rgba(146,60,111,0.1); }
.c-icon {
  flex-shrink: 0; width: 34px; height: 34px;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 0.85rem; margin-top: 3px;
}
.c-detail label {
  display: block; font-size: 0.63rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 0.35rem;
}
.c-detail a, .c-detail p {
  font-size: 0.92rem; color: var(--text-main);
  text-decoration: none; font-weight: 400; line-height: 1.6; transition: color 0.2s;
}
.c-detail a:hover { color: var(--accent); }
.map-frame { aspect-ratio: 4/3; overflow: hidden; border: 1px solid rgba(146,60,111,0.14); }
.map-frame iframe { width: 100%; height: 100%; border: none; filter: sepia(12%) contrast(0.95); display: block; }

/* ── FOOTER ──────────────────────── */
footer { background: var(--deep); padding: 4rem 4rem 2rem; }
.footer-grid {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.04); margin-bottom: 2rem;
}
.footer-brand { font-family: var(--serif); font-size: 1.2rem; font-weight: 300; color: rgba(244,239,232,0.45); letter-spacing: 0.06em; margin-bottom: 0.75rem; }
.footer-col h5 { font-size: 0.63rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.1rem; }
.footer-col p, .footer-col a {
  display: block; font-size: 0.82rem; color: rgba(244,239,232,0.32);
  text-decoration: none; margin-bottom: 0.45rem; font-weight: 300; line-height: 1.65; transition: color 0.2s;
}
.footer-col a:hover { color: rgba(181,83,142,0.6); }
.footer-col .note { margin-top: 1rem; font-size: 0.72rem; line-height: 1.7; color: rgba(244,239,232,0.2); }
.footer-base {
  max-width: 1080px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem;
}
.footer-base span { font-size: 0.75rem; color: rgba(244,239,232,0.16); font-weight: 300; }
.footer-base em { font-family: var(--serif); font-style: italic; }

/* ── COOKIE BANNER ───────────────── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: var(--dark);
  border-top: 1px solid rgba(146,60,111,0.2);
  padding: 1.5rem 3rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
#cookie-banner.visible  { opacity: 1; transform: none; pointer-events: all; }
#cookie-banner.hidden   { opacity: 0; transform: translateY(12px); pointer-events: none; }
.cookie-text { flex: 1; min-width: 240px; }
.cookie-text p { font-size: 0.82rem; color: rgba(244,239,232,0.5); font-weight: 300; line-height: 1.7; }
.cookie-text a { color: var(--accent-light); text-decoration: none; border-bottom: 1px solid rgba(181,83,142,0.35); transition: border-color 0.2s; }
.cookie-text a:hover { border-color: var(--accent-light); }
.cookie-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; align-items: center; flex-shrink: 0; }

.btn-cookie {
  padding: 0.6rem 1.25rem; font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: none; cursor: pointer; font-family: var(--sans);
  transition: all 0.2s; white-space: nowrap;
}
.btn-cookie-accept { background: var(--accent); color: #fff; }
.btn-cookie-accept:hover { background: var(--accent-light); }
.btn-cookie-reject {
  background: transparent; color: rgba(244,239,232,0.45);
  border: 1px solid rgba(146,60,111,0.28);
}
.btn-cookie-reject:hover { border-color: rgba(146,60,111,0.55); color: rgba(244,239,232,0.7); }
.btn-cookie-settings {
  background: transparent; color: rgba(244,239,232,0.3); border: none;
  font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.5rem 0.75rem; cursor: pointer; font-family: var(--sans);
  text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s;
}
.btn-cookie-settings:hover { color: rgba(244,239,232,0.6); }

/* ── OVERLAYS & MODALS ───────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 910;
  background: rgba(12,9,8,0.72); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

#cookie-modal {
  position: fixed;
  bottom: 1.5rem; left: 50%; transform: translateX(-50%) translateY(20px);
  z-index: 920; width: min(540px, calc(100vw - 2rem));
  background: var(--dark); border: 1px solid rgba(146,60,111,0.2);
  padding: 2rem 2.25rem;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease, transform 0.3s ease;
}
#cookie-modal.open { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }

.modal-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 1.5rem; }
.modal-header h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 300; color: var(--cream); line-height: 1.2; }
.btn-icon-close { background: none; border: none; cursor: pointer; color: rgba(244,239,232,0.35); font-size: 1.1rem; line-height: 1; padding: 0; flex-shrink: 0; transition: color 0.2s; }
.btn-icon-close:hover { color: rgba(244,239,232,0.8); }

.cookie-category { padding: 1rem 0; border-bottom: 1px solid rgba(146,60,111,0.1); display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem; }
.cookie-category:last-of-type { border-bottom: none; margin-bottom: 0.5rem; }
.cookie-cat-info h4 { font-size: 0.85rem; font-weight: 500; color: var(--cream); margin-bottom: 0.25rem; }
.cookie-cat-info p { font-size: 0.78rem; color: rgba(244,239,232,0.38); font-weight: 300; line-height: 1.65; }

.toggle-wrap { flex-shrink: 0; margin-top: 2px; }
.toggle-wrap input { display: none; }
.toggle { display: block; width: 38px; height: 22px; background: rgba(146,60,111,0.15); border: 1px solid rgba(146,60,111,0.25); border-radius: 11px; cursor: pointer; position: relative; transition: background 0.25s, border-color 0.25s; }
.toggle::after { content: ''; position: absolute; top: 3px; left: 3px; width: 14px; height: 14px; border-radius: 50%; background: rgba(244,239,232,0.35); transition: transform 0.25s, background 0.25s; }
.toggle-wrap input:checked + .toggle { background: var(--accent); border-color: var(--accent); }
.toggle-wrap input:checked + .toggle::after { transform: translateX(16px); background: #fff; }
.toggle-wrap input:disabled + .toggle { cursor: not-allowed; opacity: 0.5; }

.modal-footer { display: flex; gap: 0.6rem; justify-content: flex-end; margin-top: 1.5rem; flex-wrap: wrap; }

#legal-modal {
  position: fixed; top: 50%; left: 50%; transform: translate(-50%, -48%);
  z-index: 920; width: min(720px, calc(100vw - 2rem)); max-height: 85vh;
  background: var(--warm-white); border: 1px solid rgba(146,60,111,0.13);
  display: flex; flex-direction: column;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease, transform 0.3s ease;
}
#legal-modal.open { opacity: 1; pointer-events: all; transform: translate(-50%, -50%); }
.legal-modal-head { padding: 1.75rem 2rem 1.25rem; border-bottom: 1px solid rgba(146,60,111,0.12); display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; }
.legal-modal-head h2 { font-family: var(--serif); font-size: 1.6rem; font-weight: 300; color: var(--text-main); }
.legal-modal-head .btn-icon-close { color: var(--text-light); }
.legal-modal-head .btn-icon-close:hover { color: var(--text-main); }
#legal-body { padding: 1.75rem 2rem 2rem; overflow-y: auto; flex: 1; }
#legal-body h3 { font-family: var(--serif); font-size: 1.1rem; font-weight: 400; color: var(--text-main); margin: 1.5rem 0 0.5rem; }
#legal-body h3:first-child { margin-top: 0; }
#legal-body p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.85; font-weight: 300; margin-bottom: 0.75rem; }
#legal-body a { color: var(--accent); text-decoration: none; }
#legal-body a:hover { text-decoration: underline; }
#legal-body strong { color: var(--text-main); font-weight: 500; }

/* ── REVEAL ──────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1); }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.on { opacity: 1; transform: none; }

/* ── RESPONSIVE ──────────────────── */
@media (max-width: 960px) {
  :root { --sp: 4rem; }
  nav { padding: 0 1.75rem; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { min-height: 100vh; padding: 6rem 2rem 4rem; }
  section { padding: var(--sp) 1.75rem; }
  .two-col, .two-col.flip, .about-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col.flip .col-img, .two-col.flip .col-text { order: unset; }
  .video-band { padding: 3.5rem 1.75rem; }
  footer { padding: 3rem 1.75rem 1.75rem; }
  #cookie-banner { padding: 1.25rem; }
  #cookie-modal { width: 100%; bottom: 0; }
  #legal-modal { width: 100%; max-height: 90vh; top: auto; bottom: 0; left: 0; right: 0; transform: none; border-bottom: none; }
  #legal-modal.open { transform: none; }
}
