/* ============================================================
   Shared styles — MB Bug-Vision
   ============================================================ */

/* ---------- Variables ---------- */
:root {
  --cream: #F7F8FA;
  --cream-2: #EEF1F4;
  --paper: #FFFFFF;
  --ink: #1F2937;
  --ink-soft: #4B5563;
  --muted: #6B7280;
  --blue: #5692C6;
  --blue-deep: #3F77A8;
  --blue-soft: #E8F0F8;
  --rule: rgba(31, 41, 55, 0.10);
  --rule-soft: rgba(31, 41, 55, 0.05);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: var(--cream);
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body { overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }
h1, h2, h3, h4 { font-family: "Inter", sans-serif; font-weight: 800; letter-spacing: -0.015em; line-height: 1.05; }

/* ---------- Layout ---------- */
.wrap { max-width: 1320px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 720px) { .wrap { padding: 0 22px; } }

/* ---------- Type helpers ---------- */
.eyebrow {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-deep);
}
.eyebrow .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  margin-right: 10px;
  vertical-align: 1px;
}

/* ---------- Topbar ---------- */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  background: transparent;
  backdrop-filter: blur(0);
  transition: background .35s ease, backdrop-filter .35s ease, color .35s ease, border-color .35s ease;
  color: var(--cream);
  border-bottom: 1px solid transparent;
}
.topbar.scrolled {
  background: rgba(247, 248, 250, 0.95);
  backdrop-filter: blur(14px) saturate(120%);
  color: var(--ink);
  border-bottom-color: var(--rule);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  gap: 24px;
}
@media (max-width: 720px) { .topbar-inner { padding: 14px 22px; } }
.brand { display: flex; align-items: center; gap: 14px; line-height: 1.05; }
.brand-logo { height: 55px; width: auto; display: block; }
.brand-text { display: flex; flex-direction: column; }
.brand-text strong { font-family: "Inter", sans-serif; font-weight: 800; font-size: 20px; letter-spacing: -0.005em; }
.brand small {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: .7;
  margin-top: 2px;
}
.nav { display: flex; gap: 34px; align-items: center; }
.nav a { font-size: 14px; font-weight: 500; position: relative; padding: 6px 0; }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.nav a:hover::after,
.nav a.active::after { transform: scaleX(1); }
.nav a.active { color: var(--blue-deep); }
.nav-cta {
  padding: 10px 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.topbar.scrolled .nav-cta:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.topbar:not(.scrolled) .nav-cta:hover { background: rgba(255, 255, 255, 0.15); }
@media (max-width: 900px) { .nav { display: none; } }

/* ---------- Hamburger ---------- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 9px 8px;
  flex-shrink: 0;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: currentColor;
  display: block;
  border-radius: 1px;
  transition: transform .3s cubic-bezier(.22,.7,.2,1), opacity .25s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-cta { display: none; }
}

/* ---------- Mobile nav ---------- */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: #111820;
  z-index: 59;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 120px 32px 60px;
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(.22,.7,.2,1);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav nav { display: flex; flex-direction: column; }
.mn-link {
  font-family: "Inter", sans-serif;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.8);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color .2s ease;
  line-height: 1;
}
.mn-link:last-child { border-bottom: 0; }
.mn-link:hover, .mn-link:active { color: #9DC4E4; }
.mn-cta { margin-top: 44px; align-self: flex-start; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: transform .2s ease, background .25s ease, color .25s ease;
}
.btn .arrow {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: grid;
  place-items: center;
  font-size: 13px;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-deep); }
.btn-primary .arrow { background: rgba(0, 0, 0, 0.18); }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255, 255, 255, 0.55); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; }
.btn-dark { background: var(--blue); color: #fff; }
.btn-dark:hover { background: var(--blue-deep); }

/* ---------- Products ---------- */
.products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 1100px) { .products { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .products { grid-template-columns: 1fr; } }

.product {
  background: var(--paper);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--rule-soft);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
.product:hover { transform: translateY(-4px); box-shadow: 0 24px 40px -20px rgba(20, 20, 18, 0.18); }
.product:hover .cart-btn { background: var(--blue); }

.product-img { aspect-ratio: 4/3; position: relative; overflow: hidden; background: var(--blue-soft); }
.product-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(86, 146, 198, 0.06) 0 1px, transparent 1px 14px),
    radial-gradient(60% 60% at 50% 55%, rgba(86, 146, 198, 0.18), transparent 70%);
}
.product-img .glyph {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 62px;
  color: var(--blue);
  opacity: .55;
}
.product-img .tag {
  position: absolute;
  top: 12px; left: 12px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--paper);
  padding: 4px 8px;
  border-radius: 3px;
  color: var(--blue-deep);
}
.product-body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.product-body .cat-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-deep);
}
.product-body h4 { font-size: 16px; font-weight: 600; letter-spacing: -0.005em; margin-top: 8px; color: var(--ink); }
.product-body .desc { font-size: 13px; color: var(--ink-soft); margin-top: 6px; line-height: 1.5; flex: 1; }
.product-body .row { display: flex; justify-content: flex-end; margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--rule-soft); }

