/* ========================================
   Reusable Components
   ======================================== */

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-button);
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-cta-bg);
  color: var(--color-cta-text);
}

.btn-primary:hover {
  background: var(--color-accent-gold);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text-primary);
  border: 1px solid var(--color-text-primary);
}

.btn-secondary:hover {
  background: var(--color-text-primary);
  color: var(--color-white);
}

.btn-ghost-light {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.5);
}

.btn-ghost-light:hover {
  background: var(--color-white);
  color: var(--color-text-primary);
}

.btn-gold {
  background: var(--color-accent-gold);
  color: var(--color-white);
}

.btn-gold:hover {
  background: var(--color-accent-gold-hover);
}

.btn-sm {
  padding: 10px 24px;
  font-size: var(--fs-label);
}

.btn-lg {
  padding: 20px 48px;
  font-size: var(--fs-body);
}

/* ---- Section Label ---- */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--color-accent-gold);
  margin-bottom: var(--space-sm);
}

/* ---- Section Header ---- */
.section-header {
  max-width: 700px;
  margin-bottom: var(--space-lg);
}

.section-header.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: var(--fw-medium);
  line-height: var(--lh-heading);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.section-header p {
  color: var(--color-text-secondary);
  font-size: 1.0625rem;
  line-height: var(--lh-body);
}

/* ---- Cards ---- */
.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: all var(--transition-base);
}

.card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent-gold);
}

.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-sm);
  color: var(--color-accent-gold);
}

.card h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-xs);
  color: var(--color-text-primary);
}

/* Force equal heading height so paragraphs align across cards
   regardless of whether the heading text wraps to one or two lines. */
.pa-grid h3 {
  display: flex;
  align-items: flex-end;
  line-height: 1.2;
  min-height: calc(1.2em * 2);
}

.card p {
  color: var(--color-text-secondary);
  font-size: var(--fs-small);
  line-height: var(--lh-body);
  margin-bottom: var(--space-sm);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--color-text-primary);
  text-decoration: none;
  border-bottom: 1px solid var(--color-accent-gold);
  padding-bottom: 2px;
  transition: color var(--transition-fast);
}

.card-link:hover {
  color: var(--color-accent-gold);
}

.card-link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.card-link:hover svg {
  transform: translateX(4px);
}

/* ---- Trust Bar ---- */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-border);
}

.trust-item {
  text-align: center;
}

.trust-item .trust-value {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: var(--fw-semibold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-2xs);
}

.trust-item .trust-label {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
}

/* ---- Image-Text Split ---- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.dispo-graphic svg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.split.reversed {
  direction: rtl;
}

.split.reversed > * {
  direction: ltr;
}

.split-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-accent-gold);
}

.split-content {
  padding: var(--space-md) 0;
}

.split-content h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: var(--fw-medium);
  line-height: var(--lh-heading);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.split-content p {
  color: var(--color-text-secondary);
  line-height: var(--lh-body);
  margin-bottom: var(--space-md);
}

.split-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-md);
}

.split-content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.split-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 1px;
  background: var(--color-accent-gold);
}

/* ---- Process Steps ---- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  counter-reset: step;
}

.process-step {
  text-align: center;
  counter-increment: step;
  position: relative;
}

.process-step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: var(--fw-light);
  color: var(--color-accent-gold);
  margin-bottom: var(--space-sm);
  line-height: 1;
}

.process-step h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-xs);
  color: var(--color-text-primary);
}

.process-step p {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  line-height: var(--lh-body);
}

/* ---- Vehicle Cards ---- */
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.vehicle-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-base);
}

.vehicle-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent-gold);
}

.vehicle-card-image {
  height: 200px;
  background: var(--color-offwhite);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--space-sm);
}

.vehicle-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.vehicle-card-image .placeholder-icon {
  font-size: 3rem;
  color: var(--color-medium-gray);
}

.vehicle-card-body {
  padding: var(--space-md);
}

.vehicle-card-body .vehicle-class {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: var(--fw-semibold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-2xs);
}

.vehicle-card-body .vehicle-models {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.vehicle-features {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-sm);
}

.vehicle-feature {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: var(--fs-label);
  color: var(--color-text-secondary);
  background: var(--color-offwhite);
  padding: 4px 10px;
  letter-spacing: 0.02em;
}

