/* ─── DESIGN TOKENS ─── */
:root {
  --green-900: #002f06;
  --green-600: #5a9b54;
  --green-400: #8ac580;
  --green-100: #d4ebd0;
  --white: #ffffff;
  --gray-50: #f8f8f8;
  --gray-200: #dddddd;
  --gray-900: #1a1a1a;

  --transition-fast:   all 0.3s ease;
  --transition-medium: all 0.4s ease;
  --transition-slow:   all 0.6s ease;

  --container-max: 1080px;
  --container-px: 60px;

  --font-headline: 'Barlow', sans-serif;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--green-900);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ─── CONTAINER ─── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  padding: 26px 0;
  transition: var(--transition-medium);
}
.site-header.scrolled {
  background: rgba(0, 47, 6, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
}
.header-logo-img {
  height: 32px;
  width: auto;
  display: block;
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--green-400);
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  color: var(--green-900);
  letter-spacing: -0.5px;
}
.logo-mark--lg {
  width: 168px; height: 168px;
  font-size: 48px;
}
.footer-logo {
  width: 168px; height: 168px;
  object-fit: contain;
  flex-shrink: 0;
}
.logo-text {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
}
.header-nav {
  display: flex;
  gap: 44px;
  padding-top: 2px;
}
.header-nav a {
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
}
.header-nav a:hover,
.header-nav a.active {
  border-bottom-color: var(--green-400);
}
.header-spacer { width: 40px; }

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: #0a2e0d;
  z-index: 0;
}
.hero-bg video,
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(138,197,128,0.35) 0%, rgba(0,47,6,0.78) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: flex-end;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px) 100px;
}
.hero h1 {
  font-family: 'League Gothic', sans-serif;
  font-size: clamp(48px, 8vw, 108px);
  font-weight: normal;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -1px;
  color: var(--white);
  text-shadow: 0 4px 24px rgba(0,0,0,0.4);
  margin-bottom: 36px;
}
.btn-outline {
  display: inline-block;
  padding: 15px 38px;
  background: transparent;
  border: 2px solid var(--green-400);
  border-radius: 4px;
  color: var(--green-400);
  font-size: 13px;
  font-weight: 600;
  font-family: 'Barlow', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition-fast);
  text-decoration: none;
}
.btn-outline:hover {
  background: var(--green-400);
  color: var(--green-900);
}

/* ─── SECTION BASICS ─── */
.section { padding: 120px 0; }
.section--sm { padding: 80px 0; }

.section-title {
  font-family: var(--font-headline);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 100;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--white);
  text-align: center;
  margin-bottom: 80px;
}

/* ─── INTRO ─── */
.intro-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}
.intro-headline {
  font-family: var(--font-headline);
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 100;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -1px;
  color: var(--white);
}
.intro-body p {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
}
.intro-body p:last-of-type { margin-bottom: 40px; }
.duo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.duo-grid img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px;
  transition: var(--transition-slow);
}
.duo-grid img:hover { transform: scale(1.05); }