.cart-btn {
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background .25s ease;
  cursor: pointer;
}
.cart-btn:hover { background: var(--blue); }

/* ---------- Form fields ---------- */
.field { display: flex; flex-direction: column; margin-bottom: 16px; }
.field label {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 15px;
  padding: 14px;
  border: 1px solid var(--rule);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(86, 146, 198, 0.18);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
footer { background: #1F2937; color: #fff; padding: 80px 0 32px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; } }
.foot h5 {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9DC4E4;
  margin-bottom: 18px;
}
.foot a { display: block; font-size: 14px; color: rgba(255, 255, 255, 0.7); padding: 6px 0; transition: color .2s ease; }
.foot a:hover { color: #9DC4E4; }
.foot-brand h3 { font-size: 40px; color: #fff; line-height: 1.05; font-weight: 800; letter-spacing: -0.025em; }
.foot-brand p { font-size: 14px; color: rgba(255, 255, 255, 0.7); margin-top: 14px; max-width: 36ch; line-height: 1.6; }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.foot-bottom a:hover { color: #9DC4E4; }
@media (max-width: 560px) {
  footer { padding: 60px 0 28px; }
  .foot-bottom { flex-direction: column; gap: 10px; text-align: center; margin-top: 40px; }
}

/* ---------- Inquiry modal ---------- */
.inq-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 20, 25, 0.55);
  backdrop-filter: blur(6px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  display: grid;
  place-items: center;
  padding: 24px;
}
.inq-overlay.open { opacity: 1; pointer-events: auto; }
.inq-modal {
  background: #fff;
  border-radius: 14px;
  width: 100%;
  max-width: 560px;
  padding: 36px 36px 32px;
  transform: translateY(14px) scale(.98);
  transition: transform .3s cubic-bezier(.22, .7, .2, 1);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 30px 60px -20px rgba(15, 20, 25, 0.4);
  position: relative;
}
.inq-overlay.open .inq-modal { transform: translateY(0) scale(1); }
.inq-modal h3 { font-weight: 800; letter-spacing: -0.025em; font-size: 26px; color: var(--ink); }
.inq-modal .sub { color: var(--ink-soft); font-size: 14px; margin-top: 6px; line-height: 1.6; }
.inq-product {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--blue-soft);
  border-radius: 8px;
  padding: 14px 16px;
  margin: 20px 0 22px;
}
.inq-product .ic {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  flex: none;
}
.inq-product b { display: block; color: var(--ink); font-size: 14px; font-weight: 600; }
.inq-product span {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin-top: 2px;
}
.inq-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  background: #fff;
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 18px;
  cursor: pointer;
  transition: background .2s ease;
}
.inq-close:hover { background: var(--cream-2); }
.inq-modal .field { margin-bottom: 14px; }
.inq-modal .submit { width: 100%; justify-content: center; margin-top: 6px; }
@media (max-width: 560px) {
  .inq-overlay { padding: 12px; }
  .inq-modal { padding: 28px 20px 24px; border-radius: 10px; }
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.22, .7, .2, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================================
   Home page — index.html
   ============================================================ */

/* ---- Hero ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  background: #1a1410;
  color: var(--cream);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/img/workshop-bg.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(1.0) saturate(1.05);
}
.hero-tint {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.05) 30%, rgba(0,0,0,0) 55%, rgba(0,0,0,0.55) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 45%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: .18;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.95 0 0 0 0 0.9 0 0 0 0 0.78 0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.hero-inner {
  position: relative;
  height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 140px 40px 56px;
  max-width: 1320px;
  margin: 0 auto;
  z-index: 2;
}
.hero-inner > div:first-child {
  align-self: end;
  padding-bottom: 40px;
  position: relative;
}
.hero-inner > div:first-child::before {
  content: "";
  position: absolute;
  left: -120px; right: -40px; top: -40px; bottom: -125px;
  background: radial-gradient(60% 70% at 25% 70%, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 75%);
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 720px) {
  .hero { height: 100svh; min-height: 580px; }
  .hero-inner { padding: 90px 20px 32px; }
  .hero-bg { background-position: 65% center; }
  .hero-car { background-size: auto 45%; background-position: 85% 82%; }
}

@keyframes slideInMobile {
  0%   { transform: translateX(-115%); }
  100% { transform: translateX(0); }
}

.hero-eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #D7E5F2;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: fadeUp .9s .2s forwards;
}
.hero-eyebrow .line { width: 48px; height: 1px; background: #D7E5F2; }
.hero h1 {
  font-size: clamp(44px, 6.8vw, 108px);
  color: #fff;
  max-width: 14ch;
  margin-top: 24px;
  text-wrap: balance;
  opacity: 0;
  animation: fadeUp 1s .4s forwards;
  font-weight: 900;
  letter-spacing: -0.035em;
}
.hero h1 em { font-style: normal; color: #9DC4E4; font-weight: inherit; }
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s .85s forwards;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

.hero-meta {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  color: #D7E5F2;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-meta .stats { display: flex; gap: 48px; }
.hero-meta .stats b { font-family: "Inter", sans-serif; font-size: 34px; font-weight: 800; letter-spacing: -0.02em; display: block; color: #fff; text-transform: none; }
.hero-meta .scroll { display: flex; align-items: center; gap: 10px; opacity: .85; }
.hero-meta .scroll .v-line { width: 1px; height: 32px; background: #D7E5F2; position: relative; overflow: hidden; }
.hero-meta .scroll .v-line::after { content: ""; position: absolute; top: -32px; left: 0; right: 0; height: 32px; background: #fff; animation: scrollLine 2.4s ease-in-out infinite; }
@keyframes scrollLine { 0% { top: -32px; } 100% { top: 32px; } }
@media (max-width: 720px) { .hero-meta .stats { gap: 24px; } .hero-meta .stats b { font-size: 24px; } .hero-meta .scroll { display: none; } }
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: space-between; }
  .hero-meta .stats { gap: 14px; }
  .hero-meta .stats b { font-size: 20px; }
}

.hero-car-wrap { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.hero-car {
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  background-image: url('/assets/img/beetle.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transform: translateX(-115%);
  animation: slideIn 1.9s cubic-bezier(.22,.75,.18,1) .5s forwards;
}
@keyframes slideIn {
  0%   { transform: translateX(-115%); }
  72%  { transform: translateX(1.2%); }
  88%  { transform: translateX(-0.4%); }
  100% { transform: translateX(0); }
}
@media (max-width: 720px) {
  .hero-car { animation-name: slideInMobile; }
}
.corner { position: absolute; width: 14px; height: 14px; border: 1px solid rgba(215,229,242,0.5); z-index: 3; }
.corner.tl { top: 120px; left: 40px; border-right: 0; border-bottom: 0; }
.corner.tr { top: 120px; right: 40px; border-left: 0; border-bottom: 0; }
.corner.bl { bottom: 40px; left: 40px; border-right: 0; border-top: 0; }
.corner.br { bottom: 40px; right: 40px; border-left: 0; border-top: 0; }
@media (max-width: 720px) { .corner { display: none; } }

/* ---- Marquee ---- */
.marquee {
  background: var(--cream-2);
  color: var(--ink);
  padding: 18px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: scroll 60s linear infinite;
  font-family: "Inter", sans-serif;
  font-size: 28px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 60px; }
.marquee-track .pill {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-deep);
  font-style: normal;
  font-weight: 400;
}
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 720px) {
  .marquee-track { font-size: 20px; gap: 36px; }
  .marquee-track span { gap: 36px; }
}

/* ---- Section ---- */
.section { padding: 120px 0; position: relative; }
@media (max-width: 900px) { .section { padding: 80px 0; } }

.section-head { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: end; margin-bottom: 64px; }
@media (max-width: 900px) { .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; } }
.section-head h2 { font-size: clamp(36px, 4.8vw, 68px); text-wrap: balance; letter-spacing: -0.03em; }
.section-head h2 em { font-style: normal; color: var(--blue); }
.section-head .lede { font-size: 18px; color: var(--ink-soft); max-width: 48ch; line-height: 1.6; }

