@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/poppins-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/poppins-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/poppins-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('fonts/poppins-800.woff2') format('woff2');
}

:root {
  --bg: #0b0d10;
  --bg-alt: #14171b;
  --card: #1b1f24;
  --card-border: #262b31;
  --cyan: #00ccff;
  --text: #f4f6f8;
  --text-dim: #a7b0b8;
  --dark-logo: #292b2c;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
}

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

a { color: inherit; text-decoration: none; }

.site-banner {
  overflow: hidden;
  background: linear-gradient(90deg, #ffb347, #ff6f61, #00ccff, #ffb347);
  background-size: 300% 100%;
  animation: banner-gradient 18s ease infinite;
  border-bottom: 1px solid rgba(0,0,0,0.15);
}

.site-banner-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: banner-scroll 65s linear infinite;
}

.site-banner:hover .site-banner-track { animation-play-state: paused; }

.site-banner-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 34px;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #08222b;
  text-shadow: 0 1px 0 rgba(255,255,255,0.25);
}

@keyframes banner-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes banner-gradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.site-banner.style-winter {
  background: linear-gradient(90deg, #4facfe, #e0eafc, #a1c4fd, #4facfe);
  background-size: 300% 100%;
}

.site-banner.style-alert {
  background: #d92b3f;
  animation: alert-pulse 2.5s ease-in-out infinite;
}

.site-banner.style-alert .site-banner-item {
  color: #fff;
  text-shadow: none;
}

@keyframes alert-pulse {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.18); }
}

@media (max-width: 640px) {
  .site-banner-item { font-size: 0.92rem; padding: 14px 22px; }
}

.blog-thumb-img { padding: 0; overflow: hidden; }
.blog-thumb-img img { width: 100%; height: 100%; object-fit: cover; }

.album-cover { width: 100%; margin-bottom: 20px; border-radius: 6px; overflow: hidden; }
.album-cover img { width: 100%; height: auto; display: block; }

.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 440px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 16px 32px rgba(0,0,0,0.4);
  z-index: 200;
}

.cookie-consent p { color: var(--text-dim); font-size: 0.9rem; margin-bottom: 14px; }
.cookie-consent-buttons { display: flex; gap: 12px; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 13, 16, 0.78);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--card-border);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 500;
  color: #cfd6db;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--card-border);
}

.topbar .shops span { margin-right: 22px; }

.pin-icon {
  width: 13px;
  height: 13px;
  color: var(--cyan);
  vertical-align: -1px;
  margin-right: 4px;
}

.btn .pin-icon { margin-right: 2px; }
.topbar .shops strong { color: var(--text); font-weight: 700; }
.topbar a:hover { color: var(--cyan); }

.topbar .contact { display: flex; align-items: center; gap: 16px; }
.topbar .contact .divider { color: var(--card-border); }

.topbar .contact-link { display: flex; align-items: center; gap: 6px; font-weight: 700; }

.topbar .mail-icon {
  width: 15px;
  height: 15px;
  color: var(--cyan);
}

.topbar .insta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.topbar .insta:hover { color: var(--cyan); }

.topbar .insta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.topbar .insta-icon svg {
  width: 13px;
  height: 13px;
  color: #fff;
}

