/* ══════════════════════════════════════════════════════════
   views.css — Innenseiten und Trefferliste (mittig)
══════════════════════════════════════════════════════════ */

/* ── Seitenkopf ─────────────────────────────────── */
.ph { padding: clamp(46px, 8vh, 84px) 0 clamp(28px, 4vw, 44px); }
.crumbs { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 13px; color: var(--faint); margin-bottom: 20px; }
.crumbs a { transition: color .18s; }
.crumbs a:hover { color: var(--brand); }
.ph h1 { font-size: clamp(1.95rem, 4.4vw, 2.95rem); margin: 0 auto 16px; max-width: 20ch; }
.ph p.sub { font-size: 16.5px; color: var(--mute); max-width: 54ch; margin: 0 auto; }

/* ── Fließtext ──────────────────────────────────── */
.prose { font-size: 15.5px; color: var(--ink-2); max-width: 660px; margin: 0 auto; text-align: left; }
.prose p { margin-bottom: 16px; }
.prose h2 { font-size: 19px; margin: 40px 0 12px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 16.5px; margin: 26px 0 8px; }
.prose ul { padding-left: 20px; margin-bottom: 16px; }
.prose li { margin-bottom: 6px; }
.prose a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--tint-2); }
.prose a:hover { text-decoration-color: var(--brand); }
.prose strong { color: var(--ink); font-weight: 600; }
.card-quiet { background: var(--soft); border-radius: var(--r-m); padding: 20px 24px; margin: 18px 0; text-align: center; }
.stamp { margin-top: 34px; font-size: 13px; color: var(--faint); text-align: center; }

/* Inhaltsverzeichnis */
.toc { max-width: 520px; margin: 0 auto 44px; background: var(--soft); border-radius: var(--r-l); padding: 24px 28px; text-align: center; }
.toc p { font-size: 11.5px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; color: var(--faint); margin-bottom: 14px; }
.toc ol { list-style: none; display: grid; gap: 7px; }
.toc li a { font-size: 14px; color: var(--ink-2); transition: color .18s; }
.toc li a:hover { color: var(--brand); }

