/* ============================================================================
   „WERKSTATT-RASTER" — Bauhaus-Salon-Template
   Alles unter EINER Root-Klasse: .bauhaus-werk
   Schriften nur aus dem gebündelten Satz (DSGVO, kein CDN):
   Cormorant Garamond / Manrope / Inter / JetBrains Mono
============================================================================ */

.bauhaus-werk {
  /* Primärfarben (Bauhaus) + Tusche + Papier — Farbigkeit 4 */
  --paper: #f1ece1;
  --paper-2: #e7e1d3;
  --ink: #16130d;
  --ink-soft: #4a443a;
  --blau: #2436bf;
  --rot: #df3b22;
  --gelb: #f3b500;
  --line: #16130d;

  --sans: "Manrope", "Inter", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --serif: "Cormorant Garamond", Georgia, serif;

  --rail: 92px;
  --maxw: 1320px;
  --pad: clamp(20px, 4.2vw, 64px);

  position: relative;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
.bauhaus-werk *,
.bauhaus-werk *::before,
.bauhaus-werk *::after { box-sizing: border-box; }

.bauhaus-werk img { display: block; max-width: 100%; }

/* tone-Mapping */
.bauhaus-werk [data-tone="blau"] { --tone: var(--blau); }
.bauhaus-werk [data-tone="rot"]  { --tone: var(--rot); }
.bauhaus-werk [data-tone="gelb"] { --tone: var(--gelb); }

/* ── Bausteine ─────────────────────────────────────────────────────────── */
.bauhaus-werk .bw-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
.bauhaus-werk .bw-kicker::before {
  content: "";
  width: 12px; height: 12px;
  background: var(--rot);
  border-radius: 50%;
}
.bauhaus-werk .bw-h2 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(34px, 5.4vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 14px 0 0;
}
.bauhaus-werk .bw-muted { color: var(--ink-soft); }

.bauhaus-werk .bw-skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--paper);
  padding: 10px 16px; z-index: 100;
}
.bauhaus-werk .bw-skip:focus { left: 8px; top: 8px; }

