/* =========================================================
   Erinnerungskristall.com – Stylesheet
   Aesthetik: edel, ruhig, Trauer-würdig. Schwarz + Gold.
   Typografie: Cormorant Garamond (Display) + Lora (Body)
   ========================================================= */

/* --------- TOKENS --------- */
:root {
  /* Farben */
  --c-bg:        #0a0908;          /* fast Schwarz, mit Wärme */
  --c-bg-2:      #14110f;          /* Sektions-Variation */
  --c-bg-3:      #1d1916;          /* Cards, Hover */
  --c-line:      #2a2520;          /* Linien, Border */
  --c-line-2:    #3a3128;          /* Stärker */
  --c-text:      #f0e9dc;          /* Off-White, warm */
  --c-text-mute: #a8a29c;          /* sekundär */
  --c-text-dim:  #6e6862;          /* Meta */
  --c-gold:      #c9a961;          /* Hauptgold, edel matt */
  --c-gold-2:    #e8d4a0;          /* Gold hell */
  --c-gold-3:    #8a6f33;          /* Gold dunkel */
  --c-gold-glow: rgba(232, 212, 160, 0.18);
  --c-error:     #e07a5f;
  --c-success:   #8db38b;

  /* Typo */
  --f-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --f-body:    'Lora', Georgia, serif;

  /* Layout */
  --max-w:      1200px;
  --max-w-narrow: 740px;
  --gutter:     clamp(1.25rem, 3vw, 2rem);
  --radius:     2px;
  --radius-lg:  4px;

  /* Motion */
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------- RESET --------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a {
  color: var(--c-gold-2);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}
a:hover { color: var(--c-gold); }
button { font: inherit; cursor: pointer; }
ul, ol { padding-left: 1.2em; }
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--c-text);
  margin: 0 0 0.6em;
}
em { font-style: italic; color: var(--c-gold-2); font-weight: 400; }

/* --------- LAYOUT-CONTAINER --------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container.narrow { max-width: var(--max-w-narrow); }

.section {
  padding: clamp(4rem, 9vw, 8rem) 0;
  position: relative;
}
.section + .section { border-top: 1px solid var(--c-line); }

.section-head { margin-bottom: clamp(2rem, 5vw, 4rem); max-width: 720px; }
.section-head-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 100%;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 300;
}

.kicker {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--c-gold);
  margin: 0 0 1.2rem;
  position: relative;
  padding-left: 2.5rem;
}
.kicker::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 1.8rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-gold));
}

/* =========================================================
   HEADER
   Hinweis: site-header, nav-toggle, nav-backdrop und site-nav
   liegen als Geschwister direkt im Body. Das ist Absicht — sonst
   beschneidet der backdrop-filter des Headers iOS-Safari-seitig
   die fixed-positionierten Kinder (Drawer wird zu klein).
   ========================================================= */
:root {
  --header-h: 64px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 9, 8, 0.75);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--c-line);
  background: rgba(10, 9, 8, 0.92);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  min-height: var(--header-h);
  padding: 0.9rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--c-text);
}
.brand-mark { display: inline-flex; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.brand-tag {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  margin-top: 0.2rem;
}

/* Navigation: Desktop = fixed im rechten Header-Bereich.
   Mobile  = fullheight Drawer von rechts. */
.site-nav {
  position: fixed;
  top: 0;
  right: var(--gutter);
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1.8rem;
  z-index: 55;
}
.site-nav a {
  font-size: 0.95rem;
  color: var(--c-text-mute);
  letter-spacing: 0.01em;
  position: relative;
  padding: 0.4rem 0;
}
.site-nav a:hover { color: var(--c-gold-2); }
.site-nav a.is-active { color: var(--c-gold-2); }
.site-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--c-gold);
}

.nav-cta {
  border: 1px solid var(--c-gold-3);
  padding: 0.55rem 1.1rem !important;
  border-radius: var(--radius);
  font-size: 0.82rem !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase;
  color: var(--c-gold-2) !important;
  transition: all 0.25s var(--ease);
}
.nav-cta:hover {
  border-color: var(--c-gold);
  background: var(--c-gold-glow);
  color: var(--c-gold-2) !important;
}

