/* ============================================================================
   HUNTER SHOP — "Dein Projekt" (Hub + Zonen-Seiten)
   Anwendungs-Achse: Garten-Zonen, System-Bausteine, Größen-Sets.
   Baut auf tokens.css / base.css / components.css auf (Karten = .pcard).
   ========================================================================== */

/* ========================================================================== */
/* HUB (projekt.html) — Zonen-Kacheln                                          */
/* ========================================================================== */
/* HUB Hero — cinematic (Bild + dunkler Scrim) */
.projekthub-hero { position: relative; isolation: isolate; overflow: hidden; color: var(--text-invert); padding: clamp(3.5rem, 9vw, 7rem) 0 clamp(2.75rem, 6vw, 5rem); }
.projekthub-hero__bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.projekthub-hero__scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(100deg, rgba(6,35,50,.93) 0%, rgba(6,35,50,.7) 48%, rgba(6,35,50,.32) 100%); }
.projekthub-hero__inner { max-width: 60ch; }
.projekthub-hero__eyebrow { color: var(--color-secondary); }
.projekthub-hero__title { color: #fff; margin: var(--sp-3) 0 var(--sp-4); }
.projekthub-hero__lede { color: rgba(238,243,245,.92); font-size: var(--fs-lg); max-width: 54ch; }

/* Zonen-Kacheln — alle gleich groß (2×3: 6 Bereiche) */
.zonegrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
@media (max-width: 900px) { .zonegrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .zonegrid { grid-template-columns: 1fr; } }

.zonecard {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 340px;
  padding: var(--sp-6);
  border-radius: var(--r-lg);
  overflow: hidden;
  color: var(--text-invert);
  border: 1px solid var(--line);
  isolation: isolate;
  text-decoration: none;
  transition: transform var(--dur-2) var(--ease-out), box-shadow var(--dur-2) var(--ease-out);
}
.zonecard--feature { min-height: 420px; }
.zonecard__img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--dur-4) var(--ease-out);
}
.zonecard::after { /* Scrim für Kontrast (A11y) */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(6,35,50,0) 30%, rgba(6,35,50,.4) 60%, rgba(6,35,50,.85) 100%);
}
.zonecard[href]:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.zonecard[href]:hover .zonecard__img { transform: scale(1.05); }
.zonecard__eyebrow {
  font-size: var(--fs-eyebrow); font-weight: 600; letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase; color: rgba(238,243,245,.8);
}
.zonecard__title { font-family: var(--font-display); font-weight: 900; font-size: var(--fs-h2); line-height: 1.03; margin: var(--sp-2) 0 var(--sp-3); color: #fff; }
.zonecard--feature .zonecard__title { font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem); }
.zonecard__lead { font-size: var(--fs-base); color: rgba(238,243,245,.9); max-width: 42ch; }
.zonecard__go {
  display: inline-flex; align-items: center; gap: .5em;
  margin-top: var(--sp-4); font-weight: 600; color: #fff;
}
.zonecard__go svg { width: 18px; height: 18px; transition: transform var(--dur-1) var(--ease-out); }
.zonecard[href]:hover .zonecard__go svg { transform: translateX(4px); }
.zonecard__soon {
  align-self: flex-start; margin-top: var(--sp-3);
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: .04em;
  padding: .35em .8em; border-radius: var(--r-pill);
  background: rgba(255,255,255,.16); color: #fff; backdrop-filter: blur(4px);
}
.zonecard--soon { color: var(--text-invert); }
.zonecard--soon:not([href]) { cursor: default; }

