/* ============================================================
   Components — Buttons, Header, Cards, Footer, Forms, Cart …
   ============================================================ */

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--gold-gradient);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 600; font-size: .98rem; letter-spacing: .01em;
  position: relative; overflow: hidden;
  transition: transform var(--t-fast), box-shadow var(--t), filter var(--t-fast);
  will-change: transform;
  text-align: center;
}
.btn svg { width: 1.05em; height: 1.05em; flex: none; }

.btn--primary {
  background: var(--btn-bg); color: var(--on-gold);
  box-shadow: 0 8px 26px -10px var(--gold-glow);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -10px var(--gold-glow); filter: brightness(1.05); }
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: rgba(255,255,255,0.02);
  color: var(--gold-light);
  border: 1px solid var(--line);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { border-color: var(--gold); background: rgba(212,175,55,0.08); transform: translateY(-2px); }

.btn--block { width: 100%; }
.btn--sm { padding: .6rem 1rem; font-size: .9rem; }

/* sheen */
.btn--primary::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.55) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform .7s var(--ease);
}
.btn--primary:hover::after { transform: translateX(120%); }

.link-arrow {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--gold-light); font-weight: 600;
  border-bottom: 1px solid transparent; transition: gap var(--t-fast), border-color var(--t-fast);
}
.link-arrow:hover { gap: .7rem; border-color: var(--gold); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background var(--t), backdrop-filter var(--t), box-shadow var(--t), border-color var(--t);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(10,10,10,0.82);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -20px #000;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%; }

.brand { display: flex; align-items: center; gap: .7rem; flex: none; }
.brand img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 1px solid var(--line); }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; line-height: 1; }
.brand-name small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .62rem; letter-spacing: .32em; text-transform: uppercase; color: var(--gold-2); margin-top: 3px; }

.nav { display: flex; align-items: center; gap: .3rem; }
.nav a {
  padding: .55rem .85rem; border-radius: var(--radius-pill);
  font-size: .94rem; font-weight: 500; color: var(--muted);
  position: relative; transition: color var(--t-fast);
}
.nav a:hover { color: var(--text); }
.nav a.is-active { color: var(--gold-light); }
.nav a.is-active::after {
  content: ""; position: absolute; left: 50%; bottom: 4px; transform: translateX(-50%);
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold);
}

.header-actions { display: flex; align-items: center; gap: .6rem; }

/* cart button */
.cart-btn {
  position: relative; display: inline-flex; align-items: center; gap: .5rem;
  padding: .55rem .9rem; border-radius: var(--radius-pill);
  border: 1px solid var(--line); color: var(--gold-light);
  transition: border-color var(--t-fast), background var(--t-fast);
}
.cart-btn:hover { border-color: var(--gold); background: rgba(212,175,55,0.08); }
.cart-btn svg { width: 1.15rem; height: 1.15rem; }
.cart-btn .label { font-size: .9rem; font-weight: 600; }
.cart-count {
  min-width: 20px; height: 20px; padding: 0 5px; border-radius: 99px;
  background: var(--gold-gradient); color: var(--on-gold);
  font-size: .72rem; font-weight: 700; display: inline-grid; place-items: center;
  transition: transform var(--t);
}
.cart-count[data-empty="true"] { display: none; }
.cart-count.bump { animation: bump .4s var(--ease); }

/* hamburger */
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line); position: relative; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 20px; height: 2px;
  background: var(--gold-light); border-radius: 2px; transform: translate(-50%,-50%);
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.nav-toggle span::before { transform: translate(-50%, -7px); }
.nav-toggle span::after  { transform: translate(-50%, 7px); }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: translate(-50%,0) rotate(45deg); }
body.nav-open .nav-toggle span::after  { transform: translate(-50%,0) rotate(-45deg); }

@media (max-width: 940px) {
  .nav-toggle { display: inline-block; }
  .nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0; bottom: 0;
    width: 100%; height: auto;
    flex-direction: column; justify-content: center; gap: .4rem;
    background: rgba(8,8,8,0.98); backdrop-filter: blur(16px);
    transform: translateX(100%); transition: transform var(--t);
    padding: 2rem; z-index: 999; overflow-y: auto;
  }
  body.nav-open .nav { transform: translateX(0); }
  /* Hintergrund-Scrollen sperren & Header deckend, solange das Menü offen ist */
  body.nav-open { overflow: hidden; }
  /* WICHTIG: kein Filter auf dem Header, solange das Menü offen ist –
     ein gefilterter Vorfahr würde das fixe Overlay auf die Header-Höhe einsperren. */
  body.nav-open .site-header {
    background: #0b0b0c; backdrop-filter: none; border-bottom-color: var(--line);
  }
  .nav a { font-size: 1.4rem; font-family: var(--font-display); padding: .6rem 1.2rem; }
  .nav a.is-active::after { bottom: -2px; }
  .cart-btn .label { display: none; }
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(212,175,55,0.04)), var(--black-2);
  padding-top: clamp(3rem, 7vw, 5rem);
  margin-top: var(--section-y);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.footer-brand img { width: 64px; height: 64px; border-radius: 50%; border: 1px solid var(--line); margin-bottom: 1rem; }
