/*
Theme Name: Melcher Außenanlagenbau
Theme URI: https://aussenanlagenbau-melcher.de
Author: Außenanlagenbau Melcher
Author URI: https://aussenanlagenbau-melcher.de
Description: Modernes Theme für Außenanlagenbau Melcher
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: melcher
*/

/* ═══════════════════════════════════════════════════
   DESIGN TOKENS AS CSS VARIABLES
   ═══════════════════════════════════════════════════ */
:root {
  /* Brand Core */
  --forest: #2A2A2A;
  --forest-light: #3F3F3F;
  --forest-muted: #5A5A5A;
  /* Expanded Palette */
  --sage: #FF8C42;
  --sage-light: #FFB380;
  --sage-pale: #FFF3E8;
  --cream: #F8F8F8;
  --warm-white: #FFFFFF;
  --sand: #FF6B35;
  --sand-light: #FF8C42;
  --sand-pale: #FFE5D1;
  /* Neutrals */
  --charcoal: #1A1A1A;
  --slate: #4A4A4A;
  --stone: #707070;
  --silver: #A0A0A0;
  --mist: #F0F0F0;
  /* Accent / CTA */
  --amber: #FF6B35;
  --amber-hover: #E55A24;
  --amber-light: #FFE5D1;
  /* Fonts */
  --font-display: 'DM Sans', 'Inter', sans-serif;
  --font-body: 'Inter', 'DM Sans', sans-serif;
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  /* Radii */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 6px;
  --radius-xl: 8px;
  --radius-full: 9999px;
}

/* ═══════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-body); color: var(--charcoal); background: var(--warm-white); overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
::selection { background: var(--sage); color: var(--forest); }

/* ═══════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes heroLine {
  from { width: 0; }
  to { width: 80px; }
}
@keyframes float {
  0%, 100% { transform: translateY(0) translateX(-50%); }
  50% { transform: translateY(-10px) translateX(-50%); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Scroll reveal */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.75s cubic-bezier(.22,1,.36,1), transform 0.75s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════════════════ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: clamp(80px, 10vw, 120px) 0; }
.text-center { text-align: center; }

.section-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--sage); font-family: var(--font-body);
}
.section-label::before {
  content: ''; width: 32px; height: 2px; background: var(--sage); display: inline-block;
}
.section-label--light { color: rgba(255,255,255,0.7); }
.section-label--light::before { background: rgba(255,255,255,0.4); }

.heading-display {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700; color: var(--charcoal); line-height: 1.12; margin-top: 16px;
}
.heading-display em { color: var(--forest-light); font-style: italic; }