.navbar {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.navbar .logo img { height: 60px; }

.navbar nav {
  display: flex;
  gap: 10px;
  align-items: center;
}

.navbar nav a {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.15s, background-color 0.15s;
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: 4px;
}

.navbar nav a.active {
  background: var(--cyan);
  color: #08222b;
}

.navbar nav a:hover { color: var(--cyan); }

.navbar nav a.active:hover { color: #fff; }

.navbar nav a.cta {
  background: var(--cyan);
  color: #08222b;
  padding: 10px 18px;
  border-radius: 3px;
}

.navbar nav a.cta:hover { color: #08222b; opacity: 0.88; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--card-border);
  border-radius: 4px;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
}

/* Das Hintergrundbild sitzt auf einer eigenen Ebene, die großzügig nach oben
   über den Rand von .hero hinausragt (weiter als Header + Banner zusammen
   je hoch werden können, auch bei zweizeiligem Banner-Text am Handy). So
   "leuchtet" das Foto von Anfang an durch den halbtransparenten Header
   durch, statt erst nach etwas Scrollen sichtbar zu werden – unabhängig
   davon, ob gerade ein Banner aktiv ist oder nicht. Bewusst ohne JavaScript-
   Messung, damit hier nichts falsch berechnet werden kann. */
.hero::before {
  content: "";
  position: absolute;
  top: -320px;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(90deg, rgba(6,7,9,0.65) 15%, rgba(6,7,9,0.35) 60%, rgba(6,7,9,0.15) 100%), url('img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  image-rendering: -webkit-optimize-contrast;
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: contrast(1.08) saturate(1.15) brightness(1.1);
  -webkit-backdrop-filter: contrast(1.08) saturate(1.15) brightness(1.1);
  pointer-events: none;
  z-index: 0;
}

.hero-content { position: relative; z-index: 1; }

.hero-content { max-width: 640px; padding-top: 100px; padding-bottom: 100px; }

.badge {
  display: inline-block;
  color: var(--cyan);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.12;
  font-weight: 800;
  margin-bottom: 22px;
  letter-spacing: 0.01em;
}

.hero p {
  color: #d6dbe0;
  font-size: 1.25rem;
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 600px;
}

.btn {
  display: inline-block;
  padding: 14px 26px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.15s;
  border: 1px solid transparent;
}

.btn-primary { background: var(--cyan); color: #08222b; }
.btn-primary:hover { opacity: 0.88; }

.btn-outline { background: transparent; border-color: var(--text-dim); color: var(--text); }
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); }

/* Sections */
section { padding: 90px 0; scroll-margin-top: var(--header-height, 130px); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }

.kicker {
  color: var(--cyan);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  display: block;
}

.section-head h2 {
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.section-head p { color: var(--text-dim); font-size: 1.08rem; }

.bg-alt { background: var(--bg-alt); }

/* Feature grid */
.grid-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 32px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--cyan);
  box-shadow: 0 16px 32px rgba(0, 204, 255, 0.15);
}

.card .icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(0, 204, 255, 0.12);
  color: var(--cyan);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 800;
}

.card h3 {
  font-size: 1.02rem;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.card p { color: var(--text-dim); font-size: 1rem; }

.card-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 24px;
  background: var(--cyan);
  color: #08222b;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-radius: 4px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 204, 255, 0.3);
}

/* About us */
.about-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text p { color: var(--text-dim); margin-bottom: 16px; font-size: 1.05rem; }

.about-badges {
  position: relative;
  height: 260px;
}

.about-badges img {
  position: absolute;
  border-radius: 16px;
  filter: drop-shadow(0 14px 26px rgba(0,0,0,0.35)) drop-shadow(0 0 20px rgba(0,204,255,0.35));
}

.about-badges .radler {
  width: 56%;
  top: 0;
  left: 0;
  transform: rotate(-6deg);
  z-index: 1;
}

.about-badges .seit1989 {
  width: 40%;
  bottom: 0;
  right: 0;
  transform: rotate(8deg);
  z-index: 2;
}

@media (max-width: 900px) {
  .about-wrap { grid-template-columns: 1fr; }
  .about-badges { margin-top: 30px; height: 220px; }
}

.gutschein-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
}

.gutschein-image::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(0, 204, 255, 0.22) 0%, rgba(0, 204, 255, 0.08) 40%, rgba(0, 204, 255, 0) 72%);
  z-index: 0;
}

.gutschein-image img {
  position: relative;
  z-index: 1;
  width: 230px;
  border-radius: 10px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35), 0 0 45px rgba(0, 204, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gutschein-image img:hover {
  transform: scale(1.07);
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.45), 0 0 60px rgba(0, 204, 255, 0.45);
}

/* Form */
.form-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: start;
}

.form-side h2 { font-size: 2rem; }

.form-side ul { list-style: none; margin-top: 24px; color: var(--text-dim); font-size: 1rem; }
.form-side li { margin-bottom: 12px; padding-left: 22px; position: relative; }
.form-side li::before {
  content: "✓";
  color: var(--cyan);
  position: absolute; left: 0; font-weight: 700;
}

form {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 32px;
  display: grid;
  gap: 16px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-dim);
  margin-bottom: 6px;
}

input, select, textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--card-border);
  color: var(--text);
  padding: 11px 12px;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.92rem;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--cyan);
}

textarea { resize: vertical; min-height: 90px; }

#form-success {
  display: none;
  padding: 14px 16px;
  border-radius: 4px;
  font-size: 0.9rem;
}

