/* Blümel Garten- & Landschaftsbau – Modern Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,600;0,700;1,600;1,700&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&display=swap');

:root {
  --primary: #1a3324;
  --primary-dark: #0f1f15;
  --primary-light: #2d5038;
  --accent: #3a6b44;
  --accent-light: #4d8a58;
  --accent-dark: #2a5234;
  --sand: #f4f1ea;
  --cream: #faf8f4;
  --white: #ffffff;
  --text: #1a241c;
  --text-muted: #5a6258;
  --border: rgba(26, 51, 36, 0.12);
  --shadow: 0 20px 60px rgba(26, 31, 46, 0.1);
  --shadow-lg: 0 30px 80px rgba(26, 31, 46, 0.16);
  --radius: 16px;
  --radius-sm: 10px;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;
  --header-h: 88px;
  --transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container {
  width: min(1240px, 92%);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--primary);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 9999;
}
.skip-link:focus { top: 1rem; }

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: #fff;
  backdrop-filter: none;
  border-bottom: 1px solid rgba(26, 51, 36, 0.08);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

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

.main-nav { display: flex; align-items: center; gap: 2rem; }
.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
}
.main-nav a:hover,
.main-nav a.active { color: var(--primary); }
.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
}
.header-contact svg { flex-shrink: 0; color: var(--accent); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--primary);
  margin: 5px 0;
  transition: var(--transition);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--white);
  padding: 2rem;
  flex-direction: column;
  gap: 1.25rem;
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(90,154,60,0.35);
}
.btn-lg {
  font-size: 1.05rem;
  padding: 1rem 2rem;
  border-radius: 10px;
}
.btn i {
  font-size: 1.05em;
  line-height: 0;
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-white {
  background: #fff;
  color: var(--primary);
}
.btn-white:hover { background: var(--sand); }
.btn-hero-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: none;
  transition: var(--transition);
}
.btn-hero-link:hover {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  max-height: 960px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-h);
  overflow: hidden;
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 9s ease-out, opacity 1.4s ease;
}
.hero-slide.active img { transform: scale(1); }
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(15, 31, 21, 0.58) 0%,
    rgba(20, 40, 28, 0.45) 45%,
    rgba(10, 22, 14, 0.65) 100%
  );
}
.hero-card-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 820px;
  padding: 0 1.5rem;
}
.hero-card {
  background: rgba(15, 31, 21, 0.48);
  backdrop-filter: blur(22px) saturate(1.15);
  -webkit-backdrop-filter: blur(22px) saturate(1.15);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  padding: clamp(2.25rem, 5vw, 3.75rem) clamp(1.75rem, 4vw, 4.5rem);
  text-align: center;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  margin-bottom: 1.75rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}
.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--accent-light);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(114, 184, 79, 0.6);
}
.hero-card h1,
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.35rem, 5vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 1.75rem;
  letter-spacing: -0.02em;
  transition: opacity 0.4s ease;
}
.hero-card h1 em,
.hero h1 em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}
.hero-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1rem;
}
.hero-actions {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}
.hero-actions .btn-lg {
  padding: 0.9rem 1.75rem;
  font-size: 0.95rem;
  border-radius: 999px;
}
.hero-pills {
  display: flex;
  gap: 0.65rem;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
}
.hero-pill i { font-size: 0.9rem; color: var(--accent-light); }
.hero .container.hero-content {
  max-width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 0 6rem;
  max-width: 720px;
  color: #fff;
}
.hero h1 .hero-headline {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 5.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.35);
}
.hero h1 .hero-subline {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(1.25rem, 2.8vw, 1.75rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  opacity: 0.92;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}
.hero p {
  font-size: 1.15rem;
  opacity: 0.92;
  margin-bottom: 2rem;
  max-width: 520px;
}

.page-hero {
  padding: calc(var(--header-h) + 3rem) 0 3rem;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  color: #fff;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 0.75rem;
}
.page-hero p { opacity: 0.85; font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ─── SECTIONS ─── */
section { padding: 4rem 0; }
section.section-compact { padding: 2.75rem 0; }
.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.15;
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 640px;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