/* ═══════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; border: none; cursor: pointer;
  border-radius: var(--radius-md); transition: all 0.3s cubic-bezier(.22,1,.36,1);
  letter-spacing: 0.02em; line-height: 1; white-space: nowrap;
}
.btn svg { flex-shrink: 0; }
.btn--primary { background: var(--amber); color: #fff; }
.btn--primary:hover { background: var(--amber-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,136,58,0.35); }
.btn--secondary { background: transparent; color: var(--forest); border: 2px solid var(--forest); }
.btn--secondary:hover { background: var(--forest); color: #fff; }
.btn--white-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4); }
.btn--white-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }
.btn--sm { padding: 10px 20px; font-size: 14px; }
.btn--md { padding: 14px 28px; font-size: 15px; }
.btn--lg { padding: 18px 36px; font-size: 16px; }
.btn--full { width: 100%; justify-content: center; }

.arrow-icon {
  display: inline-flex; transition: transform 0.3s;
}
.btn:hover .arrow-icon { transform: translateX(4px); }

/* ═══════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s cubic-bezier(.22,1,.36,1);
}
.nav.scrolled {
  padding: 12px 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__logo-mark {
  width: 40px; height: 40px; border-radius: 8px;
  background: linear-gradient(135deg, var(--forest), var(--forest-light));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 18px;
}
.nav__logo-text span:first-child {
  font-family: var(--font-body); font-weight: 700; font-size: 16px;
  color: #fff; line-height: 1.2; display: block; transition: color 0.3s;
}
.nav__logo-text span:last-child {
  font-size: 11px; font-weight: 500; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.7); display: block; transition: color 0.3s;
}
.nav.scrolled .nav__logo-text span:first-child { color: var(--charcoal); }
.nav.scrolled .nav__logo-text span:last-child { color: var(--stone); }

.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__link {
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.9);
  transition: color 0.3s; letter-spacing: 0.02em;
}
.nav.scrolled .nav__link { color: var(--slate); }
.nav__link:hover { color: var(--amber); }

.nav__mobile-toggle {
  display: none; background: none; border: none; cursor: pointer;
  color: #fff; padding: 4px; transition: color 0.3s;
}
.nav.scrolled .nav__mobile-toggle { color: var(--charcoal); }

.nav__mobile-menu {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
  padding: 24px; box-shadow: var(--shadow-lg); animation: fadeUp 0.3s ease;
}
.nav__mobile-menu.open { display: block; }
.nav__mobile-menu a {
  display: block; padding: 16px 0; font-size: 18px; font-weight: 500;
  color: var(--charcoal); border-bottom: 1px solid var(--mist);
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__mobile-toggle { display: block; }
}

/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background:
    linear-gradient(165deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.6) 100%),
    url('https://aussenanlagenbau-melcher.de/wp-content/uploads/2026/03/AdobeStock_286189209-scaled.jpeg') center/cover no-repeat,
    linear-gradient(165deg, var(--forest) 0%, #0F2611 60%, #1B3A1D 100%);
  overflow: hidden;
}
.hero__grid {
  position: absolute; inset: 0; opacity: 0.04;
  background-image:
    linear-gradient(rgba(255,255,255,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.3) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero__orb-1 {
  position: absolute; top: -20%; right: -10%; width: 700px; height: 700px;
  border-radius: 50%; background: radial-gradient(circle, rgba(143,174,126,0.13), transparent 70%);
  filter: blur(80px);
}
.hero__orb-2 {
  position: absolute; bottom: -30%; left: -10%; width: 500px; height: 500px;
  border-radius: 50%; background: radial-gradient(circle, rgba(212,136,58,0.08), transparent 70%);
  filter: blur(60px);
}
.hero__content {
  max-width: 1280px; margin: 0 auto; padding: 140px 24px 80px; width: 100%;
  position: relative; z-index: 2;
}
.hero__inner { max-width: 720px; }
.hero__label { animation: fadeUp 0.8s ease both; animation-delay: 0.2s; }
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 700; color: #fff; line-height: 1.08;
  margin-top: 24px;
  animation: fadeUp 0.8s ease both; animation-delay: 0.4s;
}
.hero__title .accent-sand { color: var(--sand); font-style: italic; }
.hero__title .accent-sage { color: var(--sage); }
.hero__subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem); color: rgba(255,255,255,0.7);
  line-height: 1.7; margin-top: 28px; max-width: 560px;
  animation: fadeUp 0.8s ease both; animation-delay: 0.6s;
}
.hero__ctas {
  display: flex; flex-wrap: wrap; gap: 16px; margin-top: 40px;
  animation: fadeUp 0.8s ease both; animation-delay: 0.8s;
}
.hero__trust {
  display: flex; flex-wrap: wrap; gap: 32px; margin-top: 56px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
  animation: fadeUp 0.8s ease both; animation-delay: 1s;
}
.hero__trust-item { display: flex; align-items: center; gap: 12px; }
.hero__trust-num {
  font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--sand);
}
.hero__trust-label { font-size: 13px; color: rgba(255,255,255,0.55); font-weight: 500; line-height: 1.3; }
.hero__scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: float 3s ease infinite; color: rgba(255,255,255,0.4);
}
.hero__scroll span { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }

/* ═══════════════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════════════ */
.trust-bar {
  background: var(--cream); padding: 48px 24px;
  border-bottom: 1px solid var(--mist);
}
.trust-bar__grid {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px;
}
.trust-bar__item {
  display: flex; align-items: center; gap: 14px; justify-content: center;
}
.trust-bar__icon { color: var(--forest-light); flex-shrink: 0; display: flex; }
.trust-bar__text { font-size: 14px; font-weight: 600; color: var(--slate); }

