/* ============================================================
   WildGuard Lippstadt — Schutz für Tiere & Natur
   Stylesheet v1.0 — Naturfarben, modern, responsiv
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ─── Custom Properties ─────────────────────────────────── */
:root {
  --green-900: #0d2e10;
  --green-800: #1a4a1e;
  --green-700: #1e5922;
  --green-600: #2d7a32;
  --green-500: #3a9140;
  --green-400: #52b058;
  --green-300: #7eca84;
  --green-100: #d4edda;
  --green-50:  #eef7ef;

  --brown-900: #2e1505;
  --brown-700: #5c3418;
  --brown-500: #8b5e3c;
  --brown-300: #c49a72;
  --brown-100: #f0e0cc;

  --cream:     #f8f4ed;
  --cream-dark:#ede6d6;
  --white:     #ffffff;

  --text-900:  #151515;
  --text-700:  #333333;
  --text-500:  #555555;
  --text-300:  #888888;

  --shadow-xs: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.09);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.13);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.18);
  --shadow-xl: 0 16px 64px rgba(0,0,0,0.22);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --nav-height: 72px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body:    'Inter', 'system-ui', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-700);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ─── Typography Scale ──────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--text-900);
  line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); font-weight: 700; }
h4 { font-size: 1.15rem; font-weight: 600; font-family: var(--font-body); }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ─── Layout Utilities ──────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section-pad {
  padding-block: 5rem;
}

.section-pad-lg {
  padding-block: 7rem;
}

.text-center { text-align: center; }
.text-green  { color: var(--green-600); }
.text-brown  { color: var(--brown-500); }

/* ─── Section Labels & Headings ─────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-600);
  background: var(--green-50);
  border: 1px solid var(--green-300);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.9rem;
}

.section-heading {
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 1.2rem;
}

.section-sub {
  color: var(--text-500);
  font-size: 1.05rem;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 3rem;
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--green-600);
  color: var(--white);
  border-color: var(--green-600);
}
.btn-primary:hover {
  background: var(--green-700);
  border-color: var(--green-700);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 122, 50, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--green-700);
  border-color: var(--green-600);
}
.btn-outline-dark:hover {
  background: var(--green-600);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-brown {
  background: var(--brown-700);
  color: var(--white);
  border-color: var(--brown-700);
}
.btn-brown:hover {
  background: var(--brown-900);
  border-color: var(--brown-900);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(92, 52, 24, 0.35);
}

/* ─── Navigation ─────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(26, 74, 30, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

.navbar.solid {
  background: var(--green-800);
}

.nav-inner {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--green-500);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.01em;
}

.nav-logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--green-300);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color 0.25s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--green-300);
  border-radius: 2px;
  transition: width 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-links a:hover {
  color: var(--white);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 55%;
}
.nav-links a.active {
  color: var(--white);
}

.nav-cta {
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu — slide-in with staggered links */
.mobile-menu {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--green-900);
  padding-top: var(--nav-height);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  /* closed state */
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  pointer-events: none;
  transition: clip-path 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}
.mobile-menu.open {
  clip-path: inset(0 0 0% 0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  font-size: 1.35rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  padding: 0.7rem 2.5rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.01em;
  /* individual link animation */
  opacity: 0;
  transform: translateY(18px);
  transition: color 0.2s ease, background 0.2s ease,
              opacity 0.4s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open a:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.08s; }
.mobile-menu.open a:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.14s; }
.mobile-menu.open a:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.20s; }
.mobile-menu.open a:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.26s; }
.mobile-menu.open a:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.32s; }
.mobile-menu.open a:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.38s; }
.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* ─── Hero Section ───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, #0d2e10 0%, #1a4a1e 30%, #2d7a32 65%, #1a5c22 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 75% 50%, rgba(106, 191, 75, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 0% 100%, rgba(45, 122, 50, 0.3) 0%, transparent 60%);
}