/* ========================================================================== */
/* ZONEN-SEITE — Hero (projekt-rasen.html)                                     */
/* ========================================================================== */
.projekt-hero { padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(3rem, 6vw, 5rem); }
.projekt-hero__grid { display: grid; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
@media (min-width: 900px) { .projekt-hero__grid { grid-template-columns: 1.05fr .95fr; } }
.projekt-hero__copy { max-width: 56ch; }
.projekt-hero h1 { margin: var(--sp-2) 0 var(--sp-4); }
.projekt-hero__lead { color: var(--text-muted); font-size: var(--fs-lg); }
.projekt-hero__media { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 16 / 9; }
.projekt-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.projekt-hero__steps { display: flex; flex-wrap: wrap; gap: var(--sp-4); margin-top: var(--sp-5); }
.projekt-hero__step { display: inline-flex; align-items: center; gap: .55em; font-size: var(--fs-sm); font-weight: 600; color: var(--brand-deep); }
.projekt-hero__step svg { width: 20px; height: 20px; color: var(--brand-bright); flex: none; }

/* ========================================================================== */
/* GRÖSSEN-UMSCHALTER (Presets)                                                */
/* ========================================================================== */
.sizebar-section { padding-top: clamp(3rem, 6vw, 5rem); }
.sizebar__head { max-width: var(--w-prose); margin-bottom: var(--sp-5); }
.sizebar {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-4);
}
@media (max-width: 640px) { .sizebar { grid-template-columns: 1fr; } }
.sizetab {
  position: relative; text-align: left; cursor: pointer;
  padding: var(--sp-5); border-radius: var(--r-lg);
  background: var(--bg-surface); border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: var(--sp-1);
  transition: border-color var(--dur-1) var(--ease-out), box-shadow var(--dur-1) var(--ease-out), transform var(--dur-1) var(--ease-out);
}
.sizetab:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }
.sizetab__label { font-family: var(--font-display); font-weight: 900; font-size: var(--fs-xl); color: var(--text-strong); }
.sizetab__area { font-size: var(--fs-sm); color: var(--text-muted); font-variant-numeric: tabular-nums; }
.sizetab__flag {
  position: absolute; top: var(--sp-4); right: var(--sp-4);
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: .03em;
  padding: .25em .7em; border-radius: var(--r-pill);
  background: var(--cta-tint); color: var(--cta-700);
}
.sizetab[aria-pressed="true"] { /* aktiver Zustand */
  border-color: var(--brand); box-shadow: inset 0 0 0 1px var(--brand);
  background: var(--blue-50);
}
.sizetab[aria-pressed="true"] .sizetab__label { color: var(--brand-deep); }

/* ========================================================================== */
/* BAUSTEINE                                                                   */
/* ========================================================================== */
/* Schritt 2 Kopf (weiß) */
.projekt-bausteine-intro { padding-bottom: 0; }
/* Bausteine als full-width Zebra-Bänder (abwechselnd hellblau / weiß) */
.baustein-band { padding: clamp(2rem, 4vw, 3.25rem) 0; background: linear-gradient(180deg, var(--blue-50) 0%, var(--white) 100%); }
.baustein-band--alt { background: var(--bg); }
.baustein__head { max-width: var(--w-prose); margin-bottom: clamp(1.25rem, 3vw, 2rem); }
.baustein__title {
  font-family: var(--font-display); font-weight: 900; font-size: var(--fs-h2);
  color: var(--text-strong); line-height: 1.05; margin-top: var(--sp-1);
}
.baustein__lede { margin-top: var(--sp-3); color: var(--text-muted); }
/* Regner-Sub-Filter: Segmented Control im Baustein-Kopf. Schaltet die Regner-Karten
   zwischen Getrieberegner / MP Rotator / Sprühdüsen um (rein lokale View, kein Reload). */
.btype {
  display: inline-flex; flex-wrap: wrap; gap: 3px; margin-top: var(--sp-4);
  padding: 3px; border-radius: var(--r-pill);
  background: var(--bg-sunk); border: 1px solid var(--line);
}
.btype__tab {
  display: inline-flex; align-items: center; gap: .5em; cursor: pointer;
  padding: .5em 1.05em; border: 0; border-radius: var(--r-pill); background: transparent;
  font-family: inherit; font-size: var(--fs-sm); font-weight: var(--fw-medium); color: var(--text-muted);
  transition: background var(--dur-1) var(--ease-out), color var(--dur-1) var(--ease-out), box-shadow var(--dur-1) var(--ease-out);
}
.btype__tab:hover { color: var(--text-strong); }
.btype__tab.is-active {
  background: var(--white); color: var(--brand-deep); font-weight: var(--fw-semi);
  box-shadow: var(--sh-sm);
}
.btype__n { font-size: var(--fs-xs); color: var(--text-soft); font-variant-numeric: tabular-nums; }
.btype__tab.is-active .btype__n { color: var(--brand); }
@media (max-width: 520px) { .btype { width: 100%; } .btype__tab { flex: 1 1 auto; justify-content: center; } }