/* ─── SERVICE GRID ─── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  overflow: visible;
}
.service-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px 4px 0 0;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%);
  transition: var(--transition-slow);
}
.service-card:hover .service-card-img img {
  transform: scale(1.05);
}
.service-card-body {
  position: relative;
  z-index: 1;
  margin-top: -48px;
  margin-left: 16px;
  margin-right: 16px;
  background: #0a2e0d;
  border-radius: 4px;
  padding: 28px 28px 32px;
}
.service-card h3 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.15;
}
.service-card p {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
}

.service-card--full {
  grid-column: 1 / -1;
}
.service-card--full .service-card-img {
  aspect-ratio: 16/9;
}
.service-card--area {
  grid-column: 1 / -1;
}
.service-card--area .service-card-body {
  margin-top: 0;
}

@media (max-width: 600px) {
  .service-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card--full .service-card-img { aspect-ratio: 4/3; }
}

/* ─── PARTNER SEITE ─── */
.partners-header {
  max-width: 720px;
  margin-bottom: 80px;
}
.partners-intro {
  margin-top: 32px;
}
.partners-intro p {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
}
.partners-intro p:last-child { margin-bottom: 0; }
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.partner-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 32px 24px;
  min-height: 120px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.partner-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
}
.partner-card-logo {
  max-width: 100%;
  max-height: 64px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity 0.2s;
}
.partner-card:hover .partner-card-logo {
  opacity: 1;
}
.partner-card-name {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.7);
  text-align: center;
  transition: color 0.2s;
}
.partner-card:hover .partner-card-name {
  color: var(--white);
}
@media (max-width: 900px) {
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .partners-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* ─── TESTIMONIAL ─── */
.testimonial {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}
.testimonial-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #8ac580 0%, #5a9b54 50%, #002f06 100%);
}
.testimonial-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--container-px);
  text-align: left;
}
.testimonial blockquote {
  font-family: 'Barlow', sans-serif;
  font-size: 30px;
  font-weight: 100;
  line-height: 1.5;
  color: var(--white);
  margin-bottom: 28px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.testimonial cite {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}

/* ─── LOCATION ─── */
.location-card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--gray-900);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition-fast);
}
.location-card:hover { transform: translateY(-8px); }
.location-map {
  background: #1e321e;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(30%) contrast(1.1);
}
.location-info {
  padding: 36px;
}
.location-name {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.location-name span {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
}
.location-address {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  margin-bottom: 10px;
}
.location-link {
  font-size: 14px;
  color: var(--green-400);
  display: block;
  margin-bottom: 4px;
  transition: opacity 0.3s;
}
.location-link:hover { opacity: 0.75; }
.location-hours {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 14px;
  line-height: 1.7;
  color: var(--green-400);
}

/* ─── TEAM ─── */
.team-intro {
  text-align: center;
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  margin: -56px auto 80px;
  line-height: 1.7;
}
.team-ceo {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 3px;
  border-radius: 0;
}
.team-ceo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(10%);
  transition: var(--transition-slow);
}
.team-ceo:hover img { transform: scale(1.03); }
.team-ceo-overlay {
  display: none;
}
.team-ceo-info {
  position: absolute;
  bottom: 0; left: 0;
  max-width: 520px;
  background: rgba(0, 47, 6, 0.96);
  padding: 28px 40px;
  cursor: pointer;
  z-index: 5;
}
.team-ceo.open .team-ceo-info {
  pointer-events: none;
}
.team-ceo-role {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green-400);
  margin-bottom: 10px;
}
.team-ceo-name {
  font-family: var(--font-headline);
  font-size: clamp(22px, 3vw, 42px);
  font-weight: 100;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.team-card {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.team-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(15%);
  transition: var(--transition-slow);
}
.team-card:hover img { transform: scale(1.05); }
.team-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,47,6,0.97) 0%, rgba(0,47,6,0.6) 18%, transparent 28%);
  transition: background 0.4s ease;
}
.team-card:hover .team-card-overlay {
  background: linear-gradient(to top, rgba(0,47,6,1) 0%, rgba(0,47,6,0.6) 22%, transparent 35%);
}
.team-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 18px;
  transform: translateY(3px);
  transition: transform 0.4s ease;
}
.team-card:hover .team-card-info { transform: translateY(0); }
.team-card-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.3px;
}
.team-card-role {
  font-size: 12px;
  color: var(--white);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 3px;
  opacity: 0.85;
  transition: opacity 0.4s;
}
.team-card:hover .team-card-role { opacity: 1; }

/* ─── MAP (full-width) ─── */
.map-section {
  position: relative;
  height: 480px;
}
.map-section--kontakt { height: 520px; }
.map-embed {
  position: absolute;
  inset: 0;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.map-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
}
.map-info-inner {
  display: inline-block;
  background: var(--green-900);
  padding: 32px 36px;
  border-radius: 4px 4px 0 0;
  pointer-events: all;
}
.map-info-inner .location-name { margin-bottom: 12px; }
.map-info-logo {
  height: 36px;
  width: auto;
  display: block;
}

@media (max-width: 900px) {
  .map-section { height: 420px; }
  .map-info-inner { padding: 24px 20px; }
}

/* ─── PHILOSOPHIE ─── */
.phil-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 0;
}
.phil-image {
  overflow: hidden;
  border-radius: 4px;
}
.phil-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.phil-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--green-400);
  margin-bottom: 20px;
}
.phil-headline {
  font-family: var(--font-headline);
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 100;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 40px;
}
.phil-quote {
  border-left: 3px solid var(--green-400);
  padding-left: 24px;
  margin: 0;
}
.phil-quote p,
.phil-quote {
  font-size: 19px;
  font-style: italic;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
}
.phil-quote cite {
  display: block;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green-400);
  margin-top: 16px;
}

.section--philosophy-text {
  padding-top: 0;
}
.phil-text-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 100px;
}
.phil-subheadline {
  font-family: var(--font-headline);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 100;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0;
  color: var(--white);
  position: sticky;
  top: 120px;
}
.phil-body p {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
}
.phil-body p:last-child { margin-bottom: 0; }

