/* =============================================
   CUSTOM PROPERTIES
   ============================================= */
:root {
  /* Brand colours */
  --green:         #006837;
  --green-dark:    #004820;
  --green-mid:     #1a7a45;
  --green-light:   #e8f5ee;
  --green-pale:    #f2faf5;
  --red:           #c0392b;
  --red-dark:      #922b21;

  /* Neutral palette */
  --text:          #1a2e20;
  --text-mid:      #3d5245;
  --text-soft:     #5e7268;
  --border:        #c8e5d5;
  --bg-section:    #f5faf7;
  --white:         #ffffff;

  /* Type scale */
  --fs-xs:   .78rem;
  --fs-sm:   .9rem;
  --fs-base: 1rem;
  --fs-lg:   1.1rem;
  --fs-xl:   1.25rem;
  --fs-2xl:  1.6rem;
  --fs-3xl:  2.2rem;
  --fs-4xl:  clamp(2rem, 5vw, 3.2rem);

  /* Spacing */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  40px;
  --space-xl:  64px;
  --space-2xl: 100px;

  /* Layout */
  --container: 1200px;
  --header-h:  80px;

  /* Radius */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(0,60,30,.07);
  --shadow-md: 0 4px 20px rgba(0,60,30,.10);
  --shadow-lg: 0 12px 40px rgba(0,60,30,.14);
  --shadow-xl: 0 24px 64px rgba(0,60,30,.18);

  /* Transition */
  --ease: .22s ease;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: var(--fs-base);
  line-height: 1.8;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

/* =============================================
   LAYOUT UTILITIES
   ============================================= */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.section        { padding: var(--space-2xl) 0; }
.section-sm     { padding: var(--space-xl) 0; }
.section-alt    { background: var(--bg-section); }

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

/* =============================================
   TYPOGRAPHY
   ============================================= */
.section-label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--green);
  background: var(--green-light);
  padding: 5px 14px;
  border-radius: var(--r-full);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-size: var(--fs-3xl);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: var(--fs-lg);
  color: var(--text-soft);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: var(--space-lg);
}
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

.section-lead {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: var(--space-sm);
  max-width: 680px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 28px;
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--ease);
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: .01em;
}

.btn-lg {
  padding: 16px 36px;
  font-size: var(--fs-base);
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(0,104,55,.28);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,104,55,.36);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0,104,55,.28);
}

.btn-white {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,.18);
}
.btn-white:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.22);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.65);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}

.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: 0 4px 16px rgba(192,57,43,.3);
}
.btn-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
}

.btn-ghost {
  background: var(--green-light);
  color: var(--green);
  border-color: var(--green-light);
}
.btn-ghost:hover {
  background: var(--green);
  color: var(--white);
}

.cta-row {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: var(--space-md);
}
.cta-row.centered { justify-content: center; }

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: var(--space-md);
}

.logo { flex-shrink: 0; }
.logo img { height: 52px; width: auto; }

.main-nav { flex: 1; }
.main-nav ul { display: flex; gap: 2px; align-items: center; }
.main-nav a {
  display: block;
  padding: 8px 16px;
  border-radius: var(--r-full);
  font-size: .92rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: background var(--ease), color var(--ease);
}
.main-nav a:hover,
.main-nav a.active {
  background: var(--green-light);
  color: var(--green);
}

.header-actions { display: flex; gap: 10px; flex-shrink: 0; }
.header-actions .btn { padding: 9px 18px; font-size: .84rem; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: minmax(600px, auto);
  background: #e8f5ee;
}

.hero-content {
  display: flex;
  flex-direction: column;
  padding: 24px 20px 72px 4rem;
  background: transparent;
}

.hero-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--green);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--r-xl);
  padding: 32px;
}

.hero-image {
  display: flex;
  padding: 24px 24px 72px 0;
}
.hero-image img {
  flex: 1;
  min-height: 0;
  object-fit: cover;
  object-position: center 85%;
  display: block;
  border-radius: var(--r-xl);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--r-full);
  margin-bottom: 24px;
  align-self: flex-start;
}

.hero h1 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.7);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 36px;
  line-height: 1.6;
  font-weight: 400;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

.hero-cta-wrap {
  width: fit-content;
  margin: 0 auto;
}