/* Animated background orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
  animation: drift 12s ease-in-out infinite alternate;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #52b058, transparent);
  top: -100px; right: 10%;
  animation-duration: 14s;
}
.hero-orb-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, #7eca84, transparent);
  bottom: 5%; left: 5%;
  animation-duration: 10s;
  animation-delay: -5s;
}
.hero-orb-3 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, #3a9140, transparent);
  top: 40%; left: 25%;
  animation-duration: 16s;
  animation-delay: -8s;
}

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.08); }
}

/* Decorative SVG leaves */
.hero-leaves {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-leaf {
  position: absolute;
  opacity: 0.07;
  animation: leafFloat 20s ease-in-out infinite alternate;
}
.hero-leaf:nth-child(1) { bottom: 10%; right: 5%;  width: 220px; animation-duration: 18s; }
.hero-leaf:nth-child(2) { top: 15%;    right: 20%; width: 140px; animation-duration: 14s; animation-delay: -4s; }
.hero-leaf:nth-child(3) { bottom: 30%; left: 2%;   width: 180px; animation-duration: 22s; animation-delay: -10s; }

@keyframes leafFloat {
  from { transform: rotate(0deg) scale(1); }
  to   { transform: rotate(8deg) scale(1.05); }
}

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #a8e063, #6abf4b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

/* ─── Page Hero (inner pages) ───────────────────────────── */
.page-hero {
  background: linear-gradient(145deg, #0d2e10 0%, #1a4a1e 40%, #2d7a32 100%);
  padding: calc(var(--nav-height) + 3.5rem) 0 4rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 90% at 50% 100%, rgba(84,190,90,0.1) 0%, transparent 70%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero .hero-sub {
  margin-inline: auto;
}

/* ─── Feature Bar ────────────────────────────────────────── */
.feature-bar {
  background: var(--white);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 10;
}

.feature-bar-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.6rem 2rem;
  border-right: 1px solid var(--cream-dark);
  transition: var(--transition);
}
.feature-item:last-child { border-right: none; }
.feature-item:hover {
  background: var(--green-50);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--green-50);
  border: 1px solid var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.feature-item:hover .feature-icon {
  background: var(--green-600);
  border-color: var(--green-600);
}
.feature-item:hover .feature-icon svg {
  color: var(--white);
}
.feature-icon svg {
  width: 22px;
  height: 22px;
  color: var(--green-600);
  transition: var(--transition);
}

.feature-label {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-900);
  margin-bottom: 0.15rem;
}
.feature-desc {
  font-size: 0.8rem;
  color: var(--text-300);
  margin: 0;
}

/* ─── Divider ────────────────────────────────────────────── */
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--green-600), var(--green-400));
  border-radius: var(--radius-full);
  margin: 1rem auto 0;
  display: block;
}

/* ─── Cards ──────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.6rem;
}

.card-body {
  padding: 2rem;
}

.card-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 0.5rem;
}

.card h3 { margin-bottom: 0.75rem; }
.card p  { color: var(--text-500); font-size: 0.95rem; }

/* Highlight card */
.card-highlight {
  background: var(--green-800);
  color: var(--white);
  border-color: var(--green-700);
}
.card-highlight h3,
.card-highlight p { color: var(--white); }
.card-highlight .card-label { color: var(--green-300); }
.card-highlight .card-icon-wrap { background: rgba(255,255,255,0.1); }

/* ─── Services Grid ──────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

/* ─── Check List ─────────────────────────────────────────── */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-700);
}

.check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.check-icon svg {
  width: 11px;
  height: 11px;
  color: var(--white);
}

/* ─── Animal Section ─────────────────────────────────────── */
.animal-section {
  padding-block: 5rem;
}

.animal-section:nth-child(even) {
  background: var(--cream);
}

.animal-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.animal-layout.reverse {
  direction: rtl;
}
.animal-layout.reverse > * {
  direction: ltr;
}