/* Hamburger-Button: nur auf Mobile sichtbar, fix oben rechts.
   Liegt höher als der Drawer, damit er als X-Schließer klickbar bleibt. */
.nav-toggle {
  display: none;
  position: fixed;
  top: calc((var(--header-h) - 36px) / 2);
  right: var(--gutter);
  width: 36px;
  height: 36px;
  background: none;
  border: 0;
  padding: 0;
  z-index: 100;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 1px;
  background: var(--c-gold-2);
  margin: 7px 0;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Backdrop hinter dem Drawer (mobile) */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
  z-index: 80;
  pointer-events: none;
}
.nav-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .site-nav {
    /* Drawer-Modus */
    top: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    height: 100dvh; /* iOS: dynamische Höhe (ohne Adressleiste) */
    width: min(86vw, 360px);
    background: var(--c-bg);
    border-left: 1px solid var(--c-line);
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 5rem 2rem 2rem;
    transform: translateX(105%);
    transition: transform 0.4s var(--ease);
    overflow-y: auto;
    z-index: 90;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
  }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav a {
    padding: 1rem 0;
    font-size: 1.15rem;
    border-bottom: 1px solid var(--c-line);
  }
  .site-nav a.is-active::after { display: none; }
  .nav-cta { margin-top: 1.5rem; text-align: center; }
}

/* =========================================================
   HERO – Startseite
   ========================================================= */
.hero {
  position: relative;
  padding: clamp(7rem, 18vw, 13rem) 0 clamp(5rem, 10vw, 9rem);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  top: 50%; left: 50%;
  width: clamp(450px, 70vw, 900px);
  height: clamp(450px, 70vw, 900px);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at center,
              rgba(232, 212, 160, 0.16) 0%,
              rgba(201, 169, 97, 0.07) 22%,
              rgba(10, 9, 8, 0) 60%);
  border-radius: 50%;
  filter: blur(20px);
  animation: orb-drift 18s ease-in-out infinite alternate;
}
@keyframes orb-drift {
  from { transform: translate(-50%, -50%) scale(1); }
  to   { transform: translate(-48%, -52%) scale(1.06); }
}
.hero-grain {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(232, 212, 160, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(201, 169, 97, 0.03) 0%, transparent 50%);
  mix-blend-mode: screen;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
}

.eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--c-gold);
  margin: 0 0 2rem;
}

