/* Premium Dark – Home & globale Bildführung */

.nav-theme-li {
  display: none !important;
}

/* Unterseiten – helle Page-Hero-Bänder */
.page-hero .section-head,
.page-hero-band {
  background: var(--surface-band-dark);
  border-bottom: 1px solid var(--border);
}

.page-hero .section-head h1,
.page-hero-band h1 {
  color: var(--heading);
}

.band-dark::after,
.premium-band::after,
.marquee::before,
.marquee::after {
  opacity: 0.35;
}

.scroll-progress {
  box-shadow: 0 0 8px rgba(255, 234, 0, 0.35);
}

/* Hero */
.hero--light .hero-img {
  filter: brightness(1.04) contrast(1.02) saturate(1.06);
  animation: none;
  transform: scale(1.02);
}

.hero--light .hero-cinematic {
  display: none !important;
}

.hero--light {
  min-height: min(92svh, 880px);
  padding-bottom: clamp(3rem, 8vw, 5rem);
}

.hero--light .hero-inner {
  max-width: 720px;
}

.hero--light .hero-cta {
  gap: 1rem;
}

.hero--light .btn-ghost,
.hero--light .hero-cta .btn-ghost {
  color: #151515;
  border-color: rgba(0, 0, 0, 0.22);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.hero--light .btn-ghost:hover,
.hero--light .hero-cta .btn-ghost:hover {
  color: #0a0a0a;
  background: var(--hover-ghost-bg, #f3f2ec);
  border-color: var(--hover-ghost-border, rgba(0, 0, 0, 0.24));
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

/* Helles Hero: Lesbarkeit auch bei aktiviertem Dark Mode (Nav/Footer) */
[data-theme="dark"] .hero--light .hero-benefits--light li {
  color: #151515;
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(0, 0, 0, 0.14);
  text-shadow: none;
}

[data-theme="dark"] .hero--light .btn-ghost,
[data-theme="dark"] .hero--light .hero-cta .btn-ghost {
  color: #151515;
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(0, 0, 0, 0.22);
}

[data-theme="dark"] .hero--light .btn-ghost:hover,
[data-theme="dark"] .hero--light .hero-cta .btn-ghost:hover {
  color: #0a0a0a;
  background: var(--hover-ghost-bg, #f3f2ec);
  border-color: var(--hover-ghost-border, rgba(0, 0, 0, 0.24));
}

/* Dunkler Hero (cinematic) – Ghost mit hellem Text, Hover nicht auf Weiß */
.hero:not(.hero--light) .btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.hero:not(.hero--light) .btn-ghost:hover,
.hero:not(.hero--light) .hero-cta .btn-ghost:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.65);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.hero--light .btn-primary:hover {
  color: #0a0a0a;
  background: var(--yellow-btn-hover, #e8d44a);
  border-color: var(--yellow-btn-border, #c4b028);
}

/* Hero – kompakte Nutzen-Hinweise (inspiriert, eigenständig umgesetzt) */
.hero--light .hero-benefits--light {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}

.hero--light .hero-benefits--light li {
  font-size: clamp(0.75rem, 1.4vw, 0.85rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #151515;
  padding: 0.55rem 1rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  text-shadow: none;
}

.hero--light .hero-benefits--light li::before {
  display: none;
}

/* Nutzen-Grid (4 Säulen) */
.lux-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.lux-benefit {
  position: relative;
  overflow: hidden;
  padding: 1.35rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    border-color 0.35s var(--ease);
}

/* Gelber Akzent beim Einblenden (Reveal) und Hover */
.lux-benefit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--yellow) 18%, var(--yellow) 82%, transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
  pointer-events: none;
}

.lux-benefit::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 234, 0, 0.07) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 0.65s ease;
  pointer-events: none;
}

.lux-benefit.reveal.visible::before,
.lux-benefit:hover::before {
  transform: scaleX(1);
}

.lux-benefit.reveal.visible::after,
.lux-benefit:hover::after {
  transform: translateX(120%);
}

.lux-benefit.reveal.visible,
.lux-benefit:hover {
  transform: translateY(-4px);
  border-color: var(--border-yellow);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 234, 0, 0.14);
}

.lux-benefit-grid .lux-benefit.reveal:nth-child(1) { animation-delay: 0.05s; }
.lux-benefit-grid .lux-benefit.reveal:nth-child(2) { animation-delay: 0.12s; }
.lux-benefit-grid .lux-benefit.reveal:nth-child(3) { animation-delay: 0.19s; }
.lux-benefit-grid .lux-benefit.reveal:nth-child(4) { animation-delay: 0.26s; }

[data-theme="dark"] .lux-benefit.reveal.visible,
[data-theme="dark"] .lux-benefit:hover {
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.45),
    0 0 28px rgba(255, 234, 0, 0.1);
}

