/* ══════════════════════════════════════════════════════
   MENTAL FANTY — styles.css
   Feminin · Spirituell · Elegant
══════════════════════════════════════════════════════ */

/* ── TOKENS ──────────────────────────────────────────── */
:root {
  --c-bg:        #FDFAFF;
  --c-surface:   #FFFFFF;
  --c-blush:     #FDE8F2;
  --c-rose:      #EBA8C4;
  --c-rose-mid:  #D4789C;
  --c-rose-deep: #B85580;
  --c-lav-pale:  #F2ECFF;
  --c-lavender:  #CAB4F0;
  --c-violet:    #9B72CF;
  --c-deep:      #3D1D58;
  --c-muted:     #8B6B9E;
  --c-border:    rgba(202, 180, 240, 0.38);

  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-body:    'Nunito', 'Helvetica Neue', sans-serif;

  --r:    14px;
  --r-lg: 22px;
  --tr:   0.25s ease;
  --shadow:      0 4px 28px rgba(61, 29, 88, 0.09);
  --shadow-rose: 0 8px 36px rgba(180, 100, 150, 0.22);
  --nav-h: 74px;
}

/* ── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  color: var(--c-deep);
  background: var(--c-bg);
  overflow-x: hidden;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--f-body); }

/* ── TYPOGRAPHY ──────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--f-display); line-height: 1.15; }
em { font-style: italic; }

/* ── LAYOUT ──────────────────────────────────────────── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  border-radius: 50px;
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: none;
  transition: transform var(--tr), box-shadow var(--tr), background var(--tr);
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--c-rose-mid), var(--c-rose-deep));
  color: #fff;
  box-shadow: 0 6px 24px rgba(184, 85, 128, 0.32);
}
.btn-primary:hover { box-shadow: 0 12px 40px rgba(184, 85, 128, 0.48); }

.btn-outline {
  background: transparent;
  color: var(--c-rose-deep);
  border: 1.5px solid var(--c-rose-deep);
}
.btn-outline:hover { background: var(--c-rose-deep); color: #fff; transform: translateY(-2px); }

/* ── NAVIGATION ──────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(253, 250, 255, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--tr), box-shadow var(--tr), background var(--tr);
}
#navbar.scrolled {
  border-color: var(--c-border);
  box-shadow: 0 2px 24px rgba(61, 29, 88, 0.08);
  background: rgba(253, 250, 255, 0.97);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  gap: 20px;
}

/* Logo */
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-img {
  height: 54px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  object-position: left center;
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-logo-img.logo-subtle {
  opacity: 0.2;
  transform: translateX(-16px);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: flex-end;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-muted);
  padding: 8px 14px;
  border-radius: 50px;
  transition: color var(--tr), background var(--tr);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--c-deep); background: var(--c-blush); }
