/* ======================================
   BH Event – Hauptstylesheet
   Farben: Akzent #d60d47 | Dunkel #282e34 | Schrift #736f6f
   Schriften: Montserrat (Überschriften), Source Sans Pro (Fließtext)
====================================== */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans Pro', 'Cabin', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #736f6f;
  background: #fff;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: #282e34;
  line-height: 1.25;
}

a { color: #d60d47; text-decoration: none; transition: color .2s; }
a:hover { color: #ff1357; }

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, color .2s, transform .15s;
  border: none;
}

.btn-primary {
  background: #d60d47;
  color: #fff;
}
.btn-primary:hover {
  background: #ff1357;
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-outline:hover {
  background: #fff;
  color: #d60d47;
  transform: translateY(-2px);
}

/* ---- Header / Navigation ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(6px);
  padding: 12px 0;
  transition: background .3s;
}

.site-header.scrolled {
  background: rgba(40, 46, 52, 0.98);
  box-shadow: 0 2px 12px rgba(0,0,0,.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo img {
  height: 52px;
  width: auto;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
  align-items: center;
}

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color .2s, color .2s;
}
.main-nav a:hover,
.main-nav a.active {
  color: #d60d47;
  border-bottom-color: #d60d47;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.hero.loaded .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 31, 51, 0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 20px 80px;
  text-align: center;
  color: #fff;
}

.hero-content .pre-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d60d47;
  margin-bottom: 16px;
}

.hero-content h1 {
  font-size: clamp(36px, 6vw, 72px);
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}

.hero-content p {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,.9);
  max-width: 700px;
  margin: 0 auto 36px;
}

.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- Scroll-Indikator ---- */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  opacity: 0;
  animation: si-appear 1s ease 1.6s forwards;
}

@keyframes si-appear {
  to { opacity: 1; }
}

.scroll-mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,.6);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  animation: scroll-bounce 1.8s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%   { transform: translateY(0);   opacity: 1; }
  60%  { transform: translateY(12px); opacity: 0; }
  61%  { transform: translateY(0);   opacity: 0; }
  100% { transform: translateY(0);   opacity: 1; }
}

.scroll-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

/* Indikator ausblenden sobald gescrollt */
.scroll-indicator.hidden {
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}

/* Sub-hero (innere Seiten) */
.sub-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 0;
}

.sub-hero .hero-content {
  padding-top: 160px;
  padding-bottom: 60px;
}

/* ---- Section Basics ---- */
section { padding: 80px 0; }

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  color: #282e34;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: #736f6f;
  max-width: 680px;
  margin-bottom: 48px;
}

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

/* ---- Product Section (Homepage) ---- */
.product-section {
  background: #fff;
  padding: 90px 0;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.product-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
}

.product-text .section-title { margin-bottom: 20px; }

.product-text p {
  font-size: 17px;
  line-height: 1.8;
  color: #736f6f;
  margin-bottom: 20px;
}

/* ---- Testimonials ---- */
.testimonials {
  background: #f5f5f5;
  padding: 90px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.testimonial-card {
  background: #fff;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  border-left: 4px solid #d60d47;
  transition: transform .2s, box-shadow .2s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}

.testimonial-card p {
  font-style: italic;
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.75;
}

.testimonial-author {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #d60d47;
  letter-spacing: .5px;
}

/* ---- CTA Band ---- */
.cta-band {
  background: #d60d47;
  padding: 70px 0;
  text-align: center;
  color: #fff;
}

.cta-band h2 {
  font-size: clamp(24px, 3.5vw, 38px);
  color: #fff;
  margin-bottom: 12px;
}

.cta-band p {
  font-size: 18px;
  color: rgba(255,255,255,.9);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band .btn-outline {
  font-size: 15px;
}

/* ---- Gallery / Galerie Page ---- */
.galerie-intro {
  padding: 90px 0;
  background: #fff;
}

.galerie-intro .intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.galerie-intro .intro-text p {
  font-size: 17px;
  line-height: 1.8;
  color: #736f6f;
  margin-bottom: 16px;
}

.galerie-intro .tagline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #d60d47;
  margin-top: 24px;
}

/* Service list */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.service-tag {
  background: #f5f5f5;
  color: #463939;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  border: 1px solid #ddd;
  transition: background .2s, border-color .2s;
}
.service-tag:hover {
  background: #d60d47;
  color: #fff;
  border-color: #d60d47;
}

/* Service pillars */
.service-pillars {
  background: #282e34;
  padding: 90px 0;
  color: #fff;
}

.service-pillars .section-title { color: #fff; }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.pillar-card {
  background: rgba(255,255,255,.06);
  border-radius: 8px;
  padding: 36px 28px;
  border-top: 3px solid #d60d47;
  transition: background .2s, transform .2s;
}
.pillar-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-4px);
}