.footer h4 { font-family: var(--font-body); font-size: .82rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 1.1rem; }
.footer ul { display: grid; gap: .65rem; list-style: none; padding: 0; }
.footer a { color: var(--muted); transition: color var(--t-fast); }
.footer a:hover { color: var(--gold-light); }
.footer .contact-row { display: flex; gap: .6rem; align-items: flex-start; color: var(--muted); }
.footer .contact-row svg { width: 1.1rem; height: 1.1rem; color: var(--gold); flex: none; margin-top: .2rem; }
.footer-bottom {
  margin-top: 3rem; border-top: 1px solid var(--line-soft);
  padding-block: 1.5rem; display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between; align-items: center; color: var(--muted-2); font-size: var(--fs-small);
}
.footer-bottom nav { display: flex; gap: 1.2rem; flex-wrap: wrap; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* socials */
.socials { display: flex; gap: .6rem; }
.socials a {
  width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px;
  border: 1px solid var(--line); color: var(--gold-light);
  transition: transform var(--t-fast), background var(--t-fast), border-color var(--t-fast);
}
.socials a:hover { transform: translateY(-3px); background: rgba(212,175,55,0.1); border-color: var(--gold); }
.socials svg { width: 1.25rem; height: 1.25rem; }

/* ---------- Generic Card ---------- */
.card {
  position: relative; background: var(--panel);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; transition: transform var(--t), border-color var(--t), box-shadow var(--t);
  display: flex; flex-direction: column;
}
.card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(140deg, var(--gold-glow), transparent 40%, transparent 60%, var(--gold-glow));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity var(--t); pointer-events: none;
}
.card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.card:hover::before { opacity: 1; }

.card-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: #000; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.card:hover .card-media img { transform: scale(1.06); }
.card-tag {
  position: absolute; top: .9rem; left: .9rem; z-index: 2;
  background: rgba(10,10,10,.7); backdrop-filter: blur(6px);
  border: 1px solid var(--line); color: var(--gold-light);
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: .3rem .7rem; border-radius: 99px;
}
.card-body { padding: 1.3rem 1.3rem 1.4rem; display: flex; flex-direction: column; gap: .8rem; flex: 1; }
.card-body h3 { font-size: var(--fs-h3); }
.card-price { display: flex; align-items: baseline; gap: .4rem; }
.card-price .amount { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold-light); font-weight: 700; }
.card-price .per { color: var(--muted); font-size: .85rem; }

.spec-list { list-style: none; padding: 0; display: grid; gap: .45rem; font-size: .9rem; color: var(--muted); }
.spec-list li { display: flex; align-items: center; gap: .55rem; }
.spec-list svg { width: 1rem; height: 1rem; color: var(--gold); flex: none; }
.card .btn { margin-top: auto; }

/* ---------- Category card (homepage) ---------- */
.cat-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  min-height: 320px; display: flex; align-items: flex-end;
  border: 1px solid var(--line); isolation: isolate;
  transition: transform var(--t), box-shadow var(--t);
}
.cat-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform var(--t-slow); }
.cat-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(0,0,0,.92) 8%, rgba(0,0,0,.35) 55%, rgba(0,0,0,.55)); }
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.cat-card:hover img { transform: scale(1.08); }
.cat-card .cat-body { padding: 1.5rem; }
.cat-card h3 { font-size: 1.5rem; margin-bottom: .35rem; }
.cat-card p { color: var(--muted); font-size: .92rem; margin-bottom: .8rem; }
.cat-card .link-arrow { font-size: .9rem; }