.animal-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, var(--green-800), var(--green-600));
  display: flex;
  align-items: center;
  justify-content: center;
}

.animal-emoji-display {
  font-size: 6rem;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3));
  animation: animalBob 4s ease-in-out infinite alternate;
}

@keyframes animalBob {
  from { transform: translateY(0); }
  to   { transform: translateY(-10px); }
}

.animal-visual-badge {
  position: absolute;
  bottom: 1.2rem;
  right: 1.2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-700);
  box-shadow: var(--shadow-sm);
}

/* ─── Danger Tags (for Igel Gefahren) ───────────────────── */
.danger-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.danger-item {
  background: #fff5f5;
  border: 1px solid #ffc9c9;
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: #c0392b;
}
.danger-item span {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

/* ─── Process Steps ──────────────────────────────────────── */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  left: 26px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: linear-gradient(to bottom, var(--green-600), var(--green-300));
  z-index: 0;
}

.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green-600);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px var(--white), 0 0 0 6px var(--green-300);
}

.step-content {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.6rem;
  flex: 1;
  box-shadow: var(--shadow-xs);
}

.step-content h4 {
  font-size: 1.05rem;
  color: var(--text-900);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}
.step-content p {
  font-size: 0.9rem;
  color: var(--text-500);
  margin: 0;
}

/* ─── Info Box / Hinweis ─────────────────────────────────── */
.info-box {
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-left: 4px solid var(--green-600);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.6rem;
}

.info-box-green {
  background: var(--green-50);
  border-left-color: var(--green-600);
}
.info-box-brown {
  background: var(--brown-100);
  border-left-color: var(--brown-500);
}
.info-box-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--green-800);
  margin-bottom: 0.4rem;
}

/* ─── Stats / Counter ────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--green-600);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-500);
  font-weight: 500;
}

/* ─── Team Values & Principles ───────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-200);
}

.value-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.value-card h4 {
  color: var(--text-900);
  margin-bottom: 0.5rem;
}
.value-card p {
  font-size: 0.9rem;
  color: var(--text-500);
}

/* ─── Contact Form ───────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}

.contact-info h2 { margin-bottom: 1rem; }
.contact-info .section-sub { margin: 0 0 2rem; }

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-item .icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-item .icon-wrap svg {
  width: 18px; height: 18px;
  color: var(--green-600);
}

.contact-info-item strong { display: block; font-size: 0.85rem; color: var(--text-900); }
.contact-info-item span  { font-size: 0.9rem; color: var(--text-500); }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-700);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-600);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(45, 122, 50, 0.12);
}

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

.form-note {
  font-size: 0.8rem;
  color: var(--text-300);
  margin-top: 1rem;
  text-align: center;
}

/* Success message */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.form-success.visible { display: block; }
.form-success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.form-success h3 {
  color: var(--green-700);
  margin-bottom: 0.5rem;
}

/* ─── Highlight / CTA Banner ─────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-600) 100%);
  padding-block: 5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0, rgba(200,255,180,0.08) 0%, transparent 70%);
}

.cta-banner-content {
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-banner p  {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 560px;
  margin-inline: auto;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ─── Footer ─────────────────────────────────────────────── */
footer {
  background: var(--text-900);
  color: rgba(255,255,255,0.65);
}

.footer-top {
  padding-block: 4rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand p {
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 260px;
}

.footer-logo-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
}
.footer-logo-sub {
  font-size: 0.7rem;
  color: var(--green-300);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}

.footer-slogan {
  font-style: italic;
  color: var(--green-300);
  font-size: 0.85rem;
  margin-top: 0.8rem;
  margin-bottom: 0;
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-300);
  margin-bottom: 1.2rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-block: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.82rem;
  margin: 0;
}

.footer-bottom a {
  color: var(--green-300);
  transition: var(--transition);
}
.footer-bottom a:hover { color: var(--white); }

.footer-nature-icons {
  display: flex;
  gap: 0.75rem;
  font-size: 1.1rem;
}