.nav-shop-btn {
  background: linear-gradient(135deg, var(--c-rose-mid), var(--c-rose-deep)) !important;
  color: #fff !important;
  padding: 9px 22px !important;
  margin-left: 6px;
}
.nav-shop-btn:hover {
  box-shadow: 0 4px 18px rgba(184, 85, 128, 0.42);
  background: linear-gradient(135deg, var(--c-rose-deep), #9B3B60) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-deep);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0; bottom: 0;
  background: rgba(253, 250, 255, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 999;
  flex-direction: column;
  padding: 28px 24px;
  gap: 4px;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.38s ease, opacity 0.38s ease;
  overflow-y: auto;
}
.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-nav-link {
  display: block;
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--c-deep);
  padding: 14px 18px;
  border-radius: var(--r);
  transition: background var(--tr), color var(--tr);
  border-bottom: 1px solid rgba(202, 180, 240, 0.18);
}
.mobile-nav-link:hover { background: var(--c-blush); color: var(--c-rose-deep); }
.mobile-shop {
  margin-top: 16px;
  background: linear-gradient(135deg, var(--c-rose-mid), var(--c-rose-deep));
  color: #fff !important;
  text-align: center;
  border-bottom: none !important;
  border-radius: 50px !important;
  font-family: var(--f-body) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em;
}

/* ── FADE-IN ANIMATION ───────────────────────────────── */
.fi {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}
.fi.vis { opacity: 1; transform: translateY(0); }
.fi.d1 { transition-delay: 0.1s; }
.fi.d2 { transition-delay: 0.22s; }
.fi.d3 { transition-delay: 0.34s; }
.fi.d4 { transition-delay: 0.46s; }
@media (prefers-reduced-motion: reduce) {
  .fi { opacity: 1; transform: none; transition: none; }
  .hero-orb { animation: none; }
  .hero-scroll-indicator span { animation: none; opacity: 0.5; }
}

/* ── HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 15% 40%, rgba(240, 180, 210, 0.5) 0%, transparent 60%),
    radial-gradient(ellipse 55% 55% at 85% 28%, rgba(196, 172, 240, 0.38) 0%, transparent 58%),
    radial-gradient(ellipse 50% 65% at 55% 90%, rgba(248, 218, 248, 0.32) 0%, transparent 60%),
    linear-gradient(155deg, #FBF0FF 0%, #FDE8F5 30%, #EEE0FF 68%, #F9E8FF 100%);
  z-index: 0;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.38;
  pointer-events: none;
  z-index: 0;
}
.hero-orb-1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, #F0A0C0, transparent 68%);
  top: 5%; left: -12%;
  animation: orbDrift 13s ease-in-out infinite alternate;
}
.hero-orb-2 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, #B890F0, transparent 68%);
  bottom: -15%; right: -12%;
  animation: orbDrift 17s ease-in-out infinite alternate-reverse;
}
.hero-orb-3 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, #F8C0E0, transparent 68%);
  top: 45%; left: 52%;
  animation: orbDrift 11s ease-in-out infinite alternate;
}
@keyframes orbDrift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(22px, 34px) scale(1.1); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 28px 100px;
  max-width: 800px;
}
.hero-eyebrow {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-rose-mid);
  margin-bottom: 22px;
}
.hero-title {
  font-size: clamp(52px, 10vw, 100px);
  font-weight: 400;
  color: var(--c-deep);
  margin-bottom: 24px;
  line-height: 1.06;
  letter-spacing: -0.025em;
}
.hero-title em {
  background: linear-gradient(125deg, var(--c-rose-mid) 20%, var(--c-violet) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}
.hero-subtitle {
  font-size: 15px;
  color: var(--c-muted);
  letter-spacing: 0.1em;
  margin-bottom: 48px;
  font-weight: 400;
}
.hero-cta { padding: 17px 44px; font-size: 15px; }

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero-scroll-indicator span {
  display: block;
  width: 1.5px;
  height: 60px;
  background: linear-gradient(to bottom, var(--c-rose-mid), transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ── VIDEO SECTION ───────────────────────────────────── */
.video-section {
  width: 100%;
  line-height: 0;
  overflow: hidden;
  background: var(--c-deep);
}
.hero-video {
  width: 100%;
  display: block;
  max-height: 88vh;
  object-fit: cover;
}

/* ── MINI-NAV CARDS ──────────────────────────────────── */
.mini-nav-section {
  padding: 88px 0;
  background: var(--c-surface);
  position: relative;
}
.mini-nav-section::before,
.mini-nav-section::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-lavender), transparent);
}
.mini-nav-section::before { top: 0; }
.mini-nav-section::after  { bottom: 0; }

.mini-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mini-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 38px 24px;
  border-radius: var(--r-lg);
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  transition: transform var(--tr), box-shadow var(--tr), background var(--tr), border-color var(--tr);
  cursor: pointer;
}
.mini-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-rose);
  background: var(--c-blush);
  border-color: rgba(202, 120, 160, 0.4);
}
.mini-card-icon {
  font-size: 26px;
  color: var(--c-rose-mid);
  line-height: 1;
  margin-bottom: 4px;
  transition: color var(--tr);
}
.mini-card:hover .mini-card-icon { color: var(--c-rose-deep); }
.mini-card h3 {
  font-family: var(--f-display);
  font-size: 20px;
  color: var(--c-deep);
  font-weight: 500;
}
.mini-card p {
  font-size: 13px;
  color: var(--c-muted);
  line-height: 1.5;
  margin: 0;
}
.mini-card-shop {
  background: linear-gradient(135deg, rgba(240, 225, 255, 0.65), rgba(255, 220, 240, 0.65));
  border-color: rgba(155, 114, 207, 0.3);
}
.mini-card-shop:hover {
  background: linear-gradient(135deg, rgba(220, 188, 255, 0.82), rgba(255, 195, 228, 0.82));
  border-color: rgba(155, 114, 207, 0.6);
}

