/* ==========================================================================
   CUPRA CIRCLE — Mockup Plattform
   Design System / Global Styles
   ========================================================================== */

:root {
  /* Brand */
  --copper:       #c4622d;
  --copper-600:   #a94f21;
  --copper-300:   #e08a52;
  --copper-100:   #f7e7dd;
  --copper-050:   #fdf6f1;
  --petrol:       #123c46;
  --petrol-700:   #0c2b32;

  /* Neutrals */
  --ink:          #111114;
  --ink-800:      #1c1c21;
  --ink-700:      #2a2a31;
  --grey-600:     #6b6b76;
  --grey-400:     #9d9da8;
  --grey-200:     #dcdce2;
  --grey-100:     #eeeef2;
  --grey-050:     #f7f7f9;
  --white:        #ffffff;

  /* Status */
  --green:        #2f7d4f;
  --green-bg:     #e8f4ed;
  --amber:        #a9750d;
  --amber-bg:     #fdf3e0;
  --red:          #b3382f;

  /* Shape */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(17,17,20,.06), 0 2px 6px rgba(17,17,20,.05);
  --shadow-md: 0 4px 10px rgba(17,17,20,.07), 0 12px 28px rgba(17,17,20,.08);
  --shadow-lg: 0 10px 20px rgba(17,17,20,.08), 0 28px 60px rgba(17,17,20,.14);

  --container: 1240px;
  --header-h: 72px;

  --font-display: "Barlow Semi Condensed", "Arial Narrow", system-ui, sans-serif;
  --font-body: "Barlow", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0 0 .4em; font-family: var(--font-display); font-weight: 700; line-height: 1.08; letter-spacing: -.005em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); text-transform: uppercase; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); text-transform: uppercase; }
h3 { font-size: 1.28rem; }
h4 { font-size: 1.05rem; }
p  { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }
hr { border: 0; border-top: 1px solid var(--grey-200); margin: 2rem 0; }
:focus-visible { outline: 3px solid var(--copper); outline-offset: 2px; border-radius: 3px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 20px; }
.container-wide { max-width: 1560px; }
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-dark { background: var(--ink); color: var(--white); }
.section-grey { background: var(--grey-050); }
.section-copper { background: var(--copper-050); }
.stack > * + * { margin-top: 1rem; }
.grid { display: grid; gap: 24px; }
.g2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.g3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.g4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.row { display: flex; gap: 12px; align-items: center; }
.row-wrap { flex-wrap: wrap; }
.spacer { flex: 1; }
.center { text-align: center; }
.mt0 { margin-top: 0; } .mb0 { margin-bottom: 0; }

.section-head { max-width: 720px; margin-bottom: 36px; }
.section-head.center { margin-inline: auto; }
.section-head p { color: var(--grey-600); font-size: 1.06rem; margin: 0; }
.section-dark .section-head p { color: var(--grey-400); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: .16em; font-size: .78rem; font-weight: 600;
  color: var(--copper); margin-bottom: 10px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--copper); }
.lead { font-size: 1.12rem; color: var(--grey-600); }
.section-dark .lead { color: var(--grey-400); }
.muted { color: var(--grey-600); }
.small { font-size: .875rem; }
.tiny { font-size: .8rem; }
.strong { font-weight: 600; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--ink); --btn-fg: #fff; --btn-bd: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 12px 22px; min-height: 46px;
  background: var(--btn-bg); color: var(--btn-fg); border: 1.5px solid var(--btn-bd);
  border-radius: var(--r-pill); cursor: pointer;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  text-transform: uppercase; letter-spacing: .06em; white-space: nowrap;
  transition: transform .12s ease, background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn:active { transform: translateY(0); }