#form-success.form-status-ok {
  background: rgba(0, 204, 255, 0.1);
  border: 1px solid var(--cyan);
  color: var(--cyan);
}

#form-success.form-status-error {
  background: rgba(217, 43, 63, 0.1);
  border: 1px solid #d92b3f;
  color: #d92b3f;
}

/* Blog: ein großer "Featured"-Beitrag (der neueste) oben, darunter die übrigen
   als Kachel-Grid; ältere Beiträge sind per Klappmechanismus (.blog-extra) versteckt,
   genau wie schon bei den Bikes-Alben ("Alle Bikes anzeigen"). */
.blog-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.blog-card:hover { transform: translateY(-6px); border-color: var(--cyan); box-shadow: 0 16px 32px rgba(0, 204, 255, 0.15); }
.blog-card:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }

.blog-thumb {
  height: 150px;
  background: linear-gradient(135deg, #0e1a1f, #142933);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
  font-size: 2.2rem;
}

.blog-card .blog-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }

.blog-date {
  font-size: 0.72rem;
  color: var(--cyan);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.blog-card h3 { font-size: 1rem; text-transform: uppercase; margin-bottom: 10px; }
.blog-card p { color: var(--text-dim); font-size: 0.96rem; flex: 1; }
.blog-card .read-more {
  color: var(--cyan); font-size: 0.82rem; font-weight: 700; margin-top: 14px;
  background: none; border: none; padding: 0; text-align: left; cursor: pointer; font-family: inherit;
}

/* Der neueste Beitrag: größer, mit Bild und Text nebeneinander (Desktop/Tablet). */
.blog-card-featured { margin-bottom: 28px; }
.blog-card-featured .blog-thumb { height: 260px; font-size: 3.4rem; }
.blog-card-featured .blog-body { padding: 30px; }
.blog-card-featured h3 { font-size: 1.5rem; margin-bottom: 14px; }
.blog-card-featured p { font-size: 1.02rem; }

@media (min-width: 641px) {
  .blog-card-featured { flex-direction: row; }
  .blog-card-featured .blog-thumb { flex: 0 0 44%; height: auto; }
  .blog-card-featured .blog-body { justify-content: center; }
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.blog-extra { display: none; }
.blog-grid.expanded .blog-extra { display: block; }

/* Am Handy ist neben dem Featured-Beitrag nur der eine nächste sichtbar (statt
   zwei wie am PC/Tablet) – der zweite zählt hier ebenfalls erst zu "weitere". */
@media (max-width: 640px) {
  .blog-secondary { display: none; }
  .blog-grid.expanded .blog-secondary { display: block; }
}

/* Blog-Modal ("Weiterlesen") – Höhe passt sich immer dem Text an, kein eigener
   Scrollbalken im Fenster; bei sehr langen Beiträgen scrollt die ganze Überlagerung
   wie eine normale Seite. margin:auto (statt align-items:center) verhindert, dass
   der obere Teil abgeschnitten wird, wenn der Inhalt höher als der Bildschirm ist. */
.blog-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  overflow-y: auto;
  padding: 40px 20px;
}

.blog-modal.is-open { display: flex; }

.blog-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 10, 0.75);
}

.blog-modal-panel {
  position: relative;
  margin: auto;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  max-width: 820px;
  width: 100%;
  overflow-x: hidden;
  z-index: 1;
}

.blog-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(11, 13, 16, 0.85);
  border: 1.5px solid var(--cyan);
  color: var(--cyan);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 2;
  transition: background 0.15s ease, color 0.15s ease;
}