.hero-btn-full {
  width: 100%;
  justify-content: center;
  margin-top: 10px;
}

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  position: relative;
  z-index: 2;
  background: var(--white);
  padding: 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: translateY(-40px);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 18px;
  border-right: 1px solid var(--border);
  background: var(--white);
  transition: background var(--ease);
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: var(--green-pale); }

.trust-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--green-light);
  color: var(--green);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.trust-text strong {
  display: block;
  font-size: .84rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  white-space: nowrap;
}
.trust-text span {
  font-size: .8rem;
  color: var(--text-soft);
}

/* =============================================
   SPLIT LAYOUT (image + text)
   ============================================= */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split-grid.reverse { direction: rtl; }
.split-grid.reverse > * { direction: ltr; }

.split-image {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  position: relative;
}
.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
  transition: transform .6s ease;
}
.split-image:hover img { transform: scale(1.04); }

.split-image--welcome {
  aspect-ratio: 1/1;
}

.split-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--white);
  padding: 10px 18px;
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--green);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* =============================================
   ICON LIST
   ============================================= */
.icon-list {
  list-style: none;
  margin: 22px 0;
}
.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 14px;
  font-size: .97rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.icon-list li i {
  flex-shrink: 0;
  margin-top: 2px;
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--green-light);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
}

/* =============================================
   FEATURE CARDS (Services)
   ============================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--ease), box-shadow var(--ease);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-mid));
  opacity: 0;
  transition: opacity var(--ease);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--green-light);
  color: var(--green);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  margin-bottom: 22px;
  transition: background var(--ease), color var(--ease);
}
.feature-card:hover .feature-icon {
  background: var(--green);
  color: var(--white);
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.35;
}
.feature-card p {
  font-size: .93rem;
  color: var(--text-soft);
  line-height: 1.7;
}

/* =============================================
   ABOUT CARDS (Über uns)
   ============================================= */
.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: var(--space-xl);
}

.about-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform var(--ease), box-shadow var(--ease);
}
.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.about-card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}

.about-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.about-card p {
  font-size: .93rem;
  color: var(--text-soft);
  line-height: 1.75;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  background: var(--green-light);
  text-align: center;
}

/* =============================================
   SLOGAN BAND
   ============================================= */
.slogan-band {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
  text-align: center;
  color: var(--text);
  position: relative;
  overflow: hidden;
}
.slogan-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, var(--green-light) 0%, transparent 70%);
  opacity: .55;
}
.slogan-inner {
  position: relative;
  z-index: 1;
}
.slogan-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--green);
}
.slogan-text {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.4;
  color: var(--green-dark);
  max-width: 700px;
  margin: 0 auto;
}
.slogan-sub {
  margin-top: 12px;
  font-size: var(--fs-base);
  color: var(--text-soft);
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  padding: 64px 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 70% 30%, rgba(255,255,255,.06) 0%, transparent 50%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.2;
}
.page-hero p {
  font-size: var(--fs-lg);
  opacity: .82;
  max-width: 560px;
  margin: 0 auto;
}

/* =============================================
   CONTACT FORM
   ============================================= */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: stretch;
}

.form-title {
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 28px;
}

.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 7px;
  letter-spacing: .01em;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 17px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-family: inherit;
  font-size: var(--fs-base);
  color: var(--text);
  background: var(--white);
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
  line-height: 1.5;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(0,104,55,.1);
}
.form-group textarea { min-height: 150px; resize: vertical; }

.contact-sidebar {
  background: var(--bg-section);
  border-radius: var(--r-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
}
.contact-sidebar h3 {
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.contact-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--white);
  color: var(--green);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.contact-detail strong {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}
.contact-detail span,
.contact-detail a {
  font-size: .9rem;
  color: var(--text-soft);
  line-height: 1.65;
}
.contact-detail a:hover { color: var(--green); }

/* =============================================
   ANGEBOTE PAGE
   ============================================= */
.angebote-intro { max-width: 760px; }

.service-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: var(--space-lg);
}
.service-tile {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease);
}
.service-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-tile-icon {
  font-size: 2rem;
  color: var(--green);
  margin-bottom: 14px;
}
.service-tile h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.service-tile p {
  font-size: .9rem;
  color: var(--text-soft);
  line-height: 1.65;
}