.pillar-card h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 14px;
}

.pillar-card p {
  font-size: 15px;
  color: rgba(255,255,255,.7);
  line-height: 1.75;
}

/* Gallery Images */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform .3s, box-shadow .3s;
  cursor: pointer;
}
.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 36px rgba(0,0,0,.2);
}

/* DJ/Audio Section */
.dj-section {
  background: #fff;
  padding: 90px 0;
}

.dj-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.dj-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.dj-images img {
  border-radius: 6px;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* ---- Contact Page ---- */
.contact-section {
  padding: 90px 0;
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 70px;
  align-items: start;
}

.contact-info h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 17px;
  color: #736f6f;
  line-height: 1.8;
  margin-bottom: 30px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 16px;
  color: #463939;
}

.contact-detail i {
  width: 42px;
  height: 42px;
  background: #d60d47;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.contact-detail a { color: #463939; }
.contact-detail a:hover { color: #d60d47; }

/* Contact Form */
.contact-form {
  background: #f9f9f9;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .5px;
  color: #463939;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid #e8e8e8;
  border-radius: 6px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px;
  color: #282e34;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #d60d47;
  box-shadow: 0 0 0 3px rgba(214,13,71,.1);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  font-size: 13px;
  color: #999;
  margin-bottom: 10px;
}

.form-privacy {
  font-size: 12px;
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 20px;
}
.form-privacy a { color: #aaa; text-decoration: underline; }
.form-privacy a:hover { color: #d60d47; }

.form-submit .btn { width: 100%; text-align: center; padding: 16px; font-size: 15px; }

.form-message {
  display: none;
  padding: 14px 18px;
  border-radius: 6px;
  margin-top: 16px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
}
.form-message.success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}
.form-message.error {
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

/* ---- City Pages ---- */
.city-columns {
  background: #d60d47;
  padding: 70px 0;
}

.city-columns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
  color: #fff;
}

.city-col h3 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 10px;
}

.city-col p {
  font-size: 16px;
  color: rgba(255,255,255,.85);
}

.city-event-section {
  padding: 90px 0;
  background: #fff;
}

.city-event-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.city-event-grid img {
  border-radius: 8px;
  width: 100%;
  height: 350px;
  object-fit: cover;
  box-shadow: 0 16px 48px rgba(0,0,0,.15);
}

.city-event-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.city-event-text p {
  font-size: 17px;
  color: #736f6f;
  line-height: 1.8;
  margin-bottom: 28px;
}

/* City inline form */
.city-form-section {
  background: #f5f5f5;
  padding: 80px 0;
}

.city-form-section .section-title { text-align: center; margin-bottom: 40px; }

.city-form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}

/* ---- Impressum / Datenschutz ---- */
.legal-section {
  padding: 100px 0 80px;
}

.legal-section h1 {
  font-size: 36px;
  margin-bottom: 32px;
  color: #282e34;
}

.legal-section h2 {
  font-size: 22px;
  margin-top: 36px;
  margin-bottom: 12px;
  color: #282e34;
}

.legal-section p, .legal-section li {
  font-size: 16px;
  color: #736f6f;
  line-height: 1.8;
  margin-bottom: 10px;
}

.legal-section ul { padding-left: 24px; margin-bottom: 10px; }

/* ---- Footer ---- */
.site-footer {
  background: #1a1e22;
  color: rgba(255,255,255,.65);
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand img { height: 48px; margin-bottom: 16px; }

.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,.5);
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer-col ul a:hover { color: #d60d47; }

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.3);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .product-grid,
  .galerie-intro .intro-grid,
  .dj-grid,
  .contact-grid,
  .city-event-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr 1fr; }

  .city-columns-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 768px) {
  .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(40, 46, 52, 0.98); padding: 20px; flex-direction: column; }
  .main-nav.open { display: flex; }
  .main-nav ul { flex-direction: column; gap: 20px; }
  .nav-toggle { display: flex; }
  .footer-inner { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .city-form-wrap { padding: 24px; }
}

