/* ─────────────────────────────────────────
   TOKENS
───────────────────────────────────────── */
:root {
  --yellow:   #f0e065;   /* warm citrus */
  --green:    #2D4A2A;   /* deep olive */
  --green-l:  #4E7848;
  --sage:     #C8D9B8;   /* pale sage */
  --pink:     #E8C9B8;   /* muted terracotta-pink */
  --cream:    #F5F0E8;   /* warm off-white */
  --ink:      #1A1F18;
  --mid:      #6B6F66;
  --serif:    'bookmania', Georgia, serif;
  --sans:     'Bricolage Grotesque', sans-serif;
}

/* ─────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 18px; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 1.25rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s;
}
nav.scrolled { background: var(--cream); border-bottom: 1px solid rgba(0,0,0,0.07); }

.nav-logo {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 1.6rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.nav-logo small {
  display: block;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 0.1rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 1em;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--cream);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green-l); }

.nav-btn {
  background: var(--green);
  color: #fff !important;
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  font-size: 1rem !important;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}
.nav-btn:hover { background: var(--green-l) !important; }

nav.scrolled .nav-links a {
  color: var(--ink);
}
/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  min-height: 100svh;
  padding: 9rem 3rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 4rem;
  position: relative;
}

/* big photo block top-right */
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 52%;
  height: 70%;
  background:
    var(--hero-bg-url);
  border-radius: 0 0 0 48px;
  z-index: 0;
}

.hero-left { position: relative; z-index: 1; }

.hero-kicker {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-l);
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.hero-kicker::before {
  content: '';
  width: 22px; height: 1.5px;
  background: var(--green-l);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1rem;
}
.hero-title em {
  font-style: italic;
  color: var(--green);
}

.hero-body {
  font-size: 1rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.75;
  max-width: 400px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.btn-fill {
  background: var(--green);
  color: #fff;
  padding: 0.85rem 1.8rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-fill:hover { background: var(--green-l); transform: translateY(-1px); }

.btn-text {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.2s;
}
.btn-text::after { content: '↓'; }
.btn-text:hover { color: var(--ink); }

.hero-right {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
  padding-bottom: 1rem;
}

/* floating stat cards */
.h-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.2rem 1.6rem;
  width: 220px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.h-card:nth-child(2) { background: var(--green); margin-right: 3rem; }
.h-card:nth-child(2) .h-card-num { color: var(--yellow); }
.h-card:nth-child(2) .h-card-label { color: rgba(255,255,255,0.55); }

.h-card-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  letter-spacing: -0.02em;
}
.h-card-label {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--mid);
  margin-top: 0.3rem;
  line-height: 1.4;
}

/* ─────────────────────────────────────────
   TICKER
───────────────────────────────────────── */
.ticker {
  background: var(--green);
  overflow: hidden;
  padding: 0.8rem 0;
  white-space: nowrap;
  position: relative;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: inline-flex;
  animation: tick 22s linear infinite;
}
.ticker-track.paused { animation-play-state: paused; }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--yellow);
  padding: 0 2rem;
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
}
.ticker-item::after { content: '·'; font-style: normal; opacity: 0.5; }

.ticker-pause {
  position: absolute;
  right: 1.2rem;
  z-index: 10;
  background: rgba(0,0,0);
  border: 1px solid rgba(255,255,255);
  border-radius: 100px;
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}
.ticker-pause:hover { background: rgba(0,0,0,0.45); }
.ticker-pause svg { width: 12px; height: 12px; fill: var(--yellow); }

/* ─────────────────────────────────────────
   SHARED SECTION SCAFFOLDING
───────────────────────────────────────── */
.section { padding: 7rem 3rem; }
.section.bg-sage  { background: var(--sage); }
.section.bg-yellow{ background: var(--yellow); }
.section.bg-green { background: var(--green); }
.section.bg-pink  { background: var(--pink); }
.section.bg-cream { background: var(--cream); }
.section.bg-white { background: #fff; }

.label-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-l);
  margin-bottom: 1.2rem;
}
.bg-green .label-row { color: var(--yellow); }
.bg-green .label-row::before { background: var(--yellow); }
.label-row::before {
  content: '';
  width: 18px; height: 1.5px;
  background: var(--green-l);
  flex-shrink: 0;
}

