/* ================================================
   GARTEN & LANDSCHAFTSBAU — KIM
   Mobile-first stylesheet
   ================================================ */

/* ====== CSS Custom Properties ====== */
:root {
  /* Colors */
  --color-green-dark: #1E3A1E;
  --color-green-mid: #3D6B35;
  --color-green-light: #5A9B4A;
  --color-cream: #F8F3E8;
  --color-cream-dark: #EDE7D5;
  --color-orange: #C4622D;
  --color-orange-dark: #A5501F;
  --color-brown: #7A5C3A;
  --color-text: #1C1C1C;
  --color-text-muted: #5A5A5A;
  --color-text-light: #FFFFFF;
  --color-stars: #D4A200;

  /* Typography */
  --font-headline: 'Playfair Display', Georgia, serif;
  --font-body: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  /* Layout */
  --container-max: 1200px;
  --container-padding: 1.25rem;
  --radius: 10px;
  --radius-lg: 20px;
  --radius-pill: 50px;

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(30, 58, 30, 0.08);
  --shadow-md: 0 6px 24px rgba(30, 58, 30, 0.14);
  --shadow-lg: 0 12px 40px rgba(30, 58, 30, 0.2);

  /* Transitions */
  --transition: 0.22s ease;
  --transition-slow: 0.4s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-cream);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

/* ====== Layout ====== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ====== Buttons ====== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.85rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: background-color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

/* Shimmer sweep on hover */
.btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -80%;
  width: 55%;
  height: 200%;
  background: linear-gradient(108deg,
      transparent 35%,
      rgba(255, 255, 255, 0.28) 50%,
      transparent 65%);
  transform: skewX(-18deg);
  pointer-events: none;
}

.btn:hover::after {
  animation: btn-shimmer 0.5s ease forwards;
}

@keyframes btn-shimmer {
  to {
    left: 130%;
  }
}

.btn--orange {
  background-color: var(--color-orange);
  color: var(--color-text-light);
  box-shadow: 0 4px 14px rgba(196, 98, 45, 0.25);
}

.btn--orange:hover,
.btn--orange:focus-visible {
  background-color: var(--color-orange-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 24px rgba(196, 98, 45, 0.45);
}

.btn--orange:active {
  transform: translateY(-1px) scale(1);
}

.btn--green {
  background-color: var(--color-green-dark);
  color: var(--color-text-light);
  box-shadow: 0 4px 14px rgba(30, 58, 30, 0.30);
}

.btn--green:hover,
.btn--green:focus-visible {
  background-color: var(--color-green-mid);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 24px rgba(30, 58, 30, 0.45);
}

.btn--green:active {
  transform: translateY(-1px) scale(1);
}

/* Before/After button — matches the "Vorher" badge color */
.btn--ba-before {
  background-color: rgb(122, 92, 58);
  color: var(--color-text-light);
  box-shadow: 0 4px 14px rgba(122, 92, 58, 0.35);
}

.btn--ba-before:hover,
.btn--ba-before:focus-visible {
  background-color: rgb(100, 74, 44);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 24px rgba(122, 92, 58, 0.50);
}

.btn--ba-before:active {
  transform: translateY(-1px) scale(1);
}


.btn--large {
  padding: 1.15rem 2.4rem;
  font-size: 1.1rem;
}

.btn:focus-visible {
  outline: 3px solid var(--color-orange);
  outline-offset: 3px;
}

/* ====== Section Shared ====== */
section {
  padding: var(--space-2xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-eyebrow,
.hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: var(--space-xs);
}

.section-headline {
  font-family: var(--font-headline);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-green-dark);
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ====== Image Placeholders ====== */
.img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  background: linear-gradient(135deg, var(--color-green-mid) 0%, var(--color-green-dark) 100%);
  user-select: none;
}

.img-placeholder--hero {
  min-height: 320px;
  font-size: 1rem;
}

.img-placeholder--after {
  background: linear-gradient(135deg, #4e9242 0%, #2e6127 100%);
}

.img-placeholder--portrait {
  min-height: 420px;
}

.img-placeholder--gallery {
  min-height: 230px;
}

.img-placeholder--avatar {
  width: 48px;
  height: 48px;
  min-height: unset;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 0;
  padding: 0;
}

/* ====== Stars ====== */
.stars {
  color: var(--color-stars);
  letter-spacing: 2px;
}

/* ====== Plant Decorations ====== */
.plant-deco {
  position: absolute;
  pointer-events: none;
  user-select: none;
  color: var(--color-green-mid);
  opacity: 0.1;
  animation: plant-sway 9s ease-in-out infinite;
  transform-origin: 50% 95%;
}

.plant-deco svg {
  display: block;
}

@keyframes plant-sway {

  0%,
  100% {
    transform: rotate(0deg);
  }

  35% {
    transform: rotate(2.5deg);
  }

  70% {
    transform: rotate(-1.8deg);
  }
}

/* ================================================
   HEADER
   ================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(135deg, #182e18 0%, #1E3A1E 60%, #172b17 100%);
  border-bottom: 2px solid rgba(196, 98, 45, 0.35);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.28);
  transition: padding var(--transition-slow), background var(--transition-slow), box-shadow var(--transition-slow);
}

/* Scrolled: compact + frosted glass */
.site-header.is-scrolled {
  background: rgba(24, 46, 24, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 32px rgba(0, 0, 0, 0.35);
}

.site-header.is-scrolled .header__inner {
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  transition: padding var(--transition-slow);
}

/* Logo */
.header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-left: -0.5rem;
  transition: transform var(--transition), opacity var(--transition);
}

.header__logo:hover {
  transform: scale(1.04);
  opacity: 0.9;
}

.header__logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

.header__logo-text {
  font-family: var(--font-headline);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-cream);
  letter-spacing: 0.01em;
  transition: color var(--transition);
}

.header__logo:hover .header__logo-text {
  color: #b8e0a8;
}

/* Nav — hidden on mobile */
.header__nav {
  display: none;
}

.nav__list {
  display: flex;
  gap: 0.25rem;
}

.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: rgba(248, 243, 232, 0.82);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-pill);
  transition: background-color var(--transition), color var(--transition);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background-color: var(--color-orange);
  border-radius: 2px;
  transition: transform 0.25s ease;
}