.hero-title {
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 1.8rem;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--c-gold-2);
  background: linear-gradient(90deg, var(--c-gold-2) 0%, var(--c-gold) 50%, var(--c-gold-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--c-text-mute);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-meta {
  font-size: 0.85rem;
  color: var(--c-text-dim);
  letter-spacing: 0.05em;
}
.hero-meta strong { color: var(--c-gold-2); font-weight: 500; }

/* =========================================================
   PAGE-HERO (für Unterseiten)
   ========================================================= */
.page-hero {
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  width: 70vw; height: 70vw;
  max-width: 900px; max-height: 900px;
  transform: translate(-50%, -45%);
  background: radial-gradient(circle, rgba(201, 169, 97, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.page-title {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem;
}
.page-lead {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--c-text-mute);
  max-width: 620px;
  line-height: 1.7;
}

.page-hero-b2b::before { background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 60%); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.8rem;
  font-family: var(--f-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: none;
  text-decoration: none;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn svg { transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: linear-gradient(180deg, var(--c-gold-2) 0%, var(--c-gold) 100%);
  color: #1a1612;
  border: 1px solid var(--c-gold);
  box-shadow: 0 4px 20px -8px rgba(201, 169, 97, 0.5);
}
.btn-primary:hover {
  background: linear-gradient(180deg, #f0dcaa 0%, var(--c-gold-2) 100%);
  color: #100d0a;
  box-shadow: 0 6px 24px -6px rgba(201, 169, 97, 0.65);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--c-gold-2);
  border: 1px solid var(--c-line-2);
}
.btn-ghost:hover {
  background: var(--c-bg-3);
  border-color: var(--c-gold-3);
  color: var(--c-gold-2);
}

/* link-arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--c-gold-2);
  font-weight: 500;
  letter-spacing: 0.02em;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: all 0.25s var(--ease);
}
.link-arrow svg { transition: transform 0.3s var(--ease); }
.link-arrow:hover { border-color: var(--c-gold); color: var(--c-gold-2); }
.link-arrow:hover svg { transform: translateX(4px); }

/* =========================================================
   INTRO-SECTION
   ========================================================= */
.section-intro { background: var(--c-bg-2); }
.prose-lg {
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  line-height: 1.7;
  color: var(--c-text);
  max-width: 640px;
  margin: 0 auto 1.5rem;
  text-align: center;
  font-weight: 400;
}

/* =========================================================
   PILLARS
   ========================================================= */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.pillar {
  position: relative;
  padding: 2.5rem 1.8rem 2rem;
  background: linear-gradient(180deg, var(--c-bg-2) 0%, transparent 100%);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  transition: all 0.4s var(--ease);
}
.pillar:hover {
  border-color: var(--c-gold-3);
  transform: translateY(-4px);
  background: linear-gradient(180deg, var(--c-bg-3) 0%, var(--c-bg-2) 100%);
}
.pillar-num {
  font-family: var(--f-display);
  font-size: 3rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1;
  color: var(--c-gold);
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, var(--c-gold-2) 0%, var(--c-gold-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pillar h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  font-weight: 500;
}
.pillar p {
  color: var(--c-text-mute);
  font-size: 0.98rem;
  margin: 0;
}

@media (max-width: 800px) {
  .pillars { grid-template-columns: 1fr; gap: 1.2rem; }
}

/* =========================================================
   VISUAL ROW (Bild + Text)
   ========================================================= */
.section-visual { background: var(--c-bg-2); overflow: hidden; }
.visual-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.visual-row.reverse .visual-text { order: 2; }
.visual-row.reverse .visual-art  { order: 1; }
.visual-text p {
  color: var(--c-text-mute);
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  line-height: 1.75;
}
.visual-text .section-title { margin-bottom: 1.5rem; }

.visual-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.crystal-svg {
  width: 100%;
  max-width: 460px;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
  animation: crystal-float 6s ease-in-out infinite;
}
.crystal-svg .crystal-spiral {
  animation: spiral-spin 60s linear infinite;
  transform-origin: 200px 220px;
}
@keyframes crystal-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes spiral-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 800px) {
  .visual-row { grid-template-columns: 1fr; }
  .visual-row.reverse .visual-text { order: 1; }
  .visual-row.reverse .visual-art  { order: 2; }
}

/* =========================================================
   ARTICLES
   ========================================================= */
.section-articles { padding-bottom: clamp(4rem, 8vw, 7rem); }
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.article-grid-large {
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 1.5rem;
}

.article-card {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.8rem;
  background: var(--c-bg-2);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.article-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--c-gold-3), transparent 60%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.article-card:hover {
  transform: translateY(-4px);
  background: var(--c-bg-3);
}
.article-card:hover::before { opacity: 1; }

.article-cat {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1.2rem;
}
.article-cat-large {
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin: 1.5rem 0 0.5rem;
}

.article-title {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 1rem;
  color: var(--c-text);
  flex-grow: 0;
}
.article-card:hover .article-title { color: var(--c-gold-2); }
.article-teaser {
  color: var(--c-text-mute);
  font-size: 0.96rem;
  margin: 0 0 1.5rem;
  flex: 1;
}
.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--c-text-dim);
  letter-spacing: 0.05em;
}
.article-arrow {
  color: var(--c-gold);
  font-size: 1.1rem;
  transition: transform 0.3s var(--ease);
}
.article-card:hover .article-arrow { transform: translateX(4px); }

.article-card-feature {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--c-bg-2) 0%, var(--c-bg) 100%);
}
.article-card-feature .article-title { font-size: 1.9rem; }

@media (max-width: 900px) {
  .article-grid { grid-template-columns: 1fr; }
  .article-card-feature { grid-column: span 1; }
}

