

:root {
  
  --paper: oklch(0.948 0.030 83);
  --paper-deep: oklch(0.905 0.040 80);
  --paper-edge: oklch(0.845 0.048 77);
  --ink: oklch(0.22 0.025 145);
  --ink-soft: oklch(0.38 0.03 145);
  --ink-mute: oklch(0.55 0.025 140);
  --herb: oklch(0.52 0.14 142);
  --herb-deep: oklch(0.36 0.10 145);
  --herb-dark: oklch(0.24 0.06 145);
  --herb-light: oklch(0.82 0.09 130);
  --herb-pale: oklch(0.94 0.04 125);
  --tomato: oklch(0.62 0.18 35);
  --sun: oklch(0.82 0.14 92);

  
  --ff-display: "DM Serif Display", "Cormorant Garamond", Georgia, serif;
  --ff-body: "Work Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ff-hand: "Caveat", "Comic Sans MS", cursive;

  
  --r-card: 18px;
  --r-pill: 999px;
  --r-photo: 200px / 140px; 
}

:root {
  --t-primary: var(--herb);
  --t-primary-deep: var(--herb-deep);
  --t-card-radius: 18px;
  --t-photo-shape: 200px / 140px; 
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  background-image:
    radial-gradient(ellipse 800px 400px at 15% 10%, oklch(0.965 0.032 88) 0%, transparent 60%),
    radial-gradient(ellipse 900px 500px at 85% 40%, oklch(0.925 0.038 90) 0%, transparent 55%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='4'/><feColorMatrix values='0 0 0 0 0.15  0 0 0 0 0.12  0 0 0 0 0.08  0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: auto, auto, 200px 200px;
  min-height: 100vh;
}

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

h1 { font-size: clamp(3rem, 6.5vw, 6.5rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 4rem); }
h3 { font-size: clamp(1.5rem, 2.2vw, 2rem); }

p { max-width: 62ch; color: var(--ink-soft); }
p + p { margin-top: 14px; }

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 40px; }

section { position: relative; }

.divider-ink {
  width: 100%;
  max-width: 420px;
  height: 22px;
  margin: 14px auto;
  color: var(--t-primary-deep);
  opacity: 0.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--t-primary);
  color: #fff;
  box-shadow: 0 8px 20px -8px oklch(0.4 0.12 142 / 0.5);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 26px -10px oklch(0.4 0.12 142 / 0.6); }
.btn-ghost {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }

.hero-cta-bestellzugang { display: none; }
@media (max-width: 1080px) {
  .hero-cta-bestellzugang { display: inline-flex; }
}
.btn-light {
  background: var(--paper);
  color: var(--ink);
  border-color: transparent;
}
.btn-light:hover { background: var(--paper-deep); }

.btn .arr { transition: transform 0.2s; }
.btn:hover .arr { transform: translateX(4px); }

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: oklch(0.965 0.013 85 / 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--paper-edge);
}
.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-brand-logo {
  display: block;
  height: 56px;
  width: auto;

  image-rendering: -webkit-optimize-contrast;
}

.nav-brand { gap: 12px; }
.nav-wordmark {
  display: block;
  height: 30px;
  width: auto;
  image-rendering: -webkit-optimize-contrast;
}
.nav-chef {
  display: block;
  height: 50px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 500;
}
.nav-links a {
  position: relative;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--t-primary); }
.nav-links a.active { color: var(--t-primary); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--t-primary);
  border-radius: 2px;
}
.nav-cta {
  padding: 10px 20px;
  font-size: 0.88rem;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  margin-right: 10px;
  background: transparent;
  border: 1px solid oklch(0.78 0.02 130 / 0.7);
  border-radius: 10px;
  vertical-align: middle;
}
.lang-flag-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease;
}
.lang-flag-btn:hover { background: oklch(1 0 0 / 0.5); }
.lang-flag-btn:active { transform: translateY(1px); }
.lang-flag-btn:focus-visible {
  outline: 2px solid var(--herb, oklch(0.45 0.1 145));
  outline-offset: 2px;
}
.lang-flag-btn.is-active {
  background: oklch(1 0 0 / 0.65);
  box-shadow: inset 0 0 0 1px oklch(0.78 0.02 130 / 0.6);
  cursor: default;
}
.lang-flag {
  display: inline-flex;
  width: 22px;
  height: auto;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 0 0 1px oklch(0.6 0.02 130 / 0.35);
  
  filter: grayscale(1) contrast(0.92) brightness(0.98);
  opacity: 0.55;
  transition: filter 0.25s ease, opacity 0.25s ease;
}
.lang-flag-btn.is-active .lang-flag {
  filter: none;
  opacity: 1;
}
.lang-flag-btn:hover .lang-flag {
  filter: grayscale(0.4) contrast(1) brightness(1);
  opacity: 0.85;
}
.lang-flag svg { display: block; }

@media (max-width: 1080px) {
  .lang-toggle { margin-right: 6px; gap: 4px; padding: 3px; }
  .lang-flag-btn { width: 28px; height: 28px; }
  .lang-flag { width: 20px; }
}

@media (max-width: 1080px) {
  .nav-links { display: none; }
}