.lux-benefit h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 0.5rem;
}

.lux-benefit p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

/* Ablauf-Teaser Startseite */
.lux-ablauf-teaser {
  overflow-x: clip;
}

.lux-ablauf-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  list-style: none;
  width: min(1140px, 92vw);
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  padding-inline-start: 0;
  -webkit-padding-start: 0;
  counter-reset: none;
  box-sizing: border-box;
}

.lux-ablauf-step {
  padding: 1.25rem 1.15rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: left;
  min-width: 0;
}

.lux-ablauf-nr {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  font-weight: 800;
  color: #0a0a0a;
  background: var(--yellow);
  border-radius: 50%;
}

.lux-ablauf-step h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 0.45rem;
}

.lux-ablauf-step p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

/* Vertrauen / Studio */
.lux-trust-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: start;
}

.lux-trust-copy .section-intro,
.lux-trust-copy > p:not(.eyebrow) {
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0.75rem 0 1.5rem;
}

.lux-trust-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.lux-trust-list {
  list-style: none;
  margin: 0;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lux-trust-list li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.lux-trust-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.lux-trust-list strong {
  color: var(--heading);
  font-weight: 600;
}

/* Leistungen – Spezialfahrzeuge */
.services-extra {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding-top: clamp(2rem, 5vw, 3rem);
  border-top: 1px solid var(--border);
}

.services-extra-title {
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  font-weight: 800;
  color: var(--heading);
  margin: 0.35rem 0 0.5rem;
}

.services-extra-intro {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

#leistungen .geschichte-partners-head .section-intro,
#pakete .geschichte-partners-head .section-intro,
#ablauf .geschichte-partners-head .section-intro,
body.page-warum .geschichte-partners-head .section-intro,
body.page-galerie .section-head .section-intro,
#gallery-albums-mount .section-head .section-intro {
  max-width: none;
}

.services-extra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* Pakete – Preishinweis & Zuschläge (einheitliche Karten) */
.price-hint,
.price-surcharge-card {
  padding: 1.35rem 1.35rem;
  background: linear-gradient(155deg, rgba(22, 22, 24, 0.98) 0%, rgba(12, 12, 14, 1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.32);
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.price-hint {
  max-width: none;
  margin-bottom: 1.5rem;
}

.price-hint-title {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--heading);
  margin: 0.25rem 0 0.75rem;
}

.price-hint p:last-child {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.9rem;
}

.price-surcharges {
  margin-bottom: 2.5rem;
}

body.page-pakete .packages-grid {
  margin-bottom: 2.5rem;
}

.price-surcharges-title {
  font-size: clamp(1.2rem, 3.5vw, 1.5rem);
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 0.5rem;
}

.price-surcharges-intro {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.price-surcharge-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
  align-items: stretch;
}

.price-surcharge-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.price-surcharge-card:hover {
  border-color: rgba(255, 234, 0, 0.22);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 234, 0, 0.08);
  transform: translateY(-2px);
}

.price-surcharge-card h3 {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--heading);
  margin-bottom: 0.75rem;
}

.price-surcharge-card ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-muted);
  flex: 1;
}

.price-surcharge-card li {
  margin-bottom: 0.4rem;
}

