:root {
  --bg: #17122e;
  --bg-2: #1e1740;
  --surface: #221b45;
  --surface-2: #2a2252;
  --line: rgba(255,255,255,.12);
  --line-2: rgba(255,255,255,.20);
  --white: #ffffff;
  --muted: #cfc9e6;
  --muted-2: #a49dc4;
  --gold: #E7B423;
  --gold-br: #F5C63B;
  --gold-ink: #1c1400;
  --pink: #FF4D8D;
  --font: system-ui, "Segoe UI", -apple-system, "Helvetica Neue", Arial, sans-serif;
  --wrap: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--white);
  font-family: var(--font); line-height: 1.6; -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(18px, 5vw, 40px); }
h1, h2, h3 { margin: 0; letter-spacing: -.02em; line-height: 1.02; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* Buttons */
.btn {
  display: inline-block; font-weight: 900; text-transform: uppercase; letter-spacing: .04em;
  font-size: 15px; padding: 16px 32px; border-radius: 14px; cursor: pointer; border: none;
  background: var(--gold); color: var(--gold-ink); box-shadow: 5px 5px 0 var(--pink);
  transition: transform .12s ease, box-shadow .12s ease;
}
.btn:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--pink); }
.btn.ghost { background: transparent; color: var(--white); box-shadow: none; border: 2px solid var(--line-2); }
.btn.ghost:hover { border-color: var(--gold); transform: none; }
.btn.sm { padding: 11px 20px; font-size: 13px; border-radius: 999px; box-shadow: 4px 4px 0 var(--pink); }

