/* =========================================================
   Limeberry Catering — Stylesheet
   Brand: Lime Green #7cb411
   ========================================================= */

:root {
  --green: #7cb411;
  --green-dark: #5e8a0c;
  --green-darker: #466808;
  --green-light: #a7d44a;
  --green-soft: #f1f8e2;

  --ink: #1a1a1a;
  --ink-soft: #4a4a4a;
  --muted: #6b6b6b;
  --line: #e6e6e6;
  --bg: #ffffff;
  --bg-alt: #fafaf7;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;

  --container: 1200px;

  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.01em;
}

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

.section {
  padding: 96px 0;
}
.section--alt { background: var(--bg-alt); }
.section--green { background: var(--green-soft); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 16px;
  max-width: 720px;
}
.section-lead {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 640px;
  margin-bottom: 56px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--green);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--green-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: currentColor;
}
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--white {
  background: #fff;
  color: var(--ink);
}
.btn--white:hover { background: var(--green); color: var(--ink); }
.btn--lg { padding: 18px 36px; font-size: 16px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--line);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.site-header__logo img { height: 36px; width: auto; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  transition: color 0.2s ease;
}
.site-nav a:hover { color: var(--green-dark); }
.site-nav a.is-active { color: var(--green-dark); font-weight: 600; }
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.site-nav a:hover::after,
.site-nav a.is-active::after { transform: scaleX(1); }
.site-nav a.is-active::after { transform-origin: center; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: background 0.2s ease;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, top 0.25s ease;
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* ---------- Hero with CSS Slideshow ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero__slides {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroFade 30s infinite;
  will-change: opacity;
}
.hero__slide:nth-child(1) { animation-delay: 0s; }
.hero__slide:nth-child(2) { animation-delay: 6s; }
.hero__slide:nth-child(3) { animation-delay: 12s; }
.hero__slide:nth-child(4) { animation-delay: 18s; }
.hero__slide:nth-child(5) { animation-delay: 24s; }

@keyframes heroFade {
  0%   { opacity: 0; }
  3%   { opacity: 1; }
  20%  { opacity: 1; }
  23%  { opacity: 0; }
  100% { opacity: 0; }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.22) 60%, rgba(0, 0, 0, 0.42) 100%);
}