.footer {
  background:
    radial-gradient(ellipse 90% 60% at 15% 0%, oklch(0.32 0.08 145 / 0.55), transparent 70%),
    radial-gradient(ellipse 80% 70% at 85% 100%, oklch(0.24 0.09 148 / 0.7), transparent 70%),
    linear-gradient(168deg, oklch(0.26 0.07 145) 0%, oklch(0.20 0.06 148) 55%, oklch(0.17 0.05 150) 100%);
  color: oklch(0.96 0.02 90);
  padding: 90px 0 32px;
  margin-top: 80px;
  position: relative;
  isolation: isolate;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, oklch(0.98 0.02 90 / 0.04) 0%, transparent 40%),
    radial-gradient(circle at 12% 82%, oklch(0.98 0.02 90 / 0.03) 0%, transparent 45%);
  z-index: 0;
  pointer-events: none;
}
.footer > * { position: relative; z-index: 1; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid oklch(1 0 0 / 0.18);
}
.footer h4 {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: oklch(0.92 0.13 130);
  margin-bottom: 18px;
  font-weight: 700;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer li, .footer a { color: oklch(0.97 0.015 130); }
.footer a { transition: color 0.2s; text-decoration: none; }
.footer a:hover { color: oklch(0.88 0.16 130); text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: oklch(0.88 0.02 130);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand-line {
  font-family: var(--ff-display);
  font-size: 2rem;
  color: oklch(0.99 0.01 95);
  margin-bottom: 10px;
  text-shadow: 0 2px 18px oklch(0.18 0.05 145 / 0.5);
}
.footer p {
  color: oklch(0.95 0.02 130);
  max-width: 34ch;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

.photo {
  position: relative;
  overflow: hidden;
  background: var(--paper-deep);
  display: block;
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-pebble { border-radius: var(--t-photo-shape); }
.photo-round { border-radius: 50%; }
.photo-pill  { border-radius: 999px; }
.photo-rect  { border-radius: var(--t-card-radius); }

.tape {
  position: absolute;
  width: 70px;
  height: 22px;
  background: oklch(0.95 0.05 95 / 0.55);
  border: 1px solid oklch(0.8 0.04 95 / 0.4);
  backdrop-filter: blur(2px);
  transform: rotate(-4deg);
  z-index: 2;
}
.tape::before, .tape::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(90deg, transparent, oklch(0.85 0.03 95 / 0.4) 50%, transparent);
}
.tape::before { left: 0; }
.tape::after { right: 0; }

.leaf-shadow {
  filter: drop-shadow(0 18px 24px oklch(0.3 0.04 145 / 0.18));
}

.photo-caption {
  font-family: var(--ff-hand);
  font-size: 1.3rem;
  color: var(--ink);
  text-align: center;
  margin-top: 10px;
  line-height: 1.1;
}
.photo-caption .latin {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--ink-mute);
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
  font-style: normal;
  font-weight: 500;
}

.eyebrow {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--t-primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.on-dark .eyebrow { color: var(--herb-light); }
.on-dark h2, .on-dark h3 { color: var(--paper); }
.on-dark p { color: oklch(0.88 0.02 130); }

.sprig {
  position: absolute;
  pointer-events: none;
  opacity: 0.5;
  color: var(--herb-deep);
}

.stack-sm > * + * { margin-top: 12px; }
.stack-md > * + * { margin-top: 24px; }
.stack-lg > * + * { margin-top: 48px; }

.paper-card {
  background: var(--paper);
  border-radius: var(--t-card-radius);
  padding: 28px;
  position: relative;
  box-shadow:
    0 1px 0 oklch(1 0 0 / 0.6) inset,
    0 18px 34px -22px oklch(0.3 0.05 145 / 0.25),
    0 2px 6px -2px oklch(0.3 0.05 145 / 0.08);
  border: 1px solid var(--paper-edge);
}

.noise-top {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.6;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='7'/><feColorMatrix values='0 0 0 0 0.15  0 0 0 0 0.1  0 0 0 0 0.05  0 0 0 0.05 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}

@media (max-width: 760px) {
  .container,
  .container-wide { padding: 0 24px; }
  .nav-cta { padding: 8px 14px; font-size: 0.82rem; }
}

@media (max-width: 600px) {
  .container,
  .container-wide { padding: 0 18px; }

  
  .btn { white-space: normal; }

  
  .footer { padding: 64px 0 28px; margin-top: 56px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 36px; }
  .footer-brand-line { font-size: 1.6rem; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.8rem;
    gap: 8px;
  }
}

@media (max-width: 760px) {
  body { overflow-x: hidden; }
}

.nav-burger {
  display: none;
  background: transparent;
  border: 1.5px solid var(--paper-edge);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.2s, background-color 0.2s;
}
.nav-burger:hover { border-color: var(--herb); background: oklch(1 0 0 / 0.4); }
.nav-burger span {
  position: absolute;
  left: 10px; right: 10px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}
.nav-burger span:nth-child(1) { top: 14px; }
.nav-burger span:nth-child(2) { top: 21px; }
.nav-burger span:nth-child(3) { top: 28px; }
.nav-burger.open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

.nav-mobile {
  position: fixed;
  inset: 0;
  background: oklch(0.18 0.04 145 / 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 49;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.nav-mobile.open {
  opacity: 1;
  pointer-events: auto;
}
.nav-mobile-inner {
  position: absolute;
  top: 72px;
  left: 16px; right: 16px;
  background: var(--paper);
  border: 1.5px solid var(--paper-edge);
  border-radius: 18px;
  padding: 18px 18px 22px;
  box-shadow: 0 24px 60px -20px oklch(0.2 0.05 145 / 0.4);
  transform: translateY(-12px);
  opacity: 0;
  transition: transform 0.28s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.2s ease;
}
.nav-mobile.open .nav-mobile-inner {
  transform: translateY(0);
  opacity: 1;
}
.nav-mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0 0 16px;
  padding: 0;
}
.nav-mobile-links a {
  display: block;
  padding: 14px 14px;
  font-family: var(--ff-body);
  font-size: 1.05rem;
  color: var(--ink);
  text-decoration: none;
  border-radius: 10px;
  border-bottom: 1px solid var(--paper-edge);
  transition: background-color 0.15s, color 0.15s;
}
.nav-mobile-links li:last-child a { border-bottom: none; }
.nav-mobile-links a:hover,
.nav-mobile-links a.active {
  background: oklch(0.95 0.04 130 / 0.5);
  color: var(--herb-deep);
}
.nav-mobile-cta {
  width: 100%;
  justify-content: center;
  padding: 14px 18px !important;
  font-size: 1rem !important;
}
.nav-mobile-cta--top { margin-bottom: 18px; }

@media (max-width: 1080px) {
  .nav-burger { display: inline-flex; align-items: center; justify-content: center; }
  .nav-cta { display: none; }
}
@media (max-width: 1080px) {
  .nav-inner { gap: 12px; }
  .nav-brand-logo { height: 48px; }
  .nav-wordmark { height: 26px; }
  .nav-chef { height: 44px; }
}
@media (max-width: 480px) {
  .nav-brand-logo { height: 40px; }
  .nav-wordmark { height: 21px; }
  .nav-chef { height: 36px; }
  .nav-inner { padding: 14px 0; }
}

.botanical-backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.hero, .leistungen, .qualitaet, .nachhaltigkeit, .kontakt-cta, .ueber-uns {
  overflow: hidden;
}
.hero .container, .hero .container-wide,
.leistungen .container, .qualitaet .container,
.nachhaltigkeit .container, .kontakt-cta .container,
.ueber-uns .container { position: relative; z-index: 2; }

.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 60px;
}
.section-head .eyebrow { margin-bottom: 20px; }
.section-head h2 { margin-bottom: 10px; }
.section-head .section-sub {
  margin: 16px auto 0;
  font-size: 1.1rem;
  color: var(--ink-soft);
}
.on-dark .section-head .section-sub { color: oklch(0.88 0.02 130); }

.hero { padding: 50px 0 90px; position: relative; }

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  animation: heroSlideshow 35s infinite;
  will-change: opacity;
}
.hero-slide-1 { background-image: url('../v3/hero-kita.webp');               animation-delay: 0s; }
.hero-slide-2 { background-image: url('../v3/hero-schule.webp');             animation-delay: 7s; }
.hero-slide-3 { background-image: url('../v3/hero-mahlzeitenservice.webp');  animation-delay: 14s; }
.hero-slide-4 { background-image: url('../v3/hero-catering.webp');           animation-delay: 21s; }
.hero-slide-5 { background-image: url('../v3/hero-erntehelfer.webp');        animation-delay: 28s; }

@keyframes heroSlideshow {
  0%    { opacity: 0; }
  4%    { opacity: 1; }     
  16%   { opacity: 1; }     
  20%   { opacity: 0; }     
  100%  { opacity: 0; }     
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide { animation: none; }
  .hero-slide-1 { opacity: 1; }
}
.hero-editorial .hero-inner { position: relative; z-index: 2; }

.hero-editorial .hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
  min-height: 70vh;
}

.hero-editorial .hero-left {
  position: relative;
  isolation: isolate;
}
.hero-editorial .hero-left::before {
  content: '';
  position: absolute;
  
  top: -38px;
  bottom: -38px;
  left: -48px;
  right: -24px;
  z-index: -1;
  background:
    radial-gradient(ellipse 105% 115% at 35% 50%, oklch(0.985 0.012 88 / 0.98) 0%, oklch(0.97 0.015 90 / 0.96) 66%, oklch(0.965 0.018 90 / 0.6) 100%);
  border-radius: 40px;
  pointer-events: none;
}

@media (max-width: 900px) {
  .hero-editorial .hero-left::before {
    left: -20px; right: -20px; top: -20px; bottom: -20px;
    background: radial-gradient(ellipse 95% 100% at 50% 50%, oklch(0.985 0.012 88 / 0.97) 0%, oklch(0.97 0.015 90 / 0.93) 65%, oklch(0.965 0.018 90 / 0.7) 100%);
  }
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.95;
  margin: 20px 0 28px;
  letter-spacing: -0.02em;
}
.hand-underline {
  position: relative;
  display: inline-block;
}
.hand-underline::after {
  content: '';
  position: absolute;
  left: -4px; right: -4px; bottom: -4px;
  height: 14px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 14' preserveAspectRatio='none'><path d='M2 9 Q70 2 150 7 T298 6' stroke='%234a8740' stroke-width='3' fill='none' stroke-linecap='round' opacity='0.7'/></svg>") no-repeat center/100% 100%;
}

.hero-lede {
  font-size: 1.18rem;
  max-width: 52ch;
  margin-bottom: 32px;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px dashed var(--paper-edge);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.3;
}
.trust-item img {
  width: 44px; height: 44px;
  border-radius: 8px;
  background: #fff;
  padding: 4px;
  object-fit: contain;
  border: 1px solid var(--paper-edge);
}
.trust-num {
  font-family: var(--ff-display);
  font-size: 2rem;
  color: var(--t-primary);
  line-height: 1;
}

.hero-right {
  position: relative;
  height: 560px;
}
.hero-photo {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px oklch(0.3 0.05 145 / 0.35);
  background: var(--paper-deep);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-photo-a {
  width: 68%;
  height: 380px;
  top: 20px;
  right: 0;
  border-radius: 240px 240px 240px 40px;
}
.hero-photo-b {
  width: 52%;
  height: 300px;
  bottom: 0;
  left: 0;
  border-radius: 40px 180px 180px 180px;
}
.hero-sprig { position: absolute; z-index: 3; }
.hero-sprig-1 { top: -30px; left: 20%; }
.hero-sprig-2 { bottom: 10px; right: 10%; }
.hero-tomato {
  position: absolute;
  top: 50%;
  left: -30px;
  z-index: 4;
  filter: drop-shadow(0 10px 14px oklch(0.4 0.18 35 / 0.3));
}

.hero-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
  min-height: 70vh;
}
.hero-split-left {
  align-self: center;
}
.hero-split-left h1 {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: 1.02;
  margin: 18px 0 26px;
}
.hero-split-left h1 em {
  font-style: italic;
  color: var(--t-primary);
}
.hero-split-left p {
  font-size: 1.15rem;
  margin-bottom: 28px;
}
.hero-split-right {
  position: relative;
  min-height: 520px;
}
.hero-split-right .photo {
  width: 100%;
  height: 100%;
}

.hero-collage { padding: 40px 0 60px; }
.hero-collage-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 50px;
}
.hero-collage-head h1 {
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.98;
  margin: 18px 0 20px;
}
.hero-collage-head h1 em {
  font-style: italic;
  color: var(--t-primary);
}
.hero-collage-head p {
  margin: 0 auto 24px;
  font-size: 1.1rem;
}
.hero-collage-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 110px;
  gap: 18px;
}
.hero-collage-grid .photo { overflow: hidden; }
.hc-1 { grid-column: 1 / span 5; grid-row: 1 / span 3; }
.hc-2 { grid-column: 6 / span 3; grid-row: 1 / span 3; border-radius: 50%; aspect-ratio: 1; align-self: center; }
.hc-3 { grid-column: 9 / span 4; grid-row: 1 / span 2; }
.hc-4 { grid-column: 9 / span 4; grid-row: 3 / span 2; }
.hc-5 { grid-column: 1 / span 5; grid-row: 4 / span 2; border-radius: 50%; aspect-ratio: 1; }