/* ── Buttons ───────────────────────────────────────────────────────────── */
.bauhaus-werk .bw-btn {
  --b: var(--ink);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 13px 20px;
  border: 2px solid var(--b);
  background: var(--b);
  color: var(--paper);
  cursor: pointer;
  text-decoration: none;
  transition: transform .14s ease, background .14s ease, color .14s ease;
}
.bauhaus-werk .bw-btn:hover { transform: translate(-2px, -2px); }
.bauhaus-werk .bw-btn:active { transform: translate(0, 0); }
.bauhaus-werk .bw-btn--lg { padding: 17px 26px; font-size: 16px; }
.bauhaus-werk .bw-btn--book { --b: var(--blau); border-color: var(--blau); background: var(--blau); }
.bauhaus-werk .bw-btn--ghost,
.bauhaus-werk .bw-btn--line {
  background: transparent; color: var(--ink); border-color: var(--ink);
}
.bauhaus-werk .bw-btn--line:hover,
.bauhaus-werk .bw-btn--ghost:hover { background: var(--ink); color: var(--paper); }
.bauhaus-werk .bw-btn--invert { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.bauhaus-werk .bw-btn--invert:hover { background: var(--gelb); border-color: var(--gelb); color: var(--ink); }
.bauhaus-werk .bw-btn-dot {
  width: 10px; height: 10px; background: var(--gelb); border-radius: 50%;
  transition: transform .2s ease;
}
.bauhaus-werk .bw-btn--book .bw-btn-dot { background: var(--gelb); }
.bauhaus-werk .bw-btn:hover .bw-btn-dot { transform: scale(1.5) rotate(45deg); border-radius: 0; }

/* ── Side-Rail (Navigation) ────────────────────────────────────────────── */
.bauhaus-werk .bw-rail {
  position: fixed;
  top: 0; left: 0;
  width: var(--rail);
  height: 100vh;
  z-index: 60;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 12px;
  padding: 16px 0;
  overflow: hidden;
  border-right: 2px solid var(--ink);
}
.bauhaus-werk .bw-rail-top { flex: 0 0 auto; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.bauhaus-werk .bw-rail-brand { text-decoration: none; color: inherit; display: block; padding: 4px; }

.bauhaus-werk .bw-brand { display: inline-flex; align-items: center; }
.bauhaus-werk .bw-brand-img { object-fit: contain; width: auto; }
.bauhaus-werk .bw-brand--sm .bw-brand-img { max-height: 46px; max-width: 64px; }
.bauhaus-werk .bw-brand--md .bw-brand-img { max-height: 56px; max-width: 200px; }
.bauhaus-werk .bw-brand--lg .bw-brand-img { max-height: 84px; max-width: 280px; }
.bauhaus-werk .bw-brand-text {
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}
.bauhaus-werk .bw-brand--sm .bw-brand-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.bauhaus-werk .bw-brand--lg .bw-brand-text { font-size: clamp(30px, 4vw, 52px); letter-spacing: -0.03em; }

.bauhaus-werk .bw-rail-nav { flex: 1 1 auto; min-height: 0; display: flex; align-items: center; overflow-y: auto; overflow-x: hidden; overscroll-behavior: contain; scrollbar-width: none; }
.bauhaus-werk .bw-rail-nav::-webkit-scrollbar { width: 0; height: 0; }
.bauhaus-werk .bw-rail-nav ol {
  list-style: none; margin: auto 0; padding: 0;
  display: flex; flex-direction: column; gap: 2px; width: 100%;
}
.bauhaus-werk .bw-rail-nav a {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: clamp(8px, 1.4vh, 14px) 4px;
  color: var(--paper);
  text-decoration: none;
  transition: background .14s ease, color .14s ease;
}
.bauhaus-werk .bw-rail-num { font-family: var(--mono); font-size: 11px; opacity: .55; }
.bauhaus-werk .bw-rail-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.bauhaus-werk .bw-rail-nav a:hover { background: var(--blau); }
.bauhaus-werk .bw-rail-nav a:hover .bw-rail-num { opacity: 1; color: var(--gelb); }

.bauhaus-werk .bw-rail-foot { flex: 0 0 auto; margin-top: 0; display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 10px 8px 0; border-top: 1px solid rgba(241,236,225,.14); }
.bauhaus-werk .bw-rail-foot .bw-btn {
  writing-mode: vertical-rl; transform: rotate(180deg); padding: 16px 9px; font-size: 12px;
  letter-spacing: 0.1em; width: 100%; justify-content: center;
}
.bauhaus-werk .bw-rail-foot .bw-btn:hover { transform: rotate(180deg) translateY(-2px); }
.bauhaus-werk .bw-rail-foot .bw-btn-dot { display: none; }
.bauhaus-werk .bw-rail-foot .bw-btn--ghost { color: var(--paper); border-color: rgba(241,236,225,.4); }
.bauhaus-werk .bw-rail-city {
  writing-mode: vertical-rl; transform: rotate(180deg); font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase; opacity: .5;
}

/* Logout — als kleine Tür, passend zur Bauhaus-Geometrie */
.bauhaus-werk .bw-rail-logout {
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  background: none; border: none; cursor: pointer; padding: 4px;
  color: var(--paper);
  transition: color .14s ease, transform .14s ease;
}
.bauhaus-werk .bw-rail-logout:hover { color: var(--gelb); transform: translateY(-1px); }
.bauhaus-werk .bw-door {
  position: relative;
  width: 18px; height: 26px;
  border: 2px solid currentColor;
  border-radius: 1px 1px 0 0;
  display: block;
}
.bauhaus-werk .bw-door-knob {
  position: absolute; top: 50%; right: 3px; transform: translateY(-50%);
  width: 4px; height: 4px; border-radius: 50%; background: var(--gelb);
}
.bauhaus-werk .bw-rail-logout:hover .bw-door-knob { background: currentColor; }
.bauhaus-werk .bw-rail-logout-label {
  writing-mode: vertical-rl; transform: rotate(180deg);
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
}
.bauhaus-werk .bw-burger { display: none; }

/* ── Main offset ───────────────────────────────────────────────────────── */
.bauhaus-werk .bw-main { margin-left: var(--rail); }
.bauhaus-werk .bw-main--doc { min-height: 100vh; }

/* gemeinsame Sektions-Polsterung */
.bauhaus-werk section { padding: clamp(56px, 8vw, 130px) var(--pad); position: relative; }

/* Reveal */
.bauhaus-werk [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.bauhaus-werk [data-reveal][data-in] { opacity: 1; transform: none; }
.bauhaus-werk[data-motion="bold"] [data-reveal] { transform: translateY(46px) scale(.985); }
.bauhaus-werk[data-motion="bold"] [data-reveal][data-in] { transform: none; }

/* Parallax-Ebenen (Cover + Statement-Band) */
.bauhaus-werk [data-parallax] { will-change: transform; }
.bauhaus-werk[data-motion="bold"] .bw-marquee-track { animation-duration: 16s; }
.bauhaus-werk[data-motion="off"] .bw-marquee-track { animation: none; }

/* ── Platzhalter (geometrisch, Bauhaus) ────────────────────────────────── */
.bauhaus-werk .bw-ph {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--paper-2);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--ink);
}
.bauhaus-werk .bw-ph-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(22,19,13,.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(22,19,13,.08) 1px, transparent 1px);
  background-size: 28px 28px;
}
.bauhaus-werk .bw-ph-shape { position: relative; z-index: 1; }
.bauhaus-werk .bw-ph-circle { width: 44%; aspect-ratio: 1; border-radius: 50%; background: var(--tone, var(--blau)); }
.bauhaus-werk .bw-ph-square { width: 42%; aspect-ratio: 1; background: var(--tone, var(--rot)); }
.bauhaus-werk .bw-ph-triangle {
  width: 0; height: 0;
  border-left: 60px solid transparent; border-right: 60px solid transparent;
  border-bottom: 104px solid var(--tone, var(--gelb));
}
.bauhaus-werk .bw-ph-label {
  position: absolute; left: 10px; bottom: 8px; z-index: 2;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink); opacity: .65;
}

/* ── HERO · Variante Vollbild-Cover (fields.heroLayout) ─────────────────── */
.bauhaus-werk .bw-cover {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
  gap: clamp(22px, 3vw, 44px);
  align-items: stretch;
  padding-top: clamp(48px, 7vw, 110px);
  padding-bottom: 0;
}
.bauhaus-werk .bw-cover-media {
  position: relative; overflow: hidden;
  border: 2px solid var(--ink);
  min-height: clamp(360px, 58vh, 660px);
  background: var(--paper-2);
}
.bauhaus-werk .bw-cover-img {
  position: absolute; left: 0; top: -12%;
  width: 100%; height: 124%; object-fit: cover;
}
.bauhaus-werk .bw-cover-grid {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background-image:
    linear-gradient(to right, rgba(241,236,225,.14) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(241,236,225,.14) 1px, transparent 1px);
  background-size: clamp(48px, 6vw, 84px) clamp(48px, 6vw, 84px);
  mix-blend-mode: overlay;
}
.bauhaus-werk .bw-cover-shape {
  position: absolute; z-index: 2; top: clamp(16px, 2vw, 26px); left: clamp(16px, 2vw, 26px);
  width: clamp(48px, 6vw, 76px); height: clamp(48px, 6vw, 76px);
  border-radius: 50%; background: var(--gelb); border: 2px solid var(--ink);
}
.bauhaus-werk .bw-cover-panel { display: flex; flex-direction: column; justify-content: center; gap: 18px; position: relative; z-index: 2; }
.bauhaus-werk .bw-cover-title {
  font-family: var(--sans); font-weight: 800;
  font-size: clamp(46px, 7.4vw, 110px); line-height: 0.88; letter-spacing: -0.045em;
  margin: 10px 0 0; text-wrap: balance;
}
.bauhaus-werk .bw-cover-desc { font-size: clamp(17px, 1.5vw, 21px); color: var(--ink-soft); white-space: pre-line; max-width: 46ch; margin: 0; }
.bauhaus-werk .bw-cover-cap { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); }