h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1rem;
}
.bg-green h2 { color: #fff; }
.bg-green p  { color: rgba(255,255,255,0.6); }

p.lead {
  font-size: 1rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.75;
  max-width: 540px;
}

/* ─────────────────────────────────────────
   SECTION: ÜBER MICH
───────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  margin-top: 4rem;
}

.about-img {
  aspect-ratio: 3/4;
  background: var(--green);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-inner {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #3a6038 0%, #1a2e1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.15);
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* E-Jeep pill */
.jeep-pill {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--ink);
  border-radius: 100px;
  padding: 0.5rem 1.1rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.about-text { display: flex; flex-direction: column; gap: 1.2rem; }
.about-text p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.8;
}
.about-text strong { color: var(--ink); font-weight: 500; }

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.pill {
  background: var(--cream);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
  color: var(--ink);
  font-weight: 400;
}
.pill.filled {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

/* ─────────────────────────────────────────
   SECTION: METHODE
───────────────────────────────────────── */
.methode-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: end;
  margin-bottom: 5rem;
}

.steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.step {
  background: var(--cream);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.07); }
.step.accent { background: var(--yellow); border-color: var(--yellow); }

.step-n {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--green);
  opacity: 0.8;
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.step.accent .step-n { opacity: 0.8; }

.step-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
  line-height: 1.15;
}
.step-text {
  font-size: 1rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7;
}
.step.accent .step-text { color: var(--ink); opacity: 0.7; }

/* ─────────────────────────────────────────
   SECTION: GEAR
───────────────────────────────────────── */
.gear-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 4rem;
}
.gear-item {
  background: rgba(255,255,255,0.06);
  padding: 2.5rem 2rem;
  transition: background 0.2s;
}
.gear-item:hover { background: rgba(255,255,255,0.1); }

.gear-emoji { font-size: 1.8rem; margin-bottom: 1.2rem; display: block; }
.gear-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.6rem;
  line-height: 1.2;
  letter-spacing: 0.5px;
}
.gear-text {
  font-size: 0.83rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
}
.gear-badge {
  display: inline-block;
  margin-top: 1rem;
  background: transparent;
  color: var(--yellow);
  border: 1px solid rgba(232,217,106,1);
  border-radius: 100px;
  padding: 0.2rem 0.7rem;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.partners {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 3rem;
}
.partners-label {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  white-space: nowrap;
}
.partner {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 300;
  color: rgba(255,255,255,0.2);
  letter-spacing: -0.02em;
  transition: color 0.2s;
  font-style: italic;
}
.partner:hover { color: rgba(255,255,255,0.6); }

/* ─────────────────────────────────────────
   SECTION: FÖRDERUNG
───────────────────────────────────────── */
.foerder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  margin-top: 4rem;
}

.foerder-nums { display: flex; flex-direction: column; gap: 0; }
.foerder-num {
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
}
.foerder-num:first-child { border-top: 1px solid rgba(0,0,0,0.1); }

.fnum {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  letter-spacing: -0.02em;
  min-width: 5rem;
}
.fdesc strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.fdesc span {
  font-size: 1em;
  font-weight: 300;
  color: var(--green);
}

.foerder-text { display: flex; flex-direction: column; gap: 1.2rem; }
.foerder-text p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--green);
  line-height: 1.8;
}
.foerder-text strong { color: var(--ink); font-weight: 500; }

.info-box {
  background: var(--green);
  border-radius: 16px;
  padding: 1.8rem;
  color: #fff;
}
.info-box-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 900;
  font-style: italic;
  color: var(--yellow);
  margin-bottom: 0.7rem;
}
.info-box p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ─────────────────────────────────────────
   SECTION: APP
───────────────────────────────────────── */
.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  margin-top: 4rem;
}

/* phone mockup */
.phone {
  background: var(--ink);
  border-radius: 36px;
  padding: 1.2rem;
  max-width: 240px;
  margin: 0 auto;
  box-shadow: 0 40px 80px rgba(0,0,0,0.18);
}
.phone-screen {
  background: #0d1209;
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 9/19;
  display: flex;
  flex-direction: column;
}
.phone-top {
  background: #131a0f;
  padding: 0.8rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.phone-top-name {
  font-family: var(--serif);
  font-size: 0.65rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.7);
}
.phone-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