/* ---- Occasion Grid ---- */
.occasion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.occasion-card {
  position: relative;
  padding: var(--space-lg);
  background: var(--color-offwhite);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.occasion-card:hover {
  background: var(--color-white);
  border-color: var(--color-accent-gold);
  box-shadow: var(--shadow-md);
}

.occasion-card h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: var(--fw-semibold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
}

.occasion-card p {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  line-height: var(--lh-body);
}

/* ---- Location Bar ---- */
.location-bar {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.location-item {
  text-decoration: none;
  text-align: center;
  padding: var(--space-sm) var(--space-md);
  transition: all var(--transition-fast);
  border-bottom: 2px solid transparent;
}

.location-item:hover {
  border-bottom-color: var(--color-accent-gold);
}

.location-item span {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: var(--fw-medium);
  color: var(--color-text-primary);
}

/* ---- Germany Map ---- */
.germany-map-wrap {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
}

.germany-map {
  width: 100%;
  height: auto;
  display: block;
}

.germany-map path {
  fill: var(--color-offwhite);
  stroke: var(--color-border);
  stroke-width: 2;
  transition: fill var(--transition-base);
}

.map-pin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.pin-dot {
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-accent-gold);
  border: 2px solid var(--color-white);
  box-shadow: 0 0 0 1px var(--color-accent-gold), var(--shadow-sm);
  transition: all var(--transition-fast);
}

.pin-dot::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: var(--color-accent-gold);
  opacity: 0.25;
  transform: scale(0);
  transition: transform var(--transition-fast);
}

.map-pin .pin-label {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: var(--fw-medium);
  color: var(--color-text-primary);
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.map-pin:hover .pin-dot {
  background: var(--color-text-primary);
  transform: scale(1.15);
}

.map-pin:hover .pin-dot::before {
  transform: scale(1);
}

.map-pin:hover .pin-label {
  color: var(--color-accent-gold);
}

/* ---- AYDEN Badge ---- */
.ayden-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-label);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.ayden-badge::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--color-accent-gold);
  border-radius: 50%;
}

/* ---- Divider ---- */
.divider {
  width: 60px;
  height: 1px;
  background: var(--color-accent-gold);
  border: none;
  margin: var(--space-md) 0;
}

.divider.centered {
  margin-left: auto;
  margin-right: auto;
}

/* ---- CTA Section ---- */
.cta-section {
  position: relative;
  background-size: cover;
  background-position: center 78%;
  padding: var(--space-2xl) 0;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
}

.cta-section .container { position: relative; z-index: 1; }

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-overlay-darker);
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: var(--fw-medium);
  margin-bottom: var(--space-sm);
}

.cta-section p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-md);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Fade Up (shared scroll animation) ---- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ---- Hero Slim (subpages) ---- */
.hero-slim {
  position: relative; height: 100vh; min-height: 720px; max-height: 1000px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; padding: 0;
}
.hero-slim.hero-slim-lg { height: 100vh; min-height: 760px; max-height: 1040px; }
.hero-slim .hero-bg { position: absolute; inset: 0; }
.hero-slim .hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 38%;
  transition: transform 1.2s ease;
}
.hero-slim:hover .hero-bg img { transform: scale(1.06); }
.hero-slim .hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.65) 100%);
}
.hero-slim .hero-content {
  position: relative; z-index: 1; color: var(--color-white); max-width: 700px;
  margin: 0 auto;
}
.hero-slim .breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-size: var(--fs-label); letter-spacing: var(--ls-label); text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-bottom: var(--space-sm);
}
.hero-slim .breadcrumb a { color: rgba(255,255,255,0.6); transition: color var(--transition-fast); }
.hero-slim .breadcrumb a:hover { color: var(--color-accent-gold); }
.hero-slim .breadcrumb .sep { color: var(--color-accent-gold); }
.hero-slim h1 {
  font-family: var(--font-heading); font-size: var(--fs-h1);
  font-weight: var(--fw-medium); line-height: 1.15; margin-bottom: var(--space-xs);
}
.hero-slim .hero-subtitle {
  font-size: 1.0625rem; color: rgba(255,255,255,0.75); font-weight: var(--fw-light);
}

/* ---- Intro Section (subpages) ---- */
.intro-section { max-width: 800px; margin: 0 auto; text-align: center; }
.intro-section h2 {
  font-family: var(--font-heading); font-size: var(--fs-h2);
  font-weight: var(--fw-medium); margin-bottom: var(--space-sm);
}
.intro-section p {
  color: var(--color-text-secondary); font-size: 1.0625rem; line-height: var(--lh-body);
  margin-bottom: var(--space-md);
}

