/*
Theme Name: Bähr Abbrucharbeiten Child Theme
Theme URI: https://abbruch-baehr.de
Description: WordPress Child Theme für Christian Bähr Abbrucharbeiten basierend auf Twenty Twenty-Five
Author: Molti AI
Author URI: https://proto-faktur.de
Template: twentytwentyfive
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: baehr-abbruch
Domain Path: /languages
*/

/* ================================================================
/* ================================================================
   WOW-UPGRADE CSS — Christian Bähr Abbrucharbeiten
   ================================================================ */

/* ── Variablen ── */
:root {
  --gold:      #3DA888;
  --gold-dk:   #2A8066;
  --dark:      #1a2942;
  --dark-2:    #1a2942;
  --text:      #2d2d2d;
  --text-light:#666;
  --white:     #fff;
  --radius:    8px;
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.2);
}

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.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-attachment: fixed;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1.08); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 15, 30, 0.82) 0%,
    rgba(15, 25, 40, 0.65) 50%,
    rgba(10, 15, 30, 0.75) 100%
  );
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFly var(--dur, 6s) var(--delay, 0s) infinite ease-in;
}
@keyframes particleFly {
  0%   { opacity: 0; transform: translateY(0) scale(0); }
  10%  { opacity: 0.8; transform: translateY(-20px) scale(1); }
  90%  { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(-200px) scale(0.5); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-badge {
  display: inline-block;
  background: rgba(232, 160, 32, 0.15);
  border: 1px solid rgba(232, 160, 32, 0.4);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease both;
}

.hero-title {
  font-family: 'Roboto Slab', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-line {
  display: block;
  animation: fadeInUp 0.8s ease both;
}
.hero-line:nth-child(2) { animation-delay: 0.1s; }
.hero-line:nth-child(3) { animation-delay: 0.2s; }
.hero-line--accent {
  color: var(--gold);
  position: relative;
}
.hero-line--accent::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gold);
  animation: lineGrow 1s 0.8s ease forwards;
}
@keyframes lineGrow {
  to { width: 100%; }
}

.hero-subtitle {
  color: rgba(255,255,255,0.88);
  font-size: 1.1rem;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s 0.3s ease both;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.4s ease both;
}

/* Scroll-Hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
  animation: fadeInUp 1s 1s ease both;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,0.4);
  border-bottom: 2px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(6px); }
}

/* ════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: #000;
}
.btn-primary:hover {
  background: var(--gold-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 160, 32, 0.4);
  color: #000;
}
.btn-glow {
  box-shadow: 0 0 20px rgba(232,160,32,0.3);
}
.btn-glow:hover {
  box-shadow: 0 0 40px rgba(232,160,32,0.6);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
  color: var(--white);
}
.btn-outline--light {
  border-color: rgba(255,255,255,0.6);
}

/* ════════════════════════════════════════════
   STATS
════════════════════════════════════════════ */
.stats-section {
  background: var(--dark);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.stat-item {
  text-align: center;
  color: var(--white);
  position: relative;
  padding: 20px;
}
.stat-item::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}
.stat-item:last-child::after { display: none; }
.stat-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}
.stat-number {
  display: block;
  font-family: 'Roboto Slab', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ════════════════════════════════════════════
   SERVICE CARDS (komplett neu)
════════════════════════════════════════════ */
.services { background: #f9f9f9; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.service-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  animation-delay: var(--delay, 0s);
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.service-card__image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.service-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.5));
}
.service-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(232, 160, 32, 0.0);
  transition: background 0.3s;
}
.service-card:hover .service-card__overlay {
  background: rgba(232, 160, 32, 0.15);
}
.service-card__body {
  padding: 28px;
}
.service-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(232, 160, 32, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--gold);
  transition: background 0.3s, transform 0.3s;
}
.service-card:hover .service-card__icon {
  background: var(--gold);
  color: #000;
  transform: rotate(-5deg) scale(1.1);
}
.service-card h3 {
  font-family: 'Roboto Slab', serif;
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--dark);
}
.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-link {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.service-link:hover { gap: 12px; color: var(--gold-dk); }

/* ════════════════════════════════════════════
   ÜBER UNS — Split Layout
════════════════════════════════════════════ */
.about { background: var(--white); }
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-stack {
  position: relative;
  height: 500px;
}
.about-img {
  position: absolute;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}
.about-img--main {
  top: 0; left: 0;
  width: 75%;
  height: 75%;
}
.about-img--accent {
  bottom: 0; right: 0;
  width: 55%;
  height: 55%;
  border: 4px solid var(--white);
}
.about-badge-float {
  position: absolute;
  top: 60%;
  left: 65%;
  background: var(--gold);
  color: #000;
  border-radius: 12px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(232,160,32,0.4);
  z-index: 2;
}
.about-badge-num {
  display: block;
  font-family: 'Roboto Slab', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.about-badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
}

.section-eyebrow {
  display: block;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 32px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
}
.about-feature__check {
  width: 24px;
  height: 24px;
  background: var(--gold);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════
   GALERIE MASONRY
════════════════════════════════════════════ */
.gallery-preview { background: #f5f5f5; }
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px;
  gap: 12px;
  margin-top: 40px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  display: block;
}
.gallery-item > div {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.gallery-item:hover > div { transform: scale(1.08); }
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.gallery-item__overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
  background: rgba(232,160,32,0.9);
  padding: 10px 22px;
  border-radius: 4px;
}
.gallery-item:hover .gallery-item__overlay { background: rgba(0,0,0,0.3); }
.gallery-item:hover .gallery-item__overlay span { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════════ */
.cta-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  text-align: center;
}
.cta-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,15,30,0.88), rgba(26,41,66,0.85));
}
.cta-banner__content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 700px;
  margin: 0 auto;
}
.cta-banner h2 {
  font-family: 'Roboto Slab', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
  color: var(--white);
}
.cta-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  margin-bottom: 36px;
}
.cta-banner__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ════════════════════════════════════════════
   SECTION HEADERS