.blog-modal-close:hover { background: var(--cyan); color: #08222b; }

/* Im geöffneten Beitrag muss das Bild komplett sichtbar sein (kein Zuschneiden wie
   im kleinen Vorschau-Kärtchen) – deshalb keine feste Höhe, sondern volle Breite mit
   natürlichem Seitenverhältnis. Nur der Platzhalter-Kreis (kein Bild) hat feste Höhe. */
.blog-modal-image { overflow: hidden; }

.blog-modal-image.is-placeholder {
  height: 260px;
  background: linear-gradient(135deg, #0e1a1f, #142933);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
  font-size: 3rem;
}

.blog-modal-image img { width: 100%; height: auto; display: block; }
.blog-modal-body { padding: 28px 32px 36px; overflow-wrap: break-word; }
.blog-modal-body h3 { font-size: 1.4rem; margin-bottom: 14px; }
.blog-modal-body p { color: var(--text-dim); line-height: 1.7; margin-bottom: 14px; }

/* Vor/Zurück zwischen Beiträgen, direkt im geöffneten Beitrag – macht neugierig,
   auch die Nachbar-Beiträge anzuschauen, ohne das Modal schließen zu müssen. */
.blog-modal-nav { display: flex; }
.blog-modal-nav-btn {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  font-family: inherit;
  min-width: 0;
  transition: background 0.15s ease;
}
.blog-modal-nav-btn:hover { background: rgba(0, 204, 255, 0.08); }
.blog-modal-nav-prev { justify-content: flex-start; }
.blog-modal-nav-next { justify-content: flex-end; }
.blog-modal-nav-arrow { font-size: 1.4rem; color: var(--cyan); flex-shrink: 0; }
.blog-modal-nav-text { display: flex; flex-direction: column; min-width: 0; }
.blog-modal-nav-next .blog-modal-nav-text { align-items: flex-end; }
.blog-modal-nav-label {
  font-size: 0.68rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}
.blog-modal-nav-title {
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

@media (max-width: 640px) {
  .blog-modal { padding: 0; }
  .blog-modal-panel { max-width: none; border-radius: 0; min-height: 100vh; }
  .blog-modal-image.is-placeholder { height: 220px; }
  .blog-modal-nav { flex-direction: column; }
  .blog-modal-nav-next { justify-content: flex-start; }
  .blog-modal-nav-next .blog-modal-nav-text { align-items: flex-start; }
}

/* Bikes-Alben: Kachel anklicken öffnet die Foto-Galerie (nutzt dasselbe
   Überlagerungs-Prinzip wie das Blog-Modal, .blog-modal/-backdrop/-close). */
.album-card { cursor: pointer; }
.album-card:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }
.album-extra { display: none; }

.album-modal-panel {
  position: relative;
  margin: auto;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  max-width: 940px;
  width: 100%;
  overflow-x: hidden;
  z-index: 1;
}

.album-modal-viewer {
  position: relative;
  background: #05080a;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  touch-action: pan-y;
  user-select: none;
}

.album-modal-image { width: 100%; display: flex; align-items: center; justify-content: center; }
.album-modal-image img { max-width: 100%; max-height: 76vh; object-fit: contain; display: block; }

.album-nav-arrow { position: absolute; top: 50%; transform: translateY(-50%); }
.album-nav-arrow.album-nav-left { left: 12px; }
.album-nav-arrow.album-nav-right { right: 12px; }

.album-modal-thumbs {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  overflow-x: auto;
  background: #05080a;
  border-top: 1px solid var(--card-border);
}
.album-modal-thumb {
  flex: 0 0 60px;
  height: 60px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.5;
  border: 2px solid transparent;
  transition: opacity 0.15s ease, border-color 0.15s ease;
}
.album-modal-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.album-modal-thumb.active { opacity: 1; border-color: var(--cyan); }
.album-modal-thumb:hover { opacity: 0.85; }

.album-modal-body { padding: 20px 28px 26px; }
.album-modal-body h3 { font-size: 1.3rem; text-transform: uppercase; margin-bottom: 6px; }

@media (max-width: 640px) {
  .album-modal-panel { max-width: none; border-radius: 0; }
  .album-nav-arrow { width: 34px; height: 34px; font-size: 1.2rem; }
  .album-modal-image img { max-height: 60vh; }
  .album-modal-thumb { flex: 0 0 52px; height: 52px; }
}

.blog-note {
  text-align: center;
  color: var(--text-dim);
  font-size: 0.8rem;
  margin-top: 30px;
  font-style: italic;
}

/* Leasing-Logo-Karussell */
.logo-carousel {
  position: relative;
}

.logo-marquee {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 70px;
  width: max-content;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.logo-slot {
  flex: none;
  width: 230px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 10px;
  padding: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.logo-slot img { max-height: 100%; max-width: 100%; object-fit: contain; -webkit-user-drag: none; }

.logo-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(11, 13, 16, 0.8);
  border: 1px solid var(--card-border);
  color: var(--cyan);
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.logo-arrow:hover { background: var(--cyan); color: #08222b; }
.logo-arrow-left { left: -60px; }
.logo-arrow-right { right: -60px; }

@media (max-width: 900px) {
  .logo-arrow-left { left: -12px; }
  .logo-arrow-right { right: -12px; }
}

@media (max-width: 640px) {
  .logo-arrow { width: 34px; height: 34px; font-size: 1.2rem; }
}

/* Google Bewertungen */
.reviews-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}

.review-card {
  flex: 1 1 320px;
  max-width: 380px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 32px;
  text-align: center;
}

.review-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.review-stars { color: #fbbc05; font-size: 1.3rem; letter-spacing: 3px; }

.review-text {
  color: var(--text-dim);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 4px;
}

/* Contact / Anfahrt */
.shops-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.shop-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 32px;
}

.shop-card h3 {
  color: var(--cyan);
  font-size: 1.2rem;
  margin-bottom: 16px;
  font-weight: 800;
}

.shop-card .addr { margin-bottom: 18px; color: var(--text-dim); }
.shop-card .addr p { margin: 0; }

.hours-list { list-style: none; margin-bottom: 20px; font-size: 0.88rem; }
.hours-list li { padding: 7px 0; border-bottom: 1px solid var(--card-border); color: var(--text-dim); }

/* Footer */
footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--card-border);
  padding: 50px 0 24px;
}

.footer-top {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--card-border);
  margin-bottom: 24px;
}

.footer-top img { height: 46px; }

.footer-links { display: flex; gap: 26px; font-size: 0.85rem; color: var(--text-dim); }
.footer-links a:hover { color: var(--cyan); }

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 24px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
}