/* =========================================================
   ARTICLE PAGE (Einzelartikel)
   ========================================================= */
.article-page { padding: clamp(2rem, 5vw, 3rem) 0; }
.article-header {
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(1rem, 3vw, 2rem);
  border-bottom: 1px solid var(--c-line);
}
.back-link {
  display: inline-block;
  font-size: 0.88rem;
  color: var(--c-text-mute);
  margin-bottom: 1.5rem;
}
.back-link:hover { color: var(--c-gold-2); }
.article-h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.1;
  margin: 0.6rem 0 1.2rem;
}
.article-lead {
  font-size: 1.2rem;
  color: var(--c-text-mute);
  line-height: 1.7;
}
.article-meta-line {
  font-size: 0.82rem;
  color: var(--c-text-dim);
  letter-spacing: 0.05em;
  margin-top: 1.5rem;
}

.article-body { padding: clamp(2rem, 5vw, 4rem) 0; }

/* Prose – Lesefluss-Optimierung */
.prose {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--c-text);
}
.prose p { margin: 0 0 1.4em; }
.prose .lead {
  font-size: 1.25rem;
  color: var(--c-gold-2);
  font-style: italic;
  font-weight: 400;
  font-family: var(--f-display);
  line-height: 1.5;
  margin-bottom: 2em;
  padding-left: 1.2em;
  border-left: 2px solid var(--c-gold-3);
}
.prose h2 {
  font-size: 1.85rem;
  font-weight: 500;
  margin: 2.2em 0 0.8em;
  position: relative;
  padding-top: 1.4em;
}
.prose h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2.5rem;
  height: 1px;
  background: var(--c-gold-3);
}
.prose ul, .prose ol { margin: 0 0 1.4em; padding-left: 1.4em; }
.prose li { margin-bottom: 0.5em; }
.prose li::marker { color: var(--c-gold); }
.prose strong { color: var(--c-gold-2); font-weight: 500; }
.prose a { color: var(--c-gold-2); border-bottom: 1px solid var(--c-gold-3); }
.prose a:hover { color: var(--c-gold); border-color: var(--c-gold); }

/* Inline-CTA für die App */
.app-cta-inline {
  margin: 3rem 0;
  padding: 2rem 2rem;
  background: linear-gradient(135deg, var(--c-bg-2) 0%, var(--c-bg-3) 100%);
  border: 1px solid var(--c-line-2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.app-cta-inline .kicker { margin-bottom: 0.4rem; }
.app-cta-text {
  font-size: 1.05rem;
  color: var(--c-text);
  margin: 0;
  max-width: 480px;
}

@media (max-width: 600px) {
  .app-cta-inline { padding: 1.5rem; }
}

/* =========================================================
   SPLIT-CTA (Hinterbliebene / Bestatter)
   ========================================================= */
.section-split { background: var(--c-bg-2); }
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.split-card {
  padding: clamp(2rem, 4vw, 3.2rem);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  background: var(--c-bg);
  position: relative;
  overflow: hidden;
}
.split-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, var(--c-gold-glow) 0%, transparent 50%);
  pointer-events: none;
  opacity: 0.6;
}
.split-card h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 500;
  margin-bottom: 1.2rem;
  position: relative;
}
.split-card p {
  color: var(--c-text-mute);
  margin-bottom: 2rem;
  position: relative;
}
.split-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  position: relative;
}
.split-card-b2b {
  background: linear-gradient(135deg, var(--c-bg) 0%, var(--c-bg-3) 100%);
  border-color: var(--c-gold-3);
}

@media (max-width: 800px) {
  .split-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   CTA-BAND
   ========================================================= */
.section-cta-band { padding-top: 2rem; padding-bottom: 2rem; }
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3.5rem);
  background: linear-gradient(135deg, var(--c-bg-2) 0%, var(--c-bg-3) 100%);
  border: 1px solid var(--c-line-2);
  border-radius: var(--radius-lg);
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
}
.cta-band h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.cta-band p { color: var(--c-text-mute); margin: 0; }
.cta-band-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.cta-band-secondary {
  background: var(--c-bg-2);
}
.cta-band-gold {
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.08) 0%, var(--c-bg-3) 100%);
  border-color: var(--c-gold-3);
}