.card-grid--projekt {
  display: grid; gap: var(--sp-5);
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
@media (max-width: 520px) { .card-grid--projekt { grid-template-columns: 1fr; } }

/* ==========================================================================
   UNIFIED-SHOP-LAYOUT auf der Zonen-Seite (Sidebar links + Bänder rechts).
   .shop-layout / .filters / .rangeslider kommen aus kategorie.css (geteilt).
   ========================================================================== */
.projekt-shop { padding-top: clamp(1.5rem, 3vw, 2.5rem); }
.projekt-shop__main { min-width: 0; }
.projekt-shop__bar { display: flex; align-items: baseline; justify-content: space-between; gap: var(--sp-4); margin-bottom: var(--sp-2); }
.projekt-shop__count { font-size: var(--fs-sm); color: var(--text-muted); }
.projekt-shop__count b { color: var(--text-strong); font-variant-numeric: tabular-nums; }
.projekt-shop__chips { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-bottom: var(--sp-4); }
.projekt-shop__empty { text-align: center; padding: clamp(2rem, 6vw, 4rem) var(--sp-4); color: var(--text-muted); }
.projekt-shop__empty p { margin: 0 0 var(--sp-4); }
.projekt-shop__empty .btn { margin: 0 var(--sp-1); }

/* --- Modul-Sprungleiste (Jumpbar) ---------------------------------------
   Normaler Platz: über dem Zähler im Content-Fluss. Beim Scrollen klebt sie
   (position: sticky) unter der Navigation mit 1 rem Abstand und bekommt als
   „schwebende" Leiste Schatten + Rahmen (.is-stuck, von projekt.js gesetzt).
   Aligniert zur Content-Spalte, die Sidebar links bleibt unberührt. */
.projekt-jump {
  position: sticky;
  top: calc(var(--header-h, 116px) + 1rem);
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: var(--sp-4);
  padding: 0.35rem;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  background: color-mix(in srgb, var(--white) 88%, transparent);
  -webkit-backdrop-filter: blur(12px) saturate(1.05);
  backdrop-filter: blur(12px) saturate(1.05);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  transition: box-shadow var(--dur-2) var(--ease-out), border-color var(--dur-2) var(--ease-out), background var(--dur-2) var(--ease-out);
}
.projekt-jump::-webkit-scrollbar { display: none; }
.projekt-jump[hidden] { display: none; }
.projekt-jump.is-stuck {
  border-color: var(--line);
  background: color-mix(in srgb, var(--white) 94%, transparent);
  box-shadow: 0 12px 34px -20px rgba(6, 35, 50, 0.55);
}
.projekt-jump__link {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.5rem 0.9rem;
  border-radius: var(--r-pill);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  line-height: 1;
  color: var(--text-muted);
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--dur-1) var(--ease-out), color var(--dur-1) var(--ease-out);
}
.projekt-jump__link:hover { background: var(--blue-50); color: var(--text-strong); }
.projekt-jump__link.is-active { background: var(--brand); color: #fff; }
.projekt-jump__num { font-variant-numeric: tabular-nums; font-size: 0.82em; opacity: 0.55; }
.projekt-jump__link.is-active .projekt-jump__num { opacity: 0.85; }
@media (prefers-reduced-motion: reduce) { .projekt-jump { transition: none; } }

/* „In Kürze"-Zone: freundliche Platzhalter-Karte statt Bänder */
.projekt-soon { border: 1px solid var(--line); border-radius: var(--r-2xl); background: linear-gradient(180deg, var(--blue-50) 0%, var(--white) 70%); padding: clamp(2rem, 5vw, 3.5rem); text-align: center; }
.projekt-soon__badge { display: inline-block; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.13em; text-transform: uppercase; font-weight: var(--fw-semi); color: var(--brand); background: var(--blue-100); border-radius: var(--r-pill); padding: 0.3em 0.9em; margin-bottom: var(--sp-4); }
.projekt-soon__title { font-family: var(--font-display); font-weight: 900; font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.15rem); line-height: 1.08; color: var(--text-strong); margin: 0 0 var(--sp-4); }
.projekt-soon__lead { max-width: 52ch; margin: 0 auto var(--sp-6); color: var(--text-muted); font-size: var(--fs-lg); }
.projekt-soon__actions { display: flex; flex-wrap: wrap; gap: var(--sp-4); justify-content: center; }