.leistungen {
  padding: 100px 0;
  background: var(--paper);
}

.leistungen-grid {
  display: grid;
  gap: 40px 36px;
}
.leistungen-grid--top {
  grid-template-columns: repeat(2, 1fr);
  max-width: 760px;
  margin: 0 auto 48px;
}
.leistungen-grid--bottom {
  grid-template-columns: repeat(3, 1fr);
}
.leistung-card {
  display: block;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
}
.leistung-card:hover { transform: translateY(-6px); }
.leistung-photo {
  aspect-ratio: 1.1;
  margin-bottom: 22px;
  position: relative;
}
.leistung-body h3 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}
.latin-label {
  font-family: var(--ff-hand);
  font-size: 1.05rem;
  color: var(--t-primary);
  margin-bottom: 10px;
}
.leistung-body p {
  font-size: 0.98rem;
  margin: 0 auto 12px;
  max-width: 32ch;
}
.leistung-more {
  font-weight: 600;
  color: var(--t-primary);
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.leistung-more .arr { transition: transform 0.2s; }
.leistung-card:hover .leistung-more .arr { transform: translateX(4px); }

@media (max-width: 900px) {
  .leistungen-grid--top,
  .leistungen-grid--bottom { grid-template-columns: repeat(2, 1fr); max-width: none; margin: 0 0 32px; }
}
@media (max-width: 600px) {
  .leistungen-grid--top,
  .leistungen-grid--bottom { grid-template-columns: 1fr; }
}

.leistung-collage {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.leistung-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.qualitaet {
  background: linear-gradient(160deg, oklch(0.32 0.08 145) 0%, oklch(0.24 0.06 145) 100%);
  color: oklch(0.94 0.03 95);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  margin-top: 40px;
  border-top: 1px solid oklch(0.35 0.06 145);
  border-bottom: 1px solid oklch(0.35 0.06 145);
}
.qualitaet-bg { position: absolute; inset: 0; pointer-events: none; }
.qualitaet::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 85% 10%, oklch(0.55 0.15 135 / 0.25) 0%, transparent 55%),
              radial-gradient(ellipse at 10% 90%, oklch(0.55 0.15 135 / 0.18) 0%, transparent 50%);
  pointer-events: none;
}
.qualitaet .container { position: relative; }
.qualitaet .section-head h2 { color: oklch(0.97 0.02 95); }
.qualitaet .section-head .section-sub { color: oklch(0.86 0.03 95); }
.qualitaet .eyebrow { color: oklch(0.82 0.12 130); }