.btn-primary { --btn-bg: var(--copper); --btn-bd: var(--copper); }
.btn-primary:hover { --btn-bg: var(--copper-600); --btn-bd: var(--copper-600); }
.btn-outline { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--grey-200); }
.btn-outline:hover { --btn-bd: var(--ink); }
.btn-ghost { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: transparent; padding-inline: 12px; }
.btn-ghost:hover { --btn-bg: var(--grey-100); box-shadow: none; }
.btn-light { --btn-bg: #fff; --btn-fg: var(--ink); --btn-bd: #fff; }
.btn-onDark { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255,255,255,.35); }
.btn-onDark:hover { --btn-bd: #fff; }
.btn-sm { padding: 8px 16px; min-height: 38px; font-size: .875rem; }
.btn-lg { padding: 15px 30px; min-height: 54px; font-size: 1.06rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .45; pointer-events: none; }
.btn svg { width: 18px; height: 18px; flex: none; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 600;
  color: var(--copper); border-bottom: 1.5px solid transparent; padding-bottom: 1px;
}
.link-arrow:hover { border-color: var(--copper); }

/* ---------- Badges / Chips ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 11px; border-radius: var(--r-pill);
  background: var(--grey-100); color: var(--ink-700);
  font-size: .78rem; font-weight: 600; line-height: 1.5; white-space: nowrap;
}
.badge svg { width: 13px; height: 13px; }
.badge-copper { background: var(--copper-100); color: var(--copper-600); }
.badge-green { background: var(--green-bg); color: var(--green); }
.badge-amber { background: var(--amber-bg); color: var(--amber); }
.badge-dark { background: var(--ink); color: #fff; }
.badge-outline { background: transparent; border: 1px solid var(--grey-200); }
.badge-free { background: var(--ink); color: #fff; }

.chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 16px; border: 1.5px solid var(--grey-200); border-radius: var(--r-pill);
  background: #fff; cursor: pointer; font-size: .9rem; font-weight: 500;
  transition: border-color .15s, background .15s, color .15s;
}
.chip:hover { border-color: var(--ink); }
.chip.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }
.chip-list { display: flex; flex-wrap: wrap; gap: 10px; }

/* ---------- Forms ---------- */
.field { display: block; margin-bottom: 16px; }
.field > label, .label {
  display: block; margin-bottom: 6px;
  font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .07em;
  color: var(--grey-600);
}
.input, .select, .textarea {
  width: 100%; padding: 12px 14px; min-height: 48px;
  background: #fff; border: 1.5px solid var(--grey-200); border-radius: var(--r-md);
  transition: border-color .15s, box-shadow .15s;
}
.input:focus, .select:focus, .textarea:focus {
  outline: none; border-color: var(--copper); box-shadow: 0 0 0 3px rgba(196,98,45,.15);
}
.textarea { min-height: 110px; resize: vertical; }
.select { appearance: none; padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b6b76' stroke-width='2.2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center; background-size: 17px;
}
.check { display: flex; gap: 10px; align-items: flex-start; cursor: pointer; padding: 5px 0; font-size: .95rem; }
.check input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--copper); flex: none; }
.form-note { font-size: .82rem; color: var(--grey-600); }

/* ---------- Demo bar ---------- */
.demobar {
  background: var(--petrol); color: #fff; font-size: .82rem;
  display: flex; align-items: center; gap: 10px; justify-content: center;
  padding: 7px 44px 7px 20px; position: relative; text-align: center;
}
.demobar strong { font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.demobar button {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  background: none; border: 0; color: #fff; opacity: .7; cursor: pointer; font-size: 1.15rem; line-height: 1;
  padding: 4px 8px;
}
.demobar button:hover { opacity: 1; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.96); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--grey-200);
}
.header-inner { display: flex; align-items: center; gap: 26px; height: var(--header-h); }
.logo { display: flex; align-items: center; gap: 11px; flex: none; }
.logo-mark { width: 32px; height: 32px; flex: none; }
.logo-text {
  font-family: var(--font-display); font-weight: 700; font-size: 1.22rem;
  text-transform: uppercase; letter-spacing: .12em; line-height: 1;
}
.logo-text span { color: var(--copper); }
.main-nav { display: flex; gap: 4px; align-items: center; }
.main-nav a {
  padding: 9px 14px; border-radius: var(--r-pill); font-weight: 500; font-size: .96rem;
  color: var(--ink-700); transition: background .15s, color .15s;
}
.main-nav a:hover { background: var(--grey-100); }
.main-nav a.is-active { color: var(--copper); font-weight: 600; }
.header-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.icon-btn {
  width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--grey-200); background: #fff; border-radius: 50%; cursor: pointer;
  position: relative; transition: border-color .15s, background .15s;
}
.icon-btn:hover { border-color: var(--ink); }
.icon-btn svg { width: 19px; height: 19px; }
.icon-btn .dot {
  position: absolute; top: 0; right: 0; min-width: 18px; height: 18px; padding: 0 4px;
  background: var(--copper); color: #fff; border-radius: 9px;
  font-size: .68rem; font-weight: 700; display: grid; place-items: center; border: 2px solid #fff;
}
.burger { display: none; }

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: 0 0 0 auto; width: min(340px, 86vw); z-index: 200;
  background: #fff; transform: translateX(100%); transition: transform .28s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; padding: 18px; overflow-y: auto;
}
.mobile-nav.is-open { transform: none; }
.mobile-nav a {
  padding: 14px 6px; border-bottom: 1px solid var(--grey-100);
  font-family: var(--font-display); font-size: 1.2rem; text-transform: uppercase; letter-spacing: .04em;
}
.scrim {
  position: fixed; inset: 0; background: rgba(17,17,20,.5); z-index: 150;
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.scrim.is-open { opacity: 1; pointer-events: auto; }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--ink); color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(17,17,20,.95) 0%, rgba(17,17,20,.78) 45%, rgba(17,17,20,.35) 100%);
}
.hero-inner { position: relative; padding: 84px 0 96px; max-width: 720px; }
.hero h1 { margin-bottom: 18px; }
.hero h1 em { font-style: normal; color: var(--copper-300); }
.hero-sub { font-size: 1.16rem; color: rgba(255,255,255,.82); max-width: 560px; margin-bottom: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 26px; font-size: .92rem; color: rgba(255,255,255,.78); }
.hero-trust li { display: flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 17px; height: 17px; color: var(--copper-300); flex: none; }