/* Inline-Bänder: keine Vollbreite/Zebra, sondern gestapelte Blöcke im Grid-Slot */
.baustein-band--inline { padding: 0 0 clamp(1.75rem, 3.5vw, 2.75rem); margin-bottom: clamp(1.75rem, 3.5vw, 2.75rem); background: none; border-bottom: 1px solid var(--line); }
.baustein-band--inline:last-child { border-bottom: 0; margin-bottom: 0; }
.baustein-band--inline .baustein__head { margin-bottom: var(--sp-5); }
.baustein-band--inline .baustein__title { font-size: clamp(1.35rem, 1rem + 1.2vw, 1.85rem); }
/* Partner-Banner im Grid-Slot: volle Slot-Breite, 2rem Innenabstand rundum,
   abgerundete Ecken (overflow clippt den dunklen Hintergrund sauber). */
.projekt-shop__main .partner-banner { margin: 0 0 clamp(1.75rem, 3.5vw, 2.75rem); border-radius: var(--r-2xl); overflow: hidden; }
.projekt-shop__main .partner-banner > .container { padding: 2rem; max-width: none; }

/* Mobile: Sidebar lebt im Bottom-Sheet (kategorie.css blendet sie ≤900 aus),
   Grid einspaltig erzwingen (kategorie.css setzt „.shop-layout { 288px 1fr }"
   unbedingt nach der ≤900-Regel). Filter-Bar über die Sticky-Set-Leiste stapeln. */
@media (max-width: 900px) {
  .projekt-shop .shop-layout { grid-template-columns: 1fr; }
  .mobile-toolbar { z-index: 65; }
  .mobile-toolbar--solo button { flex: none; width: 100%; }
}

/* Weitere Optionen (Auto-Zuordnung) */
.baustein__more { margin-top: var(--sp-5); }
.baustein__more > summary {
  cursor: pointer; list-style: none; display: inline-flex; align-items: center; gap: .5em;
  font-weight: 600; color: var(--brand-deep); font-size: var(--fs-sm);
  padding: .6em 1em; border: 1px solid var(--line); border-radius: var(--r-pill);
  transition: background var(--dur-1) var(--ease-out);
}
.baustein__more > summary::-webkit-details-marker { display: none; }
.baustein__more > summary:hover { background: var(--bg-sunk); }
.baustein__more[open] > summary { margin-bottom: var(--sp-5); }
.baustein__more-count {
  font-size: var(--fs-xs); background: var(--blue-100); color: var(--brand-deep);
  border-radius: var(--r-pill); padding: .1em .6em; font-variant-numeric: tabular-nums;
}