.bg-sand { background: var(--sand); }
.bg-white { background: var(--white); }
.bg-primary { background: var(--primary); color: #fff; }
.bg-primary .section-title { color: #fff; }
.bg-primary .section-subtitle { color: rgba(255,255,255,0.8); }

/* ─── SPLIT SECTION ─── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }
.split-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.split-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(26, 51, 36, 0.06);
  pointer-events: none;
}
.split-image img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }

/* ─── SERVICE CARDS ─── */
.services-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.25rem;
}
.services-grid--compact { margin-top: 1.25rem; }
.services-grid--compact .service-card-body { padding: 1.25rem; }
.services-grid--compact .service-card img { height: 130px; object-fit: contain; padding: 0.85rem; background: var(--cream); }
.services-grid--compact .service-card h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.services-grid--compact .service-card p { font-size: 0.86rem; line-height: 1.5; }
.services-grid--compact .service-card a { font-size: 0.86rem; margin-top: 0.65rem; }
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(26, 31, 46, 0.06);
  transition: var(--transition);
  border: 1px solid rgba(26, 51, 36, 0.08);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(90, 154, 60, 0.25);
}
.service-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.service-card-body { padding: 1.75rem; }
.service-card-icon {
  width: 64px; height: 64px;
  margin-bottom: 1rem;
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.service-card p { color: var(--text-muted); font-size: 0.95rem; margin: 0; }
.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--accent);
  font-size: 0.9rem;
}
.service-card a i { font-size: 0.95em; transition: transform var(--transition); }
.service-card a:hover i { transform: translateX(3px); }

.service-card--dark {
  background: var(--primary);
  border: none;
  box-shadow: 0 8px 28px rgba(15, 31, 21, 0.22);
  display: flex;
  flex-direction: column;
}
.service-card--dark:hover {
  border-color: transparent;
  box-shadow: 0 12px 36px rgba(15, 31, 21, 0.3);
}
.service-card--dark .service-card-body {
  padding: 1.15rem 1.2rem 0.95rem;
  order: -1;
}
.service-card--dark h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
}
.service-card--dark p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  line-height: 1.5;
  text-wrap: pretty;
}
.service-card--dark img {
  aspect-ratio: 16 / 10;
  margin-top: auto;
}
.service-card--featured .service-card-body {
  padding: 1.35rem 1.4rem 1.1rem;
}
.service-card--featured h3 {
  font-size: 1.35rem;
}
.service-card--featured p {
  font-size: 0.92rem;
  line-height: 1.55;
}
.service-card--featured img {
  aspect-ratio: 16 / 9;
}
@media (max-width: 900px) {
  .services-featured { grid-template-columns: 1fr; }
}

/* ─── FEATURE GRID (Naturpool Vorteile) ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.feature-card:hover {
  border-color: rgba(90, 154, 60, 0.35);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(26, 51, 36, 0.06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.feature-icon i {
  font-size: 1.35rem;
  line-height: 1;
}
.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  color: var(--primary);
  margin: 0;
  line-height: 1.25;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ─── CAROUSEL ─── */
.carousel-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.carousel {
  display: flex;
  transition: transform 0.5s ease;
}
.carousel-slide {
  min-width: 100%;
  aspect-ratio: 1;
  line-height: 0;
}
.carousel-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--border);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.15rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  z-index: 2;
}
.carousel-btn i { pointer-events: none; }
.carousel-btn:hover {
  background: #fff;
  color: var(--accent);
  transform: translateY(-50%) scale(1.05);
}
.carousel-btn.prev { left: 1rem; }
.carousel-btn.next { right: 1rem; }
.carousel-dots {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  z-index: 2;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.carousel-dot.active { background: var(--accent); width: 24px; border-radius: 4px; }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  border-radius: var(--radius);
  padding: 3.5rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 400px; height: 400px;
  background: rgba(90,154,60,0.15);
  border-radius: 50%;
}
.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.75rem;
  position: relative;
}
.cta-banner p { opacity: 0.9; margin-bottom: 1.75rem; position: relative; }
.cta-banner--compact {
  padding: 2rem 1.75rem;
}
.cta-banner--compact h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  margin-bottom: 0.5rem;
}
.cta-banner--compact p {
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
}
.section-title--sm { font-size: clamp(1.35rem, 2.5vw, 1.85rem); text-wrap: balance; }

/* ─── POOL BANNER (Home / Service) ─── */
.pool-banner {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  min-height: clamp(380px, 42vw, 520px);
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-lg);
}
.pool-banner__media {
  position: absolute;
  inset: 0;
}
.pool-banner__media img,
.pool-banner__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pool-banner__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(15, 31, 21, 0.96) 0%,
    rgba(26, 51, 36, 0.88) 32%,
    rgba(45, 80, 56, 0.45) 58%,
    rgba(45, 80, 56, 0.08) 100%
  );
}
.pool-banner__content {
  position: relative;
  z-index: 1;
  width: min(520px, 92%);
  margin: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
}
.pool-banner__content .hero-tag {
  color: var(--accent-light);
  margin-bottom: 1.25rem;
}
.pool-banner__content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.pool-banner__content p {
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.92;
  margin-bottom: 2rem;
  max-width: 42ch;
}