.price-surcharge-card li:last-child {
  margin-bottom: 0;
}

.price-surcharge-card strong {
  color: var(--text);
  font-weight: 600;
}

.price-surcharges-note {
  margin-top: 1.25rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.price-surcharges-note a {
  color: var(--yellow);
}

.pkg-price-note {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: -0.35rem 0 1rem;
}

/* Light sections */
.lux-section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.lux-section-head {
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.lux-section-head .section-intro {
  margin-top: 0.75rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.lux-difference-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.lux-stat {
  position: relative;
  padding: 1.5rem 1.25rem;
  background: linear-gradient(155deg, rgba(22, 22, 24, 0.98) 0%, rgba(12, 12, 14, 1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.32);
  text-align: center;
  cursor: default;
  overflow: hidden;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease;
}

.lux-stat::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  transform: translateX(-50%);
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.lux-stat:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 234, 0, 0.22);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 234, 0, 0.08);
}

.lux-stat:hover::after {
  width: 72%;
}

.lux-stat-value {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--heading);
  letter-spacing: -0.02em;
  transition:
    color 0.35s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.lux-stat:hover .lux-stat-value {
  color: var(--heading);
  transform: scale(1.04);
}

.lux-stat-label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.35s ease;
}

.lux-stat:hover .lux-stat-label {
  color: var(--text);
}

.lux-werkstatt-gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1rem;
  width: min(1140px, 92vw);
  margin-inline: auto;
}

.lux-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.lux-photo img {
  width: 100%;
  height: 100%;
  min-height: clamp(220px, 28vw, 360px);
  object-fit: cover;
  display: block;
  transition: transform 5s var(--ease, ease);
}

.lux-photo--wide img {
  min-height: clamp(280px, 36vw, 480px);
}

.lux-photo:hover img {
  transform: scale(1.03);
}

.lux-split {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) 1.35fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.lux-split-copy .section-intro {
  margin: 1rem 0 1.75rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.lux-keramik-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.85rem;
}

.lux-keramik-stack .lux-photo--tall {
  grid-row: 1 / 3;
  grid-column: 1;
}

.lux-keramik-stack .lux-photo--tall img {
  min-height: clamp(360px, 42vw, 520px);
}

.lux-handarbeit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  width: min(1140px, 92vw);
  margin-inline: auto;
}

.lux-handarbeit-grid .lux-photo--span-2 {
  grid-column: span 2;
}

.lux-handarbeit-grid .lux-photo img {
  min-height: clamp(200px, 22vw, 280px);
}

.lux-section-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  text-align: center;
  margin-top: 2rem;
}

.lux-gallery-teaser {
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.lux-gallery-teaser .container {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) 1.4fr;
  gap: 2rem;
  align-items: center;
}