/* ── STATEMENT-BAND · randloses Vollbild + Parallax (fields.bandImage) ──── */
.bauhaus-werk .bw-band { padding: 0; position: relative; }
.bauhaus-werk .bw-band-media {
  position: relative; overflow: hidden;
  height: clamp(340px, 56vh, 620px);
  border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  background: var(--ink);
}
.bauhaus-werk .bw-band-img { position: absolute; left: 0; top: -12%; width: 100%; height: 124%; object-fit: cover; }
.bauhaus-werk .bw-band-scrim {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(22,19,13,.62) 0%, rgba(22,19,13,.28) 42%, rgba(22,19,13,0) 72%);
}
.bauhaus-werk .bw-band-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(26px, 4.5vw, 72px); }
.bauhaus-werk .bw-band-bar { width: 56px; height: 6px; background: var(--gelb); margin-bottom: 18px; }
.bauhaus-werk .bw-band-text {
  font-family: var(--sans); font-weight: 800; color: var(--paper);
  font-size: clamp(30px, 5.2vw, 80px); line-height: 0.96; letter-spacing: -0.035em;
  max-width: 22ch; margin: 0; text-wrap: balance;
}

/* ── HERO ──────────────────────────────────────────────────────────────── */
.bauhaus-werk .bw-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  grid-template-areas: "head side" "body side" "marq marq";
  gap: clamp(20px, 3vw, 48px) clamp(24px, 4vw, 64px);
  align-items: start;
  padding-top: clamp(48px, 7vw, 110px);
  padding-bottom: 0;
}
.bauhaus-werk .bw-hero-grid {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(to right, rgba(22,19,13,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(22,19,13,.05) 1px, transparent 1px);
  background-size: clamp(60px, 8vw, 110px) clamp(60px, 8vw, 110px);
}
.bauhaus-werk .bw-hero-head { grid-area: head; position: relative; z-index: 2; }
.bauhaus-werk .bw-hero-title {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(54px, 11vw, 152px);
  line-height: 0.86;
  letter-spacing: -0.045em;
  margin: 18px 0 0;
  text-wrap: balance;
}
.bauhaus-werk .bw-hero-body { grid-area: body; position: relative; z-index: 2; max-width: 56ch; }
.bauhaus-werk .bw-hero-desc { font-size: clamp(17px, 1.5vw, 21px); color: var(--ink-soft); white-space: pre-line; margin: 0 0 26px; }
.bauhaus-werk .bw-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.bauhaus-werk .bw-hero-stats {
  display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 0;
}
.bauhaus-werk .bw-stat { border: 2px solid var(--ink); padding: 12px 16px; min-width: 120px; }
.bauhaus-werk .bw-stat-value { font-family: var(--sans); font-weight: 800; font-size: 30px; line-height: 1; color: var(--tone); }
.bauhaus-werk .bw-stat-label { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; margin-top: 6px; }

.bauhaus-werk .bw-hero-side { grid-area: side; position: relative; z-index: 1; align-self: stretch; }
.bauhaus-werk .bw-hero-img {
  width: 100%; height: 100%; min-height: 320px; object-fit: cover;
  border: 2px solid var(--ink);
}
.bauhaus-werk .bw-hero-side .bw-ph { height: 100%; min-height: 320px; aspect-ratio: auto; }
.bauhaus-werk .bw-hero-shape {
  position: absolute; top: -34px; right: -22px; z-index: 3;
  width: 92px; height: 92px; border-radius: 50%;
  background: var(--gelb); border: 2px solid var(--ink);
}

/* Marquee als strukturelle Kante */
.bauhaus-werk .bw-marquee {
  grid-area: marq;
  margin: clamp(28px, 4vw, 56px) calc(-1 * var(--pad)) 0;
  border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  background: var(--rot); color: var(--paper);
  overflow: hidden;
}
.bauhaus-werk .bw-marquee-track {
  display: inline-flex; align-items: center; white-space: nowrap;
  padding: 13px 0;
  animation: bw-marq 26s linear infinite;
  font-family: var(--sans); font-weight: 800; font-size: 20px;
  letter-spacing: 0.02em; text-transform: uppercase;
}
.bauhaus-werk .bw-marquee-track span { display: inline-flex; align-items: center; }
.bauhaus-werk .bw-marquee-dot { display: inline-block; width: 11px; height: 11px; background: var(--gelb); border-radius: 50%; margin: 0 34px; }
@keyframes bw-marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── ÜBER UNS ─────────────────────────────────────────────────────────── */
.bauhaus-werk .bw-about-grid {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 80px); margin-top: clamp(28px, 4vw, 54px); align-items: start;
}
.bauhaus-werk .bw-about-text { font-size: clamp(18px, 1.7vw, 23px); line-height: 1.5; max-width: 52ch; }
.bauhaus-werk .bw-about-media {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.bauhaus-werk .bw-about-fig { margin: 0; }
.bauhaus-werk .bw-about-fig img { width: 100%; height: 100%; object-fit: cover; border: 2px solid var(--ink); aspect-ratio: 3 / 4; }
.bauhaus-werk .bw-about-fig--0 { grid-column: 1 / 2; grid-row: 1 / 3; }
.bauhaus-werk .bw-about-fig--0 img, .bauhaus-werk .bw-about-fig--0 .bw-ph { aspect-ratio: 3 / 5; height: 100%; }
.bauhaus-werk .bw-about-fig--2 { transform: translateY(28px); }

.bauhaus-werk .bw-values {
  list-style: none; margin: clamp(36px, 5vw, 70px) 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0;
  border-top: 2px solid var(--ink); border-left: 2px solid var(--ink);
}
.bauhaus-werk .bw-value {
  position: relative; padding: 26px 24px 30px;
  border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
}
.bauhaus-werk .bw-value-num { font-family: var(--mono); font-size: 12px; color: var(--ink-soft); }
.bauhaus-werk .bw-value-shape { position: absolute; top: 26px; right: 24px; width: 22px; height: 22px; background: var(--tone); }
.bauhaus-werk .bw-value-shape[data-shape="circle"] { border-radius: 50%; }
.bauhaus-werk .bw-value-shape[data-shape="triangle"] {
  width: 0; height: 0; background: none;
  border-left: 12px solid transparent; border-right: 12px solid transparent; border-bottom: 22px solid var(--tone);
}
.bauhaus-werk .bw-value-title { font-size: 21px; font-weight: 800; margin: 16px 0 8px; letter-spacing: -0.01em; }
.bauhaus-werk .bw-value-text { color: var(--ink-soft); font-size: 15px; margin: 0; }

/* ── LEISTUNGEN (Ledger) ──────────────────────────────────────────────── */
.bauhaus-werk .bw-ledger { background: var(--ink); color: var(--paper); }
.bauhaus-werk .bw-ledger .bw-kicker { color: var(--paper); }
.bauhaus-werk .bw-ledger .bw-kicker::before { background: var(--gelb); }
.bauhaus-werk .bw-ledger-body { margin-top: clamp(32px, 5vw, 60px); display: flex; flex-direction: column; gap: clamp(34px, 4vw, 56px); }
.bauhaus-werk .bw-cat-head { display: flex; align-items: baseline; gap: 18px; }
.bauhaus-werk .bw-cat-num {
  font-family: var(--mono); font-weight: 700; font-size: 14px;
  color: var(--ink); background: var(--tone); padding: 5px 9px;
}
.bauhaus-werk .bw-cat-name { font-size: clamp(22px, 2.6vw, 34px); font-weight: 800; margin: 0; letter-spacing: -0.02em; white-space: nowrap; }
.bauhaus-werk .bw-cat-rule { flex: 1; height: 2px; background: rgba(241,236,225,.25); }
.bauhaus-werk .bw-svc-list { list-style: none; margin: 18px 0 0; padding: 0; }
.bauhaus-werk .bw-svc {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  align-items: center; gap: 0 18px;
  padding: 18px 14px; margin: 0 -14px;
  border-top: 1px solid rgba(241,236,225,.16);
  transition: background .16s ease, color .16s ease;
}
.bauhaus-werk .bw-svc:last-child { border-bottom: 1px solid rgba(241,236,225,.16); }
.bauhaus-werk .bw-svc:hover { background: var(--blau); }
.bauhaus-werk .bw-svc-main { min-width: 0; }
.bauhaus-werk .bw-svc-name { display: flex; align-items: center; gap: 10px; font-size: clamp(18px, 1.8vw, 24px); font-weight: 700; letter-spacing: -0.01em; }
.bauhaus-werk .bw-svc-tag {
  font-family: var(--mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  background: var(--gelb); color: var(--ink); padding: 3px 7px;
}
.bauhaus-werk .bw-svc-desc { display: block; color: rgba(241,236,225,.6); font-size: 14px; margin-top: 5px; max-width: 60ch; }
.bauhaus-werk .bw-svc:hover .bw-svc-desc { color: rgba(255,255,255,.85); }
.bauhaus-werk .bw-svc-leader { height: 2px; min-width: 24px; background: repeating-linear-gradient(to right, rgba(241,236,225,.3) 0 3px, transparent 3px 8px); }
.bauhaus-werk .bw-svc:hover .bw-svc-leader { background: repeating-linear-gradient(to right, rgba(255,255,255,.5) 0 3px, transparent 3px 8px); }
.bauhaus-werk .bw-svc-meta { display: flex; align-items: baseline; gap: 14px; font-family: var(--mono); white-space: nowrap; }
.bauhaus-werk .bw-svc-dur { font-size: 12px; opacity: .6; }
.bauhaus-werk .bw-svc-price { font-size: 17px; font-weight: 700; color: var(--gelb); }
.bauhaus-werk .bw-svc:hover .bw-svc-price { color: var(--paper); }
.bauhaus-werk .bw-svc-book {
  font-family: var(--sans); font-weight: 700; font-size: 13px;
  background: transparent; color: var(--paper); border: 2px solid rgba(241,236,225,.35);
  padding: 8px 12px; cursor: pointer; transition: background .14s ease, color .14s ease, border-color .14s ease;
}
.bauhaus-werk .bw-svc:hover .bw-svc-book { background: var(--gelb); color: var(--ink); border-color: var(--gelb); }

/* ── TEAM (versetztes Band) ───────────────────────────────────────────── */
.bauhaus-werk .bw-team-band {
  display: flex; gap: clamp(16px, 2.2vw, 30px);
  margin-top: clamp(34px, 5vw, 64px);
  overflow-x: auto; padding: 30px 4px 24px; scroll-snap-type: x mandatory;
}
.bauhaus-werk .bw-member { flex: 0 0 clamp(220px, 24vw, 290px); scroll-snap-align: start; }
.bauhaus-werk .bw-member:nth-child(even) { margin-top: 46px; }
.bauhaus-werk .bw-member:nth-child(3n) { margin-top: 22px; }
.bauhaus-werk .bw-member-img { position: relative; }
.bauhaus-werk .bw-member-img::before {
  content: ""; position: absolute; inset: 12px -12px -12px 12px; background: var(--tone); z-index: 0;
}
.bauhaus-werk .bw-member-img img,
.bauhaus-werk .bw-member-img .bw-ph {
  position: relative; z-index: 1; width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border: 2px solid var(--ink);
  transition: transform .2s ease;
}
.bauhaus-werk .bw-member:hover .bw-member-img img,
.bauhaus-werk .bw-member:hover .bw-member-img .bw-ph { transform: translate(-6px, -6px); }
.bauhaus-werk .bw-member-num {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  font-family: var(--mono); font-size: 12px; font-weight: 700;
  background: var(--paper); color: var(--ink); padding: 4px 8px; border: 2px solid var(--ink);
}
.bauhaus-werk .bw-member-info { margin-top: 16px; }
.bauhaus-werk .bw-member-name { font-size: 21px; font-weight: 800; margin: 0; letter-spacing: -0.01em; }
.bauhaus-werk .bw-member-role { display: block; font-family: var(--mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--tone); margin-top: 5px; }
.bauhaus-werk .bw-member-spec { display: block; font-size: 14px; color: var(--ink-soft); margin-top: 4px; }

/* ── GALERIE (horizontaler Lauf) ──────────────────────────────────────── */
.bauhaus-werk .bw-gallery { background: var(--paper-2); }
.bauhaus-werk .bw-gallery-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 14px 24px; }
.bauhaus-werk .bw-gallery-hint { font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); margin-left: auto; }
.bauhaus-werk .bw-gallery-track {
  display: flex; gap: 20px; margin-top: clamp(28px, 4vw, 50px);
  overflow-x: auto; padding: 16px 4px 24px; scroll-snap-type: x mandatory;
}
.bauhaus-werk .bw-tile { position: relative; flex: 0 0 auto; margin: 0; scroll-snap-align: center; border: 2px solid var(--ink); overflow: hidden; }
.bauhaus-werk .bw-tile img, .bauhaus-werk .bw-tile .bw-ph { width: 100%; height: 100%; object-fit: cover; border: none; }
.bauhaus-werk .bw-tile--0 { width: clamp(240px, 28vw, 360px); aspect-ratio: 4 / 5; }
.bauhaus-werk .bw-tile--1 { width: clamp(300px, 36vw, 460px); aspect-ratio: 4 / 3; transform: translateY(26px); }
.bauhaus-werk .bw-tile--2 { width: clamp(220px, 24vw, 300px); aspect-ratio: 1; }
.bauhaus-werk .bw-tile--3 { width: clamp(260px, 30vw, 380px); aspect-ratio: 3 / 4; transform: translateY(14px); }
.bauhaus-werk .bw-tile figcaption {
  position: absolute; left: 0; bottom: 0;
  font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  background: var(--ink); color: var(--paper); padding: 6px 10px;
}