/* =========================================================
   PROCESS / ABLAUF
   ========================================================= */
.section-process { background: var(--c-bg-2); }
.process {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: process;
}
.process > li {
  padding: 2rem 1.6rem 1.8rem;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease);
}
.process > li:hover { border-color: var(--c-gold-3); transform: translateY(-3px); }
.process-num {
  display: inline-block;
  font-family: var(--f-display);
  font-size: 2.6rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1;
  color: var(--c-gold);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--c-gold-2) 0%, var(--c-gold-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.process h3 {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 0.7rem;
}
.process p {
  color: var(--c-text-mute);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.65;
}

.process-3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 1000px) {
  .process { grid-template-columns: repeat(2, 1fr); }
  .process-3 { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .process { grid-template-columns: 1fr; }
}

/* =========================================================
   APP-PROMO (Begleiter-App)
   ========================================================= */
.section-app-promo { background: var(--c-bg-2); }
.app-promo {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(2rem, 4vw, 3rem) 0;
}
.app-promo-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  margin-bottom: 1.2rem;
}
.app-promo-text p {
  color: var(--c-text-mute);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.app-promo-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-mockup {
  width: 230px;
  height: 460px;
  border: 8px solid #1a1612;
  border-radius: 36px;
  background: var(--c-bg);
  box-shadow:
    0 40px 80px -20px rgba(0, 0, 0, 0.7),
    0 0 0 1px var(--c-gold-3),
    inset 0 0 0 1px var(--c-line);
  padding: 1.5rem 1rem;
  position: relative;
  overflow: hidden;
}
.phone-mockup::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  background: #2a2520;
  border-radius: 4px;
}
.phone-screen {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.phone-line {
  height: 8px;
  width: 60%;
  background: linear-gradient(90deg, var(--c-gold-2), var(--c-gold-3));
  border-radius: 2px;
  margin-bottom: 0.5rem;
}
.phone-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem;
  background: var(--c-bg-3);
  border-radius: 4px;
  border: 1px solid var(--c-line);
}
.phone-row span:first-child {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--c-gold-3);
  flex-shrink: 0;
}
.phone-row span:last-child {
  height: 4px;
  flex: 1;
  background: var(--c-line-2);
  border-radius: 2px;
}
.phone-cta {
  height: 36px;
  margin-top: 1rem;
  background: linear-gradient(180deg, var(--c-gold-2), var(--c-gold));
  border-radius: 4px;
}

@media (max-width: 800px) {
  .app-promo { grid-template-columns: 1fr; text-align: center; }
  .app-promo-text { order: 2; }
  .app-promo-visual { order: 1; }
}

/* =========================================================
   BESTATTER-MAP
   ========================================================= */
.search-box {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  max-width: 540px;
}
.search-input {
  flex: 1;
  padding: 0.95rem 1.2rem;
  background: var(--c-bg-2);
  border: 1px solid var(--c-line-2);
  border-radius: var(--radius);
  color: var(--c-text);
  font-family: var(--f-body);
  font-size: 1rem;
  transition: border-color 0.25s var(--ease);
}
.search-input:focus {
  outline: none;
  border-color: var(--c-gold-3);
}
.search-input::placeholder { color: var(--c-text-dim); }

.search-meta {
  font-size: 0.88rem;
  color: var(--c-text-mute);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.search-meta #searchCount { color: var(--c-gold-2); font-weight: 600; }

/* Filter-Leiste oberhalb der Karten */
.search-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--c-line);
}
.filter-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  user-select: none;
  font-size: 0.92rem;
  color: var(--c-text-mute);
  transition: color 0.2s var(--ease);
}
.filter-toggle:hover { color: var(--c-text); }
.filter-toggle input {
  appearance: none;
  width: 38px;
  height: 22px;
  background: var(--c-bg-2);
  border: 1px solid var(--c-line-2);
  border-radius: 99px;
  position: relative;
  cursor: pointer;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
  flex-shrink: 0;
}
.filter-toggle input::after {
  content: "";
  position: absolute;
  top: 2px; left: 2px;
  width: 16px; height: 16px;
  background: var(--c-text-mute);
  border-radius: 50%;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}