/* ─── TESTIMONIALS ─── */
.testimonials-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 3.5rem 0;
}
.testimonials-section .section-label { color: var(--accent-light); }
.testimonials-section .section-title { color: #fff; margin-bottom: 0; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.75rem;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 0.75rem;
  left: 1.25rem;
  font-family: var(--font-heading);
  font-size: 3rem;
  line-height: 1;
  color: var(--accent-light);
  opacity: 0.45;
}
.testimonial-card p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1.25rem;
  padding-top: 1.5rem;
}
.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}
.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-card__name {
  font-weight: 700;
  color: #fff;
  font-size: 0.92rem;
}
.testimonial-card__loc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}
.testimonials { margin-top: 3rem; }
.testimonial-slider { position: relative; overflow: hidden; }
.testimonial-track { display: flex; transition: transform 0.5s ease; }
.testimonial {
  min-width: 100%;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  border: 1px solid var(--border);
}
.testimonial-avatar {
  width: 56px; height: 56px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
}
.testimonial-text {
  font-size: 1.05rem;
  color: var(--text);
  font-style: italic;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}
.testimonial-author { font-weight: 700; color: var(--primary); }
.testimonial-location { font-size: 0.88rem; color: var(--text-muted); }

/* ─── BLOG CARDS ─── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.blog-card-body { padding: 1.75rem; }
.blog-date { font-size: 0.82rem; color: var(--accent); font-weight: 600; margin-bottom: 0.5rem; }
.blog-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.blog-card p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 1rem; }
.blog-card a {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.blog-card a i { transition: transform var(--transition); }
.blog-card a:hover i { transform: translateX(3px); }

/* ─── REFERENZEN GALLERY ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
  margin-top: 0.85rem;
}
.gallery-grid--tight {
  gap: 0.5rem;
  margin-top: 0.65rem;
}
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.ref-gallery-section .ref-gallery-header {
  margin-bottom: 0;
  text-align: left;
}
.ref-gallery-section .section-label { margin-bottom: 0.3rem; }
.ref-gallery-section .section-title { margin-bottom: 0; }

/* ─── BIO BADGE ─── */
.bio-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.75rem;
  border: 1px solid var(--border);
  margin-top: 2rem;
}
.bio-badge img { height: 72px; width: auto; object-fit: contain; }
.bio-badge span { font-weight: 600; color: var(--primary); font-size: 0.95rem; }
.bio-cta-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.bio-cta-row .bio-badge {
  margin-top: 0;
  margin-bottom: 0;
}
.bio-cta-row .btn {
  flex-shrink: 0;
  white-space: nowrap;
}

/* ─── KONTAKT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  margin-top: 3rem;
}
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid rgba(26, 51, 36, 0.08);
  margin-bottom: 1rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-info-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(26, 51, 36, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.contact-info-card__icon i { font-size: 1.25rem; }
.contact-info-card__body h3 {
  font-family: var(--font-heading);
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}
.contact-info-card__body p { color: var(--text-muted); margin: 0; }
.contact-info-card__body a { color: var(--accent); font-weight: 600; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--cream);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(90,154,60,0.15);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.hp { position: absolute; left: -9999px; opacity: 0; }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo img { height: 50px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-logo p { font-size: 0.9rem; opacity: 0.75; margin-bottom: 1rem; }
.footer-bio {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bio img {
  height: 56px;
  width: auto;
  object-fit: contain;
  opacity: 0.95;
}
.footer-bio span { font-size: 0.82rem; opacity: 0.75; line-height: 1.4; }
.footer-col h4 {
  color: #fff;
  font-family: var(--font-heading);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col a { font-size: 0.9rem; opacity: 0.75; }
.footer-col a:hover { opacity: 1; color: var(--accent-light); }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: var(--transition);
  color: rgba(255,255,255,0.85);
}
.footer-social a:hover {
  background: var(--accent);
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  opacity: 0.6;
}
.footer-bottom a:hover { opacity: 1; }

/* ─── LIGHTBOX ─── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-sm); }
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none; border: none;
  color: #fff; font-size: 2rem;
  cursor: pointer;
}

/* ─── DANKE SEITE ─── */
.page-thanks {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 2rem) 1.5rem 3rem;
}
.thanks-card {
  background: var(--white);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.thanks-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  background: rgba(90, 154, 60, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 2rem;
}
.thanks-card h1 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 0.75rem;
}
.thanks-card p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