/* ── EIGENE SEKTIONEN ─────────────────────────────────────────────────── */
.bauhaus-werk .bw-custom { padding: 0 var(--pad); }
.bauhaus-werk .bw-custom > * { padding-top: clamp(40px, 6vw, 90px); padding-bottom: clamp(40px, 6vw, 90px); }

/* ── STIMMEN (Großzitat) ──────────────────────────────────────────────── */
.bauhaus-werk .bw-voices { background: var(--blau); color: var(--paper); overflow: hidden; }
.bauhaus-werk .bw-voices-grid {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 64px 64px;
}
/* dekoratives Anführungszeichen als Wasserzeichen — hinter dem Text, kein Overlap */
.bauhaus-werk .bw-voices-mark {
  position: absolute; top: clamp(-30px, -2vw, -10px); left: clamp(-8px, 2vw, 40px);
  z-index: 0; pointer-events: none;
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(220px, 34vw, 460px); line-height: 1;
  color: rgba(243,181,0,.16);
}
.bauhaus-werk .bw-voices-circle {
  position: absolute; right: clamp(-60px, -3vw, -30px); bottom: clamp(-60px, -3vw, -30px);
  width: clamp(160px, 22vw, 320px); height: clamp(160px, 22vw, 320px);
  border-radius: 50%; border: 2px solid rgba(255,255,255,.22); z-index: 0; pointer-events: none;
}
.bauhaus-werk .bw-voices-inner { position: relative; z-index: 1; max-width: 1000px; }
.bauhaus-werk .bw-voices-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.bauhaus-werk .bw-voices-kicker { color: var(--paper); }
.bauhaus-werk .bw-voices-kicker::before { background: var(--gelb); }
.bauhaus-werk .bw-voices-count { font-family: var(--mono); font-size: 14px; letter-spacing: .12em; color: rgba(255,255,255,.55); }
.bauhaus-werk .bw-voices-count b { color: var(--gelb); font-weight: 700; }
.bauhaus-werk .bw-voices-count i { font-style: normal; margin: 0 6px; }