.footer-bottom a:hover { color: var(--cyan); }

@media (max-width: 1300px) {
  .nav-toggle { display: flex; }

  .navbar nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-alt);
    border: 1px solid var(--card-border);
    border-top: none;
    padding: 10px 24px 20px;
    box-shadow: 0 16px 24px rgba(0,0,0,0.35);
  }

  .navbar nav.open { display: flex; }

  .navbar nav a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--card-border);
    white-space: normal;
  }

  .navbar nav a.cta {
    margin-top: 8px;
    text-align: center;
    border-bottom: none;
  }

}

@media (max-width: 900px) {
  .form-wrap { grid-template-columns: 1fr; }
  .shops-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.1rem; }
  .topbar .shops span { display: block; margin-bottom: 4px; }
}

@media (max-width: 640px) {
  /* Am Handy ist der Hero-Text zu hoch für das Hintergrundfoto (zu starker
     Zoom/Beschnitt) - deshalb hier den langen Absatztext ausblenden, nur
     Badge + fette Überschrift bleiben stehen. Zusätzlich die Box selbst
     kompakter machen (weniger Innenabstand, keine erzwungene Mindesthöhe),
     damit mehr von der Bildbreite sichtbar wird, und den Bildausschnitt
     seitlich Richtung Leuchtschild/Eingang verschieben (lag vorher am Rand
     vom sichtbaren Bereich). */
  .hero p { display: none; }
  .hero { min-height: 40vh; padding: 0; }
  .hero-content { padding-top: 50px; padding-bottom: 50px; }
  .hero::before { background-position: 64% center; }

  .topbar { flex-direction: column; align-items: flex-start; gap: 6px; }
  .topbar .contact { flex-wrap: wrap; }
}

/* Saison-Effekt (Schneeflocken/Blätter/Ostereier) – leichte, rein CSS-animierte Deko */
.season-effect {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 40;
}

.season-particle {
  position: absolute;
  top: -40px;
  line-height: 1;
  animation-name: season-fall;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.season-particle.sway-left { --sway: -40px; }
.season-particle.sway-straight { --sway: 0px; }
.season-particle.sway-right { --sway: 40px; }

@keyframes season-fall {
  0% { transform: translate(0, -40px) rotate(0deg); opacity: 0.9; }
  100% { transform: translate(var(--sway), 110vh) rotate(360deg); opacity: 0.9; }
}

/* "Nach oben"-Button: taucht erst nach etwas Scrollen auf, gleiches
   Rund-Button-Design wie z. B. der Schließen-Button im Blog-Modal. */
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(11, 13, 16, 0.85);
  border: 1.5px solid var(--cyan);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.15s ease, color 0.15s ease;
}

.back-to-top svg { width: 20px; height: 20px; }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--cyan); color: #08222b; }

@media (max-width: 640px) {
  .back-to-top { right: 14px; bottom: 14px; width: 42px; height: 42px; }
}