/* ========================================================================== */
/* KARTEN-ERGÄNZUNGEN (bauen auf components.css .pcard auf)                     */
/* ========================================================================== */
.pcard__flag, .pcard__setflag {
  position: absolute; z-index: 3; top: var(--sp-3); left: var(--sp-3);
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: .02em;
  padding: .3em .75em; border-radius: var(--r-pill); pointer-events: none;
}
.pcard__flag { background: var(--cta-tint); color: var(--cta-700); }           /* Empfohlen (Orange-Tint) */
.pcard__setflag { top: auto; bottom: var(--sp-3); left: var(--sp-3); background: var(--brand); color: #fff; box-shadow: var(--sh-sm); }
.pcard--hero { box-shadow: inset 0 0 0 2px var(--cta-tint); }
.pcard.is-in-set { box-shadow: inset 0 0 0 2px var(--brand); }
.pcard__note {
  font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.55;
  margin: var(--sp-1) 0 var(--sp-2);
}

/* ========================================================================== */
/* KOMPLETT-SET-BOX                                                            */
/* ========================================================================== */
/* Schritt 4: volle Breite, hellblauer Verlauf (statt grau) */
.setbox-section { padding: clamp(3rem, 6vw, 5rem) 0; background: linear-gradient(180deg, var(--blue-100) 0%, var(--blue-50) 42%, var(--white) 100%); }
.setbox { background: transparent; }
.setbox__head { max-width: 64ch; }
.setbox__title { font-family: var(--font-display); font-weight: 900; font-size: var(--fs-h2); color: var(--text-strong); margin-top: var(--sp-1); line-height: 1.05; }
.setbox__lede { margin-top: var(--sp-3); color: var(--text-muted); }
.setbox__grid { display: grid; gap: 0; padding: var(--sp-6) 0 0; }
@media (min-width: 860px) { .setbox__grid { grid-template-columns: 1.4fr .85fr; gap: var(--sp-6); align-items: start; } }

.setlist { list-style: none; margin: 0; padding: 0; background: var(--bg-surface); border: 1px solid var(--line); border-radius: var(--r-lg); }
.setlist__row {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5); border-bottom: 1px solid var(--line);
}
.setlist__row:last-child { border-bottom: none; }
.setlist__qty { font-family: var(--font-display); font-weight: 900; color: var(--brand); font-variant-numeric: tabular-nums; min-width: 2.2em; }
.setlist__name { color: var(--text); font-weight: 500; text-decoration: none; }
.setlist__name:hover { color: var(--brand); text-decoration: underline; }
.setlist__price { font-family: var(--font-display); font-weight: 700; color: var(--text-strong); font-variant-numeric: tabular-nums; }