/* ── CONTENT SECTIONS ────────────────────────────────── */
.content-section { padding: 104px 0; }
.content-section.alt-bg {
  background: linear-gradient(180deg, var(--c-lav-pale) 0%, var(--c-blush) 100%);
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-rose-mid);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(30px, 5vw, 54px);
  color: var(--c-deep);
  font-weight: 400;
  margin-bottom: 56px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--c-muted);
  margin-bottom: -24px;
  margin-top: -36px;
  padding-bottom: 48px;
}

.placeholder-block {
  min-height: 220px;
  border: 1.5px dashed rgba(202, 180, 240, 0.55);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(4px);
}
.placeholder-hint {
  font-size: 13px;
  color: rgba(139, 107, 158, 0.42);
  font-style: italic;
  letter-spacing: 0.06em;
}

/* ── SHOP ────────────────────────────────────────────── */
.shop-section { padding: 104px 0; }

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--c-surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow);
  transition: transform var(--tr), box-shadow var(--tr);
}
.product-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-rose);
}
.product-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--c-blush), var(--c-lav-pale));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-img-ph {
  font-size: 54px;
  opacity: 0.25;
}
.product-body { padding: 24px 22px 22px; }
.product-name {
  font-family: var(--f-display);
  font-size: 20px;
  color: var(--c-deep);
  margin-bottom: 8px;
  font-weight: 600;
}
.product-desc {
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.65;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-price {
  font-family: var(--f-display);
  font-size: 24px;
  color: var(--c-rose-deep);
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.product-actions { display: flex; flex-direction: column; gap: 10px; }

.btn-email {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--f-body);
  border: 1.5px solid var(--c-rose-deep);
  background: transparent;
  color: var(--c-rose-deep);
  transition: all var(--tr);
  text-decoration: none;
  cursor: pointer;
}
.btn-email:hover { background: var(--c-rose-deep); color: #fff; transform: translateY(-1px); }

.btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--f-body);
  border: none;
  background: #25D366;
  color: #fff;
  transition: background var(--tr), transform var(--tr), box-shadow var(--tr);
  text-decoration: none;
}
.btn-wa:hover {
  background: #20b95a;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.shop-empty {
  text-align: center;
  padding: 80px 24px;
  color: var(--c-muted);
  font-style: italic;
  font-family: var(--f-display);
  font-size: 20px;
}

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--c-deep);
  color: rgba(255, 255, 255, 0.72);
  padding: 80px 0 36px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-logo img {
  height: 50px;
  width: auto;
  max-width: 220px;
  margin-bottom: 18px;
  opacity: 0.82;
}
.footer-claim {
  font-family: var(--f-display);
  font-size: 18px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.46);
}
.footer-links h4,
.footer-social h4 {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-rose);
  margin-bottom: 18px;
  font-family: var(--f-body);
  font-weight: 700;
}
.footer-links a,
.footer-social a {
  display: block;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.56);
  margin-bottom: 11px;
  transition: color var(--tr);
}
.footer-links a:hover,
.footer-social a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 13px; color: rgba(255, 255, 255, 0.28); }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.32);
  transition: color var(--tr);
}
.footer-legal a:hover { color: rgba(255, 255, 255, 0.7); }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1023px) {
  .nav-links  { display: none; }
  .hamburger  { display: flex; }
  .mobile-nav { display: flex; }

  .shop-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-logo  { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .container { padding: 0 18px; }
  .shop-grid { grid-template-columns: 1fr; }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  footer { padding: 56px 0 28px; }
  .footer-logo { grid-column: unset; }
  .hero-title { letter-spacing: -0.03em; }
}

/* ════════════════════════════════════════════════════════
   SPA — VIEW MANAGEMENT
════════════════════════════════════════════════════════ */
[hidden] { display: none !important; }

.view { animation: viewIn 0.42s cubic-bezier(0.16, 1, 0.3, 1) both; }
@keyframes viewIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .view { animation: none; }
}

/* ── CONTENT VIEW WRAPPER ─────────────────────────────── */
.content-view      { padding: 80px 0 100px; }
.content-view.alt-bg {
  background: linear-gradient(180deg, var(--c-lav-pale) 0%, var(--c-blush) 100%);
}

/* ── NAV: 8 ITEMS — TIGHTER FONT ─────────────────────── */
.nav-links a { font-size: 13px; padding: 7px 11px; }