/* ---------- USP / feature tiles ---------- */
.feature {
  background: var(--panel); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 1.8rem; transition: border-color var(--t), transform var(--t);
}
.feature:hover { border-color: var(--line); transform: translateY(-4px); }
.feature .icon {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: radial-gradient(circle at 30% 30%, rgba(212,175,55,.25), rgba(212,175,55,.05));
  border: 1px solid var(--line); margin-bottom: 1.1rem; color: var(--gold);
}
.feature .icon svg { width: 1.6rem; height: 1.6rem; }
.feature h3 { font-size: 1.15rem; margin-bottom: .5rem; font-family: var(--font-body); font-weight: 700; }
.feature p { color: var(--muted); font-size: .94rem; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1.5rem; text-align: center; }
.stat .num { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 700; line-height: 1; }
.stat .label { color: var(--muted); margin-top: .5rem; font-size: .9rem; letter-spacing: .04em; }

/* ---------- Pricing table ---------- */
.price-table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); }
.price-table th, .price-table td { padding: 1rem 1.2rem; text-align: left; border-bottom: 1px solid var(--line-soft); }
.price-table thead th { background: rgba(212,175,55,.07); color: var(--gold-light); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; }
.price-table tbody tr:last-child td { border-bottom: 0; }
.price-table tbody tr { transition: background var(--t-fast); }
.price-table tbody tr:hover { background: rgba(212,175,55,.05); }
.price-table .price { font-family: var(--font-display); color: var(--gold-light); font-size: 1.15rem; font-weight: 700; }

/* ---------- Badges / chips ---------- */
.chip {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .4rem .85rem; border-radius: 99px; font-size: .82rem; font-weight: 500;
  background: rgba(255,255,255,.03); border: 1px solid var(--line-soft); color: var(--muted);
}
.chip svg { width: .95rem; height: .95rem; color: var(--gold); }
.chip-row { display: flex; flex-wrap: wrap; gap: .6rem; }
.include-list { list-style: none; padding: 0; display: grid; gap: .8rem; }
.include-list li { display: flex; gap: .7rem; align-items: flex-start; }
.include-list svg { width: 1.3rem; height: 1.3rem; color: var(--gold); flex: none; margin-top: .15rem; }

/* ---------- Forms ---------- */
.field { display: grid; gap: .45rem; }
.field label { font-size: .85rem; font-weight: 600; color: var(--gold-light); letter-spacing: .02em; }
.field .req { color: var(--gold); }
.input, .textarea, .select {
  width: 100%; padding: .8rem 1rem; border-radius: var(--radius-sm);
  background: var(--panel-2); border: 1px solid var(--line-soft); color: var(--text);
  transition: border-color var(--t-fast), box-shadow var(--t-fast); font-size: 1rem;
}
.input:focus, .textarea:focus, .select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,.16); }
.textarea { min-height: 130px; resize: vertical; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
.form-note { font-size: .82rem; color: var(--muted-2); }
.checkbox { display: flex; gap: .6rem; align-items: flex-start; font-size: .9rem; color: var(--muted); }
.checkbox input { margin-top: .25rem; width: 1.05rem; height: 1.05rem; accent-color: var(--gold); flex: none; }

/* ---------- Cart / Anfragekorb ---------- */
.cart-item {
  display: grid; grid-template-columns: 78px 1fr auto; gap: 1rem; align-items: center;
  padding: 1rem; border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--panel);
}
.cart-item img { width: 78px; height: 78px; border-radius: 10px; object-fit: cover; }
.cart-item h4 { font-family: var(--font-body); font-size: 1rem; font-weight: 700; }
.cart-item .meta { color: var(--muted); font-size: .85rem; }
.cart-item .remove { color: var(--muted-2); padding: .4rem; border-radius: 8px; transition: color var(--t-fast), background var(--t-fast); }
.cart-item .remove:hover { color: #ff8b8b; background: rgba(255,90,90,.08); }
.cart-empty { text-align: center; padding: 3rem 1rem; color: var(--muted); border: 1px dashed var(--line); border-radius: var(--radius); }
.cart-empty svg { width: 3rem; height: 3rem; color: var(--gold-2); margin: 0 auto 1rem; opacity: .7; }

.summary {
  position: sticky; top: calc(var(--header-h) + 1rem);
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.6rem;
}
.summary-row { display: flex; justify-content: space-between; gap: 1rem; padding: .55rem 0; color: var(--muted); font-size: .92rem; }
.summary-row.total { border-top: 1px solid var(--line); margin-top: .6rem; padding-top: 1rem; color: var(--text); font-weight: 700; font-size: 1.05rem; }
.summary-row .price { color: var(--gold-light); font-family: var(--font-display); }

/* Anfrage-Seite: responsives Layout (ersetzt Inline-Override) */
.anfrage-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.anfrage-step { font-size: var(--fs-h3); margin-bottom: 1.2rem; display: flex; align-items: center; gap: .7rem; }
.anfrage-step .n {
  width: 30px; height: 30px; border-radius: 50%; flex: none; display: grid; place-items: center;
  background: var(--gold-gradient); color: var(--on-gold); font-family: var(--font-display); font-weight: 700; font-size: 1rem;
}
.form-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.6rem; }
.form-actions .btn { flex: 1 1 200px; }
@media (max-width: 900px) {
  .anfrage-layout { grid-template-columns: 1fr; }
  .anfrage-layout .summary { position: static; }
}
@media (max-width: 520px) {
  .form-actions { flex-direction: column; }
  .cart-item { grid-template-columns: 64px 1fr auto; gap: .7rem; padding: .8rem; }
  .cart-item img { width: 64px; height: 64px; }
}