.qualitaet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 70px;
}
.quality-card {
  background: oklch(0.98 0.02 90 / 0.06);
  border: 1px solid oklch(0.98 0.02 90 / 0.18);
  border-radius: var(--t-card-radius);
  padding: 32px 26px;
  position: relative;
  backdrop-filter: blur(4px);
}
.quality-num {
  font-family: var(--ff-display);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: oklch(0.82 0.12 130);
  margin-bottom: 30px;
  opacity: 0.9;
}
.quality-card svg { margin-bottom: 20px; color: oklch(0.82 0.12 130); }
.quality-card h3 {
  color: oklch(0.97 0.02 95);
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.quality-card p {
  font-size: 0.95rem;
  color: oklch(0.82 0.03 95);
  line-height: 1.55;
}
.quality-card--link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.quality-card--link:hover {
  transform: translateY(-3px);
  border-color: oklch(0.82 0.12 130 / 0.55);
  background: oklch(0.98 0.02 90 / 0.10);
}
.quality-card--link:hover .quality-more .arr { transform: translateX(4px); }
.quality-more {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid oklch(0.98 0.02 90 / 0.14);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: oklch(0.82 0.12 130);
  display: flex;
  align-items: center;
  gap: 8px;
}
.quality-more .arr {
  display: inline-block;
  transition: transform .2s ease;
}

.certs-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.cert-chip {
  background: var(--paper);
  color: var(--ink);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.cert-chip--link {
  text-decoration: none;
  color: var(--ink);
  transition: transform .2s ease, box-shadow .2s ease;
  cursor: pointer;
}
.cert-chip--link,
.cert-chip--link:link,
.cert-chip--link:visited,
.cert-chip--link:hover,
.cert-chip--link:active {
  color: var(--ink);
  text-decoration: none;
}
.cert-chip--link .cert-label,
.cert-chip--link .cert-sub {
  color: inherit;
}
.cert-chip--link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.cert-chip img {
  width: 52px; height: 52px;
  background: #fff;
  padding: 4px;
  border-radius: 8px;
  object-fit: contain;
}
.cert-ico {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: var(--herb-dark);
  border-radius: 8px;
}
.cert-label {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  line-height: 1.1;
}
.cert-sub {
  font-size: 0.8rem;
  color: var(--ink-mute);
  margin-top: 2px;
}

@media (max-width: 1000px) {
  .qualitaet-grid, .certs-row { grid-template-columns: repeat(2, 1fr); }
}

.nachhaltigkeit {
  padding: 120px 0;
  background: var(--paper);
  position: relative;
}
.nachh-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 90px;
  align-items: center;
}
.nachh-text .lede {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  line-height: 1.3;
  color: var(--ink);
  margin: 20px 0 20px;
  max-width: 22ch;
}
.nachh-text > p + p { margin-top: 14px; }
.nachh-list {
  list-style: none;
  padding: 0;
  margin: 28px 0;
  display: grid;
  gap: 12px;
}
.nachh-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--ink-soft);
}

.nachh-visual {
  position: relative;
  height: 820px;
}
.nv-main {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 220px 50px 220px 50px;
  overflow: hidden;
}

.ueber-uns {
  background: var(--herb-deep);
  padding: 100px 0;
  color: var(--paper);
}
.ueber-uns-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.ueber-uns-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.ueber-uns-stats > div {
  padding: 24px;
  border: 1px solid oklch(0.5 0.06 145 / 0.6);
  border-radius: var(--t-card-radius);
  background: oklch(0.3 0.06 145 / 0.4);
}
.ueber-uns-stats strong {
  display: block;
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 2.5rem;
  color: var(--paper);
  line-height: 1;
  margin-bottom: 8px;
}
.ueber-uns-stats span {
  font-size: 0.88rem;
  color: oklch(0.82 0.04 130);
}

.kontakt-cta { padding: 100px 0; background: var(--paper); }
.kontakt-card {
  background: var(--paper-deep);
  border: 1.5px solid var(--paper-edge);
  border-radius: 28px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: visible;
  box-shadow: 0 30px 60px -30px oklch(0.3 0.05 145 / 0.2);
}
.kontakt-sprig-l {
  position: absolute;
  top: -60px; left: -60px;
  width: 580px;
  transform: rotate(-8deg);
  filter: drop-shadow(0 12px 22px oklch(0.2 0.05 140 / 0.25));
  pointer-events: none;
  z-index: 1;
}
.kontakt-sprig-l img { width: 100%; height: auto; display: block; }
.kontakt-sprig-r {
  position: absolute;
  bottom: -60px; right: -50px;
  width: 620px;
  transform: scaleX(-1) rotate(-8deg);
  filter: drop-shadow(0 10px 18px oklch(0.2 0.05 140 / 0.22));
  pointer-events: none;
  z-index: 1;
}
.kontakt-sprig-r img { width: 100%; height: auto; display: block; }
.kontakt-inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.kontakt-inner h2 { margin: 10px 0 14px; }
.kontakt-inner p { margin: 0 auto 32px; font-size: 1.1rem; }
.kontakt-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.kontakt-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 30px;
  border-top: 1px dashed var(--paper-edge);
  font-size: 0.92rem;
  color: var(--ink-soft);
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}
.kontakt-details strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

@media (max-width: 900px) {
  .hero-editorial .hero-inner,
  .hero-split-inner,
  .nachh-grid,
  .ueber-uns-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-right, .nachh-visual { height: 440px; }
  .kontakt-details { grid-template-columns: 1fr; text-align: center; }
  .kontakt-row { flex-direction: column; align-items: center; }
  .section-head { margin-bottom: 40px; }
  .qualitaet-grid, .certs-row { grid-template-columns: 1fr; }
}

.tweaks-panel {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  background: var(--paper);
  border: 1.5px solid var(--paper-edge);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 20px 40px -15px oklch(0.3 0.05 145 / 0.3);
  width: 300px;
  font-size: 0.88rem;
  max-height: 80vh;
  overflow-y: auto;
}
.tweaks-panel h4 {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--paper-edge);
}
.tweak-row { margin-bottom: 16px; }
.tweak-row label {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-bottom: 6px;
  font-weight: 500;
}
.tweak-swatches { display: flex; gap: 8px; flex-wrap: wrap; }
.tweak-swatch {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s;
}
.tweak-swatch:hover { transform: scale(1.15); }
.tweak-swatch.active { border-color: var(--ink); transform: scale(1.15); }
.tweak-btns { display: flex; gap: 6px; flex-wrap: wrap; }
.tweak-btn {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--paper-edge);
  background: var(--paper);
  cursor: pointer;
  font-size: 0.78rem;
  font-family: inherit;
  transition: all 0.2s;
  color: var(--ink-soft);
}
.tweak-btn:hover { border-color: var(--ink); }
.tweak-btn.active {
  background: var(--t-primary);
  color: #fff;
  border-color: var(--t-primary);
}

.sp-hero {
  position: relative;
  padding: 120px 0 80px;
  background: linear-gradient(180deg,
    oklch(0.965 0.013 85) 0%,
    oklch(0.95 0.018 90) 60%,
    oklch(0.94 0.022 92) 100%);
  overflow: hidden;
  isolation: isolate;
}
.sp-hero::before {
  
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(oklch(0.88 0.03 90 / 0.35) 1px, transparent 1.2px),
    radial-gradient(oklch(0.88 0.03 90 / 0.2) 1px, transparent 1.2px);
  background-size: 24px 24px, 42px 42px;
  background-position: 0 0, 12px 12px;
  mix-blend-mode: multiply;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}