/* ---- Leistungen ---- */
#leistungen { background: var(--cream); }
.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
@media (max-width: 1100px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services { grid-template-columns: 1fr; } }
@media (max-width: 600px) {
  .service { min-height: 0; padding: 28px 22px 24px; }
  .service h3 { font-size: 24px; margin-top: 52px; }
}
.service {
  padding: 42px 32px 36px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--cream);
  transition: background .35s ease, color .35s ease;
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service:hover { background: var(--blue); color: #fff; }
.service .num {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--blue-deep);
  transition: color .35s ease;
}
.service:hover .num { color: rgba(255,255,255,0.75); }
.service h3 { font-size: 32px; margin-top: 90px; text-wrap: balance; }
.service p { margin-top: 14px; font-size: 14px; line-height: 1.6; color: var(--ink-soft); transition: color .35s ease; }
.service:hover p { color: rgba(255,255,255,0.85); }
.service .arrow-in {
  position: absolute;
  top: 32px; right: 32px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  display: grid;
  place-items: center;
  color: var(--ink);
  transition: background .35s ease, color .35s ease, border-color .35s ease, transform .35s ease;
}
.service:hover .arrow-in { background: #fff; border-color: #fff; color: var(--blue); transform: rotate(-45deg); }

/* ---- Über uns ---- */
#ueber { background: var(--cream-2); }
#ueber h2 em { color: var(--blue); }
#ueber .lede { color: var(--ink-soft); }
.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: start; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } }
.about-copy p { color: var(--ink-soft); font-size: 17px; line-height: 1.7; margin-bottom: 18px; }
.about-stats { display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 36px; border-top: 1px solid var(--rule); }
@media (max-width: 480px) { .about-stats { grid-template-columns: 1fr; } .about-stats .stat:nth-child(odd) { border-right: 0; } }
.about-stats .stat { padding: 24px 0; border-bottom: 1px solid var(--rule); }
.about-stats .stat:nth-child(odd) { border-right: 1px solid var(--rule); padding-right: 24px; }
@media (max-width: 480px) { .about-stats .stat:nth-child(odd) { padding-right: 0; } }
.about-stats .stat:nth-child(even) { padding-left: 24px; }
@media (max-width: 480px) { .about-stats .stat:nth-child(even) { padding-left: 0; } }
.about-stats b { font-size: 48px; display: block; color: var(--ink); font-weight: 800; line-height: 1; letter-spacing: -0.02em; }
.about-stats span { font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue-deep); margin-top: 6px; display: block; }