/* ─── Scroll Reveal Animations ─────────────────────────────*/
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ─── Tagline badge ──────────────────────────────────────── */
.tagline-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}

.tagline-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  color: var(--green-700);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
}

/* ─── Intro Welcome Section ──────────────────────────────── */
.welcome-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.welcome-visual {
  position: relative;
}

.welcome-visual-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(145deg, #1a4a1e 0%, #2d7a32 50%, #1e5922 100%);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  box-shadow: var(--shadow-xl);
}

.welcome-visual-float {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow-lg);
  font-size: 0.85rem;
  max-width: 200px;
}
.welcome-visual-float strong {
  display: block;
  color: var(--green-700);
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

/* ─── Breadcrumb ─────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.breadcrumb a:hover { color: rgba(255,255,255,0.9); }
.breadcrumb .sep { opacity: 0.4; }
.breadcrumb .current { color: rgba(255,255,255,0.9); }

/* ─── Mission Banner ─────────────────────────────────────── */
.mission-band {
  background: var(--green-900);
  color: var(--white);
  padding-block: 1.5rem;
  text-align: center;
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 0.01em;
}

.mission-band strong {
  color: var(--green-300);
  font-style: normal;
}

/* ─── Accordion / FAQ ────────────────────────────────────── */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.accordion-item {
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: var(--white);
  border: none;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-900);
  cursor: pointer;
  transition: var(--transition);
}
.accordion-trigger:hover { background: var(--green-50); }
.accordion-trigger .acc-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--green-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.8rem;
  transition: var(--transition);
}
.accordion-item.open .accordion-trigger .acc-icon {
  transform: rotate(45deg);
  background: var(--brown-500);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.accordion-item.open .accordion-body {
  max-height: 600px;
}
.accordion-body-inner {
  padding: 0 1.4rem 1.2rem;
  font-size: 0.92rem;
  color: var(--text-500);
}

/* ─── Top Strip ──────────────────────────────────────────── */
.top-strip {
  background: var(--green-900);
  padding-block: 0.45rem;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.03em;
}
.top-strip a { color: var(--green-300); font-weight: 600; }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .welcome-layout,
  .animal-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .animal-layout.reverse { direction: ltr; }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-info {
    position: static;
  }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .feature-bar-inner {
    grid-template-columns: 1fr;
  }
  .feature-item {
    border-right: none;
    border-bottom: 1px solid var(--cream-dark);
  }
  .feature-item:last-child { border-bottom: none; }

  .section-pad    { padding-block: 3.5rem; }
  .section-pad-lg { padding-block: 5rem; }

  .form-row { grid-template-columns: 1fr; }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .process-steps::before { display: none; }

  .danger-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-cta-pair {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .danger-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* ─── Utility: visually-hidden ──────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ─── Smooth border highlight on hover ──────────────────── */
.hover-lift {
  transition: var(--transition);
}
.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* ─── Loading / active state for form button ─────────────── */
.btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* ─── Green bg section ───────────────────────────────────── */
.section-green {
  background: var(--green-800);
  color: var(--white);
}
.section-green h2,
.section-green h3,
.section-green h4 { color: var(--white); }
.section-green p   { color: rgba(255,255,255,0.78); }
.section-green .section-label {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  color: var(--green-300);
}
.section-green .section-sub { color: rgba(255,255,255,0.7); }

/* ─── Cream bg section ───────────────────────────────────── */
.section-cream  { background: var(--cream); }
.section-cream2 { background: var(--cream-dark); }

/* ─── Creative Values (Über uns) ────────────────────────── */
.values-editorial {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin-inline: auto;
}

.value-editorial-item {
  display: grid;
  grid-template-columns: 52px 2px 1fr;
  gap: 0 1.8rem;
  align-items: start;
  padding: 2rem 1rem;
  border-bottom: 1px solid var(--cream-dark);
  transition: background 0.25s ease, padding 0.25s ease;
  border-radius: var(--radius-md);
  cursor: default;
}
.value-editorial-item:last-child { border-bottom: none; }

.value-editorial-item:hover {
  background: var(--green-50);
}

.value-editorial-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green-200);
  text-align: right;
  line-height: 1.15;
  letter-spacing: -0.02em;
  transition: color 0.25s ease;
  user-select: none;
}