/* ---- USP Grid (subpages) ---- */
.usp-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md);
}
.usp-item { text-align: center; padding: var(--space-md); }
.usp-icon {
  width: 56px; height: 56px; margin: 0 auto var(--space-sm);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--color-border); border-radius: 50%;
  color: var(--color-accent-gold);
}
.usp-icon svg { width: 24px; height: 24px; }
.usp-item h4 {
  font-family: var(--font-heading); font-size: var(--fs-h4);
  font-weight: var(--fw-semibold); margin-bottom: var(--space-2xs);
}
.usp-item p { font-size: var(--fs-small); color: var(--color-text-muted); }

/* ---- City Facts Grid (location pages) ---- */
.city-facts-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-md);
}
.city-fact {
  padding: var(--space-lg); background: var(--color-white);
  border: 1px solid var(--color-border); border-radius: var(--radius-md);
  transition: all var(--transition-base);
}
.city-fact:hover { border-color: var(--color-accent-gold); box-shadow: var(--shadow-md); }
.city-fact .city-fact-label {
  font-size: var(--fs-label); font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-label); text-transform: uppercase;
  color: var(--color-accent-gold); margin-bottom: var(--space-xs); display: block;
}
.city-fact h3 {
  font-family: var(--font-heading); font-size: var(--fs-h3);
  font-weight: var(--fw-semibold); color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
}
.city-fact p {
  font-size: var(--fs-small); color: var(--color-text-secondary); line-height: var(--lh-body);
}

/* ---- FAQ (subpages) ---- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: var(--space-md) 0; background: none; border: none;
  font-family: var(--font-heading); font-size: var(--fs-h4);
  font-weight: var(--fw-semibold); color: var(--color-text-primary);
  text-align: left; cursor: pointer; transition: color var(--transition-fast);
}
.faq-question:hover { color: var(--color-accent-gold); }
.faq-question .faq-icon {
  width: 20px; height: 20px; flex-shrink: 0; margin-left: var(--space-sm);
  transition: transform var(--transition-fast); color: var(--color-accent-gold);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: var(--space-md); }
.faq-answer p {
  font-size: var(--fs-small); color: var(--color-text-secondary); line-height: var(--lh-body);
}

/* ---- Blog Grid ---- */
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md);
}
.blog-card {
  background: var(--color-white); border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden; transition: all var(--transition-base); display: flex;
  flex-direction: column;
}
.blog-card:hover { border-color: var(--color-accent-gold); box-shadow: var(--shadow-md); }
.blog-card-image { height: 220px; overflow: hidden; background: var(--color-offwhite); }
.blog-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-body { padding: var(--space-lg); display: flex; flex-direction: column; flex-grow: 1; }
.blog-card .blog-meta {
  font-size: var(--fs-label); letter-spacing: var(--ls-label); text-transform: uppercase;
  color: var(--color-accent-gold); margin-bottom: var(--space-xs);
}
.blog-card h3 {
  font-family: var(--font-heading); font-size: var(--fs-h3);
  font-weight: var(--fw-semibold); color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
}
.blog-card p {
  font-size: var(--fs-small); color: var(--color-text-secondary);
  line-height: var(--lh-body); flex-grow: 1; margin-bottom: var(--space-sm);
}