/* toast */
.toast {
  position: fixed; left: 50%; bottom: 24px; transform: translate(-50%, 30px);
  background: var(--panel-3); border: 1px solid var(--gold); color: var(--text);
  padding: .85rem 1.3rem; border-radius: 99px; z-index: 3000; font-size: .92rem; font-weight: 500;
  display: flex; align-items: center; gap: .6rem; box-shadow: var(--shadow);
  opacity: 0; pointer-events: none; transition: transform var(--t), opacity var(--t);
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }
.toast svg { width: 1.15rem; height: 1.15rem; color: var(--gold); }

/* ---------- Anfragekorb-Drawer (Slide-in) ---------- */
.cart-drawer-overlay {
  position: fixed; inset: 0; z-index: 1600;
  background: rgba(0,0,0,.6); backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden; transition: opacity var(--t), visibility var(--t);
}
.cart-drawer-overlay.show { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; top: 0; right: 0; z-index: 1601;
  height: 100%; height: 100dvh; width: min(430px, 92vw);
  background: var(--panel); border-left: 1px solid var(--line);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform var(--t);
  box-shadow: -24px 0 70px -24px #000;
}
.cart-drawer.show { transform: none; }
.cart-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.15rem 1.3rem; border-bottom: 1px solid var(--line); flex: none;
}
.cart-drawer-head h3 { font-family: var(--font-display); font-size: 1.35rem; display: flex; align-items: center; gap: .55rem; }
.cart-drawer-head .count-badge {
  min-width: 22px; height: 22px; padding: 0 6px; border-radius: 99px;
  background: var(--gold-gradient); color: var(--on-gold);
  font-size: .75rem; font-weight: 700; font-family: var(--font-body);
  display: inline-grid; place-items: center;
}
.cart-drawer-close { width: 42px; height: 42px; border-radius: 11px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--gold-light); transition: background var(--t-fast), border-color var(--t-fast); }
.cart-drawer-close:hover { background: rgba(212,175,55,.1); border-color: var(--gold); }
.cart-drawer-close svg { width: 1.25rem; height: 1.25rem; }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 1.1rem 1.3rem; display: grid; gap: .75rem; align-content: start; }
.cart-drawer-foot { flex: none; border-top: 1px solid var(--line); padding: 1.2rem 1.3rem; display: grid; gap: .75rem; background: var(--panel-2); }
.cart-drawer .cart-item { grid-template-columns: 62px 1fr auto; padding: .7rem; }
.cart-drawer .cart-item img { width: 62px; height: 62px; }
.cart-drawer .cart-item h4 { font-size: .95rem; }
.cart-drawer .cart-item .meta { font-size: .78rem; }
.cart-drawer .cart-empty { border: none; padding: 2.5rem 1rem; }

/* ---------- Floating WhatsApp ---------- */
body.consent-open .fab-whatsapp { bottom: 150px; }
@media (min-width: 740px) { body.consent-open .fab-whatsapp { bottom: 18px; } }

.fab-whatsapp {
  position: fixed; right: 20px; bottom: 20px; z-index: 900;
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(160deg, #2cdf72 0%, #25D366 55%, #1ebe5a 100%);
  color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 28px -8px rgba(37,211,102,.65), 0 2px 6px rgba(0,0,0,.4);
  transition: transform var(--t), box-shadow var(--t);
}
.fab-whatsapp:hover { transform: scale(1.07) translateY(-2px); box-shadow: 0 16px 34px -8px rgba(37,211,102,.75), 0 2px 6px rgba(0,0,0,.4); }
.fab-whatsapp:active { transform: scale(1.02); }
.fab-whatsapp svg { width: 34px; height: 34px; filter: drop-shadow(0 1px 1px rgba(0,0,0,.25)); }
.fab-whatsapp::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: pulse-ring 2.4s infinite;
}
@media (prefers-reduced-motion: reduce) { .fab-whatsapp::after { animation: none; } }