.phil-closing {
  padding-top: 80px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.phil-closing-headline {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 24px;
}
.phil-closing-text p {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
}
.phil-closing-text p:last-child { margin-bottom: 0; }

@media (max-width: 900px) {
  .phil-grid { grid-template-columns: 1fr; gap: 40px; }
  .phil-text-grid { grid-template-columns: 1fr; gap: 32px; }
  .phil-subheadline { position: static; }
}

/* ─── TEAM BIO PANEL ─── */
.team-bio {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(0, 47, 6, 0.96);
  padding: 32px 28px;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
}
.team-card.open .team-bio,
.team-ceo.open .team-bio {
  transform: translateY(0);
}
.team-bio-close {
  position: absolute;
  top: 14px; right: 16px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.45);
  font-size: 14px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color 0.2s;
}
.team-bio-close:hover { color: var(--white); }
.team-bio-role {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green-400);
  margin-bottom: 6px;
}
.team-bio-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.1;
}
.team-bio p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  margin-bottom: 10px;
}
.team-bio p:last-child { margin-bottom: 0; }

/* CEO bio is wider — more text fits */
.team-ceo .team-bio {
  max-width: 520px;
  padding: 40px 48px;
}
@media (max-width: 640px) {
  .team-ceo .team-bio {
    max-width: 100%;
    max-height: 55vh;
    overflow-y: auto;
    padding: 28px 24px;
  }
}
.team-ceo .team-bio-name { font-size: 28px; }

/* cursor hint */
[data-bio] { cursor: pointer; }

/* ─── CONTACT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-headline {
  font-family: var(--font-headline);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 100;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 28px;
}
.contact-body {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
}
.contact-link {
  font-size: 15px;
  color: var(--green-400);
  display: block;
  margin-bottom: 6px;
  transition: opacity 0.3s;
}
.contact-link:hover { opacity: 0.75; }
.contact-hours {
  margin-top: 36px;
  padding: 22px 24px;
  background: rgba(138,197,128,0.08);
  border-radius: 4px;
  border-left: 3px solid var(--green-400);
}
.contact-hours strong {
  color: var(--green-400);
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-hours p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ─── FORM ─── */
.form-box {
  background: rgb(138, 197, 128);
  border: 1px solid rgb(118, 175, 108);
  padding: 44px;
  border-radius: 4px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}
.form-field { margin-bottom: 18px; }
.form-field:last-of-type { margin-bottom: 24px; }
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-input,
.form-textarea {
  width: 100%;
  padding: 13px 15px;
  border: 2px solid var(--gray-200);
  border-radius: 4px;
  font-size: 15px;
  font-family: 'Barlow', sans-serif;
  background: var(--white);
  color: #333;
  outline: none;
  transition: border-color 0.3s ease;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--green-400);
}
.form-textarea { resize: vertical; }
.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--green-900);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Barlow', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition-fast);
}
.btn-submit:hover {
  background: var(--green-400);
  color: var(--green-900);
}

/* ─── FORM SUCCESS ─── */
.form-success {
  text-align: center;
  padding: 40px 0;
  display: none;
}
.form-success.visible { display: block; }
.form-success .check-circle {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--green-900);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-success h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 10px;
}
.form-success p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}
.btn-reset {
  margin-top: 24px;
  padding: 12px 28px;
  background: var(--green-900);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Barlow', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition-fast);
}
.btn-reset:hover {
  background: var(--green-400);
  color: var(--green-900);
}

/* ─── FORM VALIDATION STATES ─── */
.form-input.is-invalid { border-color: #e05a5a; }
.form-error-box {
  background: rgba(224,90,90,.12);
  border: 1px solid rgba(224,90,90,.35);
  border-radius: 4px;
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: 13px;
  color: #e05a5a;
}
.form-error-box p { margin: 0; line-height: 1.6; }

/* ─── PAGE HEADER (inner pages) ─── */
.page-top { padding-top: 100px; background: var(--green-900); min-height: 100vh; }
.page-top .section:first-child { padding-top: 48px; }
.page-top .phil-headline { margin-bottom: 56px; }

/* ─── PAGE HERO (Seiten-Headerbild) ─── */
.page-hero { position: relative; aspect-ratio: 16/9; overflow: hidden; margin-bottom: 3px; }
.page-hero__img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; filter: grayscale(10%); display: block; }
.page-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,47,6,0.85) 0%, rgba(0,47,6,0.1) 55%, transparent 100%); }