/* ---------- Header ---------- */
.topbar { background: #000; color: var(--gold-br); font-size: 13px; text-align: center; padding: 7px 12px; font-weight: 600; letter-spacing: .02em; }
header.nav { position: sticky; top: 0; z-index: 40; background: rgba(23,18,46,.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; align-items: center; gap: 20px; padding: 9px 0; }
.logo { font-weight: 900; font-size: 22px; text-transform: uppercase; letter-spacing: -.02em; margin-right: auto; display: flex; align-items: center; }
.logo img { height: clamp(54px, 7vw, 78px); width: auto; display: block; }
.nav-links { display: flex; gap: 20px; align-items: center; }
.nav-links a { font-size: 14.5px; font-weight: 600; color: var(--muted); transition: color .15s; }
.nav-links a:hover { color: var(--white); }
.nav-links a.btn, .nav-links a.btn:hover { color: var(--gold-ink); }
.burger { display: none; background: none; border: 1px solid var(--line-2); border-radius: 9px; padding: 8px 10px; cursor: pointer; }
.burger span { display: block; width: 20px; height: 2px; background: #fff; margin: 4px 0; }

/* ---------- Hero (Startseite) ---------- */
.hero { position: relative; min-height: min(90vh, 780px); display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; padding: clamp(48px, 8vw, 90px) 0; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-scrim { position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(125% 100% at 50% 45%, rgba(23,18,46,.24) 0%, rgba(23,18,46,.42) 58%, rgba(23,18,46,.70) 100%); }
.hero-inner { position: relative; z-index: 2; width: 100%; max-width: 960px; margin: 0 auto; }
.badge { display: inline-block; background: var(--pink); color: #fff; font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: .05em; padding: 8px 16px; border-radius: 9px; transform: rotate(-2deg); }
.hero h1 { font-size: clamp(38px, 8vw, 82px); font-weight: 900; text-transform: uppercase; text-wrap: balance; margin: 22px auto 0; text-shadow: 0 2px 24px rgba(0,0,0,.55), 0 1px 4px rgba(0,0,0,.4); }
.hero h1 .g { color: var(--gold); }
.hero .sub { font-size: clamp(16px, 2.3vw, 21px); color: #f0edfb; max-width: 40ch; margin: 20px auto 32px; text-shadow: 0 1px 12px rgba(0,0,0,.5); }
.hero .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cities { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 34px; }
.cities a { border: 2px solid var(--line-2); border-radius: 999px; padding: 8px 18px; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; transition: .15s; }
.cities a:hover { border-color: var(--gold); color: var(--gold-br); }

/* ---------- Sub-page hero ---------- */
.subhero { position: relative; overflow: hidden; display: flex; align-items: center; text-align: center; min-height: min(58vh, 480px); padding: clamp(72px,10vw,116px) 0 clamp(48px,7vw,72px); }
.subhero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.subhero .hero-scrim { background: radial-gradient(130% 120% at 50% 42%, rgba(23,18,46,.34) 0%, rgba(23,18,46,.55) 58%, rgba(23,18,46,.82) 100%); }
.subhero-inner { position: relative; z-index: 2; width: 100%; max-width: 900px; margin: 0 auto; }
.subhero h1 { font-size: clamp(32px,6vw,62px); font-weight: 900; text-transform: uppercase; text-wrap: balance; margin: 16px auto 0; text-shadow: 0 2px 20px rgba(0,0,0,.5); }
.subhero h1 .g { color: var(--gold); }
.subhero .sub { color: #f0edfb; font-size: clamp(16px,2.2vw,20px); max-width: 56ch; margin: 18px auto 30px; text-shadow: 0 1px 10px rgba(0,0,0,.45); }
.subhero .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Trust bar ---------- */
.trust { background: var(--gold); color: var(--gold-ink); }
.trust .wrap { display: flex; flex-wrap: wrap; justify-content: space-around; gap: 18px; padding: 22px clamp(18px,5vw,40px); text-align: center; }
.trust .t { display: flex; flex-direction: column; }
.trust .t b { font-size: clamp(22px, 3vw, 30px); font-weight: 900; line-height: 1; }
.trust .t span { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; opacity: .8; margin-top: 4px; }

/* ---------- Section base ---------- */
section.block { padding: clamp(56px, 9vw, 104px) 0; }
.eyebrow { color: var(--gold); font-weight: 900; text-transform: uppercase; letter-spacing: .12em; font-size: 13px; margin: 0 0 14px; }
h2.head { font-size: clamp(28px, 5vw, 46px); font-weight: 900; text-transform: uppercase; text-wrap: balance; line-height: 1.08; }
.intro { color: var(--muted); font-size: 16.5px; max-width: 60ch; margin: 16px 0 0; }

/* Split */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.split .media { border-radius: 20px; overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4/3; }
.split .media img { width: 100%; height: 100%; object-fit: cover; }
.split p { color: var(--muted); font-size: 16px; }

/* Features */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 44px; }
.feat { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 26px 24px; }
.feat .ic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-size: 26px; margin-bottom: 16px; background: rgba(231,180,35,.16); }
.feat:nth-child(2) .ic { background: rgba(255,77,141,.18); }
.feat h3 { font-size: 19px; text-transform: uppercase; margin-bottom: 8px; }
.feat p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* Anlässe grid */
.occ { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 44px; }
.card { position: relative; border-radius: 18px; overflow: hidden; border: 1px solid var(--line); background: var(--surface); display: block; min-height: 260px; transition: transform .15s ease, border-color .15s ease; }
.card:hover { transform: translateY(-4px); border-color: var(--gold); }
.card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.card .grad { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(23,18,46,.15) 0%, rgba(23,18,46,.55) 55%, rgba(23,18,46,.95) 100%); }
.card .cc { position: relative; z-index: 2; padding: 22px; height: 100%; min-height: 260px; display: flex; flex-direction: column; justify-content: flex-end; }
.card h3 { font-size: 21px; text-transform: uppercase; }
.card p { color: var(--muted); font-size: 13.5px; margin: 6px 0 0; }
.card .arrow { color: var(--gold-br); font-weight: 800; font-size: 13px; margin-top: 12px; text-transform: uppercase; letter-spacing: .04em; }

/* Standorte */
.locs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 40px; }
.loc { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 24px 20px; text-align: center; transition: .15s; }
.loc:hover { border-color: var(--gold); transform: translateY(-3px); }
.loc .pin { font-size: 26px; }
.loc h3 { font-size: 20px; text-transform: uppercase; margin: 8px 0 4px; }
.loc span { color: var(--muted-2); font-size: 13px; }
.clima { text-align: center; margin-top: 26px; color: var(--muted); font-size: 14.5px; }

/* FAQ */
.faq { max-width: 780px; margin: 40px auto 0; }
details { border: 1px solid var(--line); border-radius: 14px; background: var(--surface); margin-bottom: 12px; overflow: hidden; }
details summary { cursor: pointer; padding: 18px 22px; font-weight: 700; font-size: 16px; list-style: none; display: flex; justify-content: space-between; gap: 14px; align-items: center; }
details summary::-webkit-details-marker { display: none; }
details summary::after { content: "+"; color: var(--gold); font-size: 24px; font-weight: 400; line-height: 1; }
details[open] summary::after { content: "−"; }
details .a { padding: 0 22px 20px; color: var(--muted); font-size: 15px; }

/* CTA band */
.cta-band { background: var(--gold); color: var(--gold-ink); text-align: center; }
.cta-band .wrap { padding: clamp(48px,7vw,80px) clamp(18px,5vw,40px); }
.cta-band h2 { font-size: clamp(26px,4.5vw,42px); font-weight: 900; text-transform: uppercase; text-wrap: balance; }
.cta-band p { max-width: 50ch; margin: 14px auto 26px; font-weight: 500; }
.cta-band .btn { background: var(--bg); color: #fff; box-shadow: 5px 5px 0 var(--pink); }

/* ---------- Breadcrumb ---------- */
.crumbs { font-size: 13px; color: var(--muted-2); padding-top: 22px; }
.crumbs a { color: var(--muted-2); }
.crumbs a:hover { color: var(--gold-br); }
.crumbs .sep { opacity: .5; margin: 0 8px; }
.crumbs .here { color: var(--muted); }

/* ---------- Prose / content ---------- */
.prose { max-width: 760px; }
.prose > * + * { margin-top: 26px; }
.prose p { color: var(--muted); font-size: 16.5px; line-height: 1.7; margin: 0; }
.prose p + p { margin-top: 20px; }
.prose h2 { font-size: clamp(24px,3.5vw,34px); font-weight: 900; text-transform: uppercase; line-height: 1.1; margin: 14px 0 0; }
.prose h3 { font-size: 20px; text-transform: uppercase; line-height: 1.15; margin: 34px 0 0; }
.prose h3 + .checklist { margin-top: 18px; }
.prose strong { color: var(--white); }

/* Info two-col */
.info-grid { display: grid; grid-template-columns: 1fr .92fr; gap: clamp(32px,6vw,72px); align-items: start; }
.info-grid .media { border-radius: 20px; overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4/5; }
.info-grid .media img { width: 100%; height: 100%; object-fit: cover; }

/* Checklist */
.checklist { list-style: none; margin: 6px 0 0; padding: 0; display: grid; gap: 14px; }
.checklist li { position: relative; padding-left: 38px; color: var(--muted); font-size: 16px; line-height: 1.5; }
.checklist li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 24px; height: 24px; border-radius: 7px; background: var(--gold); color: var(--gold-ink); font-weight: 900; font-size: 14px; display: grid; place-items: center; }
.checklist li strong { color: var(--white); }

/* Booking embed */
.embed-box { border: 1px solid var(--line); border-radius: 18px; background: var(--surface); padding: clamp(18px,4vw,30px); margin-top: 28px; }
.embed-ph { border: 2px dashed var(--line-2); border-radius: 14px; padding: clamp(36px,6vw,56px) 20px; text-align: center; color: var(--muted-2); }
.embed-ph b { color: var(--muted); display: block; margin-bottom: 6px; }
/* Hinweis: Die Lesbarkeit des Regiondo-Widgets (Shadow DOM / MUI) wird per
   Style-Injektion in den Shadow-Root gelöst -> siehe assets/js/main.js. */

/* Address / contact box */
.infobox { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 24px; }
.infobox h3 { font-size: 15px; text-transform: uppercase; letter-spacing: .06em; color: var(--gold); margin: 0 0 12px; }
.infobox p { color: var(--muted); font-size: 15px; margin: 0 0 8px; }
.infobox p strong { color: var(--white); }

/* Gründer (Über uns) */
.founder { display: grid; grid-template-columns: 300px 1fr; gap: clamp(22px,4vw,46px); align-items: start; margin-top: 40px; }
.founder + .founder { margin-top: clamp(30px,5vw,52px); padding-top: clamp(30px,5vw,52px); border-top: 1px solid var(--line); }
.founder-photo img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 18px; border: 1px solid var(--line); background: var(--surface); display: block; }
.founder .prose h3 { font-size: clamp(22px,3vw,30px); font-weight: 900; color: var(--gold); margin: 2px 0 12px; }
@media (max-width: 640px) {
  .founder { grid-template-columns: 1fr; gap: 18px; }
  .founder-photo { max-width: 260px; }
}

/* Related links */
.related { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px,1fr)); gap: 14px; margin-top: 34px; }
.rel { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px; transition: transform .15s ease, border-color .15s ease; }
.rel:hover { border-color: var(--gold); transform: translateY(-3px); }
.rel b { display: block; font-size: 16px; text-transform: uppercase; margin-bottom: 3px; }
.rel span { color: var(--muted-2); font-size: 13px; }