/* ---------- Consent banner ---------- */
.consent {
  position: fixed; left: 50%; bottom: 16px; transform: translateX(-50%);
  width: min(680px, calc(100% - 24px)); z-index: 1500;
  background: rgba(16,16,16,.97); backdrop-filter: blur(12px);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem 1.4rem;
  box-shadow: var(--shadow); display: none;
}
.consent.show { display: block; }
.consent p { font-size: .9rem; color: var(--muted); margin-bottom: 1rem; }
.consent .actions { display: flex; gap: .7rem; flex-wrap: wrap; }

/* ---------- Trust-Leiste (Vertrauenssignale) ---------- */
.trust-bar { border-block: 1px solid var(--line-soft); }
.trust-row { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; width: max-content; max-width: 100%; margin-inline: auto; }
.trust { display: flex; align-items: center; gap: .65rem; color: var(--muted); font-size: .96rem; font-weight: 500; }
.trust strong { color: var(--text); font-weight: 600; }
.trust .ti {
  width: 40px; height: 40px; flex: none; display: grid; place-items: center; border-radius: 11px;
  background: radial-gradient(circle at 30% 30%, rgba(212,175,55,.22), rgba(212,175,55,.05));
  border: 1px solid var(--line); color: var(--gold);
}
.trust .ti svg { width: 1.25rem; height: 1.25rem; }

/* ---------- FAQ (native details, crawlbar, kein JS nötig) ---------- */
.faq { display: grid; gap: .8rem; max-width: 840px; margin-inline: auto; }
.faq details {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--panel); overflow: hidden; transition: border-color var(--t-fast);
}
.faq details[open] { border-color: var(--gold); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.05rem 1.3rem;
  font-weight: 600; color: var(--gold-light); font-size: 1.02rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 12px; height: 12px; position: relative; transition: transform var(--t);
  background:
    linear-gradient(currentColor, currentColor) center/12px 2px no-repeat,
    linear-gradient(currentColor, currentColor) center/2px 12px no-repeat;
}
.faq details[open] summary::after { transform: rotate(135deg); }
.faq .faq-a { padding: 0 1.3rem 1.2rem; color: var(--muted); line-height: 1.7; }
.faq .faq-a a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Städte-Chips (Einzugsgebiet) ---------- */
.city-grid { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; }
.city-grid .chip { background: rgba(212,175,55,.06); }

/* ---------- Prose (Rechtstexte) ---------- */
.prose { color: var(--muted); }
.prose h2 { font-size: 1.5rem; color: var(--text); margin: 2.4rem 0 .9rem; }
.prose h3 { font-size: 1.15rem; color: var(--gold-light); font-family: var(--font-body); font-weight: 700; margin: 1.6rem 0 .5rem; }
.prose p, .prose li { font-size: .97rem; line-height: 1.75; }
.prose p { margin-bottom: 1rem; }
.prose ul { margin: 0 0 1rem 1.2rem; display: grid; gap: .4rem; }
.prose a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--text); }
.prose .placeholder {
  background: rgba(212,175,55,.1); border: 1px dashed var(--gold);
  color: var(--gold-light); border-radius: 6px; padding: .05em .45em; font-weight: 600;
}
.prose .note {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1rem 1.2rem; margin: 1.5rem 0; font-size: .9rem;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 2500; background: rgba(0,0,0,.94);
  display: none; align-items: center; justify-content: center; padding: 2rem;
}
.lightbox.show { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 10px; border: 1px solid var(--line); }
.lightbox .lb-close, .lightbox .lb-nav {
  position: absolute; background: rgba(20,20,20,.7); border: 1px solid var(--line);
  color: var(--gold-light); width: 50px; height: 50px; border-radius: 50%;
  display: grid; place-items: center; transition: background var(--t-fast);
}
.lightbox .lb-close:hover, .lightbox .lb-nav:hover { background: rgba(212,175,55,.2); }
.lightbox .lb-close { top: 24px; right: 24px; }
.lightbox .lb-nav { top: 50%; transform: translateY(-50%); }
.lightbox .lb-prev { left: 18px; } .lightbox .lb-next { right: 18px; }
.lightbox svg { width: 1.5rem; height: 1.5rem; }