.filter-toggle input:checked {
  background: var(--c-gold-glow);
  border-color: var(--c-gold-3);
}
.filter-toggle input:checked::after {
  transform: translateX(16px);
  background: var(--c-gold-2);
}
.filter-toggle em {
  font-style: normal;
  color: var(--c-text-dim);
  font-size: 0.85rem;
}

.bestatter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1rem;
}
.bestatter-card {
  position: relative;
  padding: 1.4rem 1.4rem 1.2rem;
  background: var(--c-bg-2);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
  display: flex;
  flex-direction: column;
}
.bestatter-card:hover {
  border-color: var(--c-gold-3);
  transform: translateY(-2px);
}
.bestatter-card.has-mk {
  border-color: var(--c-gold-3);
  background: linear-gradient(180deg, rgba(201, 169, 97, 0.06) 0%, var(--c-bg-2) 60%);
}
.bestatter-badge {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold-2);
  background: var(--c-gold-glow);
  border: 1px solid var(--c-gold-3);
  padding: 0.25rem 0.6rem;
  border-radius: 99px;
  margin-bottom: 0.8rem;
  align-self: flex-start;
}
.bestatter-card h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 0 0.4rem;
  line-height: 1.25;
}
.bestatter-addr {
  color: var(--c-text-mute);
  margin: 0 0 0.9rem;
  font-size: 0.9rem;
  line-height: 1.45;
}
.bestatter-contact {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.85rem;
  padding-top: 0.9rem;
  margin-top: auto;
  border-top: 1px solid var(--c-line);
}
.bestatter-contact a {
  color: var(--c-text-mute);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  word-break: break-word;
  transition: color 0.2s var(--ease);
}
.bestatter-contact a:hover { color: var(--c-gold-2); }
.bc-icon {
  display: inline-block;
  width: 14px;
  text-align: center;
  color: var(--c-gold-3);
  font-size: 0.78rem;
  flex-shrink: 0;
}

.no-results {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--c-text-mute);
  font-size: 1.05rem;
  border: 1px dashed var(--c-line-2);
  border-radius: var(--radius-lg);
  margin-top: 1.5rem;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq { display: flex; flex-direction: column; gap: 0.6rem; }
.faq-item {
  background: var(--c-bg-2);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.25s var(--ease);
}
.faq-item[open] { border-color: var(--c-gold-3); }
.faq-item summary {
  padding: 1.4rem 1.6rem;
  font-size: 1.1rem;
  font-weight: 500;
  font-family: var(--f-display);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 3.5rem;
  color: var(--c-text);
  transition: color 0.25s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--c-gold-2); }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: var(--c-gold);
  font-weight: 300;
  transition: transform 0.3s var(--ease);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-body {
  padding: 0 1.6rem 1.6rem;
  color: var(--c-text-mute);
  font-size: 1rem;
  line-height: 1.75;
}
.faq-body p { margin: 0 0 0.8em; }
.faq-body a { border-bottom: 1px solid var(--c-gold-3); }