/* ═══════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════ */
.about { padding: clamp(80px, 10vw, 120px) 24px; background: var(--warm-white); }
.about__grid {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 80px; align-items: center;
}
.about__text p { font-size: 17px; line-height: 1.8; color: var(--stone); margin-top: 24px; }
.about__checks {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px;
}
.about__check {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500; color: var(--slate);
}
.about__check svg { color: var(--forest-light); flex-shrink: 0; }
.about__quote {
  margin-top: 40px; padding: 24px; border-radius: var(--radius-lg);
  background: var(--sage-pale); border: 1px solid var(--sage-light);
}
.about__quote p:first-child {
  font-family: var(--font-display); font-style: italic;
  font-size: 18px; color: var(--forest); line-height: 1.6;
}
.about__quote p:last-child {
  font-size: 13px; font-weight: 600; color: var(--stone); margin-top: 12px;
}
.about__image-wrap { position: relative; }
.about__image-box {
  border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 4/5;
  background: linear-gradient(135deg, rgba(143,174,126,0.25), rgba(27,58,29,0.2));
  display: flex; align-items: center; justify-content: center;
}
.about__image-inner {
  width: 80%; height: 80%; border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--sage-pale), var(--sage-light));
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 16px;
}
.about__image-inner .emoji { font-size: 64px; }
.about__image-inner .name { font-size: 14px; font-weight: 600; color: var(--forest); }
.about__image-inner .role { font-size: 12px; color: var(--stone); }
.about__badge {
  position: absolute; bottom: -20px; right: -12px;
  background: var(--amber); color: #fff; padding: 16px 24px;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); text-align: center;
}
.about__badge .num { font-family: var(--font-display); font-size: 28px; font-weight: 700; line-height: 1; }
.about__badge .label { font-size: 12px; font-weight: 600; margin-top: 4px; opacity: 0.9; }

@media (max-width: 768px) {
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ═══════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════ */
.services {
  padding: clamp(80px, 10vw, 120px) 24px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);
}
.services__intro { max-width: 640px; margin: 0 auto 60px; text-align: center; }
.services__intro p { font-size: 17px; color: var(--stone); line-height: 1.7; margin-top: 16px; }
.services__tabs {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 48px;
}
.services__tab {
  padding: 12px 24px; border-radius: var(--radius-full); border: none; cursor: pointer;
  background: var(--sage-pale); color: var(--slate);
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  transition: all 0.3s; letter-spacing: 0.02em;
}
.services__tab.active { background: var(--forest); color: #fff; }
.services__tab:hover:not(.active) { background: var(--sage-light); }

.services__card {
  max-width: 1100px; margin: 0 auto;
  background: #fff; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--mist);
  display: grid; grid-template-columns: 1fr 1fr; min-height: 420px;
}
.services__card-content { padding: clamp(32px, 4vw, 56px); }
.services__card-icon { color: var(--forest-light); margin-bottom: 20px; }
.services__card-title {
  font-family: var(--font-display); font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 700; color: var(--charcoal); line-height: 1.15;
}
.services__card-tagline { font-size: 16px; color: var(--amber); font-weight: 600; margin-top: 8px; }
.services__card-desc { font-size: 16px; color: var(--stone); line-height: 1.7; margin-top: 20px; }
.services__card-items { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
.services__card-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; font-weight: 500; color: var(--charcoal);
}
.services__card-item .check-circle {
  width: 28px; height: 28px; border-radius: 50%; background: var(--sage-pale);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.services__card-cta { margin-top: 36px; }
.services__card-visual {
  background: linear-gradient(135deg, rgba(27,58,29,0.08), rgba(143,174,126,0.2));
  display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.services__card-visual::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(143,174,126,0.3), transparent 70%);
}
.services__card-visual-circle {
  width: 180px; height: 180px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(27,58,29,0.2), rgba(143,174,126,0.35));
  display: flex; align-items: center; justify-content: center; position: relative; z-index: 1;
}
.services__card-visual-circle svg { transform: scale(2); color: var(--forest); }