.value-editorial-item:hover .value-editorial-num {
  color: var(--green-500);
}

.value-editorial-bar {
  width: 2px;
  background: var(--green-200);
  min-height: 50px;
  border-radius: 2px;
  margin-top: 6px;
  transition: background 0.25s ease;
  align-self: stretch;
}

.value-editorial-item:hover .value-editorial-bar {
  background: var(--green-600);
}

.value-editorial-body {
  padding-top: 2px;
}

.value-editorial-body h4 {
  font-size: 1.05rem;
  color: var(--text-900);
  margin-bottom: 0.35rem;
  font-family: var(--font-body);
  font-weight: 700;
}

.value-editorial-body p {
  font-size: 0.9rem;
  color: var(--text-500);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .value-editorial-item {
    grid-template-columns: 40px 2px 1fr;
    gap: 0 1.2rem;
    padding: 1.5rem 0.5rem;
  }
  .value-editorial-num { font-size: 1.3rem; }
}

/* ─── Team Member Cards ──────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-200);
}

.team-card-photo {
  width: 100%;
  height: 220px;
  background: linear-gradient(145deg, var(--green-700), var(--green-500));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card-initials {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 3px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.team-card-body {
  padding: 1.5rem 1.8rem 2rem;
}

.team-card-role {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 0.3rem;
}

.team-card-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-900);
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
}

.team-card-bio {
  font-size: 0.88rem;
  color: var(--text-500);
  line-height: 1.65;
  margin: 0;
}

/* placeholder card - dashed style for "mitmachen" */
.team-card.placeholder {
  border: 2px dashed var(--cream-dark);
  background: var(--cream);
}
.team-card.placeholder .team-card-photo {
  background: var(--cream-dark);
}
.team-card.placeholder:hover {
  border-color: var(--green-400);
  box-shadow: var(--shadow-md);
}

/* ─── Project Portfolio Cards ────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.portfolio-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.portfolio-img {
  height: 220px;
  background: linear-gradient(145deg, var(--green-800), var(--green-600));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay gradient for text readability */
.portfolio-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,46,16,0.65) 0%, transparent 55%);
}

.portfolio-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 1.2rem 1.4rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.portfolio-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(255,255,255,0.18);
  line-height: 1;
}

.portfolio-type {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  color: var(--green-800);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.7rem;
  border-radius: var(--radius-full);
}

.portfolio-body {
  padding: 1.5rem 1.8rem 2rem;
}

.portfolio-meta {
  font-size: 0.78rem;
  color: var(--text-300);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.portfolio-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-900);
  margin-bottom: 0.65rem;
  font-family: var(--font-heading);
}

.portfolio-desc {
  font-size: 0.88rem;
  color: var(--text-500);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.portfolio-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-700);
  background: var(--green-50);
  border: 1px solid var(--green-100);
  padding: 0.22rem 0.7rem;
  border-radius: var(--radius-full);
}

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

/* ─── Workflow list (Unsere Arbeit) ──────────────────────── */
.workflow-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.workflow-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1.4rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--cream-dark);
  position: relative;
}
.workflow-step:last-child { border-bottom: none; }

.workflow-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-600);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.workflow-step-content h4 {
  color: var(--text-900);
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.workflow-step-content p {
  font-size: 0.88rem;
  color: var(--text-500);
  margin: 0;
}

/* ─── Page Hero adjustments without top strip ────────────── */
.page-hero {
  padding-top: calc(var(--nav-height) + 4rem);
}