/* =========================================================
   CONTACT FORM
   ========================================================= */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 4rem;
}
.form-row { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--c-text-mute);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.form-input {
  background: var(--c-bg-2);
  border: 1px solid var(--c-line-2);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  color: var(--c-text);
  font-family: var(--f-body);
  font-size: 1rem;
  text-transform: none;
  letter-spacing: normal;
  transition: border-color 0.25s var(--ease);
}
.form-input:focus { outline: none; border-color: var(--c-gold-3); }
textarea.form-input { resize: vertical; min-height: 140px; }
.form-actions {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.form-note { font-size: 0.82rem; color: var(--c-text-dim); margin: 0; }
.form-note a { border-bottom: 1px solid var(--c-line-2); }

@media (max-width: 600px) {
  .form-row-2 { grid-template-columns: 1fr; }
}

.alert {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}
.alert-success {
  background: rgba(141, 179, 139, 0.1);
  border: 1px solid var(--c-success);
  color: var(--c-text);
}
.alert-success h3 { color: var(--c-success); margin-bottom: 0.5rem; }
.alert-error {
  background: rgba(224, 122, 95, 0.1);
  border: 1px solid var(--c-error);
  color: var(--c-error);
}

.contact-info {
  padding: 2rem;
  background: var(--c-bg-2);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
}
.contact-info h3 {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.contact-info a { color: var(--c-gold-2); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--c-bg-2);
  border-top: 1px solid var(--c-line);
  padding: clamp(3rem, 6vw, 5rem) 0 1.5rem;
  margin-top: 0;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.footer-cols {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--c-line);
}
.footer-brand .brand { margin-bottom: 1.2rem; }
.footer-claim {
  color: var(--c-text-mute);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 360px;
  margin: 0;
}
.footer-col h4 {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 500;
  font-family: var(--f-body);
  margin: 0 0 1.2rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { color: var(--c-text-mute); font-size: 0.95rem; }
.footer-col a:hover { color: var(--c-gold-2); }
.footer-col address {
  font-style: normal;
  color: var(--c-text-mute);
  font-size: 0.95rem;
  line-height: 1.7;
}
.footer-col address a { color: var(--c-text-mute); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--c-text-dim);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: var(--c-text-dim); }
.footer-legal a:hover { color: var(--c-gold-2); }

@media (max-width: 800px) {
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 500px) {
  .footer-cols { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}

/* =========================================================
   ANIMATIONEN: REVEAL ON SCROLL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .crystal-svg, .hero-orb, .crystal-spiral { animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   UTILITIES
   ========================================================= */
::selection { background: var(--c-gold-glow); color: var(--c-gold-2); }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--c-bg); }
::-webkit-scrollbar-thumb {
  background: var(--c-line-2);
  border-radius: 0;
}
::-webkit-scrollbar-thumb:hover { background: var(--c-gold-3); }

/* =========================================================
   BESTATTER-KARTE (Leaflet)
   ========================================================= */
.section-map { padding-top: clamp(2rem, 5vw, 3rem); }
.page-hero.compact {
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(1.5rem, 3vw, 2.5rem);
}

.map-wrap {
  position: relative;
  margin: 0 0 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-line);
  background: var(--c-bg-2);
}
.bestatter-map {
  height: clamp(380px, 55vh, 560px);
  width: 100%;
  background: #0a0908;
}