body.nav-open { overflow: hidden; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .about-cards { grid-template-columns: repeat(2, 1fr); }
  .split-reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 .hero-headline { font-size: clamp(2.5rem, 10vw, 4rem); }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 768px) {
  :root { --header-h: 72px; }
  .main-nav, .header-contact { display: none; }
  .nav-toggle { display: block; }
  .mobile-nav {
    display: flex;
    padding: 1.25rem 1.5rem 2rem;
    padding-bottom: calc(2rem + env(safe-area-inset-bottom));
    overflow-y: auto;
  }
  .mobile-nav a {
    font-size: 1.05rem;
    padding: 0.85rem 0;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .logo img { height: 44px; }
  .services-grid, .features-grid, .blog-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.65rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  section { padding: 3rem 0; }
  .container { width: min(1240px, 94%); }
  .cta-banner { padding: 2.25rem 1.25rem; }
  .cta-banner h2 br { display: none; }
  .hero {
    min-height: min(88vh, 720px);
    align-items: center;
  }
  .hero-content {
    padding: 2.5rem 0 4.5rem;
    max-width: 100%;
  }
  .hero { min-height: 100svh; max-height: none; }
  .hero-card { padding: 2rem 1.35rem; border-radius: 20px; }
  .hero-card h1 { font-size: 2rem; margin-bottom: 1.35rem; }
  .hero-badge { font-size: 0.75rem; margin-bottom: 1.35rem; }
  .hero-actions { margin-bottom: 1.25rem; }
  .hero-actions .btn-lg { width: 100%; justify-content: center; }
  .hero-pills { flex-direction: column; align-items: center; padding-top: 1.25rem; }
  .hero h1 .hero-headline { font-size: clamp(2.4rem, 12vw, 3.5rem); }
  .split { gap: 2rem; }
  .split-image img { aspect-ratio: 16/11; }
  .section-title { font-size: clamp(1.65rem, 5vw, 2rem); }
  .contact-form { padding: 1.75rem; }
  .contact-grid { gap: 2rem; }
  .testimonial { padding: 1.75rem 1.25rem; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  .pool-banner {
    min-height: auto;
  }
  .pool-banner__content {
    width: 100%;
    margin: 0;
    padding: 2.25rem 1.25rem;
  }
  .pool-banner__content h2 br { display: none; }
  .pool-banner__media::after {
    background: linear-gradient(
      180deg,
      rgba(15, 31, 21, 0.92) 0%,
      rgba(26, 51, 36, 0.75) 55%,
      rgba(26, 51, 36, 0.4) 100%
    );
  }
  .btn, .btn-hero-link { min-height: 44px; }
}

@media (max-width: 380px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-actions .btn-hero-link { font-size: 1rem; }
}

.hidden { display: none !important; }

/* ─── LEGAL PAGES ─── */
.legal-page {
  padding: calc(var(--header-h) + 3rem) 0 4rem;
}
.legal-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 2rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}
.legal-tabs a {
  display: inline-block;
  padding: 0.75rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  transition: var(--transition);
}
.legal-tabs a:hover { color: var(--primary); }
.legal-tabs a.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}
.legal-document {
  max-width: 760px;
  color: var(--text-muted);
  line-height: 1.8;
}
.legal-document h2 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: 1.35rem;
  margin: 2.25rem 0 0.85rem;
}
.legal-document h3 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: 1.05rem;
  margin: 1.5rem 0 0.65rem;
}
.legal-document p { margin-bottom: 1rem; }
.legal-document ul { margin: 0 0 1rem 1.25rem; }
.legal-document li { margin-bottom: 0.4rem; }
.legal-document a { color: var(--accent); font-weight: 600; }
.legal-details {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  margin: 1rem 0 1.5rem;
  background: var(--cream);
}
.legal-details summary {
  cursor: pointer;
  list-style: none;
}
.legal-details summary::-webkit-details-marker { display: none; }
.legal-details summary h3 {
  display: inline;
  margin: 0;
  font-size: 1rem;
}
.legal-details[open] summary { margin-bottom: 1rem; }

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(20, 28, 55, 0.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
}
.cookie-banner__panel {
  width: 100%;
  max-width: 560px;
  background: #fff;
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow-lg);
  max-height: 90vh;
  overflow-y: auto;
}
.cookie-banner__inner {
  padding: clamp(1.5rem, 4vw, 2rem);
}
.cookie-banner__inner h2 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
}
.cookie-banner__inner > p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.cookie-banner__actions .btn { font-size: 0.88rem; padding: 0.65rem 1.15rem; }
.cookie-btn-deny {
  border-color: var(--border);
  color: var(--text-muted);
}
.cookie-category {
  border-top: 1px solid var(--border);
  padding: 1rem 0;
}
.cookie-category:first-child { border-top: none; padding-top: 0; }
.cookie-category__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.4rem;
}
.cookie-category__head strong { color: var(--primary); font-size: 0.95rem; }
.cookie-category__badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(90, 154, 60, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}
.cookie-category p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}
.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle span {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition);
}
.cookie-toggle span::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: var(--transition);
}
.cookie-toggle input:checked + span { background: var(--accent); }
.cookie-toggle input:checked + span::after { transform: translateX(20px); }
.cookie-manage {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  z-index: 9998;
  padding: 0.55rem 1rem;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.cookie-manage:hover { background: var(--primary-light); }
@media (max-width: 768px) {
  .cookie-banner { align-items: flex-end; padding: 0; }
  .cookie-banner__panel { border-radius: var(--radius) var(--radius) 0 0; max-width: 100%; }
  .cookie-manage { bottom: calc(0.75rem + env(safe-area-inset-bottom)); left: 0.75rem; font-size: 0.72rem; }
  .about-cards { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-compact-grid { grid-template-columns: 1fr; }
  .vorteile-highlights { grid-template-columns: 1fr; }
  .download-strip__inner { flex-direction: column; align-items: flex-start; }
  .form-card { padding: 1.5rem; }
}

/* ─── NEW COMPONENTS ─── */
.about-teaser {
  margin-bottom: 0;
  align-items: start;
  gap: 2rem;
}
.about-teaser__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.65rem;
  padding-top: 0;
  height: auto;
  align-self: start;
}
.about-teaser__text .section-title { margin-bottom: 0; }
.about-teaser__text .section-subtitle { margin-bottom: 0; }
.about-teaser__text .btn { margin-top: 0.35rem; }
.about-teaser .split-image img { aspect-ratio: 4 / 3; }
.about-teaser__points {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.25rem;
}
.about-teaser__point {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.about-teaser__point i {
  font-size: 1.2rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.about-teaser__point strong {
  display: block;
  font-size: 0.9rem;
  color: var(--primary);
  margin-bottom: 0.15rem;
}
.about-teaser__point span {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}
.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.25rem;
}
.about-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  border: 1px solid var(--border);
}
.about-card i {
  font-size: 1.35rem;
  color: var(--accent);
  margin-bottom: 0.65rem;
  display: block;
}
.about-card h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: 0.4rem;
}
.about-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}
.blog-compact-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.blog-compact-header h2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--primary);
  margin: 0;
}
.blog-compact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.blog-compact-card {
  display: flex;
  gap: 1rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
.blog-compact-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.blog-compact-card img {
  width: 110px;
  min-height: 90px;
  object-fit: cover;
  flex-shrink: 0;
}
.blog-compact-card__body {
  padding: 0.85rem 0.85rem 0.85rem 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.35rem;
}
.blog-compact-card__body h3 {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  color: var(--primary);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}
.blog-compact-card__body span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
}
.vorteile-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem auto 0;
  max-width: 900px;
}
.vorteile-highlight {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1rem;
  border: 1px solid var(--border);
  text-align: center;
}
.vorteile-highlight strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--accent);
  margin-bottom: 0.35rem;
}
.vorteile-highlight span {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}
.download-strip {
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 1.75rem 0;
}
.download-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.download-strip__text h2 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0.2rem;
}
.download-strip__text p {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin: 0;
}
.download-strip__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}
.download-strip__actions img {
  height: 72px;
  width: auto;
  object-fit: contain;
  opacity: 1;
}
.section-contact {
  background: var(--sand);
  padding: 3.5rem 0 4rem;
}
.contact-grid--daniel {
  grid-template-columns: 4fr 6fr;
  gap: 3rem;
  margin-top: 0;
  align-items: start;
}
.contact-grid--daniel > * {
  min-width: 0;
}
@media (max-width: 1024px) {
  .contact-grid--daniel {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .section-contact { padding: 2.5rem 0 3rem; }
  .form-card { padding: 1.25rem; }
  .form-card .form-row { grid-template-columns: 1fr; }
  .form-card .form-btn { width: 100%; }
}
.page-hero--contact {
  min-height: 280px;
  display: flex;
  align-items: center;
}
.page-hero__inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.page-hero__eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--accent-light);
  border-radius: 50%;
}
.page-hero--contact p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
}
.contact-info-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: opacity var(--transition);
}
.contact-item:first-of-type { border-top: 1px solid var(--border); }
.contact-item:hover { opacity: 0.75; }
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.contact-icon--green { background: rgba(58, 107, 68, 0.12); color: var(--accent); }
.contact-icon--sand { background: rgba(26, 51, 36, 0.08); color: var(--primary); }
.contact-lbl {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}
.contact-val {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
}
.contact-val--addr { font-weight: 500; line-height: 1.55; }
.contact-area {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: var(--primary-dark);
  border-radius: var(--radius-sm);
}
.contact-area-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-light);
  margin-bottom: 0.5rem;
}
.contact-area-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.form-card .form-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 0.35rem;
}
.form-card .form-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.form-card .form-group label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-card .form-group input,
.form-card .form-group textarea {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
}
.form-card .form-group input:focus,
.form-card .form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(58, 107, 68, 0.12);
  outline: none;
  background: var(--white);
}
.form-card .form-btn {
  width: 100%;
  margin-top: 0.5rem;
  justify-content: center;
}
.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.85rem;
  text-align: center;
  line-height: 1.55;
}
.form-note a { color: var(--text-muted); }