/* ─── LEGAL PAGES (Impressum, AGB, Datenschutz) ─── */
.legal-page { max-width: 720px; }
.legal-page h1 { font-family: var(--font-headline); font-size: 2.5rem; font-weight: 100; text-transform: uppercase; margin-bottom: 48px; color: var(--white); }
.legal-body h2 { font-size: 1.1rem; font-weight: 600; margin: 56px 0 8px; color: var(--green-400); }
.legal-body p { line-height: 1.8; color: rgba(255,255,255,0.8); margin-bottom: 16px; }
.legal-body ul, .legal-body ol { padding-left: 1.4em; margin-bottom: 16px; }
.legal-body li { line-height: 1.8; color: rgba(255,255,255,0.8); margin-bottom: 4px; }

/* ─── PARTNER BAND ─── */
.partner-band {
  background: var(--green-900);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 28px 0;
  overflow: hidden;
}
.partner-band-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.partner-band-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.partner-viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20px, black calc(100% - 20px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 20px, black calc(100% - 20px), transparent 100%);
}
.partner-track {
  display: flex;
  align-items: center;
  gap: 52px;
  width: max-content;
}
.partner-band.is-marquee .partner-track {
  animation: partner-scroll 28s linear infinite;
}
.partner-band.is-marquee:hover .partner-track {
  animation-play-state: paused;
}
@keyframes partner-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.partner-item {
  display: flex;
  align-items: center;
  white-space: nowrap;
  color: rgba(255,255,255,0.35);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.3s;
  text-decoration: none;
}
.partner-item:hover { color: rgba(255,255,255,0.75); }
.partner-item img {
  height: 52px;
  width: auto;
  opacity: 0.75;
  transition: opacity 0.3s;
}
.partner-item:hover img { opacity: 1; }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--green-900);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  margin-bottom: 60px;
}
.footer-cols {
  display: flex;
  gap: 80px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--green-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.footer-col a,
.footer-col span {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color 0.3s;
}
.footer-col a:hover,
.footer-col span:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-social {
  display: flex;
  gap: 28px;
}
.footer-social a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.footer-social a:hover { color: var(--green-400); }

/* ─── EASTER EGG BANNER ─── */
#easter-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: #ffdd00;
  color: #111;
  padding: 48px 60px 52px;
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  border-top: 6px solid #111;
  box-shadow: 0 -8px 60px rgba(0,0,0,0.4);
}
#easter-banner.visible {
  transform: translateY(0);
}
#easter-close {
  position: absolute;
  top: 20px; right: 28px;
  background: #111;
  border: none;
  color: #ffdd00;
  font-size: 22px;
  font-weight: 900;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
  font-family: 'Barlow', sans-serif;
}
#easter-close:hover { transform: scale(1.15); }
.easter-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.easter-headline {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(42px, 7vw, 96px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -2px;
  line-height: 0.9;
  color: #111;
  margin-bottom: 24px;
}
.easter-text {
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.easter-action {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  color: #111;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 20px;
  text-decoration: underline;
  text-underline-offset: 6px;
}
.easter-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #222;
  font-weight: 500;
}

/* ─── BURGER ─── */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
}
.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition-fast);
  transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  :root { --container-px: 20px; }

  .burger { display: flex; }
  .header-spacer { display: none; }

  .header-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(0, 47, 6, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 100px 40px 48px;
    gap: 0;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    z-index: 999;
  }
  .header-nav.open {
    transform: translateY(0);
  }
  .header-nav a {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    border-top: none;
  }
  .header-nav a:last-child { border-bottom: none; }
  .header-nav a:hover,
  .header-nav a.active {
    border-bottom-color: rgba(255,255,255,0.1);
    color: var(--green-400);
  }

  .legal-page h1 { font-size: 2rem; }
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-cols { flex-direction: column; gap: 32px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .team-ceo-info { padding: 24px 28px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-content { padding-bottom: 60px; }
  .service-grid { grid-template-columns: 1fr; gap: 16px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .service-card--full .service-card-img { aspect-ratio: 4/3; }
}

/* ─── STÖRER ─── */
.stoerer {
  position: fixed;
  right: 0;
  top: 50%;
  transform-origin: right center;
  transform: translateY(-50%) rotate(90deg) translateY(32px);
  background: var(--green-400);
  color: var(--green-900);
  border: none;
  padding: 10px 20px;
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  z-index: 900;
  white-space: nowrap;
  border-radius: 0 0 4px 4px;
  box-shadow: -2px 0 12px rgba(0,0,0,0.25);
  transition: transform 0.25s ease, background 0.2s;
}
.stoerer::after {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 200px;
  background: inherit;
}
.stoerer:hover {
  transform: translateY(-50%) rotate(90deg) translateY(56px);
  background: var(--green-600);
  color: var(--white);
}

/* ─── STÖRER MODAL ─── */
.stoerer-modal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; }
.stoerer-modal[hidden] { display: none; }
.stoerer-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(2px); }
.stoerer-modal-box {
  position: relative;
  background: var(--green-900);
  border: 1px solid rgba(138,197,128,0.25);
  border-radius: 8px;
  padding: 48px 52px;
  max-width: 480px;
  width: calc(100% - 48px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}
.stoerer-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none; border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
}
.stoerer-modal-close:hover { color: var(--white); }
.stoerer-modal-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green-400);
  margin-bottom: 20px;
}
.stoerer-modal-text { font-size: 16px; line-height: 1.8; color: rgba(255,255,255,0.85); margin-bottom: 32px; }
.stoerer-modal-text p { margin-bottom: 12px; }
.stoerer-modal-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-headline);
  font-size: clamp(28px, 5vw, 32px);
  font-weight: 100;
  color: var(--green-400);
  text-decoration: none;
  letter-spacing: 0;
  transition: color 0.2s;
}
.stoerer-modal-phone svg {
  flex-shrink: 0;
  width: clamp(20px, 2.5vw, 28px);
  height: clamp(20px, 2.5vw, 28px);
}
.stoerer-modal-phone:hover { color: var(--white); }