/* ── NAV ACTIVE STATE ─────────────────────────────────── */
.nav-links [data-view].nav-active {
  color: var(--c-rose-deep);
  background: var(--c-blush);
}
.nav-shop-btn.nav-active {
  box-shadow: 0 4px 18px rgba(184, 85, 128, 0.48) !important;
  background: linear-gradient(135deg, var(--c-rose-deep), #9B3B60) !important;
}
.mobile-nav-link.nav-active {
  background: var(--c-blush);
  color: var(--c-rose-deep);
}

/* ── MINI-NAV GRID (flex, 7 cards) ───────────────────── */
.mini-nav-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}
.mini-card {
  flex: 0 0 200px;
  max-width: 220px;
  cursor: pointer;
}
.mini-card h3 { font-size: 17px; }

@media (max-width: 1023px) {
  .mini-card { flex: 0 0 calc(33.333% - 18px); max-width: none; }
  .mini-nav-section { padding: 60px 0; }
}
@media (max-width: 600px) {
  .mini-card { flex: 0 0 calc(50% - 12px); }
  .mini-nav-grid { gap: 12px; }
  .mini-nav-section { padding: 48px 0; }
}

/* ════════════════════════════════════════════════════════
   ÜBER MICH
════════════════════════════════════════════════════════ */
.ueber-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 80px;
}
.portrait-img {
  width: 100%;
  border-radius: 24px;
  box-shadow:
    0 16px 56px rgba(212, 120, 156, 0.28),
    0 0 0 1px var(--c-border);
  object-fit: cover;
  display: block;
}
.ueber-text-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ueber-title {
  font-size: clamp(28px, 4vw, 48px);
  color: var(--c-deep);
  font-weight: 400;
  margin-bottom: 18px;
}
.divider-line {
  width: 48px;
  height: 2.5px;
  background: linear-gradient(90deg, var(--c-rose-mid), var(--c-lavender));
  border-radius: 2px;
  margin-bottom: 30px;
}
.ueber-text-col p {
  font-size: 16px;
  color: #5A4568;
  line-height: 1.8;
  margin-bottom: 18px;
}
.ueber-text-col .btn { margin-top: 14px; align-self: flex-start; }

/* Portrait Duo – beide Bilder übereinander/überlappend */
.portrait-duo {
  position: relative;
  padding-bottom: 88px;
  padding-right: 32px;
}
.portrait-img-main {
  width: 88%;
  border-radius: 22px;
  box-shadow:
    0 16px 56px rgba(212, 120, 156, 0.26),
    0 0 0 1px var(--c-border);
  display: block;
  object-fit: cover;
}
.portrait-img-accent {
  width: 56%;
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 16px;
  border: 5px solid #fff;
  box-shadow: 0 10px 40px rgba(61, 29, 88, 0.2);
  transform: rotate(2.8deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: block;
  object-fit: cover;
}
.portrait-img-accent:hover {
  transform: rotate(0deg);
  box-shadow: 0 14px 52px rgba(61, 29, 88, 0.28);
}

/* Intro-Zitat */
.ueber-intro-quote {
  font-family: var(--f-display);
  font-size: 18px !important;
  font-style: italic;
  color: var(--c-rose-deep) !important;
  line-height: 1.7 !important;
  margin-bottom: 22px !important;
  padding-left: 16px;
  border-left: 2.5px solid var(--c-lavender);
}

/* "Ich bin Mensch. Du bist Mensch." */
.ueber-highlight {
  font-family: var(--f-display);
  font-size: 22px !important;
  font-weight: 500;
  color: var(--c-deep) !important;
  letter-spacing: -0.01em;
  margin: 6px 0 18px !important;
}

/* Qualifikations-Badges */
.ueber-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 22px 0 20px;
  padding: 20px 22px;
  background: linear-gradient(135deg, rgba(253, 232, 242, 0.7), rgba(242, 236, 255, 0.7));
  border: 1px solid var(--c-border);
  border-radius: var(--r);
}
.ueber-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-deep);
}
.badge-icon {
  color: var(--c-rose-mid);
  font-size: 14px;
  flex-shrink: 0;
}

/* Abschlusssatz */
.ueber-berufung {
  font-family: var(--f-display);
  font-size: 17px !important;
  font-style: italic;
  color: var(--c-muted) !important;
  line-height: 1.65 !important;
  margin-bottom: 24px !important;
}

@media (max-width: 600px) {
  .portrait-duo { padding-bottom: 72px; padding-right: 24px; }
  .portrait-img-main  { width: 85%; }
  .portrait-img-accent { width: 52%; }
  .ueber-intro-quote { font-size: 16px !important; }
  .ueber-highlight   { font-size: 19px !important; }
}