.lux-gallery-teaser-copy p:not(.eyebrow) {
  margin: 0.75rem 0 1.5rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.lux-gallery-teaser-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.lux-gallery-teaser-strip a {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.lux-gallery-teaser-strip img {
  width: 100%;
  min-height: clamp(160px, 18vw, 240px);
  object-fit: cover;
  transition: transform 4s ease;
}

.lux-gallery-teaser-strip a:hover img {
  transform: scale(1.04);
}

/* Dark CTA band (gezielt) */
.cta-band--dark {
  background: var(--surface-cta-band);
  border-block: 1px solid rgba(255, 234, 0, 0.2);
}

.cta-band--dark h2,
.cta-band--dark p {
  color: rgba(255, 255, 255, 0.92);
}

/* CTA-Band dunkel: Ghost mit hellem Text */
.cta-band--dark .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.cta-band--dark .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

/* Footer (dunkel) – hoher Kontrast, keine hellen Grautöne auf Schwarz */
.footer-premium {
  padding: 0;
  background: linear-gradient(180deg, #0c0c0c 0%, #050505 100%);
  border-top: 1px solid rgba(255, 234, 0, 0.22);
  color: #f2f2f2;
}

.footer-premium p,
.footer-premium address {
  color: #e6e6e6;
}

.footer-premium-top {
  padding: clamp(2.5rem, 5vw, 3.75rem) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
  padding-bottom: clamp(2rem, 4vw, 2.5rem);
}

.footer-brand-col .footer-logo {
  height: 44px;
  margin-bottom: 1rem;
}

.footer-brand-text,
.footer-col p,
.footer-col address {
  font-size: 0.86rem;
  line-height: 1.75;
  color: #e8e8e8;
}

.footer-cta-col > p {
  color: #f0f0f0;
  max-width: 22rem;
}

.footer-hours {
  margin-top: 1rem;
}

.footer-map-link {
  margin-top: 0.75rem;
}

.footer-col-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0 0 0.85rem;
}

.footer-col a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.footer-col a:hover {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}

.footer-social-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
}

.footer-map-wrap {
  padding-bottom: clamp(2rem, 4vw, 2.5rem);
}

.footer-map {
  width: 100%;
  height: clamp(200px, 28vw, 280px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  filter: grayscale(0.15) contrast(1.02);
}

.footer-premium-bottom {
  padding: 1.35rem 0 calc(1.35rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.footer-premium .footer-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.68rem;
}

.footer-premium .btn-primary {
  color: #0a0a0a;
  background: var(--yellow-btn, #dcc832);
  border-color: var(--yellow-btn-border, #c4b028);
  font-weight: 800;
  box-shadow: 0 1px 8px var(--yellow-glow, rgba(180, 155, 0, 0.12));
}

.footer-premium .btn-primary:hover {
  color: #0a0a0a;
  background: var(--yellow-btn-hover, #e8d44a);
  border-color: var(--yellow-btn-border, #c4b028);
}

.footer-premium .footer-nav a:hover {
  color: var(--yellow);
}

/* Cinematic entschärfen (Light default) */
.hero-cinematic,
.hero-cinematic__streak,
.hero-cinematic__particles,
.hero-cinematic__ambient,
.cinematic-band-shine {
  display: none !important;
}

.hero-img {
  filter: brightness(1.05) contrast(1.02) saturate(1.05);
}

.hero-cinematic__vignette {
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.08);
}

.salon-media-glow {
  display: none;
}

.cinematic-band-overlay {
  opacity: 0.35;
}

@media (max-width: 900px) {
  .lux-difference-grid,
  .lux-benefit-grid,
  .lux-ablauf-steps,
  .services-extra-grid,
  .price-surcharge-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lux-trust-inner {
    grid-template-columns: 1fr;
  }

  .lux-werkstatt-gallery {
    grid-template-columns: 1fr;
  }

  .lux-split,
  .lux-gallery-teaser .container {
    grid-template-columns: 1fr;
  }

  .lux-keramik-stack {
    grid-template-columns: 1fr;
  }

  .lux-keramik-stack .lux-photo--tall {
    grid-row: auto;
    grid-column: auto;
  }

  .lux-handarbeit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lux-handarbeit-grid .lux-photo--span-2 {
    grid-column: span 2;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand-col,
  .footer-cta-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .lux-difference-grid,
  .lux-benefit-grid,
  .lux-ablauf-steps,
  .services-extra-grid,
  .price-surcharge-grid,
  .lux-handarbeit-grid,
  .lux-gallery-teaser-strip {
    grid-template-columns: 1fr;
  }

  .hero--light .hero-benefits--light li {
    width: 100%;
  }

  .lux-trust-actions {
    flex-direction: column;
  }

  .lux-trust-actions .btn {
    width: 100%;
    text-align: center;
  }

  .lux-handarbeit-grid .lux-photo--span-2 {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lux-photo:hover img,
  .lux-gallery-teaser-strip a:hover img {
    transform: none;
  }

  .lux-stat,
  .lux-stat-value {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .lux-stat:hover {
    transform: none;
  }

  .lux-stat:hover .lux-stat-value {
    transform: none;
  }

  .lux-stat::after {
    transition: none;
  }

  .lux-stat:hover::after {
    width: 72%;
  }
}