/* Checklist – 2 Spalten */
.checklist.cols2 { grid-template-columns: 1fr 1fr; gap: 16px 36px; }

/* Eignungs-Chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.chips span { background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 9px 16px; font-size: 14px; color: var(--muted); font-weight: 600; }

/* Anfahrt & Lage */
.anfahrt-body { max-width: 820px; }
.anfahrt-body p { color: var(--muted); font-size: 16.5px; line-height: 1.7; margin: 16px 0 0; }

/* Impressionen-Galerie (Mosaik-Collage – kompakt, versetzte große Kacheln, sauberes Rechteck) */
.gallery { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 108px; gap: 8px; grid-auto-flow: dense; margin-top: 34px; }
.gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: 9px; display: block; transition: filter .2s ease; }
.gallery img:hover { filter: brightness(1.08); }
.gallery .b1 { grid-column: 1 / span 2; grid-row: 1 / span 2; }
.gallery .b2 { grid-column: 4 / span 2; grid-row: 1 / span 2; }
.gallery .b3 { grid-column: 2 / span 2; grid-row: 3 / span 2; }
@media (max-width: 640px) {
  .gallery { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 120px; gap: 6px; }
  .gallery .b1, .gallery .b2, .gallery .b3 { grid-column: auto; grid-row: auto; }
  /* Trust-Leiste: alle 4 Infos immer in EINER Reihe */
  .trust .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; padding: 16px 8px; }
  .trust .t b { font-size: clamp(15px, 4.3vw, 20px); }
  .trust .t span { font-size: clamp(9px, 2.5vw, 11px); letter-spacing: .02em; margin-top: 3px; }
}