.bauhaus-werk .bw-quote { margin: clamp(22px, 3vw, 40px) 0 0; }
.bauhaus-werk .bw-quote-text {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(28px, 4.6vw, 58px); line-height: 1.12; letter-spacing: -0.01em;
  max-width: 20ch; margin: 0; opacity: 1;
  text-wrap: balance;
  animation: bw-quote-in .55s cubic-bezier(.2,.7,.2,1);
}
@keyframes bw-quote-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.bauhaus-werk .bw-quote-foot { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px; margin-top: clamp(24px, 3vw, 38px); }
.bauhaus-werk .bw-quote-bar { width: 40px; height: 4px; background: var(--gelb); flex: 0 0 auto; }
.bauhaus-werk .bw-quote-foot cite { font-style: normal; font-family: var(--mono); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.bauhaus-werk .bw-quote-stars { color: var(--gelb); letter-spacing: 3px; font-size: 12px; }

.bauhaus-werk .bw-voices-ctrl { display: flex; align-items: center; gap: 22px; margin-top: clamp(30px, 4vw, 48px); flex-wrap: wrap; }
.bauhaus-werk .bw-voices-arrows { display: flex; gap: 10px; }
.bauhaus-werk .bw-voices-arrow {
  width: 48px; height: 48px; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  background: transparent; color: var(--paper); border: 2px solid rgba(255,255,255,.4);
  font-size: 20px; cursor: pointer; transition: background .14s ease, color .14s ease, border-color .14s ease, transform .14s ease;
}
.bauhaus-werk .bw-voices-arrow:hover { background: var(--gelb); border-color: var(--gelb); color: var(--ink); transform: translate(-2px, -2px); }
.bauhaus-werk .bw-voices-dots { display: flex; gap: 10px; }
.bauhaus-werk .bw-dot { width: 13px; height: 13px; border: 2px solid var(--paper); background: transparent; cursor: pointer; padding: 0; transition: background .14s ease, transform .14s ease; }
.bauhaus-werk .bw-dot.is-on { background: var(--gelb); border-color: var(--gelb); }
.bauhaus-werk .bw-dot:hover { transform: scale(1.2); }

/* ── KARRIERE ─────────────────────────────────────────────────────────── */
.bauhaus-werk .bw-career-intro { max-width: 56ch; color: var(--ink-soft); font-size: 18px; margin: 18px 0 0; }
.bauhaus-werk .bw-jobs { list-style: none; margin: clamp(28px, 4vw, 50px) 0 0; padding: 0; border-top: 2px solid var(--ink); }
.bauhaus-werk .bw-job {
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px 24px;
  padding: 26px 0; border-bottom: 2px solid var(--ink);
}
.bauhaus-werk .bw-job-main { flex: 1 1 320px; }
.bauhaus-werk .bw-job-title { font-size: clamp(22px, 2.6vw, 32px); font-weight: 800; margin: 0; letter-spacing: -0.02em; }
.bauhaus-werk .bw-job-meta { display: block; font-family: var(--mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--rot); margin-top: 6px; }
.bauhaus-werk .bw-job-desc { color: var(--ink-soft); margin: 10px 0 0; max-width: 60ch; }

/* ── FAQ ──────────────────────────────────────────────────────────────── */
.bauhaus-werk .bw-faq-list { margin-top: clamp(28px, 4vw, 50px); border-top: 2px solid var(--ink); }
.bauhaus-werk .bw-faq-item { border-bottom: 2px solid var(--ink); }
.bauhaus-werk .bw-faq-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; gap: 18px;
  padding: 24px 0; font-size: clamp(18px, 2vw, 26px); font-weight: 700; letter-spacing: -0.01em;
}
.bauhaus-werk .bw-faq-item summary::-webkit-details-marker { display: none; }
.bauhaus-werk .bw-faq-num { font-family: var(--mono); font-size: 13px; font-weight: 700; color: var(--ink-soft); }
.bauhaus-werk .bw-faq-q { flex: 1; }
.bauhaus-werk .bw-faq-toggle { position: relative; width: 22px; height: 22px; flex: 0 0 auto; }
.bauhaus-werk .bw-faq-toggle::before,
.bauhaus-werk .bw-faq-toggle::after { content: ""; position: absolute; background: var(--ink); transition: transform .2s ease, background .2s ease; }
.bauhaus-werk .bw-faq-toggle::before { top: 10px; left: 0; width: 22px; height: 2px; }
.bauhaus-werk .bw-faq-toggle::after { left: 10px; top: 0; width: 2px; height: 22px; }
.bauhaus-werk .bw-faq-item[open] .bw-faq-toggle::after { transform: scaleY(0); }
.bauhaus-werk .bw-faq-item[open] summary { color: var(--blau); }
.bauhaus-werk .bw-faq-item[open] .bw-faq-toggle::before { background: var(--blau); }
.bauhaus-werk .bw-faq-a { padding: 0 0 26px 40px; max-width: 70ch; color: var(--ink-soft); }

