.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
header .logo,
.footer-logo {
  letter-spacing: 0.08em;
}

.scroll-indicator strong {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
}
.hero-copy h1,
.section h2 {
  letter-spacing: -0.04em;
}

.service-card,
.team-card,
.location-card,
.testimonial-card,
.contact-card {
  min-height: 260px;
}

.contact-form .button {
  width: 100%;
}

/* ── Galerie Karussell ── */
.gallery-section {
  padding: var(--section-padding) 0;
  background: var(--bg);
}

.gallery-main {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.gallery-main-image {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: var(--surface2);
}

.gallery-main-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 16px;
  transition: opacity 0.4s ease;
  display: block;
}

.gallery-main-image img.fade {
  opacity: 0;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #ffffff;
  font-size: 0.95rem;
  border-radius: 0 0 16px 16px;
}

.gallery-arrow {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.gallery-arrow:hover {
  background: var(--accent);
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.thumb {
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.2s ease, transform 0.2s ease;
  aspect-ratio: 1;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.thumb:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 225, 0, 0.5);
}

.thumb.active {
  border-color: var(--accent);
}

.gallery-counter {
  text-align: center;
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.gallery-counter #currentSlide {
  color: var(--accent-dark);
  font-weight: 700;
}

@media (max-width: 768px) {
  .gallery-main-image img {
    height: 260px;
  }
  .gallery-thumbs {
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
  }
  .gallery-arrow {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }
}

@media (max-width: 480px) {
  .gallery-thumbs {
    grid-template-columns: repeat(5, 1fr);
  }
}