.nav__link:hover,
.nav__link:focus-visible {
  color: var(--color-cream);
  background-color: rgba(255, 255, 255, 0.08);
}

.nav__link:hover::after,
.nav__link:focus-visible::after {
  transform: translateX(-50%) scaleX(1);
}

/* Actions group (phone + CTA) */
.header__actions {
  display: none;
  align-items: center;
  gap: 1.2rem;
  margin-left: auto;
}

.btn--white {
  background-color: #ebebeb;
  color: #111111;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn--white::after {
  background: linear-gradient(108deg,
      transparent 35%,
      rgba(0, 0, 0, 0.14) 50%,
      transparent 65%);
}

.btn--white:hover,
.btn--white:focus-visible {
  background-color: #d4d4d4;
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.btn--white:active {
  transform: translateY(-1px) scale(1);
}

.header__phone {
  font-size: 0.88rem;
  padding: 0.6rem 1.3rem;
}

/* CTA — hidden on mobile */
.header__cta {
  font-size: 0.88rem;
  padding: 0.6rem 1.3rem;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  flex-shrink: 0;
  border-radius: var(--radius);
  transition: background-color var(--transition);
}

.hamburger:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-cream);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: rgba(24, 46, 24, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  padding: var(--space-md) var(--container-padding) var(--space-lg);
  gap: var(--space-sm);
}

.mobile-menu__link {
  color: rgba(248, 243, 232, 0.85);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: block;
  transition: color var(--transition), padding-left var(--transition);
}

.mobile-menu__link:hover {
  color: var(--color-cream);
  padding-left: 0.5rem;
}

.mobile-menu__cta {
  margin-top: var(--space-xs);
  width: 100%;
  justify-content: center;
}

/* Desktop header */
@media (min-width: 768px) {
  .header__nav {
    display: flex;
    flex: 1;
    justify-content: center;
  }

  .header__actions {
    display: flex;
  }

  .hamburger {
    display: none;
  }
}

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background-color: var(--color-cream);
  padding: var(--space-2xl) 0 var(--space-3xl);
}

/* Plant positions in hero */
.plant-deco--hero-r {
  width: clamp(120px, 30vw, 220px);
  top: -40px;
  right: -50px;
  opacity: 0.09;
  animation-delay: 0s;
  animation-duration: 10s;
  transform: rotate(-15deg);
  transform-origin: 70% 90%;
}

.plant-deco--hero-l {
  width: clamp(70px, 18vw, 130px);
  bottom: 30px;
  left: -25px;
  opacity: 0.1;
  animation-delay: -5s;
  animation-duration: 12s;
  transform: rotate(20deg);
  transform-origin: 40% 95%;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  align-items: center;
}

.hero__eyebrow {
  margin-bottom: var(--space-xs);
}

.hero__headline {
  font-family: var(--font-headline);
  font-size: clamp(2.6rem, 9vw, 4.8rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--color-green-dark);
  margin-bottom: var(--space-md);
}