.shop-promo {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  border-radius: var(--r-xl);
  padding: 56px 48px;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.shop-promo h2 {
  font-size: var(--fs-2xl);
  font-weight: 800;
  margin-bottom: 10px;
}
.shop-promo p {
  font-size: var(--fs-lg);
  opacity: .85;
  max-width: 480px;
  line-height: 1.65;
}
.shop-promo-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 200px;
  align-items: stretch;
}
.shop-promo-actions .btn { justify-content: center; }

/* =============================================
   AKTUELLES
   ============================================= */
.aktuelles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: var(--space-lg);
}

.aktuelles-card-img {
  margin: -32px -28px 0;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  overflow: hidden;
  height: 200px;
}
.aktuelles-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.aktuelles-card:hover .aktuelles-card-img img {
  transform: scale(1.04);
}

.aktuelles-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--ease), box-shadow var(--ease);
}
.aktuelles-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.aktuelles-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.aktuelles-date {
  font-size: var(--fs-xs);
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: 6px;
}

.aktuelles-card-title {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin: 0;
}

.aktuelles-card-text {
  font-size: var(--fs-sm);
  color: var(--text-soft);
  line-height: 1.75;
  flex: 1;
  margin: 0;
}

.aktuelles-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  color: var(--text-soft);
}
.aktuelles-empty-icon {
  font-size: 3rem;
  color: var(--border);
  margin-bottom: 20px;
}
.aktuelles-empty h2 {
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--text-mid);
  margin-bottom: 10px;
}
.aktuelles-empty p {
  font-size: var(--fs-base);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.75;
}

@media (max-width: 900px) {
  .aktuelles-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================
   IMPRESSUM
   ============================================= */
.impressum-wrap { max-width: 780px; }
.impressum-wrap h2 {
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--green);
  margin: 40px 0 10px;
  padding-top: 8px;
}
.impressum-wrap h2:first-child { margin-top: 0; }
.impressum-wrap p {
  font-size: .95rem;
  line-height: 1.75;
  margin-bottom: 6px;
  color: var(--text-mid);
}
.impressum-wrap a { color: var(--green); text-decoration: underline; }
.impressum-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 32px 0;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--green-dark);
  color: var(--white);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand img {
  height: 60px;
  margin-bottom: 18px;
}
.footer-brand p {
  font-size: .88rem;
  line-height: 1.7;
}
.footer-brand .footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--white);
  font-weight: 600;
  font-size: .95rem;
  opacity: .9;
  transition: opacity var(--ease);
}
.footer-brand .footer-phone:hover { opacity: 1; }

.footer-col h4 {
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col p,
.footer-col a {
  display: block;
  font-size: .88rem;
  line-height: 2.1;
  transition: color var(--ease);
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  transition: color var(--ease);
}
.footer-links a:hover { color: var(--white); }

/* =============================================
   HAMBURGER
   ============================================= */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .25s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .features-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .split-grid       { grid-template-columns: 1fr; gap: 40px; }
  .split-grid.reverse { direction: ltr; }
  .about-cards      { grid-template-columns: 1fr; }
  .kontakt-grid     { grid-template-columns: 1fr; gap: 40px; }
  .trust-grid       { grid-template-columns: repeat(2, 1fr); }
  .service-tiles    { grid-template-columns: repeat(2, 1fr); }
  .shop-promo       { grid-template-columns: 1fr; }
  .shop-promo-actions { flex-direction: row; }
}