/* Search bar */
.searchbar {
  background: #fff; color: var(--ink); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); padding: 10px;
  display: grid; grid-template-columns: 1.3fr 1fr 1fr auto; gap: 6px; align-items: stretch;
}
.searchbar .sb-field {
  display: flex; flex-direction: column; justify-content: center;
  padding: 8px 16px; border-radius: var(--r-md); cursor: text; min-width: 0;
}
.searchbar .sb-field + .sb-field { border-left: 1px solid var(--grey-200); }
.searchbar .sb-field:hover { background: var(--grey-050); }
.sb-field label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--grey-600); }
.sb-field input, .sb-field select {
  border: 0; background: none; padding: 2px 0; width: 100%; font-size: 1rem; font-weight: 500; min-height: 26px;
}
.sb-field input:focus, .sb-field select:focus { outline: none; }
.sb-field select { appearance: none; cursor: pointer; }
.searchbar .btn { align-self: center; height: 54px; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { padding: 4px 0; }
.stat-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; line-height: 1; color: var(--copper); }
.stat-label { font-size: .92rem; color: var(--grey-600); margin-top: 6px; }
.section-dark .stat-label { color: var(--grey-400); }

/* ---------- Card (Listing) ---------- */
.card {
  background: #fff; border: 1px solid var(--grey-200); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column; position: relative;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--grey-100); }
.card-media { position: relative; aspect-ratio: 4 / 3; background: var(--grey-100); overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card-media img { transform: scale(1.04); }
.card-badges { position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; flex-wrap: wrap; max-width: calc(100% - 70px); }
.card-fav {
  position: absolute; top: 10px; right: 10px; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.92); border: 0; display: grid; place-items: center; cursor: pointer;
  transition: transform .15s, background .15s;
}
.card-fav:hover { transform: scale(1.08); background: #fff; }
.card-fav svg { width: 20px; height: 20px; fill: none; stroke: var(--ink); stroke-width: 1.8; }
.card-fav.is-on svg { fill: var(--copper); stroke: var(--copper); }
.card-body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.card-title { font-family: var(--font-display); font-size: 1.22rem; font-weight: 700; text-transform: uppercase; margin: 0 0 3px; }
.card-meta { font-size: .88rem; color: var(--grey-600); display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.card-specs { display: flex; flex-wrap: wrap; gap: 6px; margin: 12px 0 14px; }
.card-foot {
  margin-top: auto; padding-top: 13px; border-top: 1px solid var(--grey-100);
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.card-host { display: flex; align-items: center; gap: 9px; min-width: 0; }
.avatar { width: 34px; height: 34px; border-radius: 50%; flex: none; object-fit: cover; background: var(--grey-100); }
.avatar-lg { width: 62px; height: 62px; }
.avatar-xl { width: 84px; height: 84px; }
.card-host-name { font-size: .88rem; font-weight: 600; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.card-host-sub { font-size: .78rem; color: var(--grey-600); }
.card-price { text-align: right; flex: none; }
.card-price b { font-family: var(--font-display); font-size: 1.18rem; display: block; line-height: 1.1; }
.card-price span { font-size: .74rem; color: var(--grey-600); }
.stretch-link::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.card-fav, .card-foot a { position: relative; z-index: 2; }

.rating { display: inline-flex; align-items: center; gap: 4px; font-weight: 600; font-size: .88rem; }
.rating svg { width: 14px; height: 14px; fill: var(--copper); }
.rating span { color: var(--grey-600); font-weight: 400; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; }
.step { position: relative; padding-left: 0; }
.step-num {
  width: 46px; height: 46px; border-radius: 50%; background: var(--copper-100); color: var(--copper-600);
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1.25rem;
  margin-bottom: 14px;
}
.section-dark .step-num { background: rgba(196,98,45,.22); color: var(--copper-300); }
.step h3 { margin-bottom: 6px; }
.step p { color: var(--grey-600); margin: 0; font-size: .96rem; }
.section-dark .step p { color: var(--grey-400); }

/* ---------- Feature / Trust tiles ---------- */
.tile {
  background: #fff; border: 1px solid var(--grey-200); border-radius: var(--r-lg); padding: 26px 24px;
  height: 100%;
}
.section-dark .tile { background: var(--ink-800); border-color: var(--ink-700); }
.tile-icon {
  width: 46px; height: 46px; border-radius: var(--r-md); background: var(--copper-050);
  display: grid; place-items: center; margin-bottom: 16px; color: var(--copper);
}
.section-dark .tile-icon { background: rgba(255,255,255,.07); color: var(--copper-300); }
.tile-icon svg { width: 24px; height: 24px; }
.tile h3 { margin-bottom: 8px; }
.tile p { color: var(--grey-600); margin: 0; font-size: .96rem; }
.section-dark .tile p { color: var(--grey-400); }

.checklist li { display: flex; gap: 11px; align-items: flex-start; padding: 7px 0; }
.checklist svg { width: 20px; height: 20px; color: var(--copper); flex: none; margin-top: 2px; }

/* ---------- Search page ---------- */
.search-toolbar { border-bottom: 1px solid var(--grey-200); background: #fff; position: sticky; top: var(--header-h); z-index: 50; }
.search-toolbar .searchbar { box-shadow: none; border: 1px solid var(--grey-200); margin: 12px 0; }
.results-layout { display: grid; grid-template-columns: 268px minmax(0,1fr) 400px; gap: 26px; align-items: start; }
.filters { position: sticky; top: calc(var(--header-h) + 96px); max-height: calc(100vh - var(--header-h) - 120px); overflow-y: auto; padding-right: 4px; }
.filter-group { padding: 16px 0; border-bottom: 1px solid var(--grey-100); }
.filter-group:first-child { padding-top: 0; }
.filter-group h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .09em; color: var(--grey-600); margin-bottom: 10px; font-family: var(--font-body); }
.results-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 18px; flex-wrap: wrap; }
.results-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; }
.map-panel { position: sticky; top: calc(var(--header-h) + 96px); height: calc(100vh - var(--header-h) - 130px); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--grey-200); background: #eef1f0; }
.map-canvas { width: 100%; height: 100%; position: relative; overflow: hidden; }
.map-canvas svg { width: 100%; height: 100%; display: block; }
.map-pins { position: absolute; inset: 0; pointer-events: none; }
.map-pin {
  position: absolute; transform: translate(-50%, -100%); cursor: pointer; pointer-events: auto;
  background: var(--ink); color: #fff; border-radius: var(--r-pill);
  padding: 4px 10px; font-size: .76rem; font-weight: 700; white-space: nowrap;
  box-shadow: var(--shadow-sm); border: 2px solid #fff;
  transition: transform .15s, background .15s;
}
.map-pin:hover, .map-pin.is-active { background: var(--copper); transform: translate(-50%, -100%) scale(1.08); z-index: 5; }
.map-legend {
  position: absolute; left: 12px; bottom: 12px; background: rgba(255,255,255,.92);
  border-radius: var(--r-md); padding: 7px 12px; font-size: .76rem; color: var(--grey-600);
  box-shadow: var(--shadow-sm); pointer-events: none;
}

/* Info-Karte beim Klick auf einen Pin */
.map-pop {
  position: absolute; transform: translate(-50%, -100%); z-index: 20;
  width: 236px; background: #fff; border-radius: var(--r-md);
  box-shadow: var(--shadow-lg); overflow: hidden;
  animation: popIn .16s ease-out;
}
@keyframes popIn { from { opacity: 0; transform: translate(-50%, -96%); } to { opacity: 1; } }
.map-pop > img, .map-pop-inner > img { width: 100%; height: 118px; object-fit: cover; background: var(--grey-100); display: block; }
.map-pop-body { padding: 10px 12px 12px; }
.map-pop-body > b { font-family: var(--font-display); font-size: 1.05rem; text-transform: uppercase; display: block; }
.map-pop-list { display: grid; gap: 4px; max-height: 208px; overflow-y: auto; }
.map-pop-item { display: flex; gap: 9px; align-items: center; padding: 5px; border-radius: var(--r-sm); }
.map-pop-item:hover { background: var(--grey-050); }
.map-pop-item img { width: 54px; height: 40px; object-fit: cover; border-radius: 4px; flex: none; background: var(--grey-100); }
.map-pop-item b { display: block; font-size: .83rem; font-weight: 600; line-height: 1.25; }
.map-pop-item .tiny { display: block; }
.map-pop-item svg { width: 10px; height: 10px; fill: var(--copper); display: inline-block; vertical-align: -1px; }

/* ---------- Echte Karte (Leaflet) ---------- */
.leaflet-host { position: absolute; inset: 0; }
.map-canvas .leaflet-container { font: inherit; background: #e8ecec; }

/* Marker: Punkt sitzt exakt auf der Koordinate, Pille schwebt darüber */
.cc-marker { width: 0 !important; height: 0 !important; }
.cc-pill {
  position: absolute; left: 0; top: 0; transform: translate(-50%, -175%);
  background: #fff; color: var(--ink); border-radius: var(--r-pill);
  padding: 5px 11px; font-size: .78rem; font-weight: 700; white-space: nowrap;
  border: 1px solid rgba(17,17,20,.08);
  box-shadow: 0 1px 3px rgba(17,17,20,.24), 0 3px 10px rgba(17,17,20,.14);
  transition: background .15s, color .15s, transform .15s;
}
.cc-tip {
  position: absolute; left: 0; top: 0; transform: translate(-50%, -50%);
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--copper); border: 2px solid #fff;
  box-shadow: 0 1px 3px rgba(17,17,20,.35);
}
.cc-marker:hover .cc-pill, .cc-marker.is-active .cc-pill {
  background: var(--ink); color: #fff; transform: translate(-50%, -175%) scale(1.07);
}
.cc-marker.is-active .cc-tip { background: var(--ink); }

.cc-cluster {
  background: var(--copper); color: #fff; border: 3px solid #fff; border-radius: 50%;
  display: grid; place-items: center; box-shadow: 0 2px 8px rgba(17,17,20,.32);
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
}
.cc-cluster span { line-height: 1; }

.leaflet-popup.cc-popup .leaflet-popup-content-wrapper {
  padding: 0; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-lg);
}
.leaflet-popup.cc-popup .leaflet-popup-content { margin: 0; width: 236px !important; }
.leaflet-popup.cc-popup a.leaflet-popup-close-button { color: var(--ink); padding: 9px 9px 0 0; }
.leaflet-popup.cc-popup .leaflet-popup-tip { box-shadow: none; }

.map-scrollhint {
  background: rgba(255,255,255,.94); border-radius: var(--r-pill); padding: 5px 12px;
  font-size: .74rem; color: var(--grey-600); box-shadow: var(--shadow-sm); margin: 10px !important;
  pointer-events: none;
}
.leaflet-control-attribution { font-size: .64rem; }
.leaflet-control-attribution a { color: var(--grey-600); }

/* Anzahl-Badge im Ortsmarker (Fallback-Karte) */
.map-pin i {
  font-style: normal; display: inline-block; margin-left: 6px; padding: 0 5px;
  background: var(--copper); color: #fff; border-radius: 8px; font-size: .68rem;
}
.map-pin:hover i, .map-pin.is-active i { background: #fff; color: var(--copper); }
.map-pop-close {
  position: absolute; top: 7px; right: 7px; width: 26px; height: 26px; z-index: 2;
  border: 0; border-radius: 50%; background: rgba(255,255,255,.92); cursor: pointer;
  font-size: 1.15rem; line-height: 1; display: grid; place-items: center;
}
.map-pop-close:hover { background: #fff; }
.mobile-filter-bar { display: none; }
.filters-close, .filters-apply { display: none !important; }
.empty {
  border: 1px dashed var(--grey-200); border-radius: var(--r-lg); padding: 48px 24px; text-align: center; color: var(--grey-600);
  grid-column: 1 / -1;
}

/* ---------- Detail page ---------- */
.breadcrumb { font-size: .86rem; color: var(--grey-600); padding: 18px 0 4px; }
.breadcrumb a:hover { color: var(--copper); }
.detail-head { padding-bottom: 18px; }
.detail-head h1 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 8px; }
.detail-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; align-items: center; color: var(--grey-600); font-size: .95rem; }

.gallery { display: grid; grid-template-columns: 2fr 1fr; gap: 10px; border-radius: var(--r-lg); overflow: hidden; }
.gallery-main { aspect-ratio: 3/2; background: var(--grey-100); }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-side { display: grid; grid-auto-rows: 1fr; gap: 10px; }
.gallery.gallery-single { grid-template-columns: 1fr; }
.gallery-side button { border: 0; padding: 0; background: var(--grey-100); cursor: pointer; overflow: hidden; position: relative; }
.gallery-side img { width: 100%; height: 100%; object-fit: cover; }
.gallery-more {
  position: absolute; inset: 0; background: rgba(17,17,20,.55); color: #fff;
  display: grid; place-items: center; font-family: var(--font-display); font-size: 1.1rem; text-transform: uppercase;
}

.detail-layout { display: grid; grid-template-columns: minmax(0,1fr) 380px; gap: 48px; align-items: start; padding: 34px 0 72px; }
.detail-block { padding: 28px 0; border-top: 1px solid var(--grey-200); }
.detail-block:first-child { border-top: 0; padding-top: 0; }
.detail-block h2 { font-size: 1.5rem; }

.host-strip {
  display: flex; align-items: center; gap: 16px; padding: 18px;
  border: 1px solid var(--grey-200); border-radius: var(--r-lg); background: var(--grey-050);
}
.spec-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.spec {
  border: 1px solid var(--grey-200); border-radius: var(--r-md); padding: 14px 16px; background: #fff;
}
.spec dt { font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; color: var(--grey-600); }
.spec dd { margin: 3px 0 0; font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; }

.exp-option {
  display: flex; gap: 14px; align-items: flex-start; width: 100%; text-align: left;
  border: 1.5px solid var(--grey-200); border-radius: var(--r-md); background: #fff;
  padding: 14px 16px; cursor: pointer; transition: border-color .15s, background .15s;
}
.exp-option:hover { border-color: var(--ink); }
.exp-option.is-active { border-color: var(--copper); background: var(--copper-050); }
.exp-option .exp-ico { width: 38px; height: 38px; border-radius: var(--r-sm); background: var(--grey-100); display: grid; place-items: center; flex: none; }
.exp-option.is-active .exp-ico { background: #fff; color: var(--copper); }
.exp-option b { font-family: var(--font-display); font-size: 1.05rem; }
.exp-option p { margin: 2px 0 0; font-size: .87rem; color: var(--grey-600); }

.booking-card {
  border: 1px solid var(--grey-200); border-radius: var(--r-lg); box-shadow: var(--shadow-md);
  padding: 22px; position: sticky; top: calc(var(--header-h) + 20px); background: #fff;
}
.booking-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.booking-price b { font-family: var(--font-display); font-size: 2rem; line-height: 1; }
.slot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.slot {
  border: 1.5px solid var(--grey-200); border-radius: var(--r-sm); background: #fff; padding: 9px 4px;
  font-size: .88rem; font-weight: 600; cursor: pointer; text-align: center;
}
.slot:hover { border-color: var(--ink); }
.slot.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.slot[disabled] { opacity: .35; pointer-events: none; text-decoration: line-through; }

/* Calendar */
.cal { border: 1px solid var(--grey-200); border-radius: var(--r-md); padding: 14px; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.cal-head b { font-family: var(--font-display); font-size: 1.05rem; text-transform: uppercase; }
.cal-nav { background: none; border: 1px solid var(--grey-200); border-radius: 50%; width: 30px; height: 30px; cursor: pointer; display: grid; place-items: center; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; text-align: center; }
.cal-grid .dow { font-size: .7rem; color: var(--grey-600); text-transform: uppercase; padding-bottom: 4px; font-weight: 600; }
.cal-day {
  aspect-ratio: 1; border: 0; background: none; border-radius: var(--r-sm); cursor: pointer;
  font-size: .86rem; display: grid; place-items: center; position: relative;
}
.cal-day.is-free { background: var(--copper-050); color: var(--copper-600); font-weight: 600; }
.cal-day.is-free:hover { background: var(--copper-100); }
.cal-day.is-sel { background: var(--copper); color: #fff; }
.cal-day.is-off { color: var(--grey-400); pointer-events: none; }
.cal-legend { display: flex; gap: 16px; margin-top: 10px; font-size: .78rem; color: var(--grey-600); }
.cal-legend i { width: 12px; height: 12px; border-radius: 3px; display: inline-block; margin-right: 5px; vertical-align: -1px; }

/* Reviews */
.review { padding: 18px 0; border-top: 1px solid var(--grey-100); }
.review:first-of-type { border-top: 0; }
.review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.bar { height: 6px; border-radius: 3px; background: var(--grey-100); overflow: hidden; flex: 1; }
.bar i { display: block; height: 100%; background: var(--copper); }
.rating-rows { display: grid; gap: 10px; }
.rating-row { display: grid; grid-template-columns: 150px 1fr 34px; gap: 12px; align-items: center; font-size: .9rem; }

/* ---------- Accordion ---------- */
.acc { border-top: 1px solid var(--grey-200); }
.acc-item { border-bottom: 1px solid var(--grey-200); }
.acc-btn {
  width: 100%; text-align: left; background: none; border: 0; padding: 20px 44px 20px 0;
  font-family: var(--font-display); font-size: 1.16rem; font-weight: 600; cursor: pointer; position: relative;
}
.acc-btn::after {
  content: "+"; position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--copper); font-weight: 400; line-height: 1;
}
.acc-item.is-open .acc-btn::after { content: "–"; }
.acc-panel { display: none; padding: 0 40px 20px 0; color: var(--grey-600); }
.acc-item.is-open .acc-panel { display: block; }

/* ---------- Tabs ---------- */
.tabs { display: flex; gap: 6px; border-bottom: 1px solid var(--grey-200); overflow-x: auto; }
.tab {
  background: none; border: 0; border-bottom: 3px solid transparent; padding: 12px 16px; cursor: pointer;
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .04em; color: var(--grey-600); white-space: nowrap;
}
.tab:hover { color: var(--ink); }
.tab.is-active { color: var(--ink); border-color: var(--copper); }
.tabpanel { display: none; padding-top: 26px; }
.tabpanel.is-active { display: block; }

/* ---------- Modal ---------- */
.modal {
  position: fixed; inset: 0; z-index: 300; display: none; padding: 20px;
  align-items: center; justify-content: center;
}
.modal.is-open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(17,17,20,.6); }
.modal-box {
  position: relative; background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  width: min(560px, 100%); max-height: calc(100vh - 40px); overflow-y: auto;
}
.modal-box.wide { width: min(760px, 100%); }
.modal-head { padding: 22px 24px 8px; display: flex; align-items: flex-start; gap: 16px; }
.modal-head h3 { margin: 0; font-size: 1.4rem; text-transform: uppercase; }
.modal-body { padding: 8px 24px 24px; }
.modal-foot { padding: 16px 24px; border-top: 1px solid var(--grey-100); display: flex; gap: 10px; justify-content: flex-end; background: var(--grey-050); border-radius: 0 0 var(--r-lg) var(--r-lg); }
.modal-close { margin-left: auto; background: none; border: 0; font-size: 1.6rem; line-height: 1; cursor: pointer; color: var(--grey-600); padding: 0 4px; }

/* Toast */
.toast-wrap { position: fixed; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 400; display: grid; gap: 8px; width: min(440px, calc(100vw - 32px)); }
.toast {
  background: var(--ink); color: #fff; border-radius: var(--r-md); padding: 13px 18px;
  box-shadow: var(--shadow-lg); font-size: .94rem; display: flex; gap: 10px; align-items: center;
  animation: toastIn .28s cubic-bezier(.2,.8,.3,1);
}
.toast svg { width: 19px; height: 19px; color: var(--copper-300); flex: none; }
@keyframes toastIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ---------- Summary rows ---------- */
.sumrow { display: flex; justify-content: space-between; gap: 16px; padding: 7px 0; font-size: .95rem; }
.sumrow.total { border-top: 1px solid var(--grey-200); margin-top: 8px; padding-top: 12px; font-weight: 700; font-size: 1.05rem; }

/* ---------- Request / dashboard items ---------- */
.req {
  display: grid; grid-template-columns: 132px minmax(0,1fr) auto; gap: 18px; align-items: center;
  border: 1px solid var(--grey-200); border-radius: var(--r-lg); padding: 14px; background: #fff;
}
.req img { width: 132px; height: 94px; object-fit: cover; border-radius: var(--r-md); }
.timeline { display: flex; gap: 0; margin: 14px 0 0; }
.tl-step { flex: 1; text-align: center; position: relative; font-size: .74rem; color: var(--grey-400); }
.tl-step::before {
  content: ""; display: block; height: 3px; background: var(--grey-100); margin-bottom: 7px;
}
.tl-step.done { color: var(--copper); font-weight: 600; }
.tl-step.done::before { background: var(--copper); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--grey-400); padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 34px; }
.site-footer h4 { color: #fff; font-size: .86rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 14px; font-family: var(--font-body); }
.site-footer a:hover { color: #fff; }
.site-footer li { padding: 5px 0; font-size: .94rem; }
.footer-bottom {
  margin-top: 42px; padding-top: 20px; border-top: 1px solid var(--ink-700);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .84rem;
}
.social { display: flex; gap: 10px; margin-top: 16px; }
.social a { width: 38px; height: 38px; border: 1px solid var(--ink-700); border-radius: 50%; display: grid; place-items: center; }
.social a:hover { border-color: var(--copper); color: var(--copper); }
.social svg { width: 17px; height: 17px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--copper); color: #fff; border-radius: var(--r-xl); padding: 46px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); margin: 0; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split img { border-radius: var(--r-lg); width: 100%; }

/* Range */
input[type="range"] { width: 100%; accent-color: var(--copper); height: 30px; }

/* Testimonial */
.quote {
  background: #fff; border: 1px solid var(--grey-200); border-radius: var(--r-lg); padding: 26px; height: 100%;
  display: flex; flex-direction: column;
}
.quote p { font-size: 1.02rem; flex: 1; }
.quote .row { margin-top: 12px; }

/* Utility */
.hide { display: none !important; }
.nowrap { white-space: nowrap; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ==========================================================================
   Responsive
   ========================================================================== */
/* Ab hier passt die Karte nicht mehr neben die Ergebnisse – sie wandert
   als Band über die Liste, bleibt aber nutzbar. */
@media (max-width: 1180px) {
  .results-layout {
    grid-template-columns: 240px minmax(0,1fr);
    grid-template-areas: "map map" "filters results";
  }
  .filters { grid-area: filters; top: calc(var(--header-h) + 20px); }
  .results-layout > section { grid-area: results; }
  .map-panel { grid-area: map; position: static; height: 320px; }
}

@media (max-width: 1024px) {
  .main-nav { display: none; }
  .burger { display: inline-flex; }
  .detail-layout { grid-template-columns: minmax(0,1fr); gap: 26px; }
  .booking-card { position: static; }
  .split { grid-template-columns: 1fr; gap: 28px; }
  .cta-band { grid-template-columns: 1fr; padding: 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .g4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 860px) {
  .section { padding: 52px 0; }
  .searchbar { grid-template-columns: 1fr; padding: 8px; }
  .searchbar .sb-field + .sb-field { border-left: 0; border-top: 1px solid var(--grey-200); }
  .searchbar .btn { width: 100%; margin-top: 6px; }
  .results-layout { grid-template-columns: minmax(0,1fr); }
  .filters { display: none; }
  .mobile-filter-bar {
    display: flex; gap: 10px; overflow-x: auto; padding: 12px 0; position: sticky;
    top: var(--header-h); background: #fff; z-index: 45; border-bottom: 1px solid var(--grey-200);
  }
  .mobile-filter-bar::-webkit-scrollbar { display: none; }
  .mobile-filter-bar .chip { white-space: nowrap; flex: none; }
  .results-layout { grid-template-columns: minmax(0,1fr); grid-template-areas: "map" "results"; }
  .map-panel { height: 270px; }
  .filters.is-open {
    display: block; position: fixed; inset: 0; z-index: 210; background: #fff; overflow-y: auto;
    padding: 18px; max-height: none; top: 0;
  }
  .filters-close { display: inline-flex !important; }
  .filters-apply { display: flex !important; }
  .gallery { grid-template-columns: 1fr; }
  .gallery-side { grid-template-rows: none; grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 26px 16px; }
  .g3 { grid-template-columns: 1fr; }
  .g2 { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .req { grid-template-columns: 96px minmax(0,1fr); }
  .req img { width: 96px; height: 74px; }
  .req > :last-child { grid-column: 1 / -1; }
  .hero-inner { padding: 56px 0 64px; }
}

@media (max-width: 640px) {
  .results-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .rating-row { grid-template-columns: 110px 1fr 30px; }
  .section { padding: 44px 0; }
  .modal { padding: 0; align-items: flex-end; }
  .modal-box { max-height: 92vh; border-radius: var(--r-lg) var(--r-lg) 0 0; width: 100%; }
  .cta-band { padding: 26px; border-radius: var(--r-lg); }
  .header-actions .btn-signup { display: none; }
}

@media (max-width: 560px) {
  .header-inner { gap: 10px; }
  .header-actions { gap: 6px; }
  .logo-mark { width: 28px; height: 28px; }
  .logo-text { font-size: 1rem; letter-spacing: .06em; }
  .icon-btn { width: 38px; height: 38px; }
  .icon-btn svg { width: 17px; height: 17px; }
  .header-auth { display: none; }
}

@media print {
  .site-header, .site-footer, .demobar, .booking-card { display: none; }
}