.workshop-collage { display: grid; grid-template-columns: repeat(6, 1fr); grid-template-rows: repeat(6, 40px); gap: 12px; height: 520px; }
.shot { border-radius: 6px; overflow: hidden; position: relative; background: #dfe7ef; }
.shot::before { content: ""; position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .8s ease; }
.shot:hover::before { transform: scale(1.05); }
.shot::after { display: none; }
.shot.s1 { grid-column: 1/4; grid-row: 1/4; }
.shot.s1::before { background-image: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(0,0,0,0.25)), url('/assets/img/mb_webseite1.jpg'); }
.shot.s2 { grid-column: 4/7; grid-row: 1/3; }
.shot.s3 { grid-column: 4/6; grid-row: 3/5; }
.shot.s4 { grid-column: 6/7; grid-row: 3/7; }
.shot.s5 { grid-column: 1/3; grid-row: 4/7; }
.shot.s6 { grid-column: 3/6; grid-row: 5/7; }
@media (max-width: 720px) {
  .workshop-collage {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
    height: auto;
    gap: 8px;
  }
  .workshop-collage .shot {
    grid-column: auto !important;
    grid-row: auto !important;
    aspect-ratio: 4/3;
  }
}
.shot.s2::before { background-image: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(0,0,0,0.25)), url('/assets/img/mb_webseite2.jpg'); }
.shot.s3::before { background-image: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(0,0,0,0.25)), url('/assets/img/mb_webseite3.jpg'); }
.shot.s4::before { background-image: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(0,0,0,0.25)), url('/assets/img/mb_webseite4.jpg'); }
.shot.s5::before { background-image: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(0,0,0,0.25)), url('/assets/img/mb_webseite5.jpg'); }
.shot.s6::before { background-image: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(0,0,0,0.25)), url('/assets/img/mb_webseite6.jpg'); }

/* ---- Shop teaser ---- */
#shop { background: var(--paper); }

