/* ── LOCAL FONTS ─────────────────── */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('assets/fonts/cormorant-garamond-v21-latin-300.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('assets/fonts/cormorant-garamond-v21-latin-300italic.woff2') format('woff2');
  font-weight: 300; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('assets/fonts/cormorant-garamond-v21-latin-regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('assets/fonts/cormorant-garamond-v21-latin-italic.woff2') format('woff2');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('assets/fonts/cormorant-garamond-v21-latin-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('assets/fonts/cormorant-garamond-v21-latin-600italic.woff2') format('woff2');
  font-weight: 600; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('assets/fonts/dm-sans-v17-latin-300.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('assets/fonts/dm-sans-v17-latin-regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('assets/fonts/dm-sans-v17-latin-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}

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

:root {
  --accent:       #923C6F;
  --accent-light: #B5538E;
  --accent-pale:  #F5E6F0;
  --accent-dim:   rgba(146,60,111,0.12);

  /* Light neutral palette — no brown */
  --surface-0:  #FFFFFF;
  --surface-1:  #F8F4F7;   /* warm near-white with magenta hint */
  --surface-2:  #F2EAF0;   /* soft magenta-blush */
  --surface-d:  #FAF0F6;   /* was dark: now very light magenta */
  --surface-d2: #F5E8F2;   /* was mid-dark: slightly deeper blush */

  --text-main:  #2A1F28;
  --text-muted: #6B4F64;
  --text-light: #A888A0;

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

  /* Neumorphic – surface-1 (#F8F4F7) */
  --nm-light:   #ffffff;
  --nm-dark:    #ddc8d8;
  --nm-out:     8px 8px 20px var(--nm-dark), -5px -5px 14px var(--nm-light);
  --nm-out-sm:  5px 5px 12px var(--nm-dark), -3px -3px 8px var(--nm-light);
  --nm-in:      inset 5px 5px 12px var(--nm-dark), inset -3px -3px 8px var(--nm-light);

  /* Neumorphic – surface-2 (#F2EAF0) */
  --nm-c-light: #ffffff;
  --nm-c-dark:  #d4b8cc;
  --nm-c-out:   8px 8px 18px var(--nm-c-dark), -4px -4px 12px var(--nm-c-light);
  --nm-c-in:    inset 5px 5px 12px var(--nm-c-dark), inset -3px -3px 8px var(--nm-c-light);
}

html { scroll-behavior: smooth; overflow-x: hidden; touch-action: pan-y; scrollbar-gutter: stable both-edges; }

/* Chrome/Desktop: Scrollbar unsichtbar machen damit kein weißer Rand entsteht */
::-webkit-scrollbar { width: 6px; background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(146,60,111,0.25); border-radius: 3px; }
::-webkit-scrollbar-track { background: transparent; }

body {
  font-family: var(--sans);
  background: var(--surface-1);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  touch-action: pan-y;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ─────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(248,244,247,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(146,60,111,0.14);
  box-shadow: 0 4px 18px var(--nm-dark), 0 1px 0 var(--nm-light);
  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(--surface-d);
  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.35), 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(--text-main); margin-bottom: 2rem;
  letter-spacing: -0.01em;
}
.hero-title em { font-style: italic; color: var(--accent-light); }
.hero-sub {
  font-size: 0.9rem; color: var(--text-muted);
  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(250,240,246,0.25), transparent 50%);
}

/* ── 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; box-shadow: 4px 4px 12px rgba(146,60,111,0.4), -2px -2px 6px rgba(255,255,255,0.08); }
.btn-solid:hover { background: var(--accent-light); color: #fff; box-shadow: 6px 6px 18px rgba(146,60,111,0.5), -2px -2px 8px rgba(255,255,255,0.1); }
.btn-outline {
  border: 1px solid rgba(146,60,111,0.38);
  color: rgba(181,83,142,0.8);
  box-shadow: 3px 3px 10px rgba(0,0,0,0.12), -2px -2px 6px rgba(255,255,255,0.7);
}
.btn-outline:hover {
  border-color: var(--accent); color: var(--accent);
  background: rgba(146,60,111,0.06);
  box-shadow: 5px 5px 14px rgba(0,0,0,0.16), -3px -3px 8px rgba(255,255,255,0.8);
}

/* ── QUOTE BAND ──────────────────── */
.quote-band {
  background: var(--surface-d2);
  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: var(--text-muted); font-style: italic;
}

/* ── SECTIONS ────────────────────── */
section { padding: var(--sp) 4rem; overflow-x: clip; }
.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(--surface-2); color: var(--accent);
  font-family: var(--serif); font-size: 1.2rem;
  font-weight: 300; letter-spacing: 0.02em;
  border-left: 2px solid var(--accent);
  box-shadow: var(--nm-c-out);
}

/* ── 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; box-shadow: var(--nm-out); }
.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(--surface-1); }
#reiki { background: var(--surface-2); }

.fact-list { margin-top: 1.75rem; }
.fact {
  padding: 1.1rem 1rem;
  border-bottom: 1px solid rgba(146,60,111,0.12);
  display: grid; grid-template-columns: 1.5rem 1fr;
  gap: 0 1rem; align-items: start;
  border-radius: 2px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.fact:first-child { border-top: 1px solid rgba(146,60,111,0.12); }
#jenseitskontakte .fact:hover { box-shadow: var(--nm-out); transform: translateX(3px); }
#reiki .fact:hover            { box-shadow: var(--nm-c-out); transform: translateX(3px); }
.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(--surface-d); }
#ueber-mich h2.heading { color: var(--text-main); }

.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: var(--text-muted);
  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: var(--text-main); 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.06);
  box-shadow: var(--nm-out-sm);
  transition: box-shadow 0.25s, transform 0.25s;
}
.badge:hover {
  border-color: rgba(146,60,111,0.45);
  box-shadow: var(--nm-out);
  transform: translateY(-2px);
}
.badge-dot { color: var(--accent); font-size: 0.55rem; }
.badge span { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.07em; line-height: 1.4; }

/* ── VIDEO ───────────────────────── */
.video-band { background: var(--surface-d2); 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.3);
}
.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(--surface-1); }
.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: 38px; height: 38px;
  background: var(--surface-1);
  box-shadow: var(--nm-out);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 0.9rem; margin-top: 3px;
  transition: box-shadow 0.2s;
}
.contact-item:hover .c-icon { box-shadow: var(--nm-in); }
.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); box-shadow: var(--nm-out), 0 8px 30px rgba(0,0,0,0.08); }
.map-frame iframe { width: 100%; height: 100%; border: none; filter: sepia(12%) contrast(0.95); display: block; }