@media (max-width: 480px) {
  section { padding: 56px 0; }
  .hero-content { padding: 100px 16px 60px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .dj-images { grid-template-columns: 1fr; }
}

/* ======================================
   Lightbox
====================================== */
.lb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: lb-fade-in .2s ease;
}
.lb-overlay.active { display: flex; }

@keyframes lb-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lb-inner {
  position: relative;
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lb-img-wrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-img {
  max-height: 80vh;
  max-width: 100%;
  border-radius: 6px;
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
  animation: lb-zoom-in .25s ease;
  object-fit: contain;
}

@keyframes lb-zoom-in {
  from { transform: scale(.93); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

/* Prev / Next */
.lb-prev,
.lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.12);
  border: none;
  color: #fff;
  font-size: 22px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
  z-index: 2;
}
.lb-prev { left: -64px; }
.lb-next { right: -64px; }
.lb-prev:hover,
.lb-next:hover {
  background: #d60d47;
  transform: translateY(-50%) scale(1.08);
}

/* Close */
.lb-close {
  position: absolute;
  top: -52px;
  right: 0;
  background: none;
  border: none;
  color: rgba(255,255,255,.6);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  transition: color .2s, transform .2s;
  padding: 4px 8px;
}
.lb-close:hover { color: #fff; transform: rotate(90deg); }

/* Caption */
.lb-caption {
  margin-top: 16px;
  color: rgba(255,255,255,.5);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
}

/* Counter */
.lb-counter {
  position: absolute;
  bottom: -38px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.35);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  white-space: nowrap;
}

/* Gallery items get pointer + zoom icon on hover */
.gallery-grid img {
  cursor: zoom-in;
}

/* Make gallery items show a subtle overlay with icon on hover */
.lb-thumb-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}
.lb-thumb-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .35s ease;
  border-radius: 6px;
}
.lb-thumb-wrap::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  background: rgba(214,13,71,.0);
  transition: background .3s;
  pointer-events: none;
}
.lb-thumb-wrap:hover img { transform: scale(1.06); }
.lb-thumb-wrap:hover::after { background: rgba(214,13,71,.55); }

@media (max-width: 768px) {
  .lb-prev { left: 4px; }
  .lb-next { right: 4px; }
  .lb-close { top: -44px; }
}

/* ======================================
   Seiten-Einlauf-Animationen
   Elemente starten unsichtbar und gleiten beim
   Scrollen ins Bild (IntersectionObserver in JS).
====================================== */

/* Seitenstart: Body blendet sanft ein */
body {
  animation: page-enter .45s ease both;
}
@keyframes page-enter {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Basis-Klassen für alle animierten Elemente */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.reveal--left  { transform: translateX(-40px); }
.reveal.reveal--right { transform: translateX( 40px); }
.reveal.reveal--scale { transform: scale(.94); }

/* Sobald sichtbar */
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Verzögerungen für gestaffelte Kindelemente */
.reveal-group > *          { opacity: 0; transform: translateY(24px);
                              transition: opacity .55s ease, transform .55s ease; }
.reveal-group.is-visible > * { opacity: 1; transform: none; }
.reveal-group > *:nth-child(1) { transition-delay: .05s; }
.reveal-group > *:nth-child(2) { transition-delay: .15s; }
.reveal-group > *:nth-child(3) { transition-delay: .25s; }
.reveal-group > *:nth-child(4) { transition-delay: .35s; }
.reveal-group > *:nth-child(5) { transition-delay: .45s; }

/* Hero-Inhalt beim ersten Laden einblenden */
.hero-content > * {
  animation: hero-child-enter .7s ease both;
}
.hero-content > *:nth-child(1) { animation-delay: .1s; }
.hero-content > *:nth-child(2) { animation-delay: .25s; }
.hero-content > *:nth-child(3) { animation-delay: .4s; }
.hero-content > *:nth-child(4) { animation-delay: .55s; }

@keyframes hero-child-enter {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

/* Reduced-motion: alle Animationen deaktivieren */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal, .reveal-group > * { opacity: 1; transform: none; }
}