.hero__content {
  max-width: 820px;
  padding: 96px 24px 120px;
  margin: 0 auto;
  text-align: center;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--green);
  color: var(--ink);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.hero__title {
  font-size: clamp(36px, 6vw, 68px);
  color: #fff;
  margin-bottom: 24px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
.hero__title em {
  font-style: italic;
  color: var(--green-light);
}
.hero__lead {
  font-size: clamp(17px, 2vw, 21px);
  color: rgba(255, 255, 255, 0.92);
  margin: 0 auto 40px;
  max-width: 640px;
}
.hero__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Trust Strip ---------- */
.trust {
  background: var(--bg-alt);
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}
.trust__label {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
/* ---------- Marquee (logos / clients) ---------- */
.marquee {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.marquee__track:hover { animation-play-state: paused; }
.marquee__list {
  display: flex;
  align-items: center;
  gap: 80px;
  padding-right: 80px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(26, 26, 26, 0.32);
  flex-shrink: 0;
}
.marquee__list li {
  white-space: nowrap;
  position: relative;
  padding: 8px 0;
}
.marquee__list li::after {
  content: "";
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  opacity: 0.45;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Logo variant — image-based marquee for client/messe references */
.marquee--logos .marquee__list {
  gap: 96px;
  padding-right: 96px;
}
.marquee--logos .marquee__list li::after { display: none; }
.marquee--logos .marquee__list li {
  padding: 0;
  display: flex;
  align-items: center;
  height: 80px;
  min-width: 80px;
  flex-shrink: 0;
}
.marquee--logos img {
  max-height: 64px;
  max-width: 220px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.55);
  transition: filter 0.3s ease;
}
.marquee--logos:hover img { filter: grayscale(0.4) opacity(0.85); }
.marquee--logos img.is-inverted { filter: invert(1) grayscale(1) opacity(0.55); }
.marquee--logos:hover img.is-inverted { filter: invert(1) grayscale(0.4) opacity(0.85); }

/* ---------- Partner-Callout (z. B. Gamescom) ---------- */
.partner-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 2fr;
  gap: 56px;
  align-items: center;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
}
.partner-callout__logo {
  display: flex;
  justify-content: center;
}
.partner-callout__logo img {
  max-width: 280px;
  width: 100%;
  height: auto;
}
.partner-callout__years {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 700;
  font-style: italic;
  color: var(--green-dark);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.partner-callout h3 {
  font-size: clamp(24px, 2.6vw, 32px);
  margin-bottom: 14px;
  font-style: italic;
  font-weight: 500;
}
.partner-callout p {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.65;
}
@media (max-width: 760px) {
  .partner-callout {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 28px;
    text-align: center;
  }
  .partner-callout__logo { margin-bottom: 8px; }
}

/* ---------- Ablauf / Process Timeline ---------- */
.ablauf {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.ablauf__media {
  position: sticky;
  top: 100px;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.ablauf__media img { width: 100%; height: 100%; object-fit: cover; }
.ablauf__steps {
  display: grid;
  gap: 28px;
  counter-reset: step;
  list-style: none;
}
.ablauf__steps li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.ablauf__steps li:last-child { border-bottom: none; padding-bottom: 0; }
.ablauf__num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
  letter-spacing: -0.02em;
}
.ablauf__steps strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.2;
}
.ablauf__steps p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.65;
}
@media (max-width: 960px) {
  .ablauf { grid-template-columns: 1fr; gap: 32px; }
  .ablauf__media { position: static; aspect-ratio: 16/10; }
}

/* ---------- Service Cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
}
.service {
  padding: 36px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green);
}
.service__icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--green-soft);
  color: var(--green-dark);
  border-radius: 50%;
  margin-bottom: 20px;
  font-size: 22px;
}
.service__title { font-size: 22px; margin-bottom: 12px; }
.service__text { color: var(--ink-soft); font-size: 15.5px; line-height: 1.65; }

/* ---------- Cateringmappe Banner ---------- */
.mappe {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
.mappe h3 { color: #fff; font-size: clamp(26px, 3vw, 36px); margin-bottom: 14px; }
.mappe p { color: rgba(255, 255, 255, 0.78); font-size: 17px; }
.mappe__cta { justify-self: end; }

/* ---------- Schwerpunkte (image cards) ---------- */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.focus {
  position: relative;
  height: 360px;
  border-radius: var(--radius-md);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  color: #fff;
}
.focus img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.5s ease;
}
.focus::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.75) 100%);
}
.focus:hover img { transform: scale(1.05); }
.focus h3 { color: #fff; font-size: 24px; margin-bottom: 6px; }
.focus p { color: rgba(255,255,255,0.85); font-size: 15px; }
.focus__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  z-index: 1;
}
.focus--partner::before {
  background: linear-gradient(180deg, rgba(60,30,15,0) 30%, rgba(60,30,15,0.85) 100%);
}

/* ---------- Projektleiter (round avatars) ---------- */
.team-leads {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 880px;
  margin: 0 auto;
}
.team-lead { text-align: center; }
.team-lead__avatar {
  width: 168px;
  height: 168px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.team-lead__avatar::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--green);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.team-lead:hover .team-lead__avatar { transform: translateY(-4px); }
.team-lead:hover .team-lead__avatar::after { opacity: 1; }
.team-lead__avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-lead__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.team-lead__role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-dark);
}
@media (max-width: 720px) {
  .team-leads { grid-template-columns: 1fr; gap: 36px; max-width: 320px; }
  .team-lead__avatar { width: 152px; height: 152px; }
}

/* ---------- Team Banner (full-width) ---------- */
.team-banner {
  width: 100%;
  height: clamp(280px, 40vw, 520px);
  overflow: hidden;
  background: var(--bg-alt);
}
.team-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