.sp-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.sp-hero-left { position: relative; }
.sp-crumbs {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 28px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.sp-crumbs a {
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.sp-crumbs a:hover { border-bottom-color: var(--herb); }
.sp-crumbs .sep { color: var(--paper-edge); }
.sp-crumbs .here { color: var(--herb-deep); }

.sp-eyebrow {
  font-family: var(--ff-hand);
  font-size: 1.3rem;
  color: var(--herb-deep);
  margin-bottom: 6px;
  display: inline-block;
  transform: rotate(-1.5deg);
}
.sp-title {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5.2vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 8px 0 22px;
  max-width: 14ch;
  text-wrap: pretty;
}
.sp-title em {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--herb-deep);
}
.sp-lede {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 48ch;
  font-weight: 400;
  text-wrap: pretty;
}
.sp-lede::first-letter {
  font-family: var(--ff-display);
  font-size: 3.2rem;
  float: left;
  line-height: 0.9;
  margin: 8px 10px 0 0;
  color: var(--herb-deep);
}

.sp-hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 480px;
  margin-left: auto;
  justify-self: end;
}
.sp-hero-visual .photo {
  position: absolute;
  inset: 0;
}
.sp-hero-visual .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sp-hero-combo {
  position: absolute;
  top: 55%;
  left: -10%;
  width: 55%;
  z-index: 2;
  transform: rotate(-4deg);
  filter: drop-shadow(0 24px 24px oklch(0.3 0.05 145 / 0.2));
}
.sp-hero-combo img { width: 100%; display: block; }

.sp-hero-garland-tl,
.sp-hero-garland-br {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}
.sp-hero-garland-tl { top: 72px; right: 8%; width: 140px; transform: rotate(-18deg); }
.sp-hero-garland-br { bottom: -20px; left: 4%; width: 160px; transform: rotate(12deg) scaleX(-1); }
.sp-hero-garland-tl img,
.sp-hero-garland-br img { width: 100%; display: block; }

.sp-intro {
  padding: 80px 0 40px;
  background: var(--paper);
  position: relative;
}
.sp-intro-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.sp-intro-inner .sp-kicker {
  font-family: var(--ff-hand);
  font-size: 1.4rem;
  color: var(--herb-deep);
  transform: rotate(-2deg);
  display: inline-block;
  margin-bottom: 10px;
}
.sp-intro-inner h2 {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  line-height: 1.1;
  margin-bottom: 22px;
}
.sp-intro-inner p {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 auto 14px;
  max-width: 60ch;
}

.sp-blocks {
  padding: 40px 0 80px;
  background: var(--paper);
}
.sp-block {
  padding: 60px 0;
  position: relative;
}
.sp-block + .sp-block {
  border-top: 1px solid var(--paper-edge);
}

.sp-block-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.sp-block-grid.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}
.sp-block-grid.reverse .sp-block-text { order: 2; }
.sp-block-grid.reverse .sp-block-visual { order: 1; }

.sp-block-num {
  font-family: var(--ff-display);
  font-size: 3.2rem;
  color: var(--herb-light);
  line-height: 0.9;
  margin-bottom: 12px;
  font-style: italic;
}
.sp-block-text h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--ink);
  max-width: 18ch;
  text-wrap: pretty;
}
.sp-block-text p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 14px;
  max-width: 58ch;
}
.sp-block-text .sp-ruled {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-hand);
  font-size: 1.1rem;
  color: var(--herb-deep);
  margin-bottom: 8px;
}
.sp-block-text .sp-ruled::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--herb-deep);
  display: inline-block;
}

.sp-list {
  list-style: none;
  padding: 0;
  margin: 22px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sp-list li {
  position: relative;
  padding: 10px 0 10px 44px;
  font-size: 1.02rem;
  line-height: 1.5;
  color: var(--ink);
  border-bottom: 1px dashed var(--paper-edge);
}
.sp-list li:last-child { border-bottom: none; }
.sp-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 3 C7 6 4 11 5 16 C6 20 10 22 12 21 C14 22 18 20 19 16 C20 11 17 6 12 3 Z' fill='%23a6c98a' stroke='%233d6a2f' stroke-width='0.8'/><path d='M12 7 L12 21' stroke='%233d6a2f' stroke-width='0.8'/></svg>") center/contain no-repeat;
}

.sp-block-visual {
  position: relative;
  min-height: 360px;
}
.sp-block-visual .main-photo {
  position: relative;
  border-radius: 180px 180px 28px 28px / 140px 140px 28px 28px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow:
    0 28px 40px -20px oklch(0.3 0.05 145 / 0.3),
    0 6px 12px -4px oklch(0.3 0.05 145 / 0.1);
}
.sp-block-visual .main-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sp-block-visual .combo-overlay {
  position: absolute;
  bottom: -6%;
  right: -12%;
  width: 62%;
  z-index: 2;
  transform: rotate(-3deg);
  filter: drop-shadow(0 18px 22px oklch(0.3 0.05 145 / 0.22));
}
.sp-block-visual .combo-overlay.left {
  bottom: auto;
  top: -8%;
  left: -12%;
  right: auto;
  transform: rotate(4deg);
}
.sp-block-visual .combo-overlay img { width: 100%; display: block; }
.sp-block-visual .sprig-deco {
  position: absolute;
  top: -24px;
  right: 0;
  width: 120px;
  opacity: 0.6;
  transform: rotate(15deg);
  pointer-events: none;
}
.sp-block-visual .sprig-deco img { width: 100%; display: block; }

.sp-quote-band {
  background:
    linear-gradient(180deg, oklch(0.26 0.05 145 / 0.92), oklch(0.2 0.04 145 / 0.96)),
    url('../v3/bg-footer.jpg') center / cover no-repeat;
  padding: 100px 0;
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.sp-quote-band::before {
  content: "„";
  position: absolute;
  top: -60px; left: 6%;
  font-family: var(--ff-display);
  font-size: 28rem;
  line-height: 1;
  color: oklch(0.82 0.09 130 / 0.12);
  font-style: italic;
  pointer-events: none;
}
.sp-quote-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.sp-quote-inner .sp-kicker {
  color: var(--herb-light);
  font-family: var(--ff-hand);
  font-size: 1.2rem;
  margin-bottom: 16px;
  display: inline-block;
  transform: rotate(-1.5deg);
}
.sp-quote-inner blockquote {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.25;
  color: var(--paper);
  margin: 0 0 28px;
  text-wrap: balance;
}
.sp-quote-inner blockquote em { font-style: normal; color: var(--herb-light); }
.sp-quote-cite {
  font-family: var(--ff-hand);
  font-size: 1.1rem;
  color: var(--herb-light);
}

.sp-cards {
  padding: 80px 0;
  background: var(--paper-deep);
  position: relative;
}
.sp-cards-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.sp-cards-head .sp-kicker {
  font-family: var(--ff-hand);
  font-size: 1.3rem;
  color: var(--herb-deep);
  display: inline-block;
  transform: rotate(-1.5deg);
  margin-bottom: 8px;
}
.sp-cards-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.1;
  margin-bottom: 16px;
}
.sp-cards-head p { margin: 0 auto; color: var(--ink-soft); }
.sp-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.sp-feature-card {
  background: var(--paper);
  border: 1px solid var(--paper-edge);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  box-shadow: 0 10px 20px -14px oklch(0.3 0.05 145 / 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}
.sp-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 32px -18px oklch(0.3 0.05 145 / 0.3);
}
.sp-feature-card .sp-feature-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--herb-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--herb-deep);
  margin-bottom: 20px;
}
.sp-feature-card h4 {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  margin-bottom: 10px;
  line-height: 1.2;
  color: var(--ink);
}
.sp-feature-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}