/* Hide inactive panels */
.services__panel { display: none; }
.services__panel.active { display: grid; grid-template-columns: 1fr 1fr; }

@media (max-width: 768px) {
  .services__card, .services__panel.active { grid-template-columns: 1fr; }
  .services__card-visual { min-height: 200px; }
}

/* ═══════════════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════════════ */
.stats {
  padding: 72px 24px;
  background: linear-gradient(135deg, var(--forest), #0F2611);
  position: relative; overflow: hidden;
}
.stats__bg {
  position: absolute; inset: 0; opacity: 0.06;
  background: radial-gradient(circle at 20% 80%, var(--sage) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, var(--amber) 0%, transparent 50%);
}
.stats__grid {
  max-width: 1000px; margin: 0 auto; position: relative;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 40px;
}
.stats__item { text-align: center; }
.stats__num {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; color: var(--sand); line-height: 1;
}
.stats__label {
  font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 8px;
  font-weight: 500; letter-spacing: 0.03em;
}

/* ═══════════════════════════════════════════════════
   PROCESS
   ═══════════════════════════════════════════════════ */
.process { padding: clamp(80px, 10vw, 120px) 24px; background: var(--warm-white); }
.process__intro { max-width: 580px; margin: 0 auto 64px; text-align: center; }
.process__grid {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px;
}
.process__card {
  padding: 40px 32px; border-radius: var(--radius-xl);
  background: #fff; border: 1px solid var(--mist); box-shadow: var(--shadow-sm);
  transition: transform 0.4s, box-shadow 0.4s;
}
.process__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.process__card--highlight {
  background: var(--forest); border: none; box-shadow: var(--shadow-xl);
}
.process__card--highlight:hover { transform: translateY(-6px); }
.process__card--highlight .process__card-num { color: var(--sand); }
.process__card--highlight .process__card-title { color: #fff; }
.process__card--highlight .process__card-desc { color: rgba(255,255,255,0.7); }
.process__card-num {
  font-family: var(--font-display); font-size: 48px; font-weight: 700;
  color: var(--sage-pale); line-height: 1;
}
.process__card-title {
  font-family: var(--font-body); font-size: 20px; font-weight: 700;
  color: var(--charcoal); margin-top: 20px;
}
.process__card-desc {
  font-size: 15px; line-height: 1.7; color: var(--stone); margin-top: 12px;
}

/* ═══════════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════════ */
.gallery { padding: clamp(80px, 10vw, 120px) 24px; background: var(--cream); }
.gallery__intro { max-width: 580px; margin: 0 auto 48px; text-align: center; }
.gallery__filters {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 40px;
}
.gallery__filter {
  padding: 10px 22px; border-radius: var(--radius-full); border: none; cursor: pointer;
  background: #fff; color: var(--slate); box-shadow: var(--shadow-sm);
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  transition: all 0.3s;
}
.gallery__filter.active { background: var(--forest); color: #fff; box-shadow: none; }
.gallery__filter:hover:not(.active) { background: var(--sage-pale); }
.gallery__grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px;
}
.gallery__item {
  aspect-ratio: 4/3; border-radius: var(--radius-xl); overflow: hidden;
  cursor: pointer; position: relative; box-shadow: var(--shadow-sm);
  transition: transform 0.4s cubic-bezier(.22,1,.36,1), box-shadow 0.4s;
}
.gallery__item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.gallery__item img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s cubic-bezier(.22,1,.36,1);
}
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px;
  background: var(--sage-pale);
}
.gallery__item-bg .emoji { font-size: 48px; opacity: 0.4; }
.gallery__item-bg .label { font-size: 15px; font-weight: 600; color: var(--charcoal); }
.gallery__item-bg .sub { font-size: 12px; color: var(--stone); }
.gallery__item-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  opacity: 0; transition: opacity 0.35s;
  display: flex; align-items: flex-end;
  z-index: 2;
}
.gallery__item:hover .gallery__item-overlay { opacity: 1; }
.gallery__item-overlay span { color: #fff; font-weight: 600; font-size: 15px; }
/* staggered fade-in for gallery items */
@keyframes galleryFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.gallery__item.visible {
  animation: galleryFadeUp 0.5s cubic-bezier(.22,1,.36,1) both;
}
.gallery__item.visible:nth-child(3n+2) { animation-delay: 0.08s; }
.gallery__item.visible:nth-child(3n+3) { animation-delay: 0.16s; }
.gallery__more { text-align: center; margin-top: 48px; }

@media (max-width: 768px) {
  .gallery__grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   CTA BAND
   ═══════════════════════════════════════════════════ */
.cta-band {
  padding: clamp(80px, 10vw, 100px) 24px;
  background: linear-gradient(160deg, var(--forest), #0F2611);
  position: relative; overflow: hidden; text-align: center;
}
.cta-band__orb {
  position: absolute; top: -100px; right: -100px; width: 400px; height: 400px;
  border-radius: 50%; background: radial-gradient(circle, rgba(212,136,58,0.12), transparent);
  filter: blur(60px);
}
.cta-band__inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 2; }
.cta-band__title {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700; color: #fff; line-height: 1.12;
}
.cta-band__title em { color: var(--sand); font-style: italic; }
.cta-band__subtitle {
  font-size: 18px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-top: 20px;
}
.cta-band__buttons {
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 40px;
}
.cta-band__reassurance {
  display: flex; flex-wrap: wrap; gap: 24px; justify-content: center;
  margin-top: 40px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1);
}
.cta-band__reassurance-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: rgba(255,255,255,0.6); font-weight: 500;
}
.cta-band__reassurance-item svg { color: var(--sage); }