/* Certificates */
.cert-section {
  padding-top: 64px;
  border-top: 1px solid var(--c-border);
}
.cert-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-rose-mid);
  text-align: center;
  margin-bottom: 36px;
}
.cert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.cert-card {
  background: linear-gradient(145deg, #FFFBFE, #FBF0FF);
  border: 1px solid var(--c-border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 8px 32px rgba(61, 29, 88, 0.07);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform var(--tr), box-shadow var(--tr);
}
.cert-card:hover {
  transform: translateY(-4px) rotate(0.4deg);
  box-shadow: 0 16px 48px rgba(61, 29, 88, 0.13);
}
.cert-img-wrap {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(61, 29, 88, 0.12);
  transform: rotate(-0.8deg);
  transition: transform var(--tr);
}
.cert-card:hover .cert-img-wrap { transform: rotate(0); }
.cert-img { width: 100%; display: block; }
.cert-text .section-label { margin-bottom: 8px; }
.cert-text p { font-size: 15px; color: #5A4568; line-height: 1.65; }

@media (max-width: 900px) {
  .ueber-grid { grid-template-columns: 1fr; gap: 40px; }
  .cert-grid  { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════
   KARTENLEGUNG
════════════════════════════════════════════════════════ */
.heilkarten-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 52px;
}
.heilkarte-img {
  width: 100%;
  border-radius: var(--r-lg);
  object-fit: cover;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow);
  border: 1px solid var(--c-border);
  transition: transform var(--tr), box-shadow var(--tr);
}
.heilkarte-img:nth-child(2) { transform: rotate(1.5deg); }
.heilkarte-img:hover {
  transform: translateY(-8px) rotate(0deg) !important;
  box-shadow: var(--shadow-rose);
}

.karten-text {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}
.karten-text p { font-size: 17px; color: #5A4568; line-height: 1.82; }

/* Price Box */
.price-box {
  background: linear-gradient(145deg, #FEF0F8, #F3E8FF);
  border: 1px solid rgba(202, 140, 200, 0.38);
  border-radius: 28px;
  padding: 48px 52px;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 12px 48px rgba(180, 100, 150, 0.13);
}
.price-box h3 {
  font-family: var(--f-display);
  font-size: 30px;
  font-weight: 500;
  color: var(--c-deep);
  margin-bottom: 14px;
}
.price-box > p:first-of-type {
  font-size: 16px;
  color: var(--c-muted);
  margin-bottom: 32px;
}
.price-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.price-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.72);
  padding: 14px 24px;
  border-radius: 50px;
  border: 1px solid rgba(202, 140, 200, 0.22);
}
.price-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--c-deep);
}
.price-val {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--c-rose-deep);
}
.theme-section { margin-bottom: 28px; }
.theme-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-rose-mid);
  margin-bottom: 14px;
}
.theme-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.theme-tag {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--c-border);
  color: var(--c-deep);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 50px;
}
.karten-closing {
  font-size: 16px;
  color: var(--c-muted);
  font-style: italic;
  margin-bottom: 32px;
}
.price-box .btn { display: inline-flex; }

@media (max-width: 1023px) {
  .heilkarten-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .content-view { padding: 60px 0 80px; }
  .heilkarten-gallery { grid-template-columns: 1fr; }
  .price-box { padding: 32px 22px; border-radius: var(--r-lg); }
  .price-box h3 { font-size: 24px; }
  .price-item { padding: 12px 18px; }
}

/* ── CONTACT BUTTONS (WhatsApp + E-Mail) ──────────────── */
.contact-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.28);
}
.btn-whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.38);
}
.btn-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--c-rose-deep);
  border: 2px solid var(--c-rose-deep);
  padding: 12px 26px;
  border-radius: 50px;
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.btn-email:hover {
  background: var(--c-rose-deep);
  color: #fff;
  transform: translateY(-2px);
}

/* ── RUNENLESUNG ──────────────────────────────────────── */
.runen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 48px;
}
.runen-img-wrap {
  position: relative;
}
.runen-img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 16px 56px rgba(155, 114, 207, 0.2), 0 0 0 1px var(--c-border);
  display: block;
  object-fit: cover;
}
.runen-text-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.runen-text-col p {
  font-size: 16px;
  line-height: 1.75;
  color: #5a3e72;
  margin: 0;
}
@media (max-width: 900px) {
  .runen-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  .contact-btns { flex-direction: column; }
  .btn-whatsapp, .btn-email { justify-content: center; }
}