.sp-photo-band {
  position: relative;
  height: 420px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.sp-photo-band::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, oklch(0.2 0.04 145 / 0.55), transparent 60%);
}
.sp-photo-band .sp-photo-cap {
  position: absolute;
  bottom: 40px; left: 0; right: 0;
  z-index: 2;
  color: var(--paper);
  padding: 0 48px;
}
.sp-photo-band .sp-photo-cap .sp-kicker {
  font-family: var(--ff-hand);
  color: var(--herb-light);
  font-size: 1.2rem;
  display: block;
  margin-bottom: 4px;
}
.sp-photo-band .sp-photo-cap h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--paper);
  max-width: 20ch;
  line-height: 1.1;
}

.sp-cta-band {
  padding: 90px 0;
  background:
    radial-gradient(ellipse at 20% 30%, oklch(0.94 0.04 125 / 0.8), transparent 55%),
    radial-gradient(ellipse at 90% 80%, oklch(0.92 0.06 95 / 0.7), transparent 55%),
    var(--paper);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sp-cta-band .sp-cta-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}
.sp-cta-band h2 {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  line-height: 1.1;
  margin-bottom: 16px;
}
.sp-cta-band p {
  color: var(--ink-soft);
  font-size: 1.1rem;
  margin: 0 auto 28px;
  max-width: 52ch;
}
.sp-cta-row {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.sp-cta-band .sp-cta-garland {
  position: absolute;
  width: 180px;
  opacity: 0.5;
  pointer-events: none;
}
.sp-cta-band .sp-cta-garland.tl { top: 20px; left: 5%; transform: rotate(-14deg); }
.sp-cta-band .sp-cta-garland.br { bottom: 10px; right: 5%; transform: rotate(12deg) scaleX(-1); }
.sp-cta-band .sp-cta-garland img { width: 100%; display: block; }

.sp-doc {
  padding: 60px 0 100px;
  background: var(--paper);
}
.sp-doc-inner {
  max-width: 820px;
  margin: 0 auto;
  background: var(--paper);
  padding: 56px 56px 64px;
  border-radius: 20px;
  border: 1px solid var(--paper-edge);
  box-shadow: 0 24px 40px -24px oklch(0.3 0.05 145 / 0.2);
  position: relative;
}
.sp-doc-inner h2 {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  margin: 36px 0 16px;
  color: var(--herb-deep);
  line-height: 1.2;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--herb-light);
}
.sp-doc-inner h2:first-child { margin-top: 0; }
.sp-doc-inner h3 {
  font-size: 1.15rem;
  font-weight: 600;
  font-family: var(--ff-body);
  margin: 22px 0 10px;
  color: var(--ink);
}
.sp-doc-inner p,
.sp-doc-inner li {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: none;
}
.sp-doc-inner p { margin-bottom: 14px; }
.sp-doc-inner ul, .sp-doc-inner ol {
  padding-left: 22px;
  margin-bottom: 16px;
}
.sp-doc-inner li { margin-bottom: 6px; }
.sp-doc-inner a { color: var(--herb-deep); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.sp-doc-inner a:hover { color: var(--herb); }
.sp-doc-toc {
  background: var(--paper-deep);
  border-radius: 12px;
  padding: 22px 26px;
  margin-bottom: 40px;
  border: 1px solid var(--paper-edge);
}
.sp-doc-toc h4 {
  font-family: var(--ff-hand);
  font-size: 1.2rem;
  color: var(--herb-deep);
  margin-bottom: 10px;
}
.sp-doc-toc ol {
  columns: 2;
  column-gap: 28px;
  padding-left: 22px;
  margin: 0;
}
.sp-doc-toc li {
  font-size: 0.92rem;
  margin-bottom: 4px;
  break-inside: avoid;
}
.sp-doc-toc li a {
  text-decoration: none;
  color: var(--ink-soft);
}
.sp-doc-toc li a:hover { color: var(--herb-deep); }

.sp-jobs {
  padding: 80px 0 100px;
  background: var(--paper);
}
.sp-jobs-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.sp-jobs-head h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  line-height: 1.1;
  margin: 14px 0 18px;
  color: var(--ink);
}
.sp-jobs-head h2 em {
  font-style: italic;
  color: var(--herb-deep);
}
.sp-jobs-head p {
  color: var(--ink-soft);
  font-size: 1.04rem;
}
.sp-jobs-list {
  display: grid;
  gap: 32px;
}
.sp-job {
  background: var(--paper-deep);
  border: 1px solid var(--paper-edge);
  border-radius: 18px;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "head meta"
    "body body";
  gap: 18px 24px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.sp-job:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 36px -22px oklch(0.3 0.05 145 / 0.28);
}
.sp-job-head { grid-area: head; }
.sp-job-meta { grid-area: meta; text-align: right; align-self: start; }
.sp-job-body { grid-area: body; }

.sp-job-kicker {
  display: inline-block;
  font-family: var(--ff-hand);
  font-size: 1.05rem;
  color: var(--herb-deep);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.sp-job-title {
  font-family: var(--ff-display);
  font-size: 1.7rem;
  line-height: 1.15;
  color: var(--ink);
  margin: 2px 0 10px;
}
.sp-job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.sp-job-tag {
  font-size: 0.82rem;
  font-weight: 500;
  background: oklch(0.96 0.04 130);
  color: var(--herb-deep);
  border: 1px solid oklch(0.86 0.06 130);
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.01em;
}
.sp-job-meta-item {
  display: block;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.sp-job-meta-item:last-child { margin-bottom: 0; }
.sp-job-meta-item strong {
  display: block;
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--ink);
  font-weight: 400;
  font-size: 1.1rem;
  margin-bottom: 1px;
}
.sp-job-body p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 0 0 18px;
}
.sp-job-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 8px;
}
.sp-job-cols h5 {
  font-family: var(--ff-hand);
  font-size: 1.1rem;
  color: var(--herb-deep);
  margin: 0 0 10px;
}
.sp-job-cols ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sp-job-cols li {
  position: relative;
  padding-left: 22px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink);
}
.sp-job-cols li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: oklch(0.78 0.16 135);
  box-shadow: 0 0 0 3px oklch(0.92 0.08 130);
}
.sp-job-foot {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px dashed var(--paper-edge);
}
.sp-job-foot .ref {
  font-family: var(--ff-hand);
  color: var(--ink-soft);
  font-size: 0.95rem;
}