/* ── Über uns ───────────────────────────────────── */
.about { max-width: 660px; margin: 0 auto; }
.facts { max-width: 660px; margin: 44px auto 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.facts > div { border: 1px solid var(--line); border-radius: var(--r-m); padding: 22px; text-align: center; transition: border-color .22s var(--ease), transform .22s var(--ease); }
.facts > div:hover { border-color: var(--brand-2); transform: translateY(-2px); }
.facts b { display: block; font-size: 15px; color: var(--ink); font-weight: 600; margin-bottom: 5px; }
.facts span { font-size: 13.5px; color: var(--mute); }
.center-btn { display: inline-block; margin-top: 30px; background: var(--brand); color: #fff; font-size: 14.5px; font-weight: 500; padding: 13px 30px; border-radius: 999px; transition: background .2s, transform .2s var(--ease); }
.center-btn:hover { background: var(--ink); transform: translateY(-2px); }

/* ── Grundsätze ─────────────────────────────────── */
.trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.trio > div { border: 1px solid var(--line); border-radius: var(--r-l); padding: 30px 24px; text-align: center; transition: border-color .25s var(--ease), transform .25s var(--ease); }
.trio > div:hover { border-color: var(--brand-2); transform: translateY(-3px); }
.trio .ico { width: 40px; height: 40px; border-radius: 50%; background: var(--tint); color: var(--brand); display: grid; place-items: center; margin: 0 auto 18px; }
.trio .ico svg { width: 18px; height: 18px; }
.trio h3 { font-size: 16px; margin-bottom: 8px; }
.trio p { font-size: 14.5px; color: var(--mute); }

/* ── Pakete ─────────────────────────────────────── */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.plan { border: 1px solid var(--line); border-radius: var(--r-l); padding: 32px 26px; display: flex; flex-direction: column; text-align: center; transition: border-color .25s var(--ease), transform .25s var(--ease); }
.plan:hover { border-color: var(--line-2); transform: translateY(-3px); }
.plan.hero { background: var(--ink); border-color: var(--ink); color: rgba(255,255,255,.7); }
.plan .flag { display: block; font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--brand-3); margin-bottom: 14px; }
.plan h3 { font-size: 18px; margin-bottom: 20px; }
.plan.hero h3 { color: #fff; }
.plan .amt { font-size: 36px; font-weight: 600; color: var(--ink); letter-spacing: -.035em; line-height: 1; }
.plan.hero .amt { color: #fff; }
.plan .per { font-size: 13px; color: var(--faint); margin: 6px 0 26px; }
.plan.hero .per { color: rgba(255,255,255,.5); }
.plan ul { list-style: none; flex: 1; display: grid; gap: 10px; margin-bottom: 28px; }
.plan li { font-size: 14.5px; color: var(--ink-2); }
.plan.hero li { color: rgba(255,255,255,.75); }
.plan .act { display: block; font-size: 14.5px; font-weight: 500; padding: 13px; border-radius: 999px; transition: background .2s, color .2s, border-color .2s; }
.act-line { border: 1px solid var(--line-2); color: var(--ink); }
.act-line:hover { border-color: var(--brand); color: var(--brand); background: var(--tint); }
.act-fill { background: var(--brand); color: #fff; }
.act-fill:hover { background: var(--ink); }
.act-white { background: #fff; color: var(--ink); }
.act-white:hover { background: var(--tint); }

.hint-bar { max-width: 660px; margin: 34px auto 0; background: var(--soft); border-radius: var(--r-l); padding: 30px; text-align: center; }
.hint-bar h3 { font-size: 16.5px; margin-bottom: 6px; }
.hint-bar p { font-size: 14.5px; color: var(--mute); margin-bottom: 20px; }
.hint-bar a { display: inline-block; background: var(--brand); color: #fff; font-size: 14.5px; font-weight: 500; padding: 12px 28px; border-radius: 999px; transition: background .2s, transform .2s var(--ease); }
.hint-bar a:hover { background: var(--ink); transform: translateY(-2px); }

/* ── Fragen ─────────────────────────────────────── */
.qa { max-width: 700px; margin: 0 auto; border-top: 1px solid var(--line); text-align: left; }
.qa-i { border-bottom: 1px solid var(--line); }
.qa-q {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 4px; cursor: pointer; font-size: 15.5px; font-weight: 500; color: var(--ink);
  transition: color .2s;
}
.qa-q:hover { color: var(--brand); }
.qa-s { position: relative; width: 18px; height: 18px; flex: none; }
.qa-s::before, .qa-s::after {
  content: ''; position: absolute; left: 50%; top: 50%; background: var(--brand-2);
  transform: translate(-50%, -50%); transition: transform .3s var(--ease), opacity .3s;
}
.qa-s::before { width: 13px; height: 1.6px; }
.qa-s::after  { width: 1.6px; height: 13px; }
.qa-i.open .qa-s::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.qa-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .34s var(--ease); }
.qa-i.open .qa-a { grid-template-rows: 1fr; }
.qa-a > div { overflow: hidden; }
.qa-a p { padding: 0 40px 22px 4px; font-size: 15px; color: var(--mute); }
.qa-a a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }

/* ══════════════════════════════════════════════════
   TREFFERLISTE
══════════════════════════════════════════════════ */
.bar {
  position: sticky; top: 0; z-index: 700; background: rgba(255,255,255,.9);
  backdrop-filter: saturate(180%) blur(14px); -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line); padding: 16px 0;
}
.res-top { margin: 40px auto 26px; }
.res-top h1 { font-size: 22px; font-weight: 600; margin-bottom: 6px; }
.res-top h1 em { font-style: normal; color: var(--brand); }
.res-top .n { font-size: 13.5px; color: var(--faint); font-variant-numeric: tabular-nums; }

.grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; list-style: none; }
@media (max-width: 800px) { .grid { grid-template-columns: 1fr; } }

.entry {
  border: 1px solid var(--line); border-radius: var(--r-l); padding: 28px 24px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  background: var(--paper); text-align: center;
  opacity: 0; animation: blurUp .55s var(--ease) forwards;
  animation-delay: calc(var(--i, 0) * 50ms);
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.entry:hover { border-color: var(--line-2); transform: translateY(-3px); box-shadow: 0 16px 34px -22px rgba(20,23,49,.4); }
.entry.top { border-color: var(--tint-2); background: linear-gradient(180deg, var(--tint) 0%, var(--paper) 60%); }

.entry .flagline { display: flex; justify-content: center; align-items: center; gap: 8px; flex-wrap: wrap; }
.chip { font-size: 11.5px; font-weight: 500; color: var(--brand); background: var(--tint); border-radius: 999px; padding: 4px 12px; }
.entry.top .chip { background: #fff; }
.chip-gold { color: var(--gold); background: var(--gold-bg); display: inline-flex; align-items: center; gap: 5px; }
.chip-gold svg { width: 10px; height: 10px; }

.entry h2 { font-size: 17px; font-weight: 600; }
.entry .sub2 { font-size: 13.5px; color: var(--mute); margin-top: 3px; }
.entry .addr { font-size: 14px; color: var(--mute); max-width: 34ch; }

.lines { display: grid; justify-items: center; gap: 7px; }
.line { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ink-2); word-break: break-word; }
.line svg { width: 14px; height: 14px; color: var(--faint); flex: none; }
.line a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: transparent; transition: text-decoration-color .2s; }
.line a:hover { text-decoration-color: var(--brand); }

.hours { width: 100%; border-top: 1px solid var(--line); padding-top: 14px; display: grid; gap: 5px; }
.hours b { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); margin-bottom: 4px; }
.hours .h { display: flex; justify-content: center; gap: 10px; font-size: 13.5px; }
.hours .h span:first-child { color: var(--mute); min-width: 88px; text-align: right; }
.hours .h span:last-child { color: var(--ink-2); min-width: 88px; text-align: left; font-variant-numeric: tabular-nums; }

.acts { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.acts a {
  font-size: 13.5px; font-weight: 500; padding: 9px 20px; border-radius: 999px;
  border: 1px solid var(--line-2); color: var(--ink);
  transition: background .2s, color .2s, border-color .2s, transform .2s var(--ease);
}
.acts a:hover { background: var(--ink); color: #fff; border-color: var(--ink); transform: translateY(-1px); }
.acts a.solid { background: var(--brand); border-color: var(--brand); color: #fff; }
.acts a.solid:hover { background: var(--ink); border-color: var(--ink); }

.tip { position: relative; display: inline-grid; place-items: center; width: 16px; height: 16px; border-radius: 50%; background: var(--tint); color: var(--brand); font-size: 10px; font-weight: 700; cursor: help; }
.tip span {
  position: absolute; bottom: calc(100% + 9px); left: 50%; transform: translateX(-50%) translateY(4px);
  background: var(--ink); color: #fff; font-size: 12.5px; font-weight: 400; line-height: 1.45;
  padding: 8px 11px; border-radius: 10px; width: max-content; max-width: 220px; text-align: left;
  opacity: 0; visibility: hidden; transition: opacity .18s, transform .18s; z-index: 20;
}
.tip:hover span, .tip:focus span { opacity: 1; visibility: visible; transform: translateX(-50%); }

/* Ladezustand */
.skel { border: 1px solid var(--line); border-radius: var(--r-l); padding: 28px 24px; display: grid; justify-items: center; gap: 12px; }
.sk {
  height: 12px; border-radius: 6px;
  background: linear-gradient(90deg, var(--soft) 0%, #EEECF8 50%, var(--soft) 100%);
  background-size: 420px 100%; animation: shimmer 1.25s linear infinite;
}
.sk.w30 { width: 30%; } .sk.w55 { width: 55%; } .sk.w80 { width: 80%; } .sk.w45 { width: 45%; }
.sk.tall { height: 20px; }

.empty { grid-column: 1 / -1; text-align: center; padding: 64px 20px; color: var(--mute); font-size: 15px; }
.empty b { display: block; color: var(--ink); font-size: 17px; font-weight: 600; margin-bottom: 8px; }

/* Blättern */
.pager { display: flex; align-items: center; justify-content: center; gap: 10px; margin: 40px 0 10px; }
.pager button {
  border: 1px solid var(--line-2); background: none; border-radius: 999px;
  padding: 10px 22px; font-size: 14px; color: var(--ink); cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, opacity .2s;
}
.pager button:hover:not(:disabled) { background: var(--ink); color: #fff; border-color: var(--ink); }
.pager button:disabled { opacity: .35; cursor: default; }
.pager .pos { font-size: 13.5px; color: var(--mute); font-variant-numeric: tabular-nums; padding: 0 8px; }

.promo { max-width: 620px; margin: 40px auto 0; border: 1px dashed var(--line-2); border-radius: var(--r-l); padding: 28px; text-align: center; }
.promo h3 { font-size: 16px; margin-bottom: 6px; }
.promo p { font-size: 14px; color: var(--mute); margin-bottom: 16px; }
.promo a { font-size: 14px; font-weight: 500; color: var(--brand); border-bottom: 1px solid var(--tint-2); padding-bottom: 2px; transition: border-color .2s; }
.promo a:hover { border-color: var(--brand); }

@media (max-width: 900px) {
  .trio, .plans { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .facts { grid-template-columns: 1fr; }
}