/* ═══════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════ */
.contact { padding: clamp(80px, 10vw, 120px) 24px; background: var(--warm-white); }
.contact__grid {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
}
.contact__left p { font-size: 16px; color: var(--stone); line-height: 1.7; margin-top: 20px; }
.contact__info { margin-top: 40px; display: flex; flex-direction: column; gap: 24px; }
.contact__info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact__info-icon {
  width: 48px; height: 48px; border-radius: 0;
  background: transparent; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; color: var(--sand);
}
.contact__info-label { font-size: 16px; font-weight: 600; color: var(--charcoal); }
.contact__info-sub { font-size: 13px; color: var(--stone); margin-top: 2px; }
.contact__whatsapp {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 36px; padding: 20px 24px; border-radius: var(--radius-lg);
  background: #25D366; color: #fff; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s; border: none;
  font-family: var(--font-body);
}
.contact__whatsapp:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.35); }
.contact__whatsapp-title { font-weight: 700; font-size: 15px; text-align: left; }
.contact__whatsapp-sub { font-size: 12px; opacity: 0.85; text-align: left; }

.contact__form-card {
  background: #fff; border-radius: var(--radius-xl); padding: 40px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--mist);
}
.contact__form-card h3 {
  font-family: var(--font-body); font-size: 20px; font-weight: 700;
  color: var(--charcoal); margin-bottom: 8px;
}
.contact__form-card > p { font-size: 14px; color: var(--stone); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--slate); margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid var(--mist); border-radius: var(--radius-md);
  font-size: 15px; font-family: var(--font-body);
  outline: none; transition: border-color 0.2s;
  background: var(--warm-white);
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--forest-light); }
.form-group textarea { resize: vertical; min-height: 100px; }
.contact__form-disclaimer {
  font-size: 12px; color: var(--silver); margin-top: 16px; line-height: 1.5;
}