/* Karten-Steuerelemente (Geolocation-Button rechts oben) */
.map-controls {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.geo-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.95rem;
  background: rgba(10, 9, 8, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--c-gold-3);
  border-radius: var(--radius);
  color: var(--c-gold-2);
  font-family: var(--f-body);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.geo-btn:hover:not(:disabled) {
  background: rgba(201, 169, 97, 0.15);
  border-color: var(--c-gold);
}
.geo-btn:disabled { opacity: 0.6; cursor: wait; }
.geo-icon { font-size: 1.05rem; line-height: 1; }

/* Custom Marker */
.vcm-marker {
  position: relative;
}
.vcm-marker-dot {
  display: block;
  width: 14px; height: 14px;
  background: radial-gradient(circle at 35% 30%, var(--c-gold-2), var(--c-gold) 60%, #7a5a1f 100%);
  border: 1.5px solid #0a0908;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(201, 169, 97, 0.6),
              0 1px 3px rgba(0, 0, 0, 0.6);
  transition: transform 0.2s var(--ease);
}
.vcm-marker:hover .vcm-marker-dot {
  transform: scale(1.3);
}
.vcm-marker-mk .vcm-marker-dot {
  width: 22px; height: 22px;
  border-width: 2px;
  box-shadow: 0 0 14px rgba(232, 212, 160, 0.8),
              0 0 24px rgba(201, 169, 97, 0.5),
              0 1px 4px rgba(0, 0, 0, 0.6);
}
.vcm-marker-star {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.7rem;
  color: #0a0908;
  font-weight: 700;
  pointer-events: none;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.4);
}

/* Cluster (Schwarz-Gold-Optik statt Standard-Blau) */
.vcm-cluster {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: rgba(10, 9, 8, 0.92);
  border: 1.5px solid var(--c-gold-3);
  border-radius: 50%;
  color: var(--c-gold-2);
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 0 14px rgba(201, 169, 97, 0.4),
              0 2px 6px rgba(0, 0, 0, 0.5);
}
.vcm-cluster-md { width: 46px; height: 46px; font-size: 0.9rem; }
.vcm-cluster-lg {
  width: 54px; height: 54px;
  font-size: 0.95rem;
  border-color: var(--c-gold);
  background: rgba(201, 169, 97, 0.18);
  color: var(--c-gold-2);
}
/* Standard-Cluster-Hülle deaktivieren */
.marker-cluster-small,
.marker-cluster-medium,
.marker-cluster-large,
.marker-cluster-small div,
.marker-cluster-medium div,
.marker-cluster-large div {
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

/* Leaflet-Popup im dunklen Stil */
.leaflet-popup-content-wrapper.vcm-popup-wrap,
.vcm-popup-wrap .leaflet-popup-content-wrapper {
  background: var(--c-bg-2);
  color: var(--c-text);
  border: 1px solid var(--c-gold-3);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
}
.vcm-popup-wrap .leaflet-popup-content {
  margin: 0;
  font-family: var(--f-body);
  line-height: 1.5;
}
.vcm-popup-wrap .leaflet-popup-tip {
  background: var(--c-bg-2);
  border-right: 1px solid var(--c-gold-3);
  border-bottom: 1px solid var(--c-gold-3);
}
.vcm-popup-wrap a.leaflet-popup-close-button {
  color: var(--c-text-mute);
  font-size: 1.4rem;
  padding: 0.4rem 0.6rem 0;
}
.vcm-popup-wrap a.leaflet-popup-close-button:hover { color: var(--c-gold-2); }

.vcm-popup { padding: 1rem 1.1rem 0.9rem; min-width: 220px; }
.vcm-popup-badge {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-gold-2);
  background: var(--c-gold-glow);
  border: 1px solid var(--c-gold-3);
  padding: 0.2rem 0.55rem;
  border-radius: 99px;
  margin-bottom: 0.6rem;
}
.vcm-popup h4 {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
  color: var(--c-text);
}
.vcm-popup-addr {
  font-size: 0.88rem;
  color: var(--c-text-mute);
  margin: 0 0 0.7rem;
}
.vcm-popup-contact {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.85rem;
  padding-top: 0.6rem;
  border-top: 1px solid var(--c-line);
}
.vcm-popup-contact a {
  color: var(--c-text-mute);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
.vcm-popup-contact a:hover { color: var(--c-gold-2); }

/* Leaflet-Attribution dezent */
.leaflet-control-attribution {
  background: rgba(10, 9, 8, 0.7) !important;
  color: var(--c-text-dim) !important;
  font-size: 10px;
}
.leaflet-control-attribution a { color: var(--c-text-mute) !important; }

/* Leaflet-Zoom im Goldton */
.leaflet-bar a {
  background: rgba(10, 9, 8, 0.92) !important;
  color: var(--c-gold-2) !important;
  border-color: var(--c-line) !important;
}
.leaflet-bar a:hover {
  background: rgba(201, 169, 97, 0.15) !important;
}

/* Aktive Karten-Karte (in der Liste) */
.bestatter-card.is-active {
  border-color: var(--c-gold);
  box-shadow: 0 0 0 1px var(--c-gold-3),
              0 8px 24px rgba(201, 169, 97, 0.18);
}

/* Distanz-Pille (wird nach Geolocation eingeblendet) */
.bestatter-dist {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  padding: 0.22rem 0.55rem;
  border-radius: 99px;
  margin-bottom: 0.7rem;
}

/* Mobile: Karte etwas niedriger, Geo-Button kompakter */
@media (max-width: 720px) {
  .bestatter-map { height: clamp(320px, 50vh, 420px); }
  .geo-btn { padding: 0.45rem 0.7rem; font-size: 0.78rem; }
  .geo-label { display: none; }
  .geo-btn .geo-icon { font-size: 1.1rem; }
}