/* ── FOOTER ──────────────────────── */
footer { background: var(--surface-2); padding: 4rem 4rem 2rem; border-top: 1px solid rgba(146,60,111,0.1); }
.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: var(--text-main); 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-light); margin-bottom: 1.1rem; }
.footer-col p, .footer-col a {
  display: block; font-size: 0.82rem; color: var(--text-muted);
  text-decoration: none; margin-bottom: 0.45rem; font-weight: 300; line-height: 1.65; transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent-light); }
.footer-col .note { margin-top: 1rem; font-size: 0.72rem; line-height: 1.7; color: var(--text-light); }
.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: var(--text-light); font-weight: 300; }
.footer-base em { font-family: var(--serif); font-style: italic; }

/* ── COOKIE BANNER ───────────────── */
#cookie-banner-overlay { display: none; }

#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: var(--surface-0);
  border-top: 1px solid rgba(146,60,111,0.15);
  box-shadow: 0 -4px 20px rgba(146,60,111,0.08);
  padding: 1.5rem 3rem calc(1.5rem + env(safe-area-inset-bottom, 16px));
  display: none; 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  { display: flex; 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: var(--text-muted); font-weight: 300; line-height: 1.7; }
.cookie-text a { color: var(--accent); text-decoration: none; border-bottom: 1px solid rgba(146,60,111,0.3); 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; margin-bottom: -0.5rem; }

.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: var(--text-muted);
  border: 1px solid rgba(146,60,111,0.28);
}
.btn-cookie-reject:hover { border-color: rgba(146,60,111,0.55); color: var(--accent); }
.btn-cookie-settings {
  background: transparent; color: var(--text-light); 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: var(--text-muted); }