/* ---------- Generic split (image + content) — used by .why and other pages ---------- */
.why,
.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}
.why__intro { padding-top: 4px; }
.split__media {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__list {
  margin: 24px 0 32px;
  display: grid;
  gap: 12px;
}
.split__list li {
  position: relative;
  padding-left: 32px;
  font-size: 16.5px;
  color: var(--ink-soft);
}
.split__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 18px; height: 18px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px #fff, inset 0 0 0 5px var(--green);
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.stat {
  text-align: center;
  padding: 24px;
}
.stat__num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
}
.stat__label {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- FAQ ---------- */
.faq {
  display: grid;
  gap: 12px;
  max-width: 880px;
}
.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 4px 24px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq__item[open] {
  border-color: var(--green);
  box-shadow: var(--shadow-sm);
}
.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 32px 18px 0;
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  position: relative;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  display: grid; place-items: center;
  background: var(--green-soft);
  color: var(--green-dark);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 600;
  transition: transform 0.25s ease, background 0.2s ease;
}
.faq__item[open] summary::after {
  content: "−";
  background: var(--green);
  color: var(--ink);
  transform: translateY(-50%) rotate(180deg);
}
.faq__item p {
  padding: 0 0 20px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

/* ---------- CTA Block ---------- */
.cta-block {
  text-align: center;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 72px 32px;
  color: var(--ink);
}
.cta-block h2 { color: var(--ink); margin-bottom: 16px; }
.cta-block p { font-size: 18px; max-width: 560px; margin: 0 auto 32px; }

/* ---------- Subpage Hero ---------- */
.subhero {
  background: var(--bg-alt);
  padding: 88px 0 72px;
  border-bottom: 1px solid var(--line);
  text-align: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.subhero--image {
  padding: 120px 0 100px;
  background: var(--ink);
  color: #fff;
  border-bottom: none;
  min-height: 380px;
  display: flex;
  align-items: center;
}
.subhero--image .container { width: 100%; }
.subhero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
}
.subhero--image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0.42) 60%, rgba(0, 0, 0, 0.55) 100%);
}
.subhero--image .subhero__eyebrow {
  color: var(--green-light);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}
.subhero--image h1 {
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55), 0 1px 4px rgba(0, 0, 0, 0.4);
}
.subhero--image p {
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55), 0 1px 3px rgba(0, 0, 0, 0.4);
}
.subhero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 20px;
}
.subhero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-style: italic;
  font-weight: 500;
  max-width: 880px;
  margin: 0 auto 18px;
}
.subhero p {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ---------- Post Hero (Blog-Beiträge mit Hintergrundbild) ---------- */
.post-hero {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  isolation: isolate;
  padding: 80px 24px;
  overflow: hidden;
}
.post-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
}
.post-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.38) 60%, rgba(0, 0, 0, 0.5) 100%);
}
.post-hero__inner { max-width: 920px; }
.post-hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 20px;
}
.post-hero h1 {
  font-size: clamp(34px, 4.8vw, 60px);
  font-style: italic;
  font-weight: 500;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.15;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}
.post-hero__meta {
  font-size: 14px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.88);
}

/* ---------- Prose (long-form text, legal pages) ---------- */
.prose {
  max-width: 760px;
  margin: 0 auto;
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--ink-soft);
}
.prose h2 {
  font-size: 24px;
  margin: 40px 0 14px;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-size: 18px;
  margin: 28px 0 8px;
  color: var(--ink);
  font-weight: 700;
}
.prose p { margin-bottom: 16px; }
.prose ul, .prose ol { margin: 0 0 16px 20px; }
.prose ul li, .prose ol li { margin-bottom: 6px; list-style: disc; }
.prose ol li { list-style: decimal; }
.prose a { color: var(--green-dark); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--ink); }
.prose .meta {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-bottom: 32px;
}

/* ---------- Team Grid (Über uns full team) ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}
@media (max-width: 880px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
  text-align: center;
}
.team-card__photo {
  width: 180px;
  height: 180px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.team-card__role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 12px;
}
.team-card__bio { font-size: 15px; color: var(--ink-soft); line-height: 1.6; }

/* ---------- Locations ---------- */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.location-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}
.location-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green);
}
.location-card__media { aspect-ratio: 4/3; overflow: hidden; }
.location-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.location-card:hover .location-card__media img { transform: scale(1.05); }
.location-card__body { padding: 24px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.location-card__type {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.location-card__name {
  font-size: 24px;
  margin-bottom: 12px;
}
.location-card__text {
  color: var(--ink-soft);
  font-size: 15.5px;
  margin-bottom: 16px;
  flex: 1;
}
.location-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}
.location-card__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--green-soft);
  color: var(--green-dark);
  border-radius: 999px;
}