/* ── NEWSLETTER ───────────────────────────────────────────────────────── */
.bauhaus-werk .bw-news { background: var(--gelb); }
.bauhaus-werk .bw-news-inner { position: relative; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 24px 40px; }
.bauhaus-werk .bw-news-shape { width: 64px; height: 64px; background: var(--rot); border-radius: 50%; border: 2px solid var(--ink); }
.bauhaus-werk .bw-news-sub { color: var(--ink); opacity: .8; margin: 8px 0 0; }
.bauhaus-werk .bw-news .bw-news-form { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.bauhaus-werk .bw-news-input {
  flex: 1 1 260px; font-family: var(--sans); font-size: 16px; padding: 14px 16px;
  border: 2px solid var(--ink); background: var(--paper); color: var(--ink);
}
.bauhaus-werk .bw-news-input::placeholder { color: var(--ink-soft); }

/* ── KONTAKT (Bento) ──────────────────────────────────────────────────── */
.bauhaus-werk .bw-contact-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px; margin-top: clamp(30px, 4vw, 56px);
}
.bauhaus-werk .bw-card { border: 2px solid var(--ink); padding: clamp(24px, 3vw, 36px); }
.bauhaus-werk .bw-card--sign { grid-column: span 4; background: var(--tone); color: var(--paper); display: flex; flex-direction: column; gap: 16px; }
.bauhaus-werk .bw-card--hours { grid-column: span 4; }
.bauhaus-werk .bw-card--form { grid-column: span 8; }
.bauhaus-werk .bw-card-title { font-family: var(--mono); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; margin: 0 0 18px; font-weight: 700; }
.bauhaus-werk .bw-card--sign .bw-card-title { opacity: .85; }

.bauhaus-werk .bw-sign-addr { font-style: normal; font-size: 20px; font-weight: 700; line-height: 1.35; display: flex; flex-direction: column; }
.bauhaus-werk .bw-sign-links { display: flex; flex-direction: column; gap: 4px; margin-top: auto; }
.bauhaus-werk .bw-sign-links a { color: var(--paper); font-family: var(--mono); font-size: 14px; text-decoration: none; border-bottom: 1px solid rgba(241,236,225,.4); width: fit-content; padding-bottom: 2px; }
.bauhaus-werk .bw-sign-links a:hover { color: var(--gelb); }
.bauhaus-werk .bw-card--sign .bw-btn--invert { margin-top: 4px; }

.bauhaus-werk .bw-hours { list-style: none; margin: 0; padding: 0; }
.bauhaus-werk .bw-hours li { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px solid rgba(22,19,13,.14); }
.bauhaus-werk .bw-hours li:last-child { border-bottom: none; }
.bauhaus-werk .bw-hours-day { font-weight: 700; font-size: 15px; }
.bauhaus-werk .bw-hours-time { font-family: var(--mono); font-size: 14px; color: var(--ink-soft); white-space: nowrap; }
.bauhaus-werk .bw-breaks { list-style: none; margin: 16px 0 0; padding: 0; }
.bauhaus-werk .bw-breaks li { display: flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 12px; color: var(--ink-soft); }
.bauhaus-werk .bw-breaks-dot { width: 8px; height: 8px; background: var(--rot); display: inline-block; }