/* ─── HERO (Bergmann + Wow) ─── */
.hero.hero-bergmann {
  background: var(--primary-dark);
  height: auto;
  min-height: 0;
  max-height: none;
  padding: calc(var(--header-h) + 3.75rem) 0 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  overflow: hidden;
  isolation: isolate;
}
.hero-bergmann__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bergmann__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.08);
  animation: hero-bg-ken 22s ease-in-out infinite alternate;
}
@keyframes hero-bg-ken {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.14) translate3d(-1.5%, -1%, 0); }
}
.hero-bergmann::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      105deg,
      rgba(8, 20, 12, 0.82) 0%,
      rgba(10, 24, 14, 0.62) 38%,
      rgba(12, 28, 18, 0.38) 68%,
      rgba(12, 28, 18, 0.48) 100%
    ),
    linear-gradient(
      to top,
      rgba(8, 18, 12, 0.75) 0%,
      rgba(8, 18, 12, 0.2) 28%,
      transparent 55%
    );
}
.hero-bergmann::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: soft-light;
}
.hero-bergmann__inner {
  flex: 1;
  position: relative;
  z-index: 2;
  padding-bottom: 1.5rem;
  padding-top: 1rem;
  /* Bergmann: container xl/xxl = 1250px */
  width: min(1250px, 90%);
  max-width: 1250px;
}
#leistungen.section-compact {
  padding-top: 2.25rem;
  padding-bottom: 2.75rem;
}
.hero-bergmann__content {
  display: grid;
  /* Bergmann 24er-Grid: Text 12 | Video 11 */
  grid-template-columns: minmax(0, 12fr) minmax(0, 11fr);
  gap: 2rem 2.75rem;
  align-items: center;
  color: #fff;
}
.hero-bergmann__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.65rem;
  min-width: 0;
}
.hero-bergmann__content h1 {
  font-family: var(--font-body);
  font-size: clamp(2.15rem, 3.6vw, 2.75rem);
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 0 !important;
  color: #fff;
  max-width: none;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.35);
}
.hero-bergmann__headline-line {
  white-space: nowrap;
  display: inline-block;
  position: relative;
}
.hero-bergmann__headline-line::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.08em;
  width: 100%;
  height: 0.12em;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-light), rgba(77, 138, 88, 0.15));
  transform: scaleX(0);
  transform-origin: left;
  animation: hero-underline 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.85s forwards;
}
@keyframes hero-underline {
  to { transform: scaleX(1); }
}
.hero .hero-bergmann__sub,
.hero-bergmann__sub {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.4;
  font-weight: 400;
  color: #fff;
  margin: 0 !important;
  max-width: none;
  opacity: 1;
}
.hero-bergmann__checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin: 0.35rem 0 0 !important;
  padding: 0;
  max-width: 36rem;
  width: 100%;
}
.hero-bergmann__checklist li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(0.98rem, 1.15vw, 1.125rem);
  font-weight: 500;
  line-height: 1.35;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  backdrop-filter: none;
}
.hero-bergmann__check-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--accent);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(58, 107, 68, 0.45);
  position: relative;
}
.hero-bergmann__checklist li.hero-reveal .hero-bergmann__check-icon {
  animation: hero-check-pop 0.55s cubic-bezier(0.22, 1, 0.36, 1) calc(var(--d, 0s) + 0.15s) both;
}
@keyframes hero-check-pop {
  0% { transform: scale(0.4); opacity: 0; box-shadow: 0 0 0 0 rgba(58, 107, 68, 0); }
  70% { transform: scale(1.08); opacity: 1; box-shadow: 0 0 0 10px rgba(58, 107, 68, 0); }
  100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(58, 107, 68, 0); }
}
.hero-bergmann__check-icon::after {
  content: '';
  display: block;
  width: 10px;
  height: 5.5px;
  border-left: 2.5px solid #fff;
  border-bottom: 2.5px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
}
.hero-bergmann__content .btn-lg,
.hero-bergmann__cta {
  width: fit-content;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 1.05rem 1.9rem;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  margin-top: 0.85rem;
  position: relative;
  overflow: hidden;
}
.hero-bergmann__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.22) 50%, transparent 70%);
  transform: translateX(-120%);
  animation: hero-cta-shine 3.8s ease-in-out 1.4s infinite;
}
@keyframes hero-cta-shine {
  0%, 55% { transform: translateX(-120%); }
  80%, 100% { transform: translateX(120%); }
}
.hero-bergmann__video {
  align-self: center;
  justify-self: stretch;
  width: 100%;
  max-width: 580px;
  margin-left: auto;
  min-width: 0;
}
.hero-bergmann__video .wistia-player-wrap {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 20px 48px rgba(0, 0, 0, 0.4);
  background: #0a160e;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}
.hero-bergmann__video:hover .wistia-player-wrap {
  transform: translateY(-3px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18),
    0 24px 56px rgba(0, 0, 0, 0.45);
}
.hero-bergmann__video .wistia-player-wrap wistia-player,
.hero-bergmann__video .wistia-player-wrap wistia-player:not(:defined) {
  aspect-ratio: 16 / 9;
  border-radius: 16px;
}
.hero-reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: hero-reveal 0.85s cubic-bezier(0.22, 1, 0.36, 1) var(--d, 0s) forwards;
}
@keyframes hero-reveal {
  to {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bergmann__bg video,
  .hero-bergmann__headline-line::after,
  .hero-bergmann__checklist li.hero-reveal .hero-bergmann__check-icon,
  .hero-bergmann__cta::before,
  .hero-reveal {
    animation: none !important;
  }
  .hero-reveal { opacity: 1; transform: none; }
  .hero-bergmann__headline-line::after { transform: scaleX(1); }
  .hero-bergmann__bg video { transform: none; }
}
.hero-video-placeholder {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #000;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.hero-video-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-video-placeholder__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: rgba(15, 31, 21, 0.35);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.hero-video-placeholder__play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  padding-left: 4px;
}
.hero-bergmann__slideshow {
  width: 100%;
  overflow: hidden;
  padding: 1.5rem 0 2.5rem;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  position: relative;
  z-index: 2;
}
.hero-bergmann__slideshow-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: hero-dia-scroll 40s linear infinite;
}
.hero-bergmann__slideshow:hover .hero-bergmann__slideshow-track {
  animation-play-state: paused;
}
.hero-bergmann__slideshow-track img {
  height: 230px;
  width: 165px;
  border-radius: 22px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.hero-bergmann__slideshow-track img:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
}
@keyframes hero-dia-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.split-image--team {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.split-image--team::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 51, 36, 0.15) 0%, transparent 50%, rgba(58, 107, 68, 0.12) 100%);
  pointer-events: none;
  border-radius: inherit;
}
.split-image--team img {
  filter: saturate(1.12) contrast(1.06) brightness(0.96);
  transform: scale(1.02);
}
.pool-intro-highlights { margin-top: 1.5rem; }
.blog-compact-card img {
  width: 140px;
  min-height: 110px;
}
.blog-compact-card__body h3 {
  font-size: 1rem;
}
.blog-compact-card__body {
  padding: 1rem 1rem 1rem 0;
}
.blog-compact-card {
  align-items: stretch;
}
.blog-compact-card img {
  align-self: stretch;
  height: auto;
}