/* ---- Kontakt ---- */
#kontakt { background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.form-card { background: var(--cream-2); border-radius: 10px; padding: 40px; }
@media (max-width: 560px) {
  .form-card { padding: 24px 20px; }
  .info-card { padding: 28px 20px; gap: 20px; }
  .info-card .phone { font-size: 32px; }
}
.form-card h3 { font-size: 32px; margin-bottom: 8px; letter-spacing: -0.025em; }
.form-card .lede { color: var(--ink-soft); font-size: 15px; margin-bottom: 28px; line-height: 1.6; }
.form-card .submit { margin-top: 8px; width: 100%; justify-content: center; }
.info-card { background: #243140; color: #fff; border-radius: 10px; padding: 40px; display: flex; flex-direction: column; gap: 28px; }
.info-card .phone { font-size: 44px; line-height: 1.1; color: #fff; text-decoration: none; font-weight: 800; letter-spacing: -0.02em; }
.info-card .phone small { display: block; font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: #9DC4E4; margin-bottom: 10px; font-weight: 400; }
.info-row { display: flex; gap: 14px; align-items: flex-start; padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.12); }
.info-row .ic { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.06); display: grid; place-items: center; flex: none; color: #9DC4E4; font-weight: 600; }
.info-row b { display: block; font-weight: 600; font-size: 14px; margin-bottom: 4px; color: #fff; }
.info-row p { font-size: 13.5px; color: rgba(255,255,255,0.78); line-height: 1.55; }
.map { height: 220px; border-radius: 6px; overflow: hidden; position: relative; background: #1a2535; border: 1px solid rgba(255,255,255,0.08); }
.map svg { width: 100%; height: 100%; display: block; }
.map .pin { position: absolute; left: 46%; top: 54%; transform: translate(-50%, -100%); display: flex; flex-direction: column; align-items: center; gap: 4px; }
.map .pin .head { width: 36px; height: 36px; border-radius: 50%; background: var(--blue); display: grid; place-items: center; color: #fff; font-weight: 800; box-shadow: 0 8px 18px rgba(0,0,0,0.4); }
.map .pin .stem { width: 1px; height: 14px; background: var(--blue); }
.map .pin .label { font-family: "JetBrains Mono", monospace; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: #fff; background: rgba(0,0,0,0.5); padding: 4px 8px; border-radius: 3px; margin-top: 6px; }

/* ============================================================
   Shop page — shop/index.html
   ============================================================ */

/* ---- Shop hero ---- */
.shop-hero { padding: 140px 0 60px; background: linear-gradient(180deg, var(--blue-soft) 0%, var(--cream) 100%); }
.shop-hero h1 { font-size: clamp(40px, 5.6vw, 80px); max-width: 18ch; margin: 18px 0; text-wrap: balance; font-weight: 900; letter-spacing: -0.04em; }
.shop-hero h1 em { font-style: normal; color: var(--blue); }
.shop-hero .lede { font-size: 18px; color: var(--ink-soft); max-width: 60ch; line-height: 1.6; }
.breadcrumb { font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 30px; }
.breadcrumb a { color: var(--blue-deep); }
.shop-hero-stats { display: flex; gap: 48px; margin-top: 42px; flex-wrap: wrap; }
.shop-hero-stats div { display: flex; align-items: baseline; gap: 14px; }
.shop-hero-stats b { font-size: 32px; font-weight: 800; letter-spacing: -0.025em; color: var(--ink); }
.shop-hero-stats span { font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

/* ---- Toolbar ---- */
.shop-toolbar {
  position: sticky;
  top: 84px;
  background: rgba(247, 248, 250, 0.96);
  backdrop-filter: blur(10px);
  z-index: 30;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 18px 0;
  margin-bottom: 50px;
}
.shop-toolbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap; }
.shop-cats { display: flex; gap: 8px; flex-wrap: wrap; }
.cat {
  padding: 9px 16px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  background: var(--paper);
  color: var(--ink);
  transition: all .25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.cat .count { font-family: "JetBrains Mono", monospace; font-size: 10px; color: var(--muted); }
.cat:hover, .cat.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.cat:hover .count, .cat.active .count { color: rgba(255,255,255,0.85); }
.search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 8px 16px;
  min-width: 240px;
}
.search input { font: inherit; font-size: 13px; border: 0; outline: 0; flex: 1; background: transparent; color: var(--ink); }
.search .ic { color: var(--muted); font-size: 14px; }

/* ---- Note ---- */
.note { background: var(--blue-soft); border-radius: 10px; padding: 24px 28px; display: flex; gap: 18px; align-items: flex-start; margin-bottom: 36px; }
.note .ic { width: 38px; height: 38px; border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; font-weight: 800; flex: none; }
.note b { display: block; color: var(--ink); font-weight: 700; margin-bottom: 4px; font-size: 15px; }
.note p { color: var(--ink-soft); font-size: 14px; line-height: 1.6; }

/* ---- Shop section ---- */
.shop-section { padding: 0 0 120px; }