.phone-map {
  flex: 1;
  background: #1a2518;
  position: relative;
  overflow: hidden;
}
.phone-map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(78,120,72,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(78,120,72,0.08) 1px, transparent 1px);
  background-size: 18px 18px;
}
.phone-pin {
  position: absolute;
  top: 42%; left: 58%;
  transform: translate(-50%,-50%);
  width: 12px; height: 12px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(232,217,106,0.2);
}
.phone-pin::after {
  content:'';
  position:absolute;
  top:50%;left:50%;
  transform:translate(-50%,-50%);
  width:26px;height:26px;
  border-radius:50%;
  border:1px solid rgba(232,217,106,0.25);
  animation:pulse 2s infinite;
}
@keyframes pulse{0%{transform:translate(-50%,-50%) scale(1);opacity:1}100%{transform:translate(-50%,-50%) scale(2);opacity:0}}

.phone-bottom {
  background: #131a0f;
  padding: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.phone-row {
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 0.5rem 0.7rem;
  font-size: 0.55rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}
.phone-row strong {
  display: block;
  font-size: 0.6rem;
  color: var(--yellow);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.1rem;
}
.phone-btn {
  background: var(--green);
  border-radius: 8px;
  padding: 0.6rem;
  text-align: center;
  font-family: var(--serif);
  font-size: 0.6rem;
  font-style: italic;
  color: var(--yellow);
}

.app-features { display: flex; flex-direction: column; gap: 1.8rem; }
.app-feat {
  padding-bottom: 1.8rem;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.app-feat:last-child { border-bottom: none; padding-bottom: 0; }
.app-feat-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.4rem;
  letter-spacing: 0.5px;
}
.app-feat-text {
  font-size: 1rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7;
}

.coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 400;
  color: var(--mid);
  margin-top: 2rem;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(0,0,0,0.1);
}
.coming-soon::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-l);
}

/* ─────────────────────────────────────────
   SECTION: EINSATZGEBIET
───────────────────────────────────────── */
.gebiet-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  margin-top: 4rem;
}

.gebiet-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.g-tag {
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 1rem;
  font-weight: 400;
  border: 1px solid rgba(0,0,0,0.12);
  color: var(--ink);
  transition: all 0.2s;
  background: transparent;
}
.g-tag:hover { border-color: var(--green); color: var(--green); }
.g-tag.home { background: var(--green); color: #fff; border-color: var(--green); }

.gebiet-note {
  background: var(--ink);
  border-radius: 20px;
  padding: 2.2rem;
}
.gebiet-note-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  font-style: italic;
  color: var(--yellow);
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}
.gebiet-note p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-bottom: 0.8rem;
}
.gebiet-note p:last-child { margin-bottom: 0; }

.usecases { display: flex; flex-direction: column; gap: 0; }
.usecase {
  padding: 1.3rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  display: grid;
  grid-template-columns: 1.4rem 1fr;
  gap: 1rem;
  align-items: start;
}
.usecase:first-child { border-top: 1px solid rgba(0,0,0,0.08); }
.usecase-icon { font-size: 1rem; padding-top: 0.1rem; }
.usecase-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.2rem;
  letter-spacing: 0.5px;
}
.usecase-text {
  font-size: 1rem;
  font-weight: 300;
  color: var(--green);
  line-height: 1.6;
}

/* ─────────────────────────────────────────
   SECTION: KONTAKT
───────────────────────────────────────── */
.kontakt-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  margin-top: 4rem;
}

.k-form { display: flex; flex-direction: column; gap: 1rem; }
.k-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.k-field { display: flex; flex-direction: column; gap: 0.35rem; }
.k-label {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.k-field input,
.k-field select,
.k-field textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: #fff;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
  appearance: none;
}
.k-field select option { background: var(--green); }
.k-field input:focus,
.k-field select:focus,
.k-field textarea:focus { border-color: rgba(232,217,106,0.4); }
.k-field input::placeholder,
.k-field textarea::placeholder { color: rgba(255,255,255,0.2); }
.k-field textarea { resize: vertical; min-height: 100px; }

.k-submit {
  background: var(--yellow);
  color: var(--ink);
  border: none;
  border-radius: 100px;
  padding: 0.9rem 2rem;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  align-self: flex-start;
  transition: opacity 0.2s, transform 0.15s;
}
.k-submit:hover { opacity: 0.85; transform: translateY(-1px); }

.k-info { display: flex; flex-direction: column; gap: 0; }
.k-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.k-item:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.k-item-label {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.3rem;
  opacity: 0.7;
}
.k-item-val {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
}
.k-item-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  margin-top: 0.1rem;
}