/* ---------- Gallery Grid ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  grid-auto-rows: 220px;
  grid-auto-flow: dense;
}
.gallery-grid__tile {
  position: relative;
  overflow: hidden;
  background: var(--bg-alt);
}
.gallery-grid__tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s ease;
}
.gallery-grid__tile:hover img { transform: scale(1.04); filter: brightness(1.04); }
.gallery-grid__tile--wide { grid-column: span 2; }
.gallery-grid__tile--tall { grid-row: span 2; }
@media (max-width: 960px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery-grid__tile--wide { grid-column: span 2; }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid__tile--wide, .gallery-grid__tile--tall { grid-column: auto; grid-row: auto; }
}

/* ---------- Blog list ---------- */
.blog-list {
  display: grid;
  gap: 4px;
  border-top: 1px solid var(--line);
}
.blog-card {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s ease;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover { background: var(--bg-alt); padding-left: 12px; padding-right: 12px; }
.blog-card__date {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-dark);
}
.blog-card__title {
  font-size: 22px;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.25;
}
.blog-card__excerpt { font-size: 15px; color: var(--ink-soft); line-height: 1.55; }
.blog-card__arrow {
  font-size: 22px;
  color: var(--green-dark);
  opacity: 0.6;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.blog-card:hover .blog-card__arrow { transform: translateX(4px); opacity: 1; }
@media (max-width: 720px) {
  .blog-card { grid-template-columns: 1fr; gap: 8px; }
  .blog-card__arrow { display: none; }
}

/* ---------- Blog Tiles (Übersicht mit Bildvorschau) ---------- */
.blog-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.blog-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green);
}
.blog-tile__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-alt);
}
.blog-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-tile:hover .blog-tile__media img { transform: scale(1.05); }
.blog-tile__body {
  padding: 22px 26px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blog-tile__date {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-dark);
}
.blog-tile__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.blog-tile__excerpt {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  flex: 1;
}
.blog-tile__more {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-tile__more::after {
  content: "→";
  transition: transform 0.2s ease;
}
.blog-tile:hover .blog-tile__more::after { transform: translateX(4px); }

@media (max-width: 960px) { .blog-tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-tiles { grid-template-columns: 1fr; } }

/* ---------- Menus ---------- */
.menu-card {
  padding: 40px 36px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  height: 100%;
}
.menu-card h3 {
  font-size: 26px;
  margin-bottom: 4px;
}
.menu-card__sub {
  font-size: 14px;
  color: var(--green-dark);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.menu-card ul { display: grid; gap: 0; }
.menu-card ul li {
  padding: 12px 0;
  border-top: 1px dashed var(--line);
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.menu-card ul li:last-child { border-bottom: 1px dashed var(--line); }

/* ---------- Contact ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
}
.contact-info {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  align-self: start;
}
.contact-info h3 { font-size: 22px; margin-bottom: 24px; }
.contact-info dl { display: grid; gap: 18px; margin-bottom: 24px; }
.contact-info dt {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 4px;
}
.contact-info dd { font-size: 16px; color: var(--ink); }
.contact-info dd a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.contact-info dd a:hover { color: var(--green-dark); }

.contact-form { display: grid; gap: 18px; }
.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-bottom: 6px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-soft);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 720px) {
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .contact-form__row { grid-template-columns: 1fr; }
}

/* ---------- Values (4-column) ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.value h3 {
  font-size: 22px;
  margin-bottom: 10px;
  position: relative;
  padding-top: 24px;
}
.value h3::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 32px;
  height: 3px;
  background: var(--green);
}
.value p { color: var(--ink-soft); font-size: 15.5px; }
@media (max-width: 880px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .values-grid { grid-template-columns: 1fr; } }

/* ---------- PDF Embed ---------- */
.pdf-embed {
  width: 100%;
  height: 80vh;
  min-height: 600px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--bg-alt);
}

/* ---------- Cookie-Banner & Cookie-Modal ---------- */
.cookie-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 250;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
  padding: 22px 26px;
  max-width: 1100px;
  margin: 0 auto;
  transform: translateY(120%);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.cookie-banner.is-open { transform: translateY(0); }
.cookie-banner__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.cookie-banner__text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.cookie-banner__text strong { color: var(--ink); display: block; margin-bottom: 4px; font-size: 15px; }
.cookie-banner__text a { color: var(--green-dark); text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner__buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-banner__btn { font-size: 14px; padding: 10px 18px; }
@media (max-width: 760px) {
  .cookie-banner { padding: 18px 20px; left: 8px; right: 8px; bottom: 8px; }
  .cookie-banner__inner { grid-template-columns: 1fr; gap: 14px; }
  .cookie-banner__buttons { justify-content: stretch; }
  .cookie-banner__buttons .btn { flex: 1 1 auto; min-width: 110px; }
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 260;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
  overflow-y: auto;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.cookie-modal.is-open { display: flex; opacity: 1; }
.cookie-modal__inner {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 640px;
  width: 100%;
  padding: 44px 44px 36px;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.cookie-modal__close {
  position: absolute;
  top: 14px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 24px; line-height: 1;
  color: var(--ink-soft);
  background: var(--bg-alt);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.cookie-modal__close:hover { background: var(--ink); color: #fff; }
.cookie-modal__inner h2 { font-size: 26px; margin-bottom: 8px; }
.cookie-modal__lead { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 24px; }
.cookie-cat {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 12px;
}
.cookie-cat__head {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  margin-bottom: 8px;
}
.cookie-cat__head input { width: 18px; height: 18px; accent-color: var(--green); }
.cookie-cat__title {
  font-weight: 600;
  font-size: 15.5px;
  color: var(--ink);
}
.cookie-cat__title em { color: var(--muted); font-style: normal; font-weight: 500; font-size: 13px; }
.cookie-cat__desc {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  padding-left: 30px;
}
.cookie-modal__buttons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.cookie-modal__buttons .btn { flex: 1 1 auto; min-width: 160px; padding: 12px 20px; font-size: 14.5px; }
@media (max-width: 560px) {
  .cookie-modal__inner { padding: 32px 24px 26px; }
}

/* ---------- Bewerbungs-Modal (Karriere) ---------- */
.bewerbung-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
  overflow-y: auto;
}
.bewerbung-modal.is-open { display: flex; }
.bewerbung-modal__inner {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 720px;
  width: 100%;
  padding: 48px 48px 40px;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: fadeUp 0.3s ease;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.bewerbung-modal__close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  color: var(--ink-soft);
  background: var(--bg-alt);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.bewerbung-modal__close:hover { background: var(--ink); color: #fff; }
.bewerbung-modal__inner h2 {
  font-size: 28px;
  margin-bottom: 6px;
}
.bewerbung-modal__lead {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 28px;
}

.bewerbung-form { display: grid; gap: 18px; }
.bewerbung-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.bewerbung-form .req { color: var(--green-dark); }
.bewerbung-form input[type="text"],
.bewerbung-form input[type="email"],
.bewerbung-form input[type="tel"],
.bewerbung-form select,
.bewerbung-form textarea,
.bewerbung-form input[type="file"] {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.bewerbung-form input[type="file"] { padding: 8px; cursor: pointer; }
.bewerbung-form input:focus,
.bewerbung-form select:focus,
.bewerbung-form textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-soft);
}
.bewerbung-form textarea { min-height: 110px; resize: vertical; }
.bewerbung-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.bewerbung-form__hint {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}
.bewerbung-form__check,
.contact-form__check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.5;
  cursor: pointer;
}
.bewerbung-form__check input,
.contact-form__check input { margin-top: 3px; flex-shrink: 0; }
.bewerbung-form__check a,
.contact-form__check a {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.bewerbung-form__status {
  display: none;
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 14.5px;
  margin-top: 4px;
}
.bewerbung-form__status.is-success {
  display: block;
  background: var(--green-soft);
  color: var(--green-darker);
  border: 1px solid var(--green);
}
.bewerbung-form__status.is-error {
  display: block;
  background: #fff0f0;
  color: #a83232;
  border: 1px solid #e8b4b4;
}
@media (max-width: 600px) {
  .bewerbung-modal__inner { padding: 32px 24px 28px; }
  .bewerbung-form__row { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #cfcfcf;
  padding: 80px 0 32px;
  font-size: 15px;
}
.site-footer a { color: #cfcfcf; transition: color 0.2s ease; }
.site-footer a:hover { color: var(--green-light); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-col h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { display: grid; gap: 10px; }
.site-footer__brand img { height: 40px; margin-bottom: 18px; }
.site-footer__brand p { color: #9a9a9a; max-width: 320px; }
.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  transition: background 0.2s ease, color 0.2s ease;
}
.socials a:hover { background: var(--green); color: var(--ink); }
.socials svg { width: 18px; height: 18px; fill: currentColor; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #8a8a8a;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .section { padding: 72px 0; }
  .mappe { grid-template-columns: 1fr; padding: 40px; }
  .mappe__cta { justify-self: start; }
  .why,
  .split { grid-template-columns: 1fr; gap: 32px; }
  .ablauf__media { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    inset: 64px 0 auto 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-110%);
    transition: transform 0.3s ease;
  }
  .site-nav.is-open { transform: translateY(0); }
  .site-nav a { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--line); font-size: 16px; }
  .site-nav a:last-child { border-bottom: none; }
  .site-nav a::after { display: none; }
  .hero { min-height: 80vh; }
  .hero__content { padding: 64px 20px 80px; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-block { padding: 56px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__slide { animation: none; opacity: 1; }
  .hero__slide:not(:first-child) { display: none; }
  * { transition: none !important; animation: none !important; }
}

/* === BREADCRUMBS === */
.breadcrumbs {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--ink-soft);
}
.breadcrumbs__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 11px 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.breadcrumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 6px;
}
.breadcrumbs li + li::before {
  content: "›";
  color: var(--muted);
  font-weight: 400;
  margin-right: 2px;
}
.breadcrumbs a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.15s ease;
}
.breadcrumbs a:hover {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.breadcrumbs li[aria-current="page"] {
  color: var(--ink);
  font-weight: 500;
}

@media (max-width: 640px) {
  .breadcrumbs { font-size: 12.5px; }
  .breadcrumbs__inner { padding: 10px 16px; }
}

/* === BLOG AUTHOR BIO === */
.author-bio {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  margin-top: 56px;
  border-radius: var(--radius-md);
  background: var(--bg-alt);
  border: 1px solid var(--line);
}
.author-bio__avatar {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--bg);
  box-shadow: var(--shadow-sm);
}
.author-bio__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.author-bio__body {
  flex: 1;
  min-width: 0;
}
.author-bio__role {
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-dark);
  font-weight: 600;
  margin-bottom: 6px;
}
.author-bio__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.2;
}
.author-bio__text {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 640px) {
  .author-bio { flex-direction: column; padding: 24px; gap: 18px; }
  .author-bio__avatar { width: 72px; height: 72px; }
}

/* === SERVICE HIGHLIGHT (Plant-Based) === */
.service--highlight {
  position: relative;
  background: var(--green-soft);
  border: 2px solid var(--green);
  padding: 28px;
  border-radius: var(--radius-md);
}
.service__badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--green);
  color: var(--ink);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.service--highlight .service__icon {
  font-size: 40px;
  line-height: 1;
  color: var(--green-dark);
}

/* === PLANT-BASED FEATURE SECTION === */
.plant-based-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.plant-based-feature__media {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.plant-based-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.plant-based-feature__body .eyebrow {
  color: var(--green-dark);
  font-weight: 700;
  margin-bottom: 16px;
}
.plant-based-feature__body h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 20px;
}
.plant-based-feature__body p {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 24px;
}
.plant-based-feature__list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.plant-based-feature__list li {
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.55;
}
.plant-based-feature__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--ink);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .plant-based-feature {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .plant-based-feature__media {
    aspect-ratio: 4 / 3;
    max-width: 540px;
    margin: 0 auto;
  }
}

/* === PLANT-BASED HINT (Cateringmappe) === */
.plant-based-hint {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 26px;
  margin-bottom: 32px;
  background: var(--green-soft);
  border-left: 4px solid var(--green);
  border-radius: var(--radius-sm);
}
.plant-based-hint__icon {
  font-size: 32px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.plant-based-hint strong {
  display: block;
  font-size: 16.5px;
  color: var(--ink);
  margin-bottom: 6px;
}
.plant-based-hint p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}
.plant-based-hint a {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