/* ── KALENDER VIEW ────────────────────────────────────── */
.kalender-video-section {
  position: relative;
  width: 100%;
  height: clamp(340px, 60vh, 560px);
  overflow: hidden;
  background: var(--c-deep);
}
.kalender-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.kalender-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(180deg,
    rgba(61,29,88,0.18) 0%,
    rgba(61,29,88,0.28) 55%,
    rgba(61,29,88,0.55) 100%);
  color: #fff;
  padding: 24px;
}
.kalender-video-overlay .section-label {
  color: #F5E6FA;
  letter-spacing: 0.32em;
}
.kalender-hero-title {
  font-family: var(--f-display);
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 12px 0 10px;
  text-shadow: 0 4px 24px rgba(61,29,88,0.45);
}
.kalender-hero-sub {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(17px, 2vw, 22px);
  color: #FDE8F2;
  margin: 0;
}
.events-intro {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.events-intro p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--c-muted);
  font-family: var(--f-body);
}
.events-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 860px;
  margin: 0 auto;
}
.event-card {
  background: linear-gradient(145deg, #FFFFFF 0%, #FEF0F8 100%);
  border: 1px solid var(--c-border);
  border-radius: 28px;
  padding: 44px 48px;
  box-shadow: 0 14px 46px rgba(155, 114, 207, 0.12);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.event-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--c-rose), var(--c-violet));
}
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 60px rgba(155, 114, 207, 0.18);
}
.event-img-wrap {
  margin: -44px -48px 28px;
  max-height: 280px;
  overflow: hidden;
}
.event-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.event-badge {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-rose-deep);
  background: rgba(235, 168, 196, 0.18);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.event-title {
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 500;
  color: var(--c-deep);
  line-height: 1.15;
  margin: 0 0 10px;
}
.event-date {
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--c-violet);
  letter-spacing: 0.01em;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px dashed var(--c-border);
}
.event-desc p {
  font-size: 16px;
  line-height: 1.75;
  color: #5a3e72;
  margin: 0 0 14px;
}
.event-desc p:last-child { margin-bottom: 0; }
.events-empty {
  text-align: center;
  padding: 60px 24px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 18px;
  color: var(--c-muted);
}
.event-card .contact-btns { margin-top: 28px; }
@media (max-width: 600px) {
  .event-card { padding: 32px 24px; border-radius: 22px; }
  .event-img-wrap { margin: -32px -24px 22px; }
  .events-list { gap: 28px; }
}

/* ── MENTAL TRAINING ──────────────────────────────────── */
.mt-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 52px;
}
.mt-img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  max-height: 400px;
  box-shadow: 0 12px 40px rgba(155, 114, 207, 0.16);
  display: block;
}
@media (max-width: 640px) {
  .mt-gallery { grid-template-columns: 1fr; gap: 16px; }
}

/* ── HEALYMAT ─────────────────────────────────────────── */
.healymat-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 52px;
}
.healymat-img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  max-height: 460px;
  box-shadow: 0 12px 40px rgba(155, 114, 207, 0.16);
  display: block;
}
.healymat-text {
  max-width: 820px;
  margin: 0 auto 52px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.healymat-text p {
  font-size: 16px;
  line-height: 1.78;
  color: #5a3e72;
  margin: 0;
}
.healymat-elements {
  background: linear-gradient(135deg, rgba(253,232,242,0.6), rgba(242,236,255,0.6));
  border: 1px solid var(--c-border);
  border-radius: 20px;
  padding: 28px 32px;
  margin: 8px 0;
}
.healymat-elem-title {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-rose-mid);
  margin-bottom: 18px;
}
.healymat-elems {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.healymat-elem {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--c-deep);
}
.healymat-elem span {
  font-family: var(--f-display);
  font-size: 20px;
  color: var(--c-violet);
  flex-shrink: 0;
}
.yt-embed-wrap {
  max-width: 820px;
  margin: 0 auto 52px;
  text-align: center;
}
.yt-embed-label {
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-rose-mid);
  margin-bottom: 18px;
}
.yt-iframe-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 48px rgba(61,29,88,0.18);
}
.yt-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.yt-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-rose-deep);
  text-decoration: none;
  transition: color 0.2s;
}
.yt-link:hover { color: var(--c-violet); }
@media (max-width: 640px) {
  .healymat-gallery { grid-template-columns: 1fr; gap: 16px; }
  .healymat-elems   { grid-template-columns: 1fr; }
}