/* Home contact form (replaces final CTA) */
.home-contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}
.home-contact__intro .section-title { margin-bottom: 0.65rem; }
.home-contact__intro .section-subtitle { margin-bottom: 1.25rem; }
.home-contact__intro .contact-item:first-of-type { border-top: 1px solid var(--border); }
@media (max-width: 900px) {
  .home-contact { grid-template-columns: 1fr; gap: 1.75rem; }
}

/* Über uns – Werte */
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.about-value {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.about-value__media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
}
.about-value__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 0.45s ease;
}
.about-value:hover .about-value__media img {
  transform: scale(1.04);
}
.about-value h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--primary);
  padding: 0.85rem 1rem 0.25rem;
  margin: 0;
}
.about-value p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.45;
  padding: 0 1rem 1rem;
  margin: 0;
}
@media (max-width: 900px) {
  .about-values { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
  .hero-bergmann::before {
    background: rgba(15, 31, 21, 0.78);
  }
  .hero-bergmann__inner {
    width: min(720px, 90%);
  }
  .hero-bergmann__content {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    align-items: stretch;
    gap: 1.75rem;
  }
  .hero-bergmann__copy {
    order: 1;
    gap: 1rem;
  }
  .hero-bergmann__video {
    order: 2;
    width: 100%;
    max-width: 100%;
  }
  .hero-bergmann__content h1 {
    max-width: none;
    font-size: clamp(1.85rem, 6.2vw, 2.75rem);
  }
  .hero-bergmann__headline-line {
    white-space: nowrap;
  }
  .hero-bergmann__video {
    max-width: none;
    margin-left: 0;
  }
  .hero-bergmann__checklist {
    gap: 0.85rem;
    max-width: none;
  }
  .hero-bergmann__content .btn-lg {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .hero-bergmann {
    min-height: auto;
    padding-top: calc(var(--header-h) + 2rem);
    overflow: hidden;
  }
  .hero-bergmann__inner {
    width: min(1240px, 92%);
  }
  .hero-bergmann__slideshow-track img {
    height: 170px;
    width: 120px;
    border-radius: 16px;
  }
  .hero-bergmann__content .btn-lg { width: 100%; text-align: center; justify-content: center; }
}

/* ─── WISTIA + REFERENZ-VIDEOS ─── */
.wistia-player-wrap,
.wistia-inline {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.wistia-player-wrap wistia-player,
.wistia-inline .wistia_embed {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
}
.wistia-player-wrap wistia-player:not(:defined) {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  filter: blur(5px);
  background: center / cover no-repeat #111;
}
wistia-player[media-id='dfgxlwvbah']:not(:defined) {
  background-image: url('https://fast.wistia.com/embed/medias/dfgxlwvbah/swatch');
}
wistia-player[media-id='x8f80tyqpb']:not(:defined) {
  background-image: url('https://fast.wistia.com/embed/medias/x8f80tyqpb/swatch');
}
wistia-player[media-id='7clsgtp07l']:not(:defined) {
  background-image: url('https://fast.wistia.com/embed/medias/7clsgtp07l/swatch');
}
.ref-videos-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 2.25rem 0 2.35rem;
}
.ref-videos-section .section-label {
  color: var(--accent-light);
  margin-bottom: 0.3rem;
}
.ref-videos-section .section-title {
  color: #fff;
  margin-bottom: 0;
}
.ref-videos-header {
  margin-bottom: 1rem;
  text-align: left;
}
.ref-gallery-header { margin-bottom: 0.85rem; }

/* Referenz-Projekte – dicht, 2-Spalten */
.ref-projects {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  max-width: none;
  margin: 0;
  align-items: start;
}
.ref-project {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.ref-project__media {
  line-height: 0;
}
.ref-project__media .wistia-player-wrap {
  border-radius: 0;
  box-shadow: none;
}
.ref-project__body {
  padding: 0.8rem 0.95rem 0.95rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
}
.ref-project__meta {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
  width: 100%;
}
.ref-project__loc {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-light);
}
.ref-project__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  line-height: 1.4;
  text-wrap: pretty;
}
.ref-project__name {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
}
.ref-project__pull {
  margin: 0.1rem 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  font-style: italic;
  line-height: 1.35;
}

/* Legacy ref-slide (falls noch genutzt) */
.ref-list { display: flex; flex-direction: column; gap: 1.5rem; }
.ref-divider { display: none; }
.ref-slide { padding: 0; }
.ref-slide__top {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}
.ref-slide__quote {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 0.95rem 1.1rem;
  height: auto;
}
.ref-slide__quote-text {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0 0 0.65rem;
}
.ref-person {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 0.65rem;
  margin: 0;
}
.ref-person__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.ref-person__name {
  font-weight: 700;
  color: #fff;
  font-size: 0.92rem;
}
.ref-person__location {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

.page-hero--compact {
  padding: calc(var(--header-h) + 1.5rem) 0 1.5rem;
}
.page-hero--compact h1 { margin-bottom: 0.35rem; }
.page-hero--compact p { margin: 0; font-size: 1rem; }

@media (max-width: 900px) {
  .ref-projects { grid-template-columns: 1fr; gap: 1rem; }
}
@media (max-width: 768px) {
  .ref-videos-section { padding: 1.75rem 0; }
  .ref-videos-header { margin-bottom: 0.85rem; }
  .ref-project__body { padding: 0.75rem 0.85rem 0.9rem; gap: 0.25rem; }
  .gallery-grid--tight { gap: 0.45rem; }
  .services-grid { grid-template-columns: 1fr; }
}

.video-thumb {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: #000;
  aspect-ratio: 16 / 9;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.video-thumb:hover img { transform: scale(1.03); }
.video-thumb__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 31, 21, 0.25);
}
.video-thumb__play-btn {
  width: 72px;
  height: 72px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s, background 0.2s;
}
.video-thumb:hover .video-thumb__play-btn {
  transform: scale(1.08);
  background: var(--accent-light);
}
.video-thumb__play-btn::after {
  content: '';
  border: 0 solid transparent;
  border-width: 11px 0 11px 20px;
  border-left-color: #fff;
  margin-left: 4px;
}