/* Preistabelle */
.ptable { max-width: 720px; margin: 36px auto 0; }
.ptable .panel { background: var(--gold); color: var(--gold-ink); border-radius: 14px; overflow: hidden; }
.ptable .panel .row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 15px 22px; font-weight: 800; }
.ptable .panel .row + .row { border-top: 1px solid rgba(28,20,0,.18); }
.ptable .panel .row .lbl { text-transform: uppercase; letter-spacing: .01em; font-size: clamp(14.5px,2vw,18px); }
.ptable .panel .row .amt { font-variant-numeric: tabular-nums; font-size: clamp(16px,2.4vw,21px); white-space: nowrap; }
.ptable .strip { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 13px 20px; color: var(--muted); font-size: 14.5px; margin: 12px 0; }
.ptable .strip b { color: var(--white); }
.ptable .fine { text-align: center; color: var(--muted-2); font-size: 13.5px; margin-top: 10px; }

/* Preis-Teaser */
.pricebox { background: linear-gradient(135deg, var(--surface), var(--surface-2)); border: 1px solid var(--line-2); border-radius: 20px; padding: clamp(26px,4vw,42px); text-align: center; max-width: 580px; margin: 36px auto 0; }
.pricebox .from { color: var(--muted-2); font-size: 13px; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; }
.pricebox .amount { font-size: clamp(42px,7vw,64px); font-weight: 900; color: var(--gold); line-height: 1; margin: 8px 0; }
.pricebox .amount small { font-size: 18px; color: var(--muted); font-weight: 600; }
.pricebox .detail { color: var(--muted); font-size: 15px; margin: 10px 0 0; }
.pricebox .detail b { color: var(--white); }
.pricebox .btn { margin-top: 22px; }