/* ─── CART BUTTON (HEADER) ─── */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cart-btn {
  position: relative;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.cart-btn:hover { opacity: 1; }
.cart-count {
  position: absolute;
  top: -4px;
  right: -6px;
  background: var(--green-400);
  color: var(--green-900);
  font-size: 10px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

/* ─── CART SIDEBAR ─── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cart-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: min(400px, 100vw);
  height: 100dvh;
  background: var(--green-900);
  border-left: 1px solid rgba(255,255,255,0.1);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.cart-sidebar:not([hidden]) {
  transform: translateX(0);
}
.cart-sidebar[hidden] {
  display: flex !important;
  transform: translateX(100%);
}
.cart-sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.cart-sidebar__title {
  font-family: var(--font-headline);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
}
.cart-sidebar__close {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  opacity: 0.7;
  padding: 4px;
  transition: opacity 0.2s;
}
.cart-sidebar__close:hover { opacity: 1; }
.cart-sidebar__items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 28px;
}
.cart-empty {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  margin-top: 8px;
}
.cart-item {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
}
.cart-item__qty {
  color: var(--green-400);
  font-weight: 700;
  min-width: 24px;
}
.cart-item__name { line-height: 1.3; }
.cart-item__price { white-space: nowrap; font-weight: 600; }
.cart-item__remove {
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 0 2px;
  transition: color 0.2s;
}
.cart-item__remove:hover { color: var(--white); }
.cart-sidebar__footer {
  padding: 20px 28px 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.cart-sidebar__total {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.8);
}
.cart-sidebar__total strong {
  color: var(--white);
  font-size: 18px;
}
.cart-sidebar__checkout {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--green-400);
  color: var(--green-900);
  font-family: var(--font-headline);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  border-radius: 2px;
  transition: background 0.2s;
}
.cart-sidebar__checkout:hover { background: var(--white); }

/* ─── SHOP PREVIEW (PHILOSOPHIE) ─── */
.shop-preview { background: rgba(255,255,255,0.03); }
.shop-card-single {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.shop-card-single__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
}
.shop-card-single__number {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-400);
  margin-bottom: 8px;
}
.shop-card-single__name {
  font-family: var(--font-headline);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 16px;
}
.shop-card-single__price {
  font-size: 22px;
  font-weight: 700;
  color: var(--green-400);
  margin-bottom: 20px;
}
.shop-card-single__price small {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
}
.shop-card-single__desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
}
.shop-card-single__btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--green-400);
  color: var(--green-900);
  font-family: var(--font-headline);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
}
.shop-card-single__btn:hover { background: var(--white); }
.shop-card-single__btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.shop-card-single__unavailable {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
}
@media (max-width: 768px) {
  .shop-card-single {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ─── CART SIDEBAR: VERSAND & ZWISCHENSUMME ─── */
.cart-sidebar__subtotal,
.cart-sidebar__shipping {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
}
.cart-sidebar__total {
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.cart-shipping-free  { color: var(--green-400); font-weight: 600; }
.cart-shipping-pending { font-style: italic; }

/* ─── CHECKOUT SUMMARY BREAKDOWN ─── */
.checkout-summary__breakdown {
  margin: 16px 0 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.checkout-summary__line {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.checkout-summary__total {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  padding-top: 4px;
}
.checkout-summary__total strong {
  color: var(--white);
  font-size: 20px;
}