.hero__subheadline {
  font-size: clamp(1rem, 2.5vw, 1.18rem);
  color: var(--color-text-muted);
  max-width: 540px;
  margin-bottom: var(--space-lg);
  line-height: 1.75;
}

.hero__cta {
  margin-bottom: var(--space-md);
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

.hero__trust .stars {
  font-size: 1rem;
}

.hero__image {
  width: 100%;
}

/* Before/After toggle in hero */
.hero__ba {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.hero__ba-frame {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero__ba-img {
  display: block;
  width: 100%;
  height: clamp(220px, 45vw, 340px);
  object-fit: cover;
}

.hero__ba-img--after {
  position: absolute;
  inset: 0;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero__ba.is-after .hero__ba-img--after {
  opacity: 1;
}

.hero__ba-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  color: #fff;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: opacity 0.3s ease;
}

.hero__ba-badge--before {
  background: rgba(122, 92, 58, 0.88);
}

.hero__ba-badge--after {
  background: rgba(61, 107, 53, 0.88);
  opacity: 0;
}

.hero__ba.is-after .hero__ba-badge--before {
  opacity: 0;
}

.hero__ba.is-after .hero__ba-badge--after {
  opacity: 1;
}

.hero__ba-toggle {
  gap: 0.6rem;
}

/* Portfolio placeholder slot */
.portfolio__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, rgba(61, 107, 53, 0.06) 0%, rgba(61, 107, 53, 0.13) 100%);
  border: 2px dashed rgba(61, 107, 53, 0.28);
  border-radius: var(--radius-lg);
  color: var(--color-text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.55;
  cursor: default;
}

@media (min-width: 768px) {
  .hero__inner {
    flex-direction: row;
    align-items: center;
  }

  .hero__content {
    flex: 1;
  }

  .hero__image {
    flex: 1;
  }

  .img-placeholder--hero {
    min-height: 440px;
  }
}

/* ================================================
   SERVICES
   ================================================ */
.services {
  position: relative;
  overflow: hidden;
  background-color: var(--color-cream-dark);
}

/* Plant positions in services */
.plant-deco--services-l {
  width: 110px;
  top: 50%;
  left: -20px;
  opacity: 0.1;
  transform: translateY(-50%) rotate(10deg);
  animation-delay: -3s;
  animation-duration: 11s;
  transform-origin: 60% 95%;
}

.plant-deco--services-r {
  width: 90px;
  top: 20px;
  right: -15px;
  opacity: 0.09;
  animation-delay: -7s;
  animation-duration: 8s;
  transform: rotate(-25deg);
  transform-origin: 40% 90%;
}

.services__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.service-card {
  background-color: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(61, 107, 53, 0.1);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

/* Green top accent bar */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-green-mid), var(--color-green-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: rgba(61, 107, 53, 0.25);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  margin-bottom: var(--space-md);
  transition: transform 0.3s ease;
}

.service-card:hover .service-card__icon {
  transform: scale(1.08) rotate(-3deg);
}

.service-card__title {
  font-family: var(--font-headline);
  font-size: 1.35rem;
  color: var(--color-green-dark);
  margin-bottom: var(--space-xs);
  line-height: 1.3;
}

.service-card__desc {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.services__cta {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: var(--space-xl);
}

@media (min-width: 600px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ================================================
   ABOUT
   ================================================ */
.about {
  position: relative;
  overflow: hidden;
  background-color: var(--color-cream);
}

/* Plant in about */
.plant-deco--about-r {
  width: 140px;
  top: -20px;
  right: -30px;
  opacity: 0.08;
  animation-delay: -2s;
  animation-duration: 13s;
  transform: rotate(-30deg);
  transform-origin: 50% 85%;
}

.about__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.about__content p {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.about__content .section-headline {
  text-align: left;
}

.about__trust-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin: var(--space-sm) 0;
}

.about__trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
}

/* Two-photo Kim layout */
.about__photos-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.about__photo {
  display: block;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.about__photo--main {
  width: 100%;
  height: 460px;
  object-position: top center;
}

.about__photo-badge {
  display: none;
}

@media (min-width: 480px) {
  .about__photos-wrap {
    padding-bottom: 80px;
  }

  .about__photo-badge {
    display: block;
    position: absolute;
    bottom: -65px;
    right: -18px;
    border: 4px solid var(--color-cream);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
  }

  .about__photo--action {
    width: 160px;
    height: 210px;
    object-position: center top;
  }
}

@media (min-width: 768px) {
  .about__inner {
    flex-direction: row;
    align-items: center;
  }

  .about__image {
    flex: 0 0 380px;
  }

  .about__photo--main {
    height: 520px;
  }

  .about__photo-badge {
    bottom: -65px;
    right: -20px;
  }

  .about__photo--action {
    width: 180px;
    height: 238px;
  }
}

/* ================================================
   HOW IT WORKS
   ================================================ */
.how-it-works {
  position: relative;
  overflow: hidden;
  background-color: var(--color-green-dark);
  color: var(--color-text-light);
}

/* Plants on dark bg: use cream color */
.plant-deco--how-l {
  width: 160px;
  bottom: -20px;
  left: -30px;
  opacity: 0.12;
  color: #a8d09e;
  animation-delay: -6s;
  animation-duration: 14s;
  transform: rotate(10deg);
  transform-origin: 55% 90%;
}

.plant-deco--how-r {
  width: 100px;
  top: -10px;
  right: -15px;
  opacity: 0.1;
  color: #a8d09e;
  animation-delay: -1s;
  animation-duration: 9s;
  transform: rotate(-20deg);
  transform-origin: 45% 85%;
}

.how-it-works .section-headline {
  color: var(--color-cream);
}

.how-it-works .section-sub {
  color: rgba(248, 243, 232, 0.65);
}

.steps {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  max-width: 680px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.step__number {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-orange);
  color: var(--color-text-light);
  font-family: var(--font-headline);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(196, 98, 45, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.step:hover .step__number {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 22px rgba(196, 98, 45, 0.55);
}

.step__title {
  font-family: var(--font-headline);
  font-size: 1.2rem;
  color: var(--color-cream);
  margin-bottom: var(--space-xs);
}

.step__desc {
  color: rgba(248, 243, 232, 0.7);
  font-size: 0.95rem;
  line-height: 1.75;
}

@media (min-width: 768px) {
  .steps {
    flex-direction: row;
    gap: var(--space-lg);
    max-width: 100%;
  }

  .step {
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
  }
}

/* ================================================
   PORTFOLIO
   ================================================ */
.portfolio {
  background-color: var(--color-cream-dark);
}

.portfolio__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

.portfolio__img-wrap {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.45s ease;
}

.portfolio__img-wrap picture {
  display: block;
}

.portfolio__item:hover .portfolio__img-wrap {
  box-shadow: var(--shadow-md);
}

.portfolio__item img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.portfolio__item:hover img {
  transform: scale(1.04);
}

.portfolio__item figcaption {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-align: center;
  font-style: italic;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

/* Before/after labels */
.portfolio__label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.15rem 0.5rem;
  border-radius: 20px;
  font-style: normal;
}

.portfolio__label--before {
  background-color: rgba(122, 92, 58, 0.15);
  color: var(--color-brown);
}

.portfolio__label--after {
  background-color: rgba(61, 107, 53, 0.15);
  color: var(--color-green-mid);
}

.portfolio__note {
  text-align: center;
  margin-top: var(--space-lg);
  color: var(--color-text-muted);
  font-size: 0.88rem;
  font-style: italic;
}

@media (min-width: 600px) {
  .portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .portfolio__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials {
  background-color: var(--color-cream);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.testimonial-card {
  background-color: var(--color-cream-dark);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border-left: 4px solid var(--color-green-mid);
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-card__stars {
  color: var(--color-stars);
  font-size: 1.05rem;
  letter-spacing: 3px;
  margin-bottom: var(--space-sm);
}

.testimonial-card__quote {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.testimonial-card__author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--color-green-dark);
  font-weight: 700;
}

.testimonial-card__author span {
  display: block;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

@media (min-width: 768px) {
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ================================================
   FAQ
   ================================================ */
.faq {
  background-color: var(--color-cream-dark);
}

.faq__list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq__item {
  background-color: var(--color-cream);
  border-radius: var(--radius);
  border: 1px solid rgba(61, 107, 53, 0.15);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq__item:hover {
  box-shadow: var(--shadow-sm);
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-green-dark);
  cursor: pointer;
  list-style: none;
  gap: var(--space-sm);
  transition: background-color var(--transition), color var(--transition);
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::marker {
  display: none;
}

.faq__question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-orange);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.3s ease, color var(--transition);
}

details[open]>.faq__question::after {
  transform: rotate(45deg);
  color: var(--color-green-mid);
}

.faq__question:hover {
  background-color: rgba(61, 107, 53, 0.05);
  color: var(--color-green-mid);
}

.faq__answer {
  padding: 0 var(--space-md) var(--space-md);
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* ================================================
   CONTACT FORM
   ================================================ */
.contact-form {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #162A16 0%, var(--color-green-dark) 50%, #1a3218 100%);
  padding: var(--space-3xl) 0;
}

/* Plants in contact form (reuse cta positions) */
.plant-deco--cta-l {
  width: 180px;
  bottom: -30px;
  left: -40px;
  opacity: 0.13;
  color: #a8d09e;
  animation-delay: -4s;
  animation-duration: 12s;
  transform: rotate(15deg);
  transform-origin: 50% 90%;
}

.plant-deco--cta-r {
  width: 180px;
  top: -20px;
  right: -40px;
  opacity: 0.13;
  color: #a8d09e;
  animation-delay: -8s;
  animation-duration: 10s;
  transform: rotate(-15deg) scaleX(-1);
  transform-origin: 50% 90%;
}

.contact-form__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
}

.contact-form__intro {
  text-align: center;
  max-width: 620px;
}

.contact-form__headline {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--color-cream);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.contact-form__subtext {
  font-size: 1.1rem;
  color: rgba(248, 243, 232, 0.72);
  line-height: 1.7;
}

.contact-form__card {
  background-color: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 580px;
}

.contact-form__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

.form-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-green-dark);
}

.form-label--optional {
  font-weight: 400;
  color: var(--color-text-muted);
  font-size: 0.82rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(61, 107, 53, 0.25);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background-color: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-green-mid);
  box-shadow: 0 0 0 3px rgba(61, 107, 53, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(28, 28, 28, 0.35);
}

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

.contact-form__submit {
  width: 100%;
  justify-content: center;
  margin-top: var(--space-xs);
}

.contact-form__response-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.contact-form__phone-note {
  font-size: 0.9rem;
  color: rgba(248, 243, 232, 0.55);
  text-align: center;
}

.contact-form__phone-note a {
  color: rgba(248, 243, 232, 0.85);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.contact-form__phone-note a:hover {
  color: var(--color-cream);
}

/* ================================================
   LIGHTBOX
   ================================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.lightbox.is-open {
  display: flex;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

.lightbox__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1rem;
  max-width: 95vw;
}

@media (min-width: 600px) {
  .lightbox__content {
    padding: 0 3.5rem;
  }
}

.lightbox__img {
  max-width: 88vw;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  animation: lightbox-img-in 0.22s ease;
}

@keyframes lightbox-img-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox__caption {
  margin-top: 0.75rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  max-width: 60ch;
}

.lightbox__counter {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 0.25rem;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: fixed;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2;
}

.lightbox__close {
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
}

.lightbox__prev,
.lightbox__next {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.6rem;
}

.lightbox__prev {
  left: 1rem;
}

.lightbox__next {
  right: 1rem;
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(255, 255, 255, 0.22);
}

.lightbox__prev:hover {
  transform: translateY(-50%) translateX(-2px);
}

.lightbox__next:hover {
  transform: translateY(-50%) translateX(2px);
}

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
  background-color: #0e180e;
  padding: var(--space-lg) 0;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
  text-align: center;
}

.footer__copy {
  font-size: 0.82rem;
  color: rgba(248, 243, 232, 0.4);
}

.footer__nav {
  display: flex;
  gap: var(--space-md);
}

.footer__nav a {
  font-size: 0.82rem;
  color: rgba(248, 243, 232, 0.45);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.footer__nav a:hover {
  color: var(--color-cream);
}

@media (min-width: 768px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ================================================
   LEGAL PAGES (Datenschutz, AGB)
   ================================================ */
.legal-page {
  background-color: var(--color-cream);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.legal-page main {
  flex: 1;
}

.legal-hero {
  background: linear-gradient(135deg, #182e18 0%, var(--color-green-dark) 100%);
  padding: var(--space-2xl) 0 var(--space-xl);
}

.legal-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(248, 243, 232, 0.65);
  font-size: 0.88rem;
  font-weight: 600;
  transition: color var(--transition);
  margin-bottom: var(--space-md);
}

.legal-hero__back:hover {
  color: var(--color-cream);
}

.legal-hero__title {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-cream);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.legal-hero__meta {
  font-size: 0.85rem;
  color: rgba(248, 243, 232, 0.5);
}

.legal-content {
  padding: var(--space-3xl) 0;
  max-width: 780px;
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.legal-content h2 {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-green-dark);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(61, 107, 53, 0.15);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-family: var(--font-headline);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-green-dark);
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
}

.legal-content p {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.legal-content ul,
.legal-content ol {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: var(--space-sm);
}

.legal-content ol {
  list-style: decimal;
}

.legal-content li {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 0.3rem;
}

.legal-content a {
  color: var(--color-green-mid);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content a:hover {
  color: var(--color-green-dark);
}

.legal-content strong {
  color: var(--color-text);
  font-weight: 700;
}