/* ---- Article Content (blog posts) ---- */
.article-content { max-width: 740px; margin: 0 auto; }
.article-meta {
  display: flex; align-items: center; justify-content: center; gap: var(--space-xs);
  font-size: var(--fs-label); letter-spacing: var(--ls-label); text-transform: uppercase;
  color: var(--color-text-muted); margin-bottom: var(--space-md); text-align: center;
}
.article-content .lead {
  font-size: 1.25rem; color: var(--color-text-primary); font-weight: var(--fw-light);
  line-height: var(--lh-body); margin-bottom: var(--space-lg);
}
.article-content h2 {
  font-family: var(--font-heading); font-size: var(--fs-h2);
  font-weight: var(--fw-medium); color: var(--color-text-primary);
  margin-top: var(--space-xl); margin-bottom: var(--space-sm);
}
.article-content h2:first-of-type { margin-top: 0; }
.article-content h3 {
  font-family: var(--font-heading); font-size: var(--fs-h3);
  font-weight: var(--fw-semibold); color: var(--color-text-primary);
  margin-top: var(--space-lg); margin-bottom: var(--space-xs);
}
.article-content p {
  font-size: 1.0625rem; color: var(--color-text-secondary);
  line-height: var(--lh-body); margin-bottom: var(--space-md);
}
.article-content ul, .article-content ol {
  margin: 0 0 var(--space-md) 0; padding-left: 1.3rem;
}
.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }
.article-content li {
  font-size: 1.0625rem; color: var(--color-text-secondary);
  line-height: var(--lh-body); margin-bottom: 0.5rem;
}
.article-content a {
  color: var(--color-accent-gold); text-decoration: underline;
  text-decoration-color: rgba(197, 164, 126, 0.4);
}
.article-content a:hover { text-decoration-color: currentColor; }
.article-image { margin: var(--space-lg) 0; }
.article-image img { width: 100%; height: auto; display: block; border: 1px solid var(--color-border); border-radius: var(--radius-md); }
.article-image figcaption {
  font-size: var(--fs-label); color: var(--color-text-muted);
  text-align: center; margin-top: var(--space-xs);
}

.article-cta-box {
  background: var(--color-offwhite); border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-accent-gold); border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin: var(--space-lg) 0;
}
.article-cta-box .cta-box-label {
  font-size: var(--fs-label); font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-label); text-transform: uppercase;
  color: var(--color-accent-gold); margin-bottom: var(--space-xs); display: block;
}
.article-cta-box h4 {
  font-family: var(--font-heading); font-size: var(--fs-h4);
  font-weight: var(--fw-semibold); color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
}
.article-cta-box p {
  font-size: var(--fs-small); color: var(--color-text-secondary);
  line-height: var(--lh-body); margin-bottom: var(--space-sm);
}

.article-footer-nav {
  display: flex; justify-content: space-between; align-items: center;
  max-width: 740px; margin: var(--space-xl) auto 0; padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}
.article-footer-nav a {
  font-size: var(--fs-small); font-weight: var(--fw-medium);
  color: var(--color-text-primary); text-decoration: none;
}
.article-footer-nav a:hover { color: var(--color-accent-gold); }

@media (max-width: 1024px) {
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .city-facts-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .hero-slim { height: 72vh; min-height: 500px; }
  .hero-slim.hero-slim-lg { height: 80vh; min-height: 540px; }
  .usp-grid { grid-template-columns: 1fr; }
}

/* ---- Impressionen / Galerie (auto-scroll marquee) ---- */
.gallery-section { overflow: hidden; }
.gallery-marquee {
  margin-top: var(--space-lg);
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
}
.gallery-track {
  display: flex;
  gap: var(--space-sm);
  width: max-content;
  animation: gallery-scroll 55s linear infinite;
}
.gallery-marquee:hover .gallery-track { animation-play-state: paused; }
.gallery-track img {
  height: 340px;
  width: auto;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
  flex-shrink: 0;
  user-select: none;
  -webkit-user-drag: none;
}
@keyframes gallery-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 767px) {
  .gallery-track img { height: 220px; }
  .gallery-track { animation-duration: 38s; }
}
@media (prefers-reduced-motion: reduce) {
  .gallery-track { animation: none; }
  .gallery-marquee { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* ---- Language Switcher ---- */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-left: var(--space-sm);
}
.lang-opt {
  display: inline-flex;
  width: 26px;
  height: 18px;
  border-radius: 3px;
  overflow: hidden;
  opacity: 0.4;
  transition: opacity var(--transition-fast), box-shadow var(--transition-fast);
}
.lang-opt:hover { opacity: 0.8; }
.lang-opt.active { opacity: 1; box-shadow: 0 0 0 2px var(--color-accent-gold); }
.lang-opt .flag { width: 100%; height: 100%; display: block; object-fit: cover; }

/* ---- Floating WhatsApp button ---- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.22);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.wa-float:hover { transform: scale(1.06); box-shadow: 0 8px 22px rgba(0,0,0,0.28); }
.wa-float svg { width: 32px; height: 32px; fill: #fff; }
@media (max-width: 767px) {
  .wa-float { width: 52px; height: 52px; right: 16px; bottom: 16px; }
  .wa-float svg { width: 29px; height: 29px; }
}