@media (max-width: 720px) {
  .sp-job {
    padding: 28px 24px;
    grid-template-columns: 1fr;
    grid-template-areas:
      "head"
      "meta"
      "body";
  }
  .sp-job-meta { text-align: left; }
  .sp-job-cols { grid-template-columns: 1fr; gap: 24px; }
  .sp-job-title { font-size: 1.45rem; }
}

@media (max-width: 960px) {
  .sp-hero { padding: 96px 0 60px; }
  .sp-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .sp-hero-visual { max-width: 420px; margin: 0 auto; }
  .sp-block-grid,
  .sp-block-grid.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sp-block-grid.reverse .sp-block-text { order: 1; }
  .sp-block-grid.reverse .sp-block-visual { order: 2; }
  .sp-block-visual { max-width: 440px; margin: 0 auto; }
  .sp-doc-inner { padding: 36px 28px; }
  .sp-doc-toc ol { columns: 1; }
}

.dge-seal-band {
  background: var(--paper);
  padding: 60px 0 20px;
}
.dge-seal-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  padding: 36px 40px;
  background: oklch(0.98 0.015 95);
  border: 1px solid oklch(0.85 0.02 90);
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(40, 60, 30, 0.06);
  position: relative;
}
.dge-seal-card {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 18px rgba(40, 60, 30, 0.10);
}
.dge-seal-card img {
  width: 100%;
  max-width: 170px;
  height: auto;
  object-fit: contain;
}
.dge-seal-text .sp-eyebrow {
  display: block;
  margin-bottom: 8px;
}
.dge-seal-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  line-height: 1.15;
  color: var(--herb-deep);
  margin: 0 0 10px;
}
.dge-seal-text h2 em { font-style: italic; color: var(--herb-deep); }
.dge-seal-text p {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
  max-width: 60ch;
}
@media (max-width: 760px) {
  .dge-seal-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 24px;
    text-align: center;
  }
  .dge-seal-card { max-width: 200px; margin: 0 auto; }
  .dge-seal-text p { margin: 0 auto; }
}

.kontakt-hero { padding-bottom: 60px; }

.kontakt-hero-right {
  position: relative;
  min-height: 420px;
}
.kontakt-hero-photo {
  position: absolute;
  top: 20px; right: 0;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4 / 3;
  border-radius: 240px 260px 220px 250px / 220px 240px 260px 220px;
  overflow: hidden;
  box-shadow: 0 40px 80px -40px oklch(0.3 0.05 145 / 0.35);
  transform: rotate(-1.5deg);
}
.kontakt-hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.kontakt-photo-tape {
  position: absolute;
  top: -14px; left: 32%;
  width: 110px; height: 28px;
  background: oklch(0.94 0.025 85 / 0.85);
  transform: rotate(-4deg);
  box-shadow: 0 2px 6px oklch(0.3 0.05 145 / 0.1);
}
.kontakt-hero-garland {
  position: absolute;
  bottom: -40px; left: -40px;
  width: 220px;
  z-index: -1;
  opacity: 0.9;
  transform: rotate(-12deg);
  pointer-events: none;
}

.kontakt-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--paper-edge);
}
.kontakt-fact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.kf-label {
  font-family: var(--ff-handwritten, 'Caveat', cursive);
  font-size: 1.1rem;
  color: var(--herb-deep);
  letter-spacing: 0.02em;
}
.kf-val {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  color: var(--ink);
  font-style: italic;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  line-height: 1.2;
  transition: border-color 0.2s;
}
a.kf-val:hover { border-bottom-color: var(--herb); }
.kf-sub {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.kontakt-form-section {
  padding: 40px 0 100px;
  position: relative;
  background: linear-gradient(180deg,
    oklch(0.94 0.022 92) 0%,
    oklch(0.96 0.015 88) 100%);
}
.kontakt-form-wrap { position: relative; }

.kontakt-form-card {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  background: var(--paper);
  border: 1.5px solid var(--paper-edge);
  border-radius: 28px;
  padding: 60px 64px 52px;
  box-shadow:
    0 40px 90px -40px oklch(0.3 0.05 145 / 0.25),
    0 2px 0 oklch(1 0 0 / 0.6) inset;
  overflow: visible;
}
.kontakt-form-gar {
  position: absolute;
  width: 200px;
  pointer-events: none;
  opacity: 0.85;
  z-index: 0;
}
.kontakt-form-gar img { width: 100%; display: block; }
.kontakt-form-gar.tl { top: -60px; left: -50px; transform: rotate(-12deg); }
.kontakt-form-gar.br { bottom: -60px; right: -50px; transform: rotate(12deg); }

.kontakt-form-inner { position: relative; z-index: 1; }
.kontakt-form-inner .eyebrow {
  display: inline-block;
  font-family: var(--ff-handwritten, 'Caveat', cursive);
  font-size: 1.15rem;
  color: var(--herb-deep);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.kontakt-form-title {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 14px;
}
.kontakt-form-title em {
  font-style: italic;
  color: var(--herb-deep);
}
.kontakt-form-sub {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 32px;
}

.kf-form { display: flex; flex-direction: column; gap: 22px; }

.kf-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

.kf-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}
.kf-field label {
  font-family: var(--ff-body);
  min-height: 2.6em;
  display: flex;
  align-items: flex-start;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.kf-field input,
.kf-field select,
.kf-field textarea {
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--ink);
  background: oklch(0.99 0.005 90);
  border: 1.5px solid var(--paper-edge);
  border-radius: 10px;
  padding: 12px 14px;
  line-height: 1.4;
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.kf-field select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink-soft) 50%),
    linear-gradient(135deg, var(--ink-soft) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
  cursor: pointer;
}
.kf-field textarea {
  resize: vertical;
  min-height: 120px;
}
.kf-field input:focus,
.kf-field select:focus,
.kf-field textarea:focus {
  border-color: var(--herb);
  background: var(--paper);
  box-shadow: 0 0 0 3px oklch(0.72 0.19 135 / 0.15);
}

.kf-field.err input,
.kf-field.err select,
.kf-field.err textarea {
  border-color: oklch(0.6 0.18 30);
  background: oklch(0.98 0.01 30);
}
.kf-err {
  font-size: 0.82rem;
  color: oklch(0.48 0.19 30);
  margin-top: 2px;
  display: inline-block;
}

.kf-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
  align-items: end;
}
.kf-row .kf-field.wide { grid-column: 2; }

.kf-row:nth-of-type(3) { grid-template-columns: 1fr 1fr; }
.kf-row:nth-of-type(4) { grid-template-columns: 1fr 1fr; }

.kf-captcha-wrap {
  margin-top: 4px;
  padding: 20px 22px;
  background: oklch(0.97 0.02 130 / 0.5);
  border: 1.5px dashed oklch(0.75 0.08 135 / 0.5);
  border-radius: 14px;
}
.kf-captcha label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.kf-captcha-hint {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--ink-soft);
}
.kf-captcha-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.kf-captcha-q {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--paper);
  border: 1.5px solid var(--paper-edge);
  border-radius: 12px;
  font-family: var(--ff-display);
  font-size: 1.6rem;
  color: var(--herb-deep);
  user-select: none;
}
.kf-c-num {
  font-feature-settings: "lnum";
  font-weight: 400;
}
.kf-c-op {
  color: var(--ink-soft);
  font-size: 1.3rem;
  margin: 0 4px;
}
.kf-c-input {
  font-family: var(--ff-display) !important;
  font-size: 1.3rem !important;
  width: 72px;
  text-align: center;
  padding: 8px 10px !important;
  border-radius: 8px !important;
}
.kf-captcha-refresh {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1.5px solid var(--paper-edge);
  border-radius: 10px;
  padding: 8px 14px;
  font-family: var(--ff-body);
  font-size: 0.85rem;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.2s;
}
.kf-captcha-refresh:hover {
  border-color: var(--herb);
  color: var(--herb-deep);
  background: oklch(1 0 0 / 0.5);
}
.kf-captcha-refresh svg { flex-shrink: 0; }