.avail {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
}
.avail::before {
  content:'';
  width:7px; height:7px;
  border-radius:50%;
  background: #6abf6a;
  flex-shrink: 0;
  animation: blink 2s infinite;
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  background: var(--ink);
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.f-logo {
  font-family: var(--serif);
  font-size: 0.85rem;
  font-weight: 900;
  font-style: italic;
  color: rgba(255,255,255,0.8);
}
.f-copy { font-size: 0.72rem; color: rgba(255,255,255,0.8); }
.f-links { display: flex; gap: 1.5rem; }
.f-links a {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.f-links a:hover { text-decoration:underline; }

/* ─────────────────────────────────────────
   REVEAL
───────────────────────────────────────── */
.r {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.r.in { opacity: 1; transform: none; }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 880px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }

  .nav-logo {color: var(--cream);}
  .nav-logo small {color: var(--cream);}

  nav.scrolled .nav-logo {color: var(--ink);}
  nav.scrolled .nav-logo small {color: var(--mid);}

  .hero { grid-template-columns: 1fr; padding: 8rem 1.5rem 4rem; }
  .hero::before { width: 100%; height: 45%; border-radius: 0; }
  .hero-left {background: rgba(255,255,255,0.9); padding: 20px; border-radius: 20px}
  .hero-right { flex-direction: row; overflow-x: auto; align-items: stretch; }
  .h-card { min-width: 140px; padding: 1.2rem .6rem}
  .h-card:nth-child(2) { margin-right: 0; }
  .section { padding: 5rem 1.5rem; }
  .about-grid, .methode-top, .foerder-grid,
  .app-grid, .gebiet-layout, .kontakt-layout { grid-template-columns: 1fr; gap: 3rem; }
  .gear-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .k-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 1rem; text-align: center; padding: 1.5rem; }
  .partners { flex-wrap: wrap; }
}

/* ─────────────────────────────────────────
   HAMBURGER BUTTON
───────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  z-index: 301;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-hamburger { display: flex; }
}
nav.scrolled .nav-hamburger span {background: var(--ink);}
/* ─────────────────────────────────────────
   MOBILE MENU OVERLAY
───────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 4rem 2.5rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}

.mobile-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}
.mobile-menu-links li {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.mobile-menu-links li:first-child {
  border-top: 1px solid rgba(0,0,0,0.08);
}
.mobile-menu-links a {
  display: block;
  font-family: var(--serif);
  font-weight: 900;
  font-size: 1.8rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  padding: 0.9rem 0;
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
  line-height: 1.1;
}
.mobile-menu-links a:hover { color: var(--green); padding-left: 0.3rem; }

.mobile-menu-cta {
  margin-top: 2rem;
}
.mobile-menu-cta a {
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}
.mobile-menu-cta a:hover { background: var(--green-l); }

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 100px;
  border: 1.5px solid rgba(0,0,0,0.12);
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink);
  transition: background 0.2s, border-color 0.2s;
}
.mobile-menu-close:hover {
  background: rgba(0,0,0,0.05);
  border-color: rgba(0,0,0,0.25);
}

.mobile-menu-footer {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  color: var(--mid);
}

/* ─────────────────────────────────────────
   COOKIE BANNER
───────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 480px;
  z-index: 500;
  background: var(--ink);
  color: #fff;
  border-radius: 20px;
  padding: 1.5rem 1.8rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}
.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner-title {
  font-family: var(--serif);
  font-weight: 900;
  font-style: italic;
  font-size: 1rem;
  color: var(--yellow);
  margin-bottom: 0.5rem;
}
.cookie-banner-text {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}
.cookie-banner-text a {
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.cookie-toggle-row:last-of-type {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 1rem;
}
.cookie-toggle-label {
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
}
.cookie-toggle-label small {
  display: block;
  font-size: 0.68rem;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  margin-top: 0.1rem;
}

/* Toggle switch */
.toggle {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.25s;
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  left: 3px; top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.25s;
}
.toggle input:checked + .toggle-slider { background: var(--green-l); }
.toggle input:checked + .toggle-slider::before { transform: translateX(18px); }
.toggle input:disabled + .toggle-slider { opacity: 0.4; cursor: not-allowed; }

.cookie-actions {
  display: flex;
  gap: 0.7rem;
}
.cookie-btn-accept {
  flex: 1;
  background: var(--yellow);
  color: var(--ink);
  border: none;
  border-radius: 100px;
  padding: 0.7rem 1rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s;
}
.cookie-btn-accept:hover { opacity: 0.85; }
.cookie-btn-decline {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 0.7rem 1rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.cookie-btn-decline:hover { background: rgba(255,255,255,0.12); }