.setbox__buy { position: sticky; top: calc(var(--header-h, 76px) + 1rem); }
.setbox__sum {
  background: var(--bg-ground); color: var(--text-invert);
  border-radius: var(--r-lg) var(--r-lg) 0 0; padding: var(--sp-6);
  display: flex; flex-direction: column; gap: var(--sp-1);
  align-items: center; text-align: center;
}
.setbox__sum-label { font-size: var(--fs-sm); color: var(--text-invert-muted); font-variant-numeric: tabular-nums; }
.setbox__sum-price { font-family: var(--font-display); font-weight: 900; font-size: clamp(2rem, 1.5rem + 2vw, 2.9rem); color: #fff; font-variant-numeric: tabular-nums; letter-spacing: -0.01em; line-height: 1; }
.setbox__sum-vat { font-size: var(--fs-xs); color: var(--text-invert-soft); margin-top: var(--sp-1); }
.setbox__buy .btn--cta { border-radius: 0 0 var(--r-lg) var(--r-lg); }
.setbox__hint { font-size: var(--fs-sm); color: var(--text-muted); margin-top: var(--sp-4); line-height: 1.55; }
.setbox__hint a { color: var(--brand); font-weight: 600; }
@media (max-width: 859px) {
  .setbox__buy { position: static; margin-top: var(--sp-5); }
}

/* ========================================================================== */
/* HERO-CTAs                                                                   */
/* ========================================================================== */
.projekt-hero__cta { display: flex; flex-wrap: wrap; gap: var(--sp-4); align-items: center; margin-top: var(--sp-6); }
.projekt-hero__textlink {
  display: inline-flex; align-items: center; gap: .45em; font-weight: 600; color: var(--brand-deep); text-decoration: none;
}
.projekt-hero__textlink svg { width: 18px; height: 18px; transition: transform var(--dur-1) var(--ease-out); }
.projekt-hero__textlink:hover svg { transform: translateX(4px); }

/* ========================================================================== */
/* TRUST-BAND (dunkler Rhythmus-Bruch vor dem Kauf)                            */
/* ========================================================================== */
.projekt-trust { background: var(--bg-ground); color: var(--text-invert); }
.projekt-trust__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 3vw, 2.5rem);
  padding: clamp(2rem, 4vw, 3rem) 0;
}
@media (max-width: 720px) { .projekt-trust__grid { grid-template-columns: 1fr; gap: var(--sp-5); } }
.ptrust { display: flex; gap: var(--sp-4); align-items: flex-start; }
.ptrust__ic { flex: none; width: 42px; height: 42px; border-radius: var(--r-md); display: grid; place-items: center; background: rgba(255,255,255,.08); }
.ptrust__ic svg { width: 22px; height: 22px; color: var(--color-secondary); }
.ptrust__t { font-family: var(--font-display); font-weight: 700; color: #fff; font-size: var(--fs-lg); }
.ptrust__d { font-size: var(--fs-sm); color: var(--text-invert-muted); margin-top: 2px; line-height: 1.5; }

/* ========================================================================== */
/* STICKY-SET-LEISTE (persistenter Kauf-CTA)                                   */
/* ========================================================================== */
.pstickybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: rgba(6, 35, 50, .97); backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, .12);
  transform: translateY(120%); transition: transform var(--dur-2) var(--ease-out);
}
.pstickybar.is-visible { transform: translateY(0); }
.pstickybar__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-5); padding-block: .7rem; }
.pstickybar__info { display: flex; flex-direction: column; line-height: 1.2; }
.pstickybar__label { font-size: var(--fs-xs); color: var(--text-invert-muted); }
.pstickybar__price { font-family: var(--font-display); font-weight: 900; color: #fff; font-size: var(--fs-lg); font-variant-numeric: tabular-nums; }
.pstickybar__price small { font-weight: 500; color: var(--text-invert-muted); font-size: var(--fs-xs); }
.pstickybar .btn--cta { flex: none; }
@media (max-width: 520px) {
  .pstickybar__price small { display: none; }
  .pstickybar .btn--cta span { font-size: var(--fs-sm); }
}
@media (prefers-reduced-motion: reduce) { .pstickybar { transition: none; } }
/* Mobile: Sticky-Set-Leiste über der Filter-Bar stapeln (Toolbar bleibt unten
   erreichbar). Muss NACH der .pstickybar-Basis stehen, sonst gewinnt bottom:0. */
@media (max-width: 900px) { .pstickybar { bottom: 57px; } }

/* ========================================================================== */
/* BERATER-SEKTION (.expertise — self-contained, aus home.css portiert)        */
/* ========================================================================== */
/* Berater-Abschluss: Hintergrund wie auf der Startseite (kein Tint-Override) */
.expertise__grid { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); gap: clamp(2rem, 5vw, 4.75rem); align-items: center; }
.expertise__media {
  position: relative; align-self: stretch; min-height: 480px;
  border-radius: var(--r-2xl); overflow: hidden;
  background: linear-gradient(158deg, var(--hunter-100) 0%, var(--color-tint) 52%, #fff 100%);
  border: 1px solid var(--color-line);
  display: flex; align-items: flex-end; justify-content: center;
}
.expertise__glow { position: absolute; z-index: 1; width: 82%; aspect-ratio: 1; left: 50%; bottom: -14%; transform: translateX(-50%); border-radius: 50%; background: radial-gradient(circle, rgba(28,157,225,0.30) 0%, transparent 66%); pointer-events: none; }
.expertise__person { position: relative; z-index: 2; width: 94%; max-width: 470px; height: auto; object-fit: contain; }
.expertise__chip {
  position: absolute; z-index: 3; display: flex; flex-direction: column; gap: 1px;
  background: rgba(255,255,255,0.92); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border: 1px solid var(--color-line); border-radius: var(--r-lg); padding: 0.68rem 0.95rem;
  box-shadow: 0 16px 38px -18px rgba(6,35,50,0.45);
}
.expertise__chip b, .expertise__chip-num { font-family: var(--font-display); font-weight: 700; color: var(--text-strong); font-size: var(--fs-sm); line-height: 1.1; }
.expertise__chip-num { font-size: var(--fs-h4); color: var(--color-primary); }
.expertise__chip small { font-size: var(--fs-xs); color: var(--text-soft); line-height: 1.25; }
.expertise__chip--tl { top: 1.2rem; left: 1.2rem; }
.expertise__chip--bl { bottom: 1.5rem; left: 1.2rem; }
.expertise__chip--br { top: 44%; right: 0.7rem; }
.expertise__stars { color: var(--color-secondary); font-size: var(--fs-sm); letter-spacing: 0.06em; line-height: 1; }
.expertise__creds { list-style: none; display: flex; flex-direction: column; gap: var(--sp-3); margin: var(--sp-5) 0 var(--sp-6); padding: 0; }
.expertise__creds li { display: flex; gap: var(--sp-3); align-items: flex-start; font-size: var(--fs-base); color: var(--text); line-height: 1.55; }
.expertise__creds svg { flex: none; width: 1.3em; height: 1.3em; margin-top: 0.12em; color: var(--color-secondary); }
.expertise__creds b { color: var(--text-strong); font-weight: 600; }
.expertise__actions { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2rem); flex-wrap: wrap; }
.expertise__phone { display: inline-flex; align-items: center; gap: var(--sp-2); font-weight: 600; color: var(--text-strong); font-size: var(--fs-base); text-decoration: none; }
.expertise__phone svg { width: 1.15em; height: 1.15em; color: var(--color-secondary); }
.expertise__phone:hover { color: var(--color-secondary); }
@media (max-width: 900px) {
  .expertise__grid { grid-template-columns: 1fr; gap: clamp(1.75rem, 5vw, 2.5rem); }
  .expertise__media { min-height: 420px; order: -1; }
  .expertise__chip--br { top: auto; bottom: 8.5rem; }
}