.kf-checkbox {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.kf-checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.kf-checkbox input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.kf-check-box {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border: 1.5px solid var(--paper-edge);
  border-radius: 5px;
  background: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  transition: all 0.15s;
  margin-top: 2px;
}
.kf-checkbox input:focus-visible + .kf-check-box {
  border-color: var(--herb);
  box-shadow: 0 0 0 3px oklch(0.72 0.19 135 / 0.15);
}
.kf-checkbox input:checked + .kf-check-box {
  background: var(--herb-deep);
  border-color: var(--herb-deep);
  color: var(--paper);
}
.kf-check-text {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.kf-checkbox.err .kf-check-box {
  border-color: oklch(0.6 0.18 30);
}

.kf-submit-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.kf-submit {
  padding: 14px 28px !important;
  font-size: 1rem !important;
}
.kf-submit:disabled {
  opacity: 0.6;
  cursor: progress;
}
.kf-submit-note {
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.kf-submit-note a {
  color: var(--herb-deep);
  text-decoration: none;
  border-bottom: 1px solid oklch(0.72 0.19 135 / 0.4);
}
.kf-submit-note a:hover {
  border-bottom-color: var(--herb);
}

.kf-success {
  text-align: center;
  padding: 20px 0;
  animation: kfSuccessIn 0.5s ease-out;
}
@keyframes kfSuccessIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.kf-success-icon {
  color: var(--herb-deep);
  margin-bottom: 16px;
  display: inline-flex;
  animation: kfCheck 0.7s ease-out;
}
@keyframes kfCheck {
  0%   { transform: scale(0); }
  60%  { transform: scale(1.15); }
  100% { transform: scale(1); }
}
.kf-success h3 {
  font-family: var(--ff-display);
  font-size: 2rem;
  color: var(--ink);
  margin: 0 0 14px;
}
.kf-success p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 52ch;
  margin: 0 auto 28px;
  line-height: 1.6;
}
.kf-success-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .kontakt-hero-right { display: none; }
  .kontakt-facts { grid-template-columns: 1fr; gap: 16px; }
  .kontakt-form-card { padding: 40px 28px 38px; border-radius: 20px; }
  .kontakt-form-gar { display: none; }
  .kf-row { grid-template-columns: 1fr !important; }
  .kf-row .kf-field.wide { grid-column: auto; }
  .kf-field label { min-height: 0; }
  .kf-captcha-q { font-size: 1.3rem; padding: 8px 12px; }
  .kf-c-input { font-size: 1.1rem !important; width: 60px; }
  .kontakt-form-section { padding: 24px 0 64px; }
  .kontakt-form-title { font-size: clamp(1.6rem, 6vw, 2rem); }
}
@media (max-width: 600px) {
  .kontakt-form-card {
    padding: 28px 18px 26px;
    border-radius: 18px;
    margin: 0 -4px;
  }
  .kf-form { gap: 18px; }
  .kf-field input,
  .kf-field select,
  .kf-field textarea {
    font-size: 16px; 
    padding: 11px 12px;
  }
  .kf-captcha-wrap { padding: 16px 14px; }
  .kf-captcha-row {
    gap: 10px;
    flex-direction: row;
    justify-content: space-between;
  }
  .kf-captcha-q {
    font-size: 1.2rem;
    padding: 8px 10px;
    flex: 1;
    justify-content: center;
  }
  .kf-c-num { font-size: 1.3rem; }
  .kf-c-op { font-size: 1.1rem; margin: 0 2px; }
  .kf-c-input {
    font-size: 1.1rem !important;
    width: 52px;
    padding: 6px 6px !important;
  }
  .kf-captcha-refresh {
    padding: 8px 10px;
    font-size: 0.8rem;
    flex-shrink: 0;
  }
  .kf-captcha-refresh span { display: none; }
  .kf-submit-row {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .kf-submit {
    width: 100%;
    justify-content: center;
    padding: 14px 20px !important;
  }
  .kf-submit-note {
    text-align: center;
    font-size: 0.85rem;
  }
  .kf-success h3 { font-size: 1.5rem; }
  .kf-success p { font-size: 0.95rem; }
  .kf-success-actions { flex-direction: column; align-items: stretch; }
  .kf-success-actions .btn { justify-content: center; }
}

.kontakt-chat-band {
  padding: 28px 0 48px;
}
.kontakt-chat-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
  align-items: center;
  background: oklch(0.97 0.025 105);
  border: 1px solid oklch(0.85 0.04 100);
  border-radius: 22px;
  padding: 32px 40px;
  position: relative;
  box-shadow: 0 20px 50px -40px oklch(0.3 0.05 145 / 0.4);
}
.kontakt-chat-icon {
  width: 78px; height: 78px;
  border-radius: 50%;
  background: oklch(0.55 0.16 142);
  color: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: 0 12px 30px -10px oklch(0.55 0.16 142 / 0.5);
}
.kontakt-chat-text .eyebrow {
  font-family: "Caveat", cursive;
  font-size: 22px;
  color: oklch(0.55 0.16 142);
  display: block;
  margin-bottom: 4px;
}
.kontakt-chat-text h2 {
  font-family: "DM Serif Display", serif;
  font-size: 34px;
  line-height: 1.1;
  margin: 0 0 8px;
  color: oklch(0.25 0.04 145);
}
.kontakt-chat-text h2 em {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: oklch(0.55 0.16 142);
  font-weight: 500;
}
.kontakt-chat-text p {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: oklch(0.4 0.02 145);
  max-width: 56ch;
}
.kontakt-chat-cta {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
@media (max-width: 820px) {
  .kontakt-chat-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px 24px;
  }
  .kontakt-chat-icon { margin: 0 auto; }
  .kontakt-chat-text p { margin: 0 auto; }
  .kontakt-chat-cta { justify-self: center; }
}
@media (max-width: 600px) {
  .kontakt-chat-band { padding: 16px 0 32px; }
  .kontakt-chat-inner {
    padding: 24px 18px;
    border-radius: 18px;
    gap: 18px;
  }
  .kontakt-chat-icon { width: 60px; height: 60px; }
  .kontakt-chat-icon svg { width: 30px; height: 30px; }
  .kontakt-chat-text h2 { font-size: 1.5rem; }
  .kontakt-chat-text .eyebrow { font-size: 1rem; }
  .kontakt-chat-text p { font-size: 0.92rem; line-height: 1.5; }
  .kontakt-chat-cta {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    white-space: normal;
  }
}