════════════════════════════════════════════ */
.section-header { text-align: center; margin-bottom: 20px; }
.section-title {
  font-family: 'Roboto Slab', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}
.section-divider {
  width: 60px;
  height: 4px;
  background: var(--gold);
  margin: 0 auto 16px;
  border-radius: 2px;
}
.section-header .section-divider { margin: 0 auto; }

/* ════════════════════════════════════════════
   SCROLL ANIMATIONEN
════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════════
   HEADER (modernisiert)
════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 20px;
  transition: all 0.3s ease;
  background: rgba(10, 15, 30, 0.15);
  backdrop-filter: blur(4px);
}
.site-header.scrolled {
  background: rgba(10, 15, 30, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  padding: 0 20px;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.site-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.logo-main {
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  line-height: 1.2;
}
.logo-sub {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Nav */
.nav-list {
  display: flex;
  gap: 8px;
  list-style: none;
}
.nav-list li a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 4px;
  transition: all 0.2s;
  position: relative;
}
.nav-list li a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px; right: 14px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-list li a:hover { color: var(--white); }
.nav-list li a:hover::after { transform: scaleX(1); }
.nav-list li a.active { color: var(--gold); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  padding: 60px 0 30px;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}
.footer-brand p {
  margin-top: 16px;
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.footer-contact svg { fill: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact a { color: rgba(255,255,255,0.85); text-decoration: none; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
}
.footer-bottom a { color: rgba(255,255,255,0.75); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

/* ════════════════════════════════════════════
   CONTAINER
════════════════════════════════════════════ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.section-padding { padding: 100px 0; }

/* ════════════════════════════════════════════
   BODY PADDING (wegen fixed header)
════════════════════════════════════════════ */
body { padding-top: 0; }
main > .hero { margin-top: 0; }

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-split { grid-template-columns: 1fr; gap: 50px; }
  .about-image-stack { height: 350px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(10,15,30,0.98);
    padding: 20px;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s;
    pointer-events: none;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-list { flex-direction: column; }
  .nav-list li a { display: block; padding: 12px; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item--tall, .gallery-item--wide { grid-column: auto; grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-cta-group { flex-direction: column; }
  .cta-banner__actions { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-item::after { display: none; }
}

@media (max-width: 480px) {
  .stat-number { font-size: 2.2rem; }
  .gallery-masonry { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════
   PAGE HERO (Unterseiten)
════════════════════════════════════════════ */
.page-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-bottom: 60px;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,15,30,0.5) 0%, rgba(10,15,30,0.85) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 2;
  color: var(--white);
  animation: fadeInUp 0.8s ease both;
}
.page-hero h1 {
  font-family: 'Roboto Slab', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin: 12px 0 16px;
  color: var(--white);
}
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; }
.breadcrumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb span { margin: 0 8px; }

/* ── Leistungs-Nav ── */
.leistungen-nav {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.leistung-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 40px;
  background: var(--white);
  border: 2px solid var(--color-border, #e0e0e0);
  border-radius: 12px;
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}
.leistung-nav-item:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(232,160,32,0.2);
  color: var(--dark);
}
.leistung-nav-icon { font-size: 2rem; }

/* ── Leistung-Block ── */
.leistung-block { padding: 80px 0; background: var(--white); }
.leistung-block--alt { background: #f7f7f7; }

.leistung-header {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}
.leistung-header__img {
  height: 280px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.leistung-header__badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 60px;
  height: 60px;
  background: var(--gold);
  color: #000;
  font-family: 'Roboto Slab', serif;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(232,160,32,0.5);
}

/* ── Methoden-Grid ── */
.methoden-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.methode-card {
  background: var(--white);
  border-radius: 10px;
  padding: 28px;
  border: 1px solid #eee;
  transition: all 0.3s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.methode-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(232,160,32,0.15);
  transform: translateY(-4px);
}
.methode-card--cta {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}
.methode-card--cta p { color: rgba(255,255,255,0.75); }
.methode-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.methode-nr {
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.methode-card--cta .methode-nr { background: var(--gold); }
.methode-card h3 {
  font-family: 'Roboto Slab', serif;
  font-size: 1.1rem;
  color: var(--dark);
}
.methode-card--cta h3 { color: var(--white); }
.methode-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }

/* ── Leistung Split ── */
.leistung-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.leistung-split--reverse .leistung-split__image { order: -1; }
.leistung-split h2 {
  font-family: 'Roboto Slab', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--dark);
  margin-bottom: 16px;
}
.leistung-split p { color: var(--text-light); line-height: 1.8; font-size: 1rem; }

.leistung-img {
  height: 420px;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.leistung-img__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  border-radius: 12px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(232,160,32,0.4);
}
.leistung-img__badge--top {
  bottom: auto;
  top: -20px;
  right: -20px;
}

.leistung-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 32px;
}
.leistung-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}
.leistung-feature__icon {
  width: 24px;
  height: 24px;
  background: var(--gold);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .leistung-header { grid-template-columns: 1fr; }
  .leistung-split { grid-template-columns: 1fr; gap: 40px; }
  .leistung-split--reverse .leistung-split__image { order: 0; }
  .methoden-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .leistungen-nav { flex-direction: column; align-items: stretch; }
  .leistung-nav-item { flex-direction: row; justify-content: center; padding: 16px 24px; }
  .methoden-grid { grid-template-columns: 1fr; }
  .leistung-img { height: 260px; }
  .leistung-img__badge { right: 10px; bottom: -10px; }
}

/* ════════════════════════════════════════════
   GALERIE
════════════════════════════════════════════ */

/* Intro Grid */
.galerie-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.galerie-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.galerie-stat {
  background: var(--dark);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.galerie-stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}
.galerie-stat-num {
  display: block;
  font-family: 'Roboto Slab', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.galerie-stat-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 8px;
}

/* Filter */
.galerie-filter {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 24px;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  background: transparent;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  color: var(--text);
  transition: all 0.25s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
  box-shadow: 0 4px 15px rgba(232,160,32,0.3);
}

/* Masonry Grid */
.galerie-masonry-full {
  columns: 3;
  column-gap: 16px;
}
.galerie-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.galerie-item__img {
  width: 100%;
  height: 240px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  display: block;
}
.galerie-item--tall .galerie-item__img { height: 380px; }
.galerie-item:hover .galerie-item__img { transform: scale(1.06); }

.galerie-item__hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}
.galerie-item:hover .galerie-item__hover { opacity: 1; }

.galerie-item__cat {
  background: var(--gold);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 8px;
}
.galerie-item__zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  transition: all 0.3s;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.galerie-item:hover .galerie-item__zoom {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ════════════════════════════════════════════
   LIGHTBOX (modern)
════════════════════════════════════════════ */
.lb {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lb.open {
  opacity: 1;
  pointer-events: all;
}
.lb__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 15, 0.96);
  backdrop-filter: blur(8px);
}
.lb__container {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transform: scale(0.95);
  transition: transform 0.3s;
}
.lb.open .lb__container { transform: scale(1); }
.lb__img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.lb__caption {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  text-align: center;
}
.lb__counter {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
}
.lb__close {
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 10;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lb__close:hover { background: rgba(255,255,255,0.2); }
.lb__prev, .lb__next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.lb__prev { left: 20px; }
.lb__next { right: 20px; }
.lb__prev:hover, .lb__next:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}

/* Responsive */
@media (max-width: 1024px) {
  .galerie-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .galerie-masonry-full { columns: 2; }
}
@media (max-width: 600px) {
  .galerie-masonry-full { columns: 1; }
  .lb__prev { left: 8px; }
  .lb__next { right: 8px; }
}

/* ════════════════════════════════════════════
   KONTAKTSEITE
════════════════════════════════════════════ */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: start;
}

/* ── Kontakt-Karten ── */
.kontakt-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.kontakt-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1.5px solid #ebebeb;
  border-radius: 10px;
  padding: 16px 20px;
  transition: all 0.25s;
  text-decoration: none;
  color: var(--dark);
}
.kontakt-card--link:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 20px rgba(232,160,32,0.15);
  transform: translateX(4px);
}
.kontakt-card__icon {
  width: 46px;
  height: 46px;
  background: rgba(232,160,32,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s;
}
.kontakt-card--link:hover .kontakt-card__icon { background: var(--gold); }
.kontakt-card--link:hover .kontakt-card__icon svg { filter: brightness(0); }
.kontakt-card__text { flex: 1; }
.kontakt-card__text strong {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 3px;
}
.kontakt-card__text span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
}
.kontakt-card__arrow {
  color: var(--gold);
  font-size: 1.2rem;
  opacity: 0;
  transition: opacity 0.2s;
}
.kontakt-card--link:hover .kontakt-card__arrow { opacity: 1; }