/* ========================================================================== */
/* FALLBACK-STREIFEN (Planung als Auffang)                                     */
/* ========================================================================== */
.projekt-fallback { padding: clamp(1.75rem, 4vw, 2.5rem) 0; }

/* ========================================================================== */
/* HUB-HERO-SIEGEL: in den Fluss holen (nicht absolut in der Ecke wie index)   */
/* ========================================================================== */
.projekthub-hero .hero__sealstack {
  position: static; right: auto; bottom: auto;
  flex-direction: row; flex-wrap: wrap; align-items: center; justify-content: flex-start;
  gap: clamp(1rem, 3vw, 2rem); margin-top: clamp(1.5rem, 3vw, 2.25rem); pointer-events: auto;
}
.projekthub-hero .hero__seals { display: flex; }
/* Einblend-Animation der Startseite hier aus (sonst blieben Siegel evtl. auf opacity:0) */
.projekthub-hero .hero__seal, .projekthub-hero .hero__ppguard { opacity: 1; transform: none; animation: none; }

/* ========================================================================== */
/* SET-DISCLAIMER (kein Blind-Buy)                                             */
/* ========================================================================== */
.setbox__disclaimer {
  display: flex; gap: var(--sp-3); align-items: flex-start;
  margin-top: var(--sp-5); padding: var(--sp-4) var(--sp-5);
  background: var(--cta-tint); border: 1px solid var(--cta-400); border-radius: var(--r-lg);
}
.setbox__disclaimer svg { flex: none; width: 20px; height: 20px; color: var(--color-primary); margin-top: 1px; }
.setbox__disclaimer p { font-size: var(--fs-sm); color: var(--text); line-height: 1.55; margin: 0; }
.setbox__disclaimer b { color: var(--text-strong); }
.setbox__disclaimer a { color: var(--brand-deep); font-weight: 600; }

/* ========================================================================== */
/* RASEN-HERO: Spalte aus Bild + Logo-Band darunter (Band = Bildbreite)        */
/* ========================================================================== */
.projekt-hero__col { min-width: 0; align-self: stretch; }
.projekt-hero__col .projekt-hero__media { width: 100%; }
.projekt-hero__col .niggelhoever { margin-top: var(--sp-4); width: 100%; }