/* ── Formular ─────────────────────────────────────────────────────────── */
.bauhaus-werk .bw-form { display: flex; flex-direction: column; gap: 16px; }
.bauhaus-werk .bw-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bauhaus-werk .bw-field { display: flex; flex-direction: column; gap: 7px; }
.bauhaus-werk .bw-field > span { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.bauhaus-werk .bw-opt { font-style: normal; opacity: .6; text-transform: none; letter-spacing: 0; }
.bauhaus-werk .bw-field input,
.bauhaus-werk .bw-field textarea {
  font-family: var(--sans); font-size: 16px; padding: 12px 14px;
  border: 2px solid var(--ink); background: var(--paper); color: var(--ink); width: 100%; resize: vertical;
}
.bauhaus-werk .bw-field input:focus,
.bauhaus-werk .bw-field textarea:focus { outline: none; border-color: var(--blau); box-shadow: inset 0 0 0 1px var(--blau); }
.bauhaus-werk .bw-field input[aria-invalid="true"],
.bauhaus-werk .bw-field textarea[aria-invalid="true"] { border-color: var(--rot); }
.bauhaus-werk .bw-field em { font-style: normal; font-family: var(--mono); font-size: 11px; color: var(--rot); }
.bauhaus-werk .bw-check { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--ink-soft); }
.bauhaus-werk .bw-check input { width: 20px; height: 20px; margin-top: 1px; accent-color: var(--blau); flex: 0 0 auto; }
.bauhaus-werk .bw-check a { color: var(--ink); text-underline-offset: 3px; }
.bauhaus-werk .bw-form-foot { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 4px; }
.bauhaus-werk .bw-form-msg { font-family: var(--mono); font-size: 13px; margin: 0; }
.bauhaus-werk .bw-form-msg.is-ok { color: var(--blau); }
.bauhaus-werk .bw-form-msg.is-err { color: var(--rot); }

/* ── DOC / Rechtstext ─────────────────────────────────────────────────── */
.bauhaus-werk .bw-doc { max-width: 760px; margin: 0 auto; padding-top: clamp(70px, 10vw, 140px); }
.bauhaus-werk .bw-doc-title { font-size: clamp(34px, 6vw, 68px); font-weight: 800; letter-spacing: -0.03em; line-height: 1; margin: 14px 0 32px; }
.bauhaus-werk .bw-prose { font-size: 17px; line-height: 1.65; color: var(--ink); }
.bauhaus-werk .bw-prose h2 { font-size: 26px; font-weight: 800; margin: 32px 0 12px; letter-spacing: -0.01em; }
.bauhaus-werk .bw-prose h3 { font-size: 20px; font-weight: 700; margin: 24px 0 10px; }
.bauhaus-werk .bw-prose p { margin: 0 0 16px; }
.bauhaus-werk .bw-prose ul, .bauhaus-werk .bw-prose ol { margin: 0 0 16px; padding-left: 22px; }
.bauhaus-werk .bw-prose li { margin: 0 0 8px; }
.bauhaus-werk .bw-prose a { color: var(--blau); text-underline-offset: 3px; }
.bauhaus-werk .bw-prose img { border: 2px solid var(--ink); margin: 16px 0; }