@media (max-width: 768px) {
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.footer {
  background: #111111; color: rgba(255,255,255,0.55);
  padding: 0 0 0;
  border-top: 3px solid var(--amber);
}
.footer__inner {
  max-width: 1120px; margin: 0 auto;
  padding: 72px 24px 48px;
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px;
  margin-bottom: 56px;
}
.footer__brand { margin-bottom: 20px; }
.footer__desc { font-size: 14px; line-height: 1.8; max-width: 280px; margin-top: 16px; }
.footer__social { display: flex; gap: 12px; margin-top: 24px; }
.footer__social-link {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); transition: all 0.2s;
}
.footer__social-link:hover { border-color: var(--amber); color: var(--amber); }
.footer h4 {
  color: #fff; font-size: 12px; font-weight: 700;
  margin-bottom: 20px; letter-spacing: 0.12em; text-transform: uppercase;
}
.footer__link {
  display: flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.5); font-size: 14px; margin-bottom: 12px;
  transition: color 0.2s;
}
.footer__link:hover { color: #fff; }
.footer__contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 16px; font-size: 14px; line-height: 1.6;
}
.footer__contact-item svg { color: var(--amber); flex-shrink: 0; margin-top: 2px; }
.footer__contact-item a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer__contact-item a:hover { color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 24px;
  max-width: 1120px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px; font-size: 13px;
}
.footer__bottom-links { display: flex; gap: 24px; }
.footer__bottom-links a { color: rgba(255,255,255,0.4); font-size: 13px; transition: color 0.2s; }
.footer__bottom-links a:hover { color: rgba(255,255,255,0.8); }

@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ═══════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  cursor: pointer; border: none;
  transition: transform 0.3s, box-shadow 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.5); }

/* ═══════════════════════════════════════════════════
   PAGE CONTENT (Standard WordPress Pages)
   ═══════════════════════════════════════════════════ */
.page-content {
  max-width: 900px; margin: 0 auto; padding: clamp(80px, 10vw, 120px) 24px;
}
.page-content h1, .page-content h2, .page-content h3 {
  font-family: var(--font-display); color: var(--charcoal); margin-top: 2em; margin-bottom: 0.75em;
}
.page-content h1 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-top: 0; }
.page-content p { font-size: 16px; line-height: 1.8; color: var(--stone); margin-bottom: 1.25em; }
.page-content ul, .page-content ol { margin: 1em 0 1em 1.5em; color: var(--stone); line-height: 1.8; }
.page-content a { color: var(--amber); text-decoration: underline; }
.page-content a:hover { color: var(--amber-hover); }

/* ═══════════════════════════════════════════════════
   LEGAL PAGES (Impressum, Datenschutz, AGBs)
   ═══════════════════════════════════════════════════ */
.legal-page__hero {
  background: #111111;
  border-top: 3px solid var(--amber);
  padding: 120px 24px 64px;
}
.legal-page__hero-inner {
  max-width: 800px;
  margin: 0 auto;
}
.legal-page__hero .section-label { color: var(--amber); }
.legal-page__hero .heading-display { color: #fff; margin-top: 12px; }

.legal-page__content {
  padding: 64px 24px 100px;
  background: var(--warm-white);
}
.legal-container {
  max-width: 800px;
  margin: 0 auto;
}
.legal-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--mist);
}
.legal-section:last-of-type {
  border-bottom: none;
}
.legal-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.legal-section h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--slate);
  margin: 24px 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.legal-section p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--stone);
  margin-bottom: 16px;
}
.legal-section ul, .legal-section ol {
  margin: 12px 0 16px 20px;
  color: var(--stone);
  font-size: 15px;
  line-height: 1.8;
}
.legal-section li { margin-bottom: 6px; }
.legal-section a { color: var(--amber); text-decoration: underline; }
.legal-section a:hover { color: var(--amber-hover); }
.legal-back { margin-top: 48px; }