/* ── Öffnungszeiten ── */
.oeffnungszeiten {
  background: #f7f7f7;
  border-radius: 12px;
  padding: 24px 28px;
}
.oeffnungszeiten h3 {
  font-family: 'Roboto Slab', serif;
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 18px;
}
.oez-list { display: flex; flex-direction: column; gap: 10px; }
.oez-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--white);
  border-radius: 8px;
  font-size: 0.9rem;
}
.oez-row--closed { opacity: 0.6; }
.oez-day { font-weight: 600; width: 80px; flex-shrink: 0; }
.oez-time { flex: 1; color: var(--text-light); }
.oez-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 50px;
}
.oez-badge--open  { background: rgba(34,197,94,0.12); color: #15803d; }
.oez-badge--closed { background: rgba(239,68,68,0.1);  color: #b91c1c; }
.oez-hinweis {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 14px;
  line-height: 1.6;
}

/* ── Formular-Card ── */
.kontakt-form-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  overflow: hidden;
}
.kontakt-form-header {
  background: var(--dark);
  padding: 28px 32px;
}
.kontakt-form-header h2 {
  font-family: 'Roboto Slab', serif;
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.kontakt-form-header p { color: rgba(255,255,255,0.85); font-size: 0.9rem; }

form { padding: 32px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 7px;
  letter-spacing: 0.3px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  color: var(--dark);
  background: #fafafa;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(232,160,32,0.12);
}
.form-group textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}
.required { color: var(--gold); }

.form-checkbox { margin-bottom: 24px; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-light);
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--gold);
}
.checkbox-label a { color: var(--gold); }

.btn-submit {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 16px;
}

/* Success / Error */
.form-success {
  padding: 48px 32px;
  text-align: center;
}
.form-success__icon {
  width: 64px;
  height: 64px;
  background: var(--gold);
  color: #000;
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-success h3 { font-family: 'Roboto Slab', serif; font-size: 1.4rem; margin-bottom: 10px; }
.form-success p  { color: var(--text-light); }
.form-error-msg {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  color: #b91c1c;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.9rem;
  margin: 0 32px 20px;
}

/* Karte */
.kontakt-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* Responsive */
@media (max-width: 1024px) {
  .kontakt-grid { grid-template-columns: 1fr; gap: 50px; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  form { padding: 24px; }
  .form-error-msg { margin: 0 24px 16px; }
}