/* ── FOOTER ───────────────────────────────────────────────────────────── */
.bauhaus-werk .bw-foot { background: var(--ink); color: var(--paper); display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.7fr); gap: 48px clamp(40px, 6vw, 90px); }
.bauhaus-werk .bw-foot .bw-brand-text { color: var(--paper); }
.bauhaus-werk .bw-foot-tag { font-family: var(--mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--gelb); margin: 18px 0 0; }
.bauhaus-werk .bw-foot-desc { color: rgba(241,236,225,.7); max-width: 42ch; margin: 14px 0 0; }
.bauhaus-werk .bw-foot-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.bauhaus-werk .bw-foot-col h4 { color: var(--paper); }
.bauhaus-werk .bw-foot-col .bw-kicker::before { background: var(--blau); }
.bauhaus-werk .bw-foot-col ul { list-style: none; margin: 18px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.bauhaus-werk .bw-foot-col a { color: rgba(241,236,225,.78); text-decoration: none; font-size: 15px; transition: color .14s ease; }
.bauhaus-werk .bw-foot-col a:hover { color: var(--gelb); }
.bauhaus-werk .bw-foot-base { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; border-top: 1px solid rgba(241,236,225,.18); padding-top: 24px; }
.bauhaus-werk .bw-foot-base small { font-family: var(--mono); font-size: 12px; letter-spacing: .04em; color: rgba(241,236,225,.6); }
.bauhaus-werk .bw-foot-shapes { display: inline-flex; gap: 8px; }
.bauhaus-werk .bw-foot-shapes i { width: 16px; height: 16px; }
.bauhaus-werk .bw-foot-shapes i:nth-child(1) { background: var(--rot); border-radius: 50%; }
.bauhaus-werk .bw-foot-shapes i:nth-child(2) { background: var(--gelb); }
.bauhaus-werk .bw-foot-shapes i:nth-child(3) { width: 0; height: 0; background: none; border-left: 8px solid transparent; border-right: 8px solid transparent; border-bottom: 16px solid var(--blau); }

/* ── Scrim (mobiles Menü) ─────────────────────────────────────────────── */
.bauhaus-werk .bw-scrim { display: none; }

/* ════════════════════════════ RESPONSIVE ════════════════════════════════ */
@media (max-width: 1080px) {
  .bauhaus-werk .bw-cover { grid-template-columns: 1fr; }
  .bauhaus-werk .bw-cover-media { min-height: clamp(280px, 44vh, 420px); }
  .bauhaus-werk .bw-hero {
    grid-template-columns: 1fr;
    grid-template-areas: "head" "side" "body" "marq";
  }
  .bauhaus-werk .bw-hero-side .bw-ph,
  .bauhaus-werk .bw-hero-img { min-height: 280px; }
  .bauhaus-werk .bw-about-grid { grid-template-columns: 1fr; }
  .bauhaus-werk .bw-card--sign,
  .bauhaus-werk .bw-card--hours { grid-column: span 6; }
  .bauhaus-werk .bw-card--form { grid-column: span 12; }
}

@media (max-width: 860px) {
  /* Side-Rail → Top-Bar als ausklappbares, eingebettetes Panel (sticky, nie abgeschnitten) */
  .bauhaus-werk { --rail: 0px; }
  .bauhaus-werk .bw-rail {
    position: sticky; top: 0; left: 0; width: 100%; z-index: 60;
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    height: auto; max-height: none; overflow: visible;
    padding: 0; border-right: none; border-bottom: 2px solid var(--ink);
  }
  .bauhaus-werk .bw-rail.is-open { max-height: 100dvh; overflow-y: auto; }
  .bauhaus-werk .bw-rail-top {
    flex: 0 0 auto; flex-direction: row; align-items: center; gap: 12px; width: 100%;
    justify-content: space-between; padding: 11px 16px; min-height: 64px;
  }
  .bauhaus-werk .bw-brand--sm .bw-brand-text { writing-mode: horizontal-tb; transform: none; font-size: 19px; letter-spacing: -0.01em; text-transform: none; }
  .bauhaus-werk .bw-brand--sm .bw-brand-img { max-height: 38px; max-width: 150px; }
  .bauhaus-werk .bw-burger {
    display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer;
    padding: 8px; margin: -8px -8px -8px 0;
  }
  .bauhaus-werk .bw-burger span { width: 26px; height: 2px; background: var(--paper); transition: transform .2s ease, opacity .2s ease; }
  .bauhaus-werk .bw-rail.is-open .bw-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .bauhaus-werk .bw-rail.is-open .bw-burger span:nth-child(2) { opacity: 0; }
  .bauhaus-werk .bw-rail.is-open .bw-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Panel-Inhalte fließen IM Balken untereinander — sicher per display getoggelt */
  .bauhaus-werk .bw-rail-nav,
  .bauhaus-werk .bw-rail-foot {
    display: none; position: static; background: transparent; flex-direction: column; align-items: stretch;
  }
  .bauhaus-werk .bw-rail.is-open .bw-rail-nav,
  .bauhaus-werk .bw-rail.is-open .bw-rail-foot { display: flex; }
  .bauhaus-werk .bw-rail-nav { flex: 0 0 auto; padding: 2px 16px 4px; }
  .bauhaus-werk .bw-rail-foot { flex: 0 0 auto; padding: 14px 16px 22px; gap: 12px; border-top: 1px solid rgba(241,236,225,.16); }
  .bauhaus-werk .bw-rail-nav ol { gap: 0; margin: 0; }
  .bauhaus-werk .bw-rail-nav a { flex-direction: row; justify-content: flex-start; gap: 14px; padding: 15px 4px; border-bottom: 1px solid rgba(241,236,225,.12); }
  .bauhaus-werk .bw-rail-nav a:hover { background: transparent; }
  .bauhaus-werk .bw-rail-nav a:hover .bw-rail-label { color: var(--gelb); }
  .bauhaus-werk .bw-rail-num { font-size: 12px; }
  .bauhaus-werk .bw-rail-label { writing-mode: horizontal-tb; transform: none; font-size: 17px; }
  .bauhaus-werk .bw-rail-foot .bw-btn { writing-mode: horizontal-tb; transform: none; padding: 14px 18px; font-size: 15px; width: 100%; }
  .bauhaus-werk .bw-rail-foot .bw-btn:hover { transform: translate(-2px, -2px); }
  .bauhaus-werk .bw-rail-foot .bw-btn-dot { display: inline-block; }
  .bauhaus-werk .bw-rail-city { writing-mode: horizontal-tb; align-self: flex-start; }
  .bauhaus-werk .bw-rail-logout { flex-direction: row; align-self: flex-start; gap: 10px; padding: 6px 4px; }
  .bauhaus-werk .bw-rail-logout-label { writing-mode: horizontal-tb; transform: none; font-size: 13px; }

  .bauhaus-werk .bw-scrim { display: block; position: fixed; inset: 0; z-index: 40; background: rgba(22,19,13,.4); }
  .bauhaus-werk .bw-main { margin-left: 0; }
}

@media (max-width: 560px) {
  .bauhaus-werk { font-size: 16px; }
  .bauhaus-werk .bw-form-row { grid-template-columns: 1fr; }
  .bauhaus-werk .bw-about-media { grid-template-columns: 1fr; }
  .bauhaus-werk .bw-about-fig--0 { grid-column: auto; grid-row: auto; }
  .bauhaus-werk .bw-about-fig--2 { transform: none; }
  .bauhaus-werk .bw-card--sign,
  .bauhaus-werk .bw-card--hours,
  .bauhaus-werk .bw-card--form { grid-column: span 12; }
  .bauhaus-werk .bw-svc { grid-template-columns: 1fr auto; gap: 6px 14px; }
  .bauhaus-werk .bw-svc-leader { display: none; }
  .bauhaus-werk .bw-svc-book { grid-column: 1 / -1; justify-self: start; margin-top: 6px; }
  .bauhaus-werk .bw-svc-meta { grid-column: 2; }
  .bauhaus-werk .bw-news-inner { grid-template-columns: 1fr; }
  .bauhaus-werk .bw-news-shape { display: none; }
  .bauhaus-werk .bw-foot { grid-template-columns: 1fr; }
  .bauhaus-werk .bw-foot-cols { grid-template-columns: 1fr 1fr; }
  .bauhaus-werk .bw-member:nth-child(even),
  .bauhaus-werk .bw-member:nth-child(3n) { margin-top: 0; }
  .bauhaus-werk .bw-tile--1, .bauhaus-werk .bw-tile--3 { transform: none; }
}

/* ── Reduced motion ───────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .bauhaus-werk * { animation: none !important; }
  .bauhaus-werk [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .bauhaus-werk [data-parallax] { transform: none !important; }
  .bauhaus-werk .bw-marquee-track { animation: none; }
}