/* ========================================================================== */
/* SHOP-ZONEN-MODUS (kategorie.html): Bereich gewählt → Bausteine-Ansicht      */
/* in-place statt flachem Grid, kein Reload. Body-Klasse von catalog.js.       */
/* ========================================================================== */
body:not(.shop-zonemode) [data-shop-zone] { display: none; }
body.shop-zonemode .sortbar,
body.shop-zonemode [data-catalog-grid],
body.shop-zonemode .help-cta { display: none; }
/* Set-Box inline im Content-Slot (kein Vollbreiten-Verlauf wie auf der Zonen-Seite) */
.setbox-section--inline {
  padding: clamp(1.75rem, 3.5vw, 2.75rem) 0 0;
  margin-top: clamp(1.75rem, 3.5vw, 2.75rem);
  background: none;
  border-top: 1px solid var(--line);
}
/* Mobile-Fallstrick: kategorie.css setzt .shop-layout UNBEDINGT auf „288px 1fr"
   (nach der ≤900-Regel). Da die Sidebar ≤900 ausgeblendet wird, quetscht sich der
   Content sonst in die 288px-Spalte. Mit höherer Spezifität einspaltig erzwingen —
   gilt für flaches Grid UND Zonen-Ansicht (Pendant zu „.projekt-shop .shop-layout"). */
@media (max-width: 900px) {
  .catalog-section .shop-layout { grid-template-columns: 1fr; }
}

/* ============================================================================
   ZONEHERO — heller Editorial-Split-Hero (ersetzt den flachen Bild-Scrim-Hero).
   Greift die helle, kartige Bildsprache der Zonen-Bento auf, statt sie zu brechen.
   ============================================================================ */
.zonehero { position: relative; overflow: hidden; background: linear-gradient(180deg, var(--blue-50) 0%, #fff 78%); padding: clamp(2.25rem, 4.5vw, 4rem) 0 clamp(2.5rem, 5vw, 4.25rem); }
.zonehero__grid { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: clamp(1.75rem, 4vw, 4rem); align-items: center; }
@media (max-width: 900px) { .zonehero__grid { grid-template-columns: 1fr; gap: var(--sp-6); } }
.zonehero__title { font-size: clamp(2.35rem, 1.4rem + 3.4vw, 4rem); letter-spacing: -0.022em; line-height: 1.02; margin: var(--sp-3) 0 var(--sp-4); color: var(--text-strong); }
.zonehero__lede { color: var(--text-muted); font-size: var(--fs-lg); max-width: 46ch; }
.zonehero__meta { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-top: var(--sp-5); }
.zonehero__chip { display: inline-flex; align-items: center; gap: 7px; padding: 0.42rem 0.85rem; border: 1px solid var(--line); border-radius: var(--r-pill); background: #fff; font-size: var(--fs-sm); color: var(--text-strong); font-weight: var(--fw-semi); box-shadow: var(--sh-xs); }
.zonehero__chip b { color: var(--color-primary); font-family: var(--font-display); font-weight: var(--fw-black); }
.zonehero__trust { display: flex; align-items: center; gap: clamp(0.75rem, 2vw, 1.5rem); margin-top: var(--sp-6); flex-wrap: wrap; }
.zonehero__seals { display: flex; gap: var(--sp-2); }
.zonehero__seals img { height: 56px; width: auto; filter: drop-shadow(0 8px 16px rgba(6,35,50,.14)); }
.zonehero__guard { display: inline-flex; align-items: center; gap: 8px; font-size: var(--fs-sm); color: var(--text-muted); font-weight: var(--fw-semi); }
.zonehero__guard img { height: 22px; width: auto; }
.zonehero__media { position: relative; }
.zonehero__img { width: 100%; aspect-ratio: 4 / 3.15; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--sh-lg); display: block; }
.zonehero__badge { position: absolute; left: clamp(0.75rem, 2vw, 1.25rem); bottom: clamp(0.75rem, 2vw, 1.25rem); display: inline-flex; align-items: center; gap: 10px; padding: 0.7rem 1rem; background: rgba(255,255,255,0.96); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--sh-md); }
.zonehero__badge svg { flex: none; width: 18px; height: 18px; padding: 7px; border-radius: 50%; background: var(--blue-50); color: var(--color-primary); fill: none; stroke: currentColor; stroke-width: 2.4; box-sizing: content-box; }
.zonehero__badge b { display: block; font-family: var(--font-display); font-weight: var(--fw-bold); color: var(--text-strong); font-size: var(--fs-sm); line-height: 1.15; }
.zonehero__badge small { color: var(--text-soft); font-size: var(--fs-xs); }
@media (max-width: 900px) { .zonehero__img { aspect-ratio: 16 / 10; } }
@media (max-width: 520px) { .zonehero__seals img { height: 46px; } }