/* ── OVERLAYS & MODALS ───────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 950;
  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: calc(1.5rem + env(safe-area-inset-bottom, 0px)); left: 50%; transform: translateX(-50%) translateY(20px);
  z-index: 960; width: min(540px, calc(100vw - 2rem));
  background: var(--surface-0); border: 1px solid rgba(146,60,111,0.18);
  box-shadow: var(--nm-out), 0 12px 40px rgba(146,60,111,0.12);
  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(--text-main); line-height: 1.2; }
.btn-icon-close { background: none; border: none; cursor: pointer; color: var(--text-light); font-size: 1.1rem; line-height: 1; padding: 0; flex-shrink: 0; transition: color 0.2s; }
.btn-icon-close:hover { color: var(--text-main); }

.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(--text-main); margin-bottom: 0.25rem; }
.cookie-cat-info p { font-size: 0.78rem; color: var(--text-muted); 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(255,255,255,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: 960; width: min(720px, calc(100vw - 2rem)); max-height: 85vh;
  background: var(--surface-1); border: 1px solid rgba(146,60,111,0.13);
  box-shadow: var(--nm-out), 0 32px 70px rgba(0,0,0,0.22);
  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 SYSTEM ───────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1),
              transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.reveal-left  { opacity: 0; transform: translateX(-48px); transition: opacity 0.95s cubic-bezier(0.16,1,0.3,1), transform 0.95s cubic-bezier(0.16,1,0.3,1); }
.reveal-right { opacity: 0; transform: translateX(48px);  transition: opacity 0.95s cubic-bezier(0.16,1,0.3,1), transform 0.95s cubic-bezier(0.16,1,0.3,1); }
.reveal-scale { opacity: 0; transform: scale(0.94);       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, .reveal-left.d1, .reveal-right.d1, .reveal-scale.d1 { transition-delay: 0.10s; }
.reveal.d2, .reveal-left.d2, .reveal-right.d2, .reveal-scale.d2 { transition-delay: 0.20s; }
.reveal.d3, .reveal-left.d3, .reveal-right.d3, .reveal-scale.d3 { transition-delay: 0.30s; }
.reveal.d4, .reveal-left.d4, .reveal-right.d4, .reveal-scale.d4 { transition-delay: 0.42s; }

.reveal.on, .reveal-left.on, .reveal-right.on, .reveal-scale.on {
  opacity: 1; transform: none;
}

/* ── SCROLL PROGRESS BAR ─────────── */
#scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 200;
  width: 0%; height: 2px;
  background: linear-gradient(to right, var(--accent), var(--accent-light));
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ── SECTION NAV DOTS ────────────── */
#section-dots {
  position: fixed; right: 1.5rem; top: 50%; transform: translateY(-50%);
  z-index: 99; display: flex; flex-direction: column; gap: 0.6rem;
  pointer-events: none;
}
.s-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(146,60,111,0.25);
  border: 1px solid rgba(146,60,111,0.35);
  transition: all 0.35s ease;
  pointer-events: all; cursor: pointer;
}
.s-dot.active {
  background: var(--accent);
  box-shadow: 0 0 8px rgba(146,60,111,0.6);
  transform: scale(1.5);
}
.s-dot:hover { background: var(--accent-light); transform: scale(1.4); }

@media (max-width: 960px) { #section-dots { display: none; } }

/* ── RESPONSIVE ──────────────────── */
@media (max-width: 960px) {
  :root { --sp: 4rem; }
  nav { padding: 0 1.75rem; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 58px; width: 100%; }
  .hero-right { display: block; order: -1; height: auto; overflow: hidden; width: 100%; }
  .hero-right img { width: 100%; max-width: 100%; height: auto; object-fit: unset; display: block; }
  .hero-left { min-height: unset; padding: 3rem 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; padding-bottom: calc(1.25rem + env(safe-area-inset-bottom, 16px)); flex-direction: column; align-items: flex-start; }
  #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; }
}

/* ── VIDEO PLACEHOLDER ───────────── */
.video-placeholder {
  position: absolute; inset: 0;
  background: var(--surface-d2);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1.25rem;
  text-align: center; padding: 2rem;
}
.video-placeholder p {
  font-size: 0.85rem; color: var(--text-muted);
  font-weight: 300; line-height: 1.7;
}
.video-wrap { position: relative; }

/* ── MAP PLACEHOLDER ─────────────── */
.map-frame { position: relative; }
.map-placeholder {
  position: absolute; inset: 0;
  background: var(--surface-2);
  border: 1px solid rgba(146,60,111,0.14);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1.25rem; text-align: center; padding: 2rem;
}
.map-placeholder p {
  font-size: 0.85rem; color: var(--text-muted);
  font-weight: 300; line-height: 1.7;
}

/* ── PARALLAX HERO ───────────────── */
.hero-right img { will-change: transform; }

/* ── CHAPTER LABELS ──────────────── */
.chapter-num {
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 300;
  color: rgba(146,60,111,0.09);
  line-height: 1;
  position: absolute;
  top: -1rem; right: 0;
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
}
section { position: relative; overflow-x: clip; }

/* ── QUOTE BAND REVEAL ───────────── */
.quote-inner { transition: opacity 0.8s ease, transform 0.8s ease; }

/* ── SECTION TRANSITION ACCENT LINES ─ */
.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(146,60,111,0.2), transparent);
  position: relative;
  overflow: visible;
}
.section-divider::after {
  content: '✦';
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  color: var(--accent);
  font-size: 0.6rem;
  background: var(--surface-1);
  padding: 0 0.5rem;
  opacity: 0.6;
}
#reiki + .section-divider::after,
#reiki ~ .section-divider::after {
  background: var(--surface-2);
}