/* ── HEILSTEINE ───────────────────────────────────────── */
.heilsteine-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 52px;
}
.heilsteine-img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  max-height: 440px;
  box-shadow: 0 12px 40px rgba(155, 114, 207, 0.18);
  display: block;
}
.heilsteine-text {
  max-width: 820px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.heilsteine-text p {
  font-size: 16px;
  line-height: 1.78;
  color: #5a3e72;
  margin: 0;
}
.heilsteine-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 8px 0;
}
.heilsteine-box {
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--c-border);
  border-radius: 16px;
  padding: 22px 18px;
  text-align: center;
}
.heilsteine-box-icon {
  font-size: 28px;
  color: var(--c-violet);
  margin-bottom: 10px;
}
.heilsteine-box p {
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: var(--c-deep) !important;
}
@media (max-width: 900px) {
  .heilsteine-boxes { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .heilsteine-gallery { grid-template-columns: 1fr; gap: 16px; }
}

/* ── MENTAL TRAINING TEXT ─────────────────────────────── */
.mt-text {
  max-width: 820px;
  margin: 0 auto 52px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mt-text p {
  font-size: 16px;
  line-height: 1.78;
  color: #5a3e72;
  margin: 0;
}
.mt-hinweis {
  display: flex;
  gap: 16px;
  background: rgba(253, 232, 242, 0.55);
  border: 1px solid var(--c-border);
  border-left: 4px solid var(--c-rose);
  border-radius: 14px;
  padding: 20px 22px;
  margin: 4px 0;
}
.mt-hinweis-icon {
  font-size: 20px;
  color: var(--c-rose-deep);
  flex-shrink: 0;
  line-height: 1.4;
}
.mt-hinweis p {
  font-size: 14px !important;
  color: #5a3e72 !important;
  line-height: 1.65 !important;
  margin: 0 !important;
}

/* ── IMPRESSUM MODAL ──────────────────────────────────── */
.imp-overlay {
  position: fixed;
  inset: 0;
  background: rgba(61, 29, 88, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 9000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.imp-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.imp-box {
  background: #fff;
  border-radius: 24px;
  padding: 44px 40px 36px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 80px rgba(61,29,88,0.22);
  transform: translateY(20px);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.imp-overlay.open .imp-box {
  transform: translateY(0);
}
.imp-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  font-size: 18px;
  color: #8B6B9E;
  cursor: pointer;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.imp-close:hover { background: #F2ECFF; }
.imp-title {
  font-family: var(--f-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--c-deep);
  margin-bottom: 24px;
}
.imp-body p {
  font-size: 15px;
  line-height: 1.7;
  color: #3D1D58;
  margin-bottom: 18px;
}
.imp-body a { color: var(--c-rose-deep); text-decoration: none; }
.imp-body a:hover { text-decoration: underline; }
.imp-section-label {
  font-size: 11px !important;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-rose-mid) !important;
  margin-bottom: 6px !important;
  margin-top: 4px;
}
@media (max-width: 520px) {
  .imp-box { padding: 36px 24px 28px; }
}

/* ── DATENSCHUTZ MODAL (größer + scrollbar) ───────────── */
.imp-box-lg {
  max-width: 640px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
}
.imp-scroll {
  overflow-y: auto;
  flex: 1;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: var(--c-border) transparent;
}
.imp-scroll::-webkit-scrollbar { width: 5px; }
.imp-scroll::-webkit-scrollbar-thumb { background: var(--c-border); border-radius: 50px; }

/* ── LOADING SPINNER ──────────────────────────────────── */
.events-loading {
  text-align: center;
  padding: 60px 24px;
  color: var(--c-muted);
  font-family: var(--f-display);
  font-style: italic;
  font-size: 16px;
}
.mf-spinner {
  width: 40px; height: 40px;
  border: 3px solid var(--c-border);
  border-top-color: var(--c-rose-deep);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── EVENTS TIMELINE ──────────────────────────────────── */
.events-timeline {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.event-tl-item {
  display: grid;
  grid-template-columns: 160px 32px 1fr;
  gap: 0 0;
  margin-bottom: 52px;
  align-items: start;
}
.event-tl-left {
  text-align: right;
  padding-right: 24px;
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.event-tl-date {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--c-violet);
  line-height: 1.3;
}
.event-tl-dot-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.event-tl-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--c-rose-deep);
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px var(--c-lavender);
  flex-shrink: 0;
  margin-top: 10px;
  z-index: 1;
}
.event-tl-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(180deg, var(--c-lavender) 0%, transparent 100%);
  margin-top: 4px;
  min-height: 60px;
}
.event-tl-card {
  margin-left: 24px;
  background: linear-gradient(145deg, #FFFFFF, #FEF0F8);
  border: 1px solid var(--c-border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(155,114,207,0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.event-tl-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(155,114,207,0.18);
}
.event-tl-card .event-body {
  padding: 28px 32px 32px;
}
.event-tl-card .event-title {
  font-family: var(--f-display);
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 500;
  color: var(--c-deep);
  margin-bottom: 8px;
}
.event-tl-card .event-date {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-violet);
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--c-border);
}
.event-tl-card .event-desc p {
  font-size: 15px;
  line-height: 1.75;
  color: #5a3e72;
  margin-bottom: 12px;
}
.event-tl-card .contact-btns { margin-top: 24px; }

/* Multi-image gallery */
.event-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
}
.event-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.event-img-wrap img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  display: block;
}

/* Mobile timeline */
@media (max-width: 700px) {
  .event-tl-item {
    grid-template-columns: 0 20px 1fr;
    margin-bottom: 36px;
  }
  .event-tl-left { display: none; }
  .event-tl-card { margin-left: 16px; }
  .event-tl-card .event-body { padding: 20px 20px 24px; }
  .event-gallery img { height: 160px; }
}

/* ── EVENT PREVIEW GALLERY (Admin) ────────────────────── */
.ev-preview-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.ev-prev-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--c-border);
}
.ev-prev-img {
  width: 100px;
  height: 80px;
  object-fit: cover;
  display: block;
}
.ev-prev-video {
  width: 140px;
  height: 80px;
  object-fit: cover;
  display: block;
  background: #000;
}
.ev-prev-remove {
  position: absolute;
  top: 4px; right: 4px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 22px; height: 22px;
  font-size: 12px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.ev-prev-remove:hover { background: rgba(192,57,75,0.9); }

/* ── PRODUKT-SLIDER ───────────────────────────────────── */
.pg-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  background: var(--c-lav-pale);
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  cursor: pointer;
}
.pg-track {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  transition: transform 0.38s cubic-bezier(0.16,1,0.3,1);
}
.pg-slide {
  min-width: 100%;
  flex-shrink: 0;
  position: relative;
}
.pg-slide img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.pg-slide video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  background: #111;
}
.pg-yt {
  position: relative;
}
.pg-yt iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}
.pg-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--c-lavender);
}
.pg-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.82);
  color: var(--c-deep);
  border: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
  line-height: 1;
}
.pg-btn:hover { background: #fff; }
.pg-prev { left: 8px; }
.pg-next { right: 8px; }
.pg-expand {
  position: absolute;
  top: 8px; right: 8px;
  background: rgba(0,0,0,0.45);
  color: #fff;
  border: none;
  width: 30px; height: 30px;
  border-radius: 8px;
  font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: background 0.2s;
}
.pg-expand:hover { background: rgba(0,0,0,0.72); }
.pg-count {
  position: absolute;
  top: 8px; left: 10px;
  background: rgba(0,0,0,0.48);
  color: #fff;
  font-size: 12px; font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  z-index: 3;
  font-family: var(--f-body);
}
.pg-dots {
  position: absolute;
  bottom: 8px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 5px;
  z-index: 3;
}
.pg-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: background 0.2s;
}
.pg-dot.on { background: #fff; }

/* ── LIGHTBOX ─────────────────────────────────────────── */
#mf-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 9500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px 64px;
}
#mf-lightbox.open { display: flex; }
#lb-img {
  max-height: 90vh;
  max-width: 100%;
  border-radius: 10px;
  object-fit: contain;
  display: block;
}
#lb-close {
  position: fixed; top: 14px; right: 18px;
  background: rgba(255,255,255,0.15);
  color: #fff; border: none;
  width: 42px; height: 42px; border-radius: 50%;
  font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; z-index: 2;
}
#lb-close:hover { background: rgba(255,255,255,0.3); }
#lb-prev, #lb-next {
  background: rgba(255,255,255,0.15);
  color: #fff; border: none;
  width: 44px; height: 44px; border-radius: 50%;
  font-size: 24px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  position: absolute; top: 50%; transform: translateY(-50%);
}
#lb-prev { left: 12px; }
#lb-next { right: 12px; }
#lb-prev:hover, #lb-next:hover { background: rgba(255,255,255,0.3); }
#lb-counter {
  position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.65); font-size: 14px; font-family: var(--f-body);
}
@media (max-width: 600px) {
  #mf-lightbox { padding: 16px 48px; }
  #lb-prev { left: 4px; } #lb-next { right: 4px; }
}