/* Kundenstimmen */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.quote { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 24px; }
.quote .stars { color: var(--gold); letter-spacing: 2px; font-size: 14px; }
.quote p { color: var(--muted); font-size: 15px; line-height: 1.6; margin: 12px 0 16px; font-style: italic; }
.quote .author { font-weight: 700; font-size: 14px; }

@media (max-width: 900px) { .quotes { grid-template-columns: 1fr 1fr; } .checklist.cols2 { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .quotes { grid-template-columns: 1fr; } }

/* Footer */
footer.site { background: #100c22; border-top: 1px solid var(--line); padding: clamp(40px,6vw,64px) 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
.foot-grid h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); margin: 0 0 14px; }
.foot-grid a, .foot-grid p { color: var(--muted-2); font-size: 14px; margin: 0 0 9px; }
.foot-grid a:hover { color: #fff; }
.foot-logo { margin-bottom: 14px; }
.foot-logo img { height: 60px; width: auto; display: block; }
.foot-bottom { border-top: 1px solid var(--line); margin-top: 34px; padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: var(--muted-2); font-size: 13px; }

/* Responsive */
@media (max-width: 900px) {
  .features, .occ { grid-template-columns: 1fr 1fr; }
  .locs { grid-template-columns: 1fr 1fr; }
  .split, .info-grid { grid-template-columns: 1fr; }
  .split .media, .info-grid .media { order: -1; max-height: 360px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .burger { display: block; }
  .nav-links.open { display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: var(--bg-2); padding: 18px 24px; gap: 16px; border-bottom: 1px solid var(--line); }
  .features, .occ, .foot-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .btn, .card, .loc, .rel { transition: none; } }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; margin-top: 38px; }
.postcard { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; transition: transform .12s ease, border-color .12s ease; }
.postcard:hover { transform: translateY(-3px); border-color: var(--gold); }
.postcard-img { aspect-ratio: 16/10; overflow: hidden; }
.postcard-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.postcard .pc-body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.postcard .pc-tag { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--gold); }
.postcard h3 { font-size: 19px; line-height: 1.25; font-weight: 800; }
.postcard p { color: var(--muted); font-size: 14.5px; line-height: 1.55; }
.postcard .pc-more { margin-top: auto; color: var(--gold); font-weight: 800; font-size: 14px; }

/* Artikel-Leseansicht */
.article { max-width: 780px; margin: 0 auto; }
.article-meta { color: var(--muted-2); font-size: 14px; font-weight: 600; margin: 6px 0 0; }
.article-hero-img { margin: 26px 0 6px; border-radius: 18px; overflow: hidden; border: 1px solid var(--line); }
.article-hero-img img { width: 100%; display: block; aspect-ratio: 16/9; object-fit: cover; }
.article .prose h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 900; margin: 34px 0 10px; }
.article .prose h3 { font-size: clamp(18px, 2.4vw, 22px); font-weight: 800; margin: 24px 0 8px; color: var(--gold); }
.article .prose ul { margin: 10px 0; padding-left: 20px; }
.article .prose ul li { margin: 7px 0; color: var(--muted); }
.article .prose ul li::marker { color: var(--gold); }
.article .callout { background: linear-gradient(135deg, var(--surface), var(--surface-2)); border: 1px solid var(--line-2); border-radius: 16px; padding: 22px 24px; margin: 26px 0; }
.article .callout p { margin: 0 0 14px; }