@media (max-width: 768px) {
  :root {
    --space-2xl: 48px;
    --space-xl:  36px;
    --space-lg:  24px;
  }

  /* ─── HEADER & HAMBURGER ─── */
  .header-inner   { flex-wrap: wrap; height: auto; padding: 12px 0; }
  .main-nav       { order: 4; width: 100%; display: none; }
  .main-nav.open  {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
    border-radius: 0 0 var(--r-md) var(--r-md);
    padding: 6px 0 14px;
    z-index: 99;
  }
  .main-nav ul    { flex-direction: column; padding: 0; border-top: none; }
  .main-nav a     { color: var(--text); font-size: 1rem; padding: 13px 24px; border-radius: 0; display: block; }
  .main-nav a:hover,
  .main-nav a.active { background: var(--green-light); }
  .header-actions { order: 2; }
  .header-actions .btn { padding: 8px 12px; font-size: .78rem; }
  .hamburger      { display: flex; order: 3; }

  /* ─── HERO ─── */
  .hero           { grid-template-columns: 1fr; grid-template-rows: auto; min-height: unset; gap: 28px; }
  .hero-content   { padding: 0 16px 20px; order: 2; }
  .hero-inner     { flex: unset; padding: 24px; border-radius: var(--r-lg); }
  .hero-image     { height: 260px; order: 1; padding: 1rem 1rem 0 1rem; }
  .hero-image img { border-radius: var(--r-lg); }
  .hero-badge     { font-size: .6rem; padding: 4px 10px; margin-bottom: 10px; }
  .hero h1        { font-size: 1.2rem; margin-bottom: 8px; }
  .hero-sub       { font-size: .85rem; margin-bottom: 16px; line-height: 1.5; }
  .hero .cta-row  { flex-direction: row; gap: 8px; flex-wrap: wrap; margin-top: 0; }
  .hero .cta-row .btn { padding: 10px 16px; font-size: .8rem; }

  /* ─── TRUST BAR ─── */
  .trust-bar      { position: static; padding: 2rem 0 3.5rem; }
  .trust-grid     { grid-template-columns: 1fr 1fr; transform: none; }
  .trust-item     { padding: 12px 14px; gap: 8px; justify-content: flex-start !important; }
  .trust-icon     { width: 34px; height: 34px; min-width: 34px; margin-left: 0 !important; font-size: .9rem; }
  .trust-text strong { font-size: .76rem; white-space: normal; }
  .trust-text span   { font-size: .7rem; }

  /* ─── BADGE ─── */
  .split-image-badge { font-size: .68rem; padding: 6px 10px; white-space: nowrap; gap: 5px; }

  /* ─── TYPOGRAPHY ─── */
  .section-title    { font-size: 1.2rem; }
  .section-subtitle { font-size: .88rem; margin-bottom: var(--space-md); }
  .section-lead     { font-size: .88rem; line-height: 1.7; }
  .icon-list li     { font-size: .88rem; margin-bottom: 10px; }

  /* ─── WILLKOMMEN BILD ─── */
  .split-image--welcome { aspect-ratio: 16/9; }
  .split-image--welcome img { object-position: center 20%; }

  /* ─── FEATURES SWIPE SLIDER ─── */
  .features-grid {
    display: flex; flex-direction: row;
    overflow-x: auto; scroll-snap-type: x mandatory;
    scroll-behavior: smooth; -webkit-overflow-scrolling: touch;
    scrollbar-width: none; gap: 12px; padding-bottom: 4px;
  }
  .features-grid::-webkit-scrollbar { display: none; }
  .feature-card   { flex: 0 0 88%; scroll-snap-align: start; padding: 24px 20px; }
  .feature-icon   { width: 52px; height: 52px; font-size: 1.25rem; margin-bottom: 14px; }

  /* ─── ABOUT SWIPE SLIDER ─── */
  .about-cards {
    display: flex; flex-direction: row;
    overflow-x: auto; scroll-snap-type: x mandatory;
    scroll-behavior: smooth; -webkit-overflow-scrolling: touch;
    scrollbar-width: none; gap: 12px; padding-bottom: 4px;
    margin-top: 20px;
  }
  .about-cards::-webkit-scrollbar { display: none; }
  .about-card     { flex: 0 0 88%; scroll-snap-align: start; padding: 24px 20px; }
  .about-card-icon { width: 60px; height: 60px; font-size: 1.5rem; margin-bottom: 14px; }

  /* ─── SLIDER DOTS ─── */
  .slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 14px; }
  .slider-dot  { width: 8px; height: 8px; border-radius: 50%; background: var(--border); border: none; cursor: pointer; padding: 0; transition: background .2s, width .2s; }
  .slider-dot.active { background: var(--green); width: 20px; border-radius: 4px; }

  /* ─── SLOGAN BAND ─── */
  .slogan-band { padding: 36px 0; }
  .slogan-icon { font-size: 1.8rem; margin-bottom: 10px; }
  .slogan-text { font-size: 1.2rem; }
  .slogan-sub  { font-size: .82rem; }

  /* ─── KONTAKT FORMULAR ─── */
  .kontakt-grid          { gap: 28px; }
  .form-title            { font-size: 1.2rem; margin-bottom: 16px; }
  .form-group            { margin-bottom: 14px; }
  .form-group label      { font-size: .82rem; margin-bottom: 4px; }
  .form-group input,
  .form-group textarea   { padding: 11px 14px; font-size: .92rem; }
  .form-group textarea   { min-height: 110px; }

  /* ─── KONTAKT SIDEBAR ─── */
  .contact-sidebar       { padding: 20px 18px; }
  .contact-sidebar h3    { font-size: 1rem; margin-bottom: 16px; padding-bottom: 10px; }
  .contact-item          { gap: 12px; margin-bottom: 14px; align-items: flex-start; }
  .contact-icon          { width: 36px; height: 36px; min-width: 36px; font-size: .85rem; }
  .contact-detail strong { font-size: .82rem; }
  .contact-detail span,
  .contact-detail a      { font-size: .84rem; }

  /* ─── FOOTER ─── */
  .site-footer  { padding-top: 44px; }
  .footer-grid  { grid-template-columns: 1fr; gap: 20px; padding-bottom: 28px; }
  .footer-brand img  { height: 46px; margin-bottom: 12px; }
  .footer-brand p    { font-size: .82rem; line-height: 1.6; }
  .footer-brand .footer-phone { font-size: .88rem; margin-top: 10px; }
  .footer-col h4     { margin-bottom: 10px; }
  .footer-col p,
  .footer-col a      { font-size: .82rem; line-height: 1.85; }
  .footer-bottom     { flex-direction: column; text-align: center; gap: 8px; padding: 14px 0; font-size: .78rem; }
  .footer-links      { gap: 16px; }

  /* ─── PAGE HERO (Unterseiten) ─── */
  .page-hero      { padding: 36px 0 28px; }
  .page-hero h1   { font-size: 1.6rem; }
  .page-hero p    { font-size: .9rem; }

  /* ─── SERVICE TILES SWIPE SLIDER ─── */
  .service-tiles {
    display: flex; flex-direction: row;
    overflow-x: auto; scroll-snap-type: x mandatory;
    scroll-behavior: smooth; -webkit-overflow-scrolling: touch;
    scrollbar-width: none; gap: 12px; padding-bottom: 4px;
    margin-top: 0;
  }
  .service-tiles::-webkit-scrollbar { display: none; }
  .service-tile       { flex: 0 0 88%; scroll-snap-align: start; padding: 22px 20px; }
  .service-tile-icon  { font-size: 1.6rem; margin-bottom: 10px; }
  .service-tile h3    { font-size: .95rem; margin-bottom: 6px; }
  .service-tile p     { font-size: .84rem; }

  /* ─── SHOP PROMO ─── */
  .shop-promo         { padding: 28px 20px; gap: 20px; }
  .shop-promo h2      { font-size: 1.25rem; margin-bottom: 8px; }
  .shop-promo p       { font-size: .88rem; }
  .shop-promo-actions { flex-direction: row; flex-wrap: wrap; gap: 10px; min-width: unset; }
  .shop-promo-actions .btn { flex: 1; min-width: 130px; justify-content: center; }

  /* ─── MISC ─── */
  .aktuelles-grid  { grid-template-columns: 1fr; }
  .cta-row         { flex-direction: column; }
  .cta-row .btn    { width: 100%; justify-content: center; }
}

@media (max-width: 560px) {
  .trust-grid      { grid-template-columns: 1fr; }
  .header-actions  { display: none; }
}

/* =============================================
   ACCESSIBILITY – WCAG 2.1 Level AA
   ============================================= */

.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;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: .5rem 1.2rem;
  background: var(--green);
  color: #fff;
  border-radius: var(--r-sm);
  font-weight: 600;
  text-decoration: none;
  transition: top .15s;
}
.skip-link:focus { top: 1rem; }

.btn:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}
.main-nav a:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