/* ── ZERTIFIKATE ─────────────────── */
.certs-section { background: var(--surface-0); }

.certs-header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 3rem;
}
.certs-sub {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
  margin-top: 0.5rem;
}

.certs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.cert-card {
  display: flex;
  flex-direction: column;
  box-shadow: var(--nm-out-sm);
  background: var(--surface-1);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s ease;
}
.cert-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--nm-out);
}

/* Fixed thumbnail — same size regardless of image proportions */
.cert-thumb-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--surface-2);
  cursor: pointer;
}
.cert-thumb-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: sepia(6%) contrast(1.02);
  transition: transform 0.5s ease;
}
.cert-card:hover .cert-thumb-wrap img {
  transform: scale(1.03);
}

.cert-thumb-overlay {
  position: absolute; inset: 0;
  background: rgba(146,60,111,0);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 1rem;
  transition: background 0.3s ease;
}
.cert-card:hover .cert-thumb-overlay {
  background: rgba(146,60,111,0.12);
}

.cert-view-btn {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 1rem;
  background: var(--accent);
  color: #fff;
  border: none; cursor: pointer;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 1;
  transform: translateY(0);
  transition: background 0.2s;
}
.cert-view-btn:hover { background: var(--accent-light); }
.cert-card:hover .cert-view-btn { opacity: 1; transform: translateY(0); }

.cert-info {
  padding: 1rem 1.25rem 1.25rem;
  border-top: 2px solid var(--accent);
}
.cert-badge {
  color: var(--accent);
  font-size: 0.6rem;
  display: block;
  margin-bottom: 0.3rem;
}
.cert-info h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 0.2rem;
}
.cert-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* ── CERT MODAL ──────────────────── */
#cert-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -48%);
  z-index: 960;
  width: min(700px, calc(100vw - 2rem));
  max-height: 90vh;
  background: var(--surface-0);
  border: 1px solid rgba(146,60,111,0.15);
  box-shadow: var(--nm-out), 0 32px 70px rgba(146,60,111,0.15);
  display: flex; flex-direction: column;
  align-items: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  overflow: hidden;
}
#cert-modal.open {
  opacity: 1; pointer-events: all;
  transform: translate(-50%, -50%);
}
#cert-modal .btn-icon-close {
  position: absolute; top: 1rem; right: 1rem;
  z-index: 1;
  background: var(--surface-1);
  box-shadow: var(--nm-out-sm);
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-size: 0.85rem;
  color: var(--text-muted);
}
#cert-modal .btn-icon-close:hover { color: var(--accent); }
#cert-modal-inner {
  overflow-y: auto;
  width: 100%;
  display: flex; flex-direction: column; align-items: center;
}
#cert-modal-img {
  width: 100%;
  height: auto;
  display: block;
}
#cert-modal-caption {
  padding: 1rem 1.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 300;
  font-style: italic;
  text-align: center;
  border-top: 1px solid rgba(146,60,111,0.1);
  width: 100%;
}

@media (max-width: 960px) {
  .certs-grid { grid-template-columns: 1fr; max-width: 300px; gap: 1.5rem; }
  #cert-modal { width: 100%; max-height: 92vh; top: auto; bottom: 0; left: 0; transform: none; border-bottom: none; }
  #cert-modal.open { transform: none; }
}
