:root {
  --bg: #f7f3ec;
  --surface: #fffaf2;
  --surface-strong: #ffffff;
  --ink: #25312e;
  --muted: #66736c;
  --line: #ddd5c8;
  --brand: #228B22;
  --brand-dark: #1b721b;
  --clay: #bc6c4f;
  --sage: #9caf88;
  --sky: #b8d8d2;
  --focus: #103f91;
  --shadow: 0 18px 45px rgba(54, 45, 33, 0.12);
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-fast: 220ms;
  --motion-medium: 520ms;
  --motion-slow: 900ms;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: clamp(40px, 4.8vw, 58px);
  scroll-snap-type: y proximity;
  --mascot-opacity: 1;
  --mascot-blur: 0px;
  --mascot-offset: 0px;
  --mascot-scale: 1;
}

html.is-anchor-scrolling {
  scroll-behavior: auto;
  scroll-snap-type: none;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  overscroll-behavior-y: contain;
}

body.faq-background-page {
  background: url("assets/site/bilder webpage logo/häuserreihe.png") center top / cover fixed no-repeat;
}

body.is-modal-open {
  overflow: hidden;
}

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

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

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: clamp(16px, 3vw, 34px) clamp(18px, 4vw, 64px);
  background: transparent;
  pointer-events: none;
}

.brand,
.site-nav,
.hero-actions,
.site-footer,
.site-footer nav {
  display: flex;
  align-items: center;
}

.brand {
  position: relative;
  gap: 10px;
  font-weight: 650;
  pointer-events: auto;
  transform: translateY(-10px);
}

.brand img {
  position: relative;
  z-index: 2;
  width: 160px;
  height: auto;
}

.brand .brand-mascot {
  position: absolute;
  left: 158px;
  top: -12px;
  z-index: 3;
  width: 96px;
  height: 96px;
  overflow: visible;
  opacity: var(--mascot-opacity);
  filter: blur(var(--mascot-blur)) drop-shadow(0 8px 12px rgba(15, 79, 34, 0.16));
  pointer-events: none;
  transform: translateY(var(--mascot-offset)) scale(var(--mascot-scale));
  transform-origin: 50% 45%;
  transition: opacity 120ms linear, filter 120ms linear, transform 120ms linear;
}

.brand .brand-mascot__base {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand .brand-mascot__arm {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: url("assets/site/bilder webpage logo/winkender elefant.png") center / contain no-repeat;
  clip-path: polygon(16% 44%, 30% 44%, 39% 56%, 40% 65%, 25% 62%, 12% 52%);
  opacity: 0.98;
  transform-origin: 39% 58%;
  animation: mascotPhotoWave 1.4s ease-in-out infinite;
  will-change: transform;
}

@keyframes mascotPhotoWave {
  0%,
  100% {
    transform: rotate(-4deg);
  }

  45%,
  60% {
    transform: rotate(7deg);
  }
}

.site-nav {
  gap: clamp(18px, 3vw, 34px);
  padding: 12px 18px;
  border: 1px solid rgba(255, 250, 242, 0.82);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.62);
  box-shadow: 0 18px 48px rgba(37, 49, 46, 0.12);
  backdrop-filter: blur(24px) saturate(1.28);
  color: var(--muted);
  font-size: 0.94rem;
  pointer-events: auto;
}

.site-nav a {
  position: relative;
  padding: 2px 0;
  transition: color var(--motion-fast) var(--ease-soft), transform var(--motion-fast) var(--ease-soft);
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.18);
  transform-origin: center;
  transition: opacity var(--motion-fast) var(--ease-soft), transform var(--motion-medium) var(--ease-premium);
  content: "";
}

.site-nav a:hover {
  color: var(--brand-dark);
  transform: translateY(-1px);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  opacity: 0.34;
  transform: scaleX(1);
}

.site-nav a[aria-current="page"] {
  color: var(--brand-dark);
  font-weight: 760;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 8px;
  pointer-events: auto;
  transition: transform var(--motion-fast) var(--ease-soft), box-shadow var(--motion-fast) var(--ease-soft);
}

.nav-toggle:hover {
  box-shadow: 0 14px 34px rgba(37, 49, 46, 0.14);
  transform: translateY(-2px);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  min-height: 100vh;
  padding: clamp(74px, 8vw, 100px) clamp(10px, 1.6vw, 22px) clamp(12px, 1.8vw, 24px);
  background:
    linear-gradient(180deg, rgba(37, 49, 46, 0.05), rgba(37, 49, 46, 0.02)),
    var(--bg);
}

main > section {
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

main:not(#start) > section {
  min-height: auto;
  scroll-snap-align: none;
  scroll-snap-stop: normal;
}

#start > .split-section,
#start > .section,
#start > .contact-section {
  min-height: 100svh;
}

#start > .split-section,
#start > .section {
  display: grid;
  align-content: center;
}

.motion-reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition:
    opacity 780ms var(--ease-premium),
    transform 880ms var(--ease-premium),
    filter 880ms var(--ease-premium);
  filter: blur(10px);
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.hero::before {
  display: block;
  width: 100%;
  min-height: calc(100vh - clamp(93px, 10vw, 119px));
  border-radius: clamp(22px, 4vw, 48px);
  background:
    linear-gradient(180deg, rgba(37, 49, 46, 0.04), rgba(37, 49, 46, 0.02)),
    url("assets/site/bilder webpage logo/Header.jpg") 35% center / cover no-repeat;
  box-shadow:
    0 26px 72px rgba(37, 49, 46, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.42);
  content: "";
}

.hero-copy,
.hero-image {
  display: none;
}

.page-hero {
  display: grid;
  min-height: clamp(520px, 70vh, 740px);
  align-items: end;
  padding: clamp(118px, 14vw, 190px) clamp(18px, 6vw, 96px) clamp(54px, 7vw, 92px);
  background:
    linear-gradient(180deg, rgba(37, 49, 46, 0.1), rgba(37, 49, 46, 0.52)),
    url("assets/site/bilder webpage logo/Header.jpg") center / cover no-repeat;
  color: #ffffff;
}

.compact-page-hero {
  min-height: clamp(420px, 56vh, 620px);
}

.faq-page-hero,
.spiekeroog-page-hero {
  align-items: end;
  justify-items: start;
  padding-bottom: 0;
}

.faq-page-hero .page-hero__copy,
.spiekeroog-page-hero .page-hero__copy {
  width: min(520px, 100%);
  padding: clamp(14px, 2.2vw, 20px) clamp(16px, 2.6vw, 24px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(24, 32, 30, 0.5);
  box-shadow: 0 16px 42px rgba(15, 20, 18, 0.24);
  backdrop-filter: blur(12px) saturate(1.06);
}

.faq-page-hero .eyebrow,
.spiekeroog-page-hero .eyebrow {
  margin-bottom: 8px;
  color: rgba(246, 240, 230, 0.72);
}

.faq-page-hero h1,
.spiekeroog-page-hero h1 {
  color: #f6f0e6;
  margin-bottom: 8px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.faq-page-hero p:not(.eyebrow),
.spiekeroog-page-hero p:not(.eyebrow) {
  max-width: 460px;
  color: rgba(246, 240, 230, 0.9);
  font-size: clamp(0.96rem, 1.35vw, 1.12rem);
  line-height: 1.42;
}

.faq-page-hero {
  min-height: clamp(500px, 64vh, 720px);
  background: transparent;
}

.spiekeroog-page-hero {
  background:
    linear-gradient(180deg, rgba(37, 49, 46, 0.08), rgba(37, 49, 46, 0.5)),
    url("assets/site/header spiekeroog.jpg") center / cover no-repeat;
}

.jobs-page-hero {
  min-height: clamp(420px, 48vh, 620px);
  background:
    linear-gradient(180deg, rgba(37, 49, 46, 0.08), rgba(37, 49, 46, 0.55)),
    url("assets/site/023-praktikum-wasser.jpg") center 58% / cover no-repeat;
}

.praktikum-image-hero {
  min-height: auto;
  padding: clamp(74px, 8vw, 100px) clamp(10px, 1.6vw, 22px) clamp(12px, 1.8vw, 24px);
  background:
    linear-gradient(180deg, rgba(37, 49, 46, 0.05), rgba(37, 49, 46, 0.02)),
    var(--bg);
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

.praktikum-image-hero img {
  display: block;
  width: min(900px, 100%);
  aspect-ratio: 1.8;
  height: auto;
  margin: 0 auto;
  border-radius: clamp(22px, 4vw, 48px);
  background: rgba(255, 250, 242, 0.72);
  object-fit: cover;
  object-position: center 66.67%;
  box-shadow:
    0 26px 72px rgba(37, 49, 46, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.choice-page {
  height: 100svh;
  background: #14221f;
  overflow: hidden;
}

.choice-only {
  height: 100svh;
  overflow: hidden;
  overscroll-behavior: none;
}

.choice-only .choice-page {
  height: 100svh;
}

.choice-stage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  height: 100svh;
  min-height: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #f7f3ec 0%, #eaf2e6 48%, #dfece9 100%);
  color: #ffffff;
}

.choice-question {
  position: absolute;
  top: clamp(112px, 13vh, 170px);
  left: 50%;
  z-index: 4;
  width: min(760px, calc(100% - 36px));
  text-align: center;
  transform: translateX(-50%);
  pointer-events: none;
}

.choice-question h1 {
  max-width: none;
  margin: 0;
  color: var(--ink);
  text-shadow: 0 18px 44px rgba(37, 49, 46, 0.16);
}

.choice-panel {
  position: relative;
  isolation: isolate;
  z-index: 2;
  display: grid;
  height: 100svh;
  min-height: 0;
  place-items: center;
  overflow: hidden;
  padding: clamp(32px, 7vh, 84px) clamp(24px, 6vw, 88px);
  color: var(--ink);
  transition: flex var(--motion-slow) var(--ease-premium), filter var(--motion-slow) var(--ease-premium), opacity var(--motion-slow) var(--ease-premium), transform var(--motion-slow) var(--ease-premium);
}

.choice-panel::before,
.choice-panel::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
}

.choice-panel::before {
  background: rgba(255, 255, 255, 0.26);
  transition: background var(--motion-medium) var(--ease-soft), transform var(--motion-slow) var(--ease-premium), opacity var(--motion-slow) var(--ease-premium);
}

.choice-panel::after {
  background: radial-gradient(circle at var(--hover-x, 50%) var(--hover-y, 50%), rgba(255, 255, 255, 0.58), transparent 28%);
  opacity: 0;
  transform: scale(0.82);
  transition: opacity var(--motion-medium) var(--ease-soft), transform var(--motion-slow) var(--ease-premium);
}

.choice-panel--jobs::before {
  background: rgba(34, 139, 34, 0.08);
}

.choice-panel--praktikum::before {
  background: rgba(184, 216, 210, 0.22);
}

.choice-panel:hover::before,
.choice-panel:focus-visible::before {
  background: rgba(255, 255, 255, 0.46);
  transform: scale(1.02);
}

.choice-panel:hover::after,
.choice-panel:focus-visible::after {
  opacity: 1;
  transform: scale(1);
}

.choice-panel__content {
  display: grid;
  max-width: 520px;
  transform: translateY(0);
  transition: transform var(--motion-medium) var(--ease-premium), opacity var(--motion-medium) var(--ease-premium);
}

.choice-panel--praktikum .choice-panel__content {
  justify-self: end;
  text-align: right;
}

.choice-panel__label {
  font-size: clamp(4.2rem, 8.4vw, 7.4rem);
  font-weight: 720;
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow: 0 22px 54px rgba(37, 49, 46, 0.18);
  transition: letter-spacing var(--motion-medium) var(--ease-premium), transform var(--motion-medium) var(--ease-premium);
}

.choice-panel:hover .choice-panel__label,
.choice-panel:focus-visible .choice-panel__label {
  letter-spacing: 0.015em;
  transform: translateY(-4px);
}

.choice-stage::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 3;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  content: "";
  transition: opacity 520ms var(--ease-soft);
}

.page-hero__copy {
  max-width: 860px;
}

.page-hero h1 {
  margin-bottom: 18px;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  font-size: clamp(1.08rem, 2vw, 1.36rem);
}

.hero-image {
  overflow: visible;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbf8f1;
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

.notice {
  display: grid;
  gap: 4px;
  max-width: 680px;
  margin-top: 24px;
  padding: 18px;
  border-left: 4px solid var(--clay);
  background: rgba(255, 255, 255, 0.76);
}

.notice span {
  color: var(--muted);
}

.notice a {
  color: var(--brand-dark);
  font-weight: 650;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 0.74rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(2.9rem, 6.4vw, 5.8rem);
  font-weight: 680;
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.85rem, 3.4vw, 3.15rem);
  font-weight: 650;
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
  font-weight: 660;
  line-height: 1.28;
}

.hero-text {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.5vw, 1.2rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 680;
  box-shadow: 0 12px 30px rgba(37, 49, 46, 0.08);
  transform: translate3d(var(--magnet-x, 0), var(--magnet-y, 0), 0);
  transition:
    background var(--motion-fast) var(--ease-soft),
    border-color var(--motion-fast) var(--ease-soft),
    box-shadow var(--motion-medium) var(--ease-premium),
    transform var(--motion-medium) var(--ease-premium);
}

.button.primary {
  background: var(--brand);
  color: #ffffff;
}

.button.primary:hover {
  background: var(--brand-dark);
  box-shadow: 0 18px 42px rgba(34, 139, 34, 0.24);
}

.button.secondary {
  background: rgba(255, 250, 242, 0.56);
  border-color: rgba(221, 213, 200, 0.74);
  backdrop-filter: blur(16px);
}

.button.secondary:hover {
  border-color: rgba(34, 139, 34, 0.28);
  box-shadow: 0 18px 42px rgba(37, 49, 46, 0.12);
}

.hero-panel {
  display: grid;
  gap: 18px;
}

.visual-card {
  overflow: hidden;
  min-height: 440px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fefcf7 0%, #ece4d4 100%);
  box-shadow: var(--shadow);
}

.window-scene {
  position: relative;
  min-height: 440px;
  background:
    linear-gradient(90deg, transparent 0 49%, rgba(37, 49, 46, 0.08) 49% 51%, transparent 51%),
    linear-gradient(180deg, var(--sky) 0 47%, #f5efe2 47% 100%);
}

.sun,
.plant,
.chair,
.table,
.speech {
  position: absolute;
  display: block;
}

.sun {
  top: 44px;
  right: 48px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #e6b95b;
}

.table {
  right: 48px;
  bottom: 72px;
  width: 190px;
  height: 18px;
  background: var(--clay);
  border-radius: 8px;
}

.table::before,
.table::after {
  position: absolute;
  top: 16px;
  width: 14px;
  height: 78px;
  background: #7d4f3d;
  content: "";
}

.table::before {
  left: 22px;
}

.table::after {
  right: 22px;
}

.chair {
  left: 48px;
  bottom: 78px;
  width: 130px;
  height: 116px;
  border: 18px solid var(--brand);
  border-top-width: 52px;
  border-radius: 34px 34px 8px 8px;
}

.plant {
  left: 54px;
  bottom: 54px;
  width: 84px;
  height: 76px;
  background: var(--sage);
  clip-path: polygon(47% 0, 61% 34%, 100% 18%, 72% 52%, 94% 72%, 56% 64%, 50% 100%, 42% 64%, 4% 72%, 28% 52%, 0 18%, 39% 34%);
}

.speech {
  border: 2px solid rgba(34, 139, 34, 0.45);
  background: rgba(255, 250, 242, 0.82);
  border-radius: 28px;
}

.speech-one {
  left: 52px;
  top: 72px;
  width: 150px;
  height: 70px;
}

.speech-two {
  right: 74px;
  top: 170px;
  width: 118px;
  height: 56px;
}

.quick-facts,
.contact-box {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-strong);
}

.quick-facts div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
}

dt {
  color: var(--muted);
  font-size: 0.85rem;
}

dd {
  margin: 0;
  font-weight: 700;
}

.section,
.split-section,
.contact-section {
  padding: clamp(64px, 9vw, 120px) clamp(18px, 6vw, 96px);
  scroll-margin-top: clamp(40px, 4.8vw, 58px);
}

#leistungen,
#team {
  scroll-margin-top: max(20px, calc(clamp(40px, 4.8vw, 58px) - 20px));
}

.section-heading,
.split-section {
  display: block;
  text-align: center;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto;
}

.section-heading > .eyebrow,
.split-section > div > .eyebrow,
.spiekeroog-section__intro > .eyebrow,
.contact-section > div > .eyebrow {
  display: none;
}

.section-lead {
  max-width: 680px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 44px auto 0;
  max-width: 1180px;
}

.service-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(34, 139, 34, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 242, 0.78)),
    var(--surface-strong);
  color: inherit;
  font: inherit;
  text-align: center;
  box-shadow: 0 18px 44px rgba(37, 49, 46, 0.08);
  backdrop-filter: blur(18px);
  transition: border-color var(--motion-fast) var(--ease-soft), box-shadow var(--motion-medium) var(--ease-premium), transform var(--motion-medium) var(--ease-premium);
}

.service-card::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 0 36%, rgba(34, 139, 34, 0.1) 50%, transparent 64%);
  opacity: 0;
  transform: translateX(-60%);
  transition: opacity 220ms ease, transform 620ms ease;
  content: "";
}

.service-card:hover,
.service-card:focus-visible,
.service-card.is-open {
  border-color: rgba(34, 139, 34, 0.36);
  box-shadow: 0 30px 72px rgba(37, 49, 46, 0.16);
  transform: translateY(-7px) scale(1.01);
}

.service-card:hover::before,
.service-card:focus-visible::before,
.service-card.is-open::before {
  opacity: 1;
  transform: translateX(60%);
}

.service-card h3 {
  position: relative;
  margin: 0;
  font-size: 1.25rem;
}

.service-card h3::after {
  display: block;
  width: 42px;
  height: 2px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: rgba(34, 139, 34, 0.42);
  content: "";
}

.service-card__info {
  position: relative;
  display: grid;
  gap: 8px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  color: var(--muted);
  transition: max-height 1300ms ease, opacity 900ms ease;
}

.service-card.is-open .service-card__info {
  max-height: 260px;
  opacity: 1;
}

.service-card__line {
  opacity: 0;
  transform: translateY(10px);
}

.service-card.is-open .service-card__line {
  animation: serviceLineIn 1400ms ease forwards;
}

.service-card.is-open .service-card__line:nth-child(1) {
  animation-delay: 260ms;
}

.service-card.is-open .service-card__line:nth-child(2) {
  animation-delay: 700ms;
}

.service-card.is-open .service-card__line:nth-child(3) {
  animation-delay: 1140ms;
}

.service-card.is-open .service-card__line:nth-child(4) {
  animation-delay: 1580ms;
}

@keyframes serviceLineIn {
  0% {
    opacity: 0;
    filter: blur(6px);
    transform: translateY(10px);
  }

  55% {
    opacity: 1;
    filter: blur(1px);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.service-card p,
.text-stack,
.contact-section p,
.process-list span {
  color: var(--muted);
}

.closed-note {
  margin-right: auto;
  margin-left: auto;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
}

.text-stack {
  max-width: 760px;
  margin: clamp(22px, 3vw, 36px) auto 0;
  font-size: 1.12rem;
  text-align: center;
}

.spiekeroog-section {
  display: block;
  padding-right: 0;
  padding-left: 0;
}

.spiekeroog-section__intro {
  display: block;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 clamp(18px, 6vw, 96px);
  text-align: center;
}

.spiekeroog-section__intro p:last-child {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
}

.spiekeroog-carousel-shell {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: clamp(260px, 32vw, 430px);
  margin-top: clamp(28px, 4vw, 52px);
  overflow: hidden;
}

.spiekeroog-carousel {
  position: absolute;
  inset: 0;
}

.spiekeroog-carousel img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(210px, 27vw, 360px);
  height: clamp(190px, 24vw, 320px);
  border: 6px solid rgba(255, 250, 242, 0.92);
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 14px 32px rgba(37, 49, 46, 0.11);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.78);
  transition:
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 560ms ease,
    filter 760ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.spiekeroog-carousel.is-resetting img {
  transition: none;
}

.spiekeroog-carousel img.is-far-left {
  z-index: 1;
  opacity: 0;
  filter: saturate(0.9) blur(0.8px);
  transform: translate(-371%, -50%) scale(0.86) rotate(-2.8deg);
}

.spiekeroog-carousel img.is-front-left {
  z-index: 4;
  opacity: 1;
  transform: translate(-157%, -50%) rotate(-1.5deg);
}

.spiekeroog-carousel img.is-front-center {
  z-index: 6;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.02);
}

.spiekeroog-carousel img.is-front-right {
  z-index: 4;
  opacity: 1;
  transform: translate(57%, -50%) rotate(1.5deg);
}

.spiekeroog-carousel img.is-next-right {
  z-index: 2;
  opacity: 0.22;
  filter: saturate(0.92) blur(0.2px);
  transform: translate(164%, -50%) scale(0.92) rotate(2.2deg);
}

.spiekeroog-carousel img.is-far-right {
  z-index: 1;
  opacity: 0;
  filter: saturate(0.9) blur(0.8px);
  transform: translate(271%, -50%) scale(0.86) rotate(2.8deg);
}

.spiekeroog-carousel img.is-next-left {
  z-index: 2;
  opacity: 0.22;
  filter: saturate(0.92) blur(0.2px);
  transform: translate(-264%, -50%) scale(0.92) rotate(-2.2deg);
}

.spiekeroog-carousel.is-sliding-next img.is-far-left {
  opacity: 0;
  transform: translate(-478%, -50%) scale(0.82) rotate(-3.4deg);
}

.spiekeroog-carousel.is-sliding-next img.is-next-left {
  opacity: 0;
  transform: translate(-371%, -50%) scale(0.86) rotate(-2.8deg);
}

.spiekeroog-carousel.is-sliding-next img.is-front-left {
  z-index: 1;
  opacity: 0;
  filter: saturate(0.9) blur(0.8px);
  transform: translate(-371%, -50%) scale(0.86) rotate(-2.8deg);
}

.spiekeroog-carousel.is-sliding-next img.is-front-center {
  z-index: 2;
  opacity: 0.22;
  filter: saturate(0.92) blur(0.2px);
  transform: translate(-264%, -50%) scale(0.92) rotate(-2.2deg);
}

.spiekeroog-carousel.is-sliding-next img.is-front-right {
  z-index: 4;
  opacity: 1;
  filter: none;
  transform: translate(-157%, -50%) rotate(-1.5deg);
}

.spiekeroog-carousel.is-sliding-next img.is-next-right {
  z-index: 6;
  opacity: 1;
  filter: none;
  transform: translate(-50%, -50%) scale(1.02);
}

.spiekeroog-carousel.is-sliding-next img.is-far-right {
  z-index: 4;
  opacity: 1;
  filter: none;
  transform: translate(57%, -50%) rotate(1.5deg);
}

.spiekeroog-carousel.is-sliding-prev img.is-far-left {
  z-index: 4;
  opacity: 1;
  filter: none;
  transform: translate(-157%, -50%) rotate(-1.5deg);
}

.spiekeroog-carousel.is-sliding-prev img.is-next-left {
  z-index: 6;
  opacity: 1;
  filter: none;
  transform: translate(-50%, -50%) scale(1.02);
}

.spiekeroog-carousel.is-sliding-prev img.is-front-left {
  z-index: 4;
  opacity: 1;
  filter: none;
  transform: translate(57%, -50%) rotate(1.5deg);
}

.spiekeroog-carousel.is-sliding-prev img.is-front-center {
  z-index: 2;
  opacity: 0.22;
  filter: saturate(0.92) blur(0.2px);
  transform: translate(164%, -50%) scale(0.92) rotate(2.2deg);
}

.spiekeroog-carousel.is-sliding-prev img.is-front-right {
  z-index: 1;
  opacity: 0;
  filter: saturate(0.9) blur(0.8px);
  transform: translate(271%, -50%) scale(0.86) rotate(2.8deg);
}

.spiekeroog-carousel.is-sliding-prev img.is-next-right,
.spiekeroog-carousel.is-sliding-prev img.is-far-right {
  opacity: 0;
  transform: translate(378%, -50%) scale(0.82) rotate(3.4deg);
}

.spiekeroog-carousel__control {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: grid;
  width: clamp(56px, 7vw, 86px);
  height: clamp(56px, 7vw, 86px);
  place-items: center;
  border: 1px solid rgba(34, 139, 34, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.96);
  color: var(--brand);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  box-shadow: 0 12px 28px rgba(37, 49, 46, 0.11);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform var(--motion-medium) var(--ease-premium), border-color var(--motion-fast) var(--ease-soft), box-shadow var(--motion-fast) var(--ease-soft);
}

.spiekeroog-carousel__control:hover,
.spiekeroog-carousel__control:focus-visible {
  border-color: rgba(34, 139, 34, 0.34);
  box-shadow: 0 16px 34px rgba(37, 49, 46, 0.16);
  transform: translateY(-50%) scale(1.08);
}

.spiekeroog-carousel__control--prev {
  left: clamp(14px, 3vw, 44px);
}

.spiekeroog-carousel__control--next {
  right: clamp(14px, 3vw, 44px);
}

.muted {
  background: rgba(34, 139, 34, 0.08);
}

.team-grid,
.job-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.team-grid {
  gap: 12px;
  max-width: 860px;
  margin: 28px auto 0;
}

.job-grid {
  gap: 18px;
  max-width: 1180px;
  margin: 44px auto 0;
}

#team h2 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.team-card {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid rgba(34, 139, 34, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 16px 40px rgba(37, 49, 46, 0.08);
  cursor: pointer;
  backdrop-filter: blur(16px);
  transition: border-color var(--motion-fast) var(--ease-soft), box-shadow var(--motion-medium) var(--ease-premium), transform var(--motion-medium) var(--ease-premium);
}

.team-card::after {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 1;
  display: grid;
  width: 18px;
  height: 16px;
  place-items: center;
  border: 0;
  border-radius: 6px;
  background: rgba(17, 17, 17, 0.88);
  color: #ffffff;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.18);
  content: "i";
}

.team-card:hover,
.team-card:focus-visible {
  border-color: rgba(34, 139, 34, 0.36);
  box-shadow: 0 28px 68px rgba(37, 49, 46, 0.16);
  transform: translateY(-7px) scale(1.012);
}

.team-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 38%;
  border-radius: 17px;
  transition: transform 900ms var(--ease-premium), filter 520ms var(--ease-soft);
}

.team-card:hover img,
.team-card:focus-visible img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.045);
}

.team-details {
  display: none;
}

.team-modal[hidden] {
  display: none;
}

.team-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(17, 26, 24, 0.5);
  backdrop-filter: blur(10px);
}

.team-modal__frame {
  display: grid;
  width: 100%;
  height: 100%;
  padding: clamp(18px, 4vw, 56px);
}

.team-modal__window {
  position: relative;
  overflow: auto;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background: rgba(255, 250, 242, 0.97);
  box-shadow: 0 34px 80px rgba(10, 23, 20, 0.32);
}

.team-modal__close {
  position: sticky;
  top: 18px;
  z-index: 2;
  float: right;
  margin: 18px 18px 0 0;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(34, 139, 34, 0.24);
  border-radius: 8px;
  background: #ffffff;
  color: var(--brand-dark);
  font: inherit;
  font-weight: 680;
  cursor: pointer;
}

.team-modal__content article {
  display: grid;
  grid-template-columns: minmax(220px, 0.58fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  padding: clamp(24px, 5vw, 64px);
}

.team-modal__content img {
  width: 100%;
  max-height: 72vh;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 20px 52px rgba(37, 49, 46, 0.14);
}

.team-modal__content h3 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.team-modal__content h4 {
  margin: 28px 0 10px;
  font-size: 1rem;
  color: var(--brand-dark);
}

.team-modal__content p {
  color: var(--muted);
}

.team-modal__content ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.job-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  max-width: 960px;
}

.job-page-grid {
  max-width: 1180px;
}

.single-job-grid {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.job-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 14px;
  min-width: 0;
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(34, 139, 34, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  color: inherit;
  font: inherit;
  text-align: left;
  white-space: normal;
  box-shadow: 0 16px 38px rgba(37, 49, 46, 0.08);
  cursor: pointer;
  backdrop-filter: blur(16px);
  transition: border-color var(--motion-fast) var(--ease-soft), box-shadow var(--motion-medium) var(--ease-premium), transform var(--motion-medium) var(--ease-premium);
}

.job-card:hover,
.job-card:focus-visible {
  border-color: rgba(34, 139, 34, 0.42);
  box-shadow: 0 30px 72px rgba(37, 49, 46, 0.16);
  transform: translateY(-7px) scale(1.01);
}

.job-card p {
  color: var(--muted);
}

.job-card h2 {
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.job-card__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(37, 49, 46, 0.12);
  transition: transform 900ms var(--ease-premium), filter 520ms var(--ease-soft);
}

.job-card:hover .job-card__image,
.job-card:focus-visible .job-card__image {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.035);
}

.pulse-cta {
  align-self: end;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  color: var(--brand-dark);
  font-weight: 760;
}

.pulse-cta::before {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 0 rgba(34, 139, 34, 0.38);
  content: "";
  animation: pulseCta 1.8s ease-out infinite;
}

@keyframes pulseCta {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 139, 34, 0.38);
  }
  70% {
    box-shadow: 0 0 0 13px rgba(34, 139, 34, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 139, 34, 0);
  }
}

.application-form {
  display: grid;
  gap: 22px;
  clear: both;
}

.praktikum-application-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.96), rgba(239, 247, 242, 0.72)),
    var(--surface);
}

.praktikum-application {
  display: grid;
  gap: clamp(30px, 5vw, 56px);
  max-width: 920px;
  margin: 0 auto;
}

.praktikum-application__copy {
  display: grid;
  gap: 16px;
  text-align: center;
}

.praktikum-application__copy h1 {
  max-width: 820px;
  margin: 0 auto;
  font-size: clamp(2.35rem, 5vw, 4.45rem);
}

.praktikum-application__copy p:not(.eyebrow) {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.45vw, 1.18rem);
}

.application-form--inline {
  padding-top: clamp(8px, 1.4vw, 16px);
  border-top: 1px solid rgba(221, 213, 200, 0.78);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.application-form label,
.application-form fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
  border: 0;
  padding: 0;
}

.application-form span,
.application-form legend {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 680;
}

.application-form input,
.application-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  transition: border-color var(--motion-fast) var(--ease-soft), box-shadow var(--motion-fast) var(--ease-soft), transform var(--motion-fast) var(--ease-soft);
}

.application-form input:focus,
.application-form textarea:focus {
  border-color: rgba(34, 139, 34, 0.42);
  box-shadow: 0 0 0 4px rgba(34, 139, 34, 0.12);
  outline: 0;
}

.application-form input {
  min-height: 42px;
  padding: 0 12px;
}

.application-form textarea {
  resize: vertical;
  min-height: 108px;
  padding: 12px;
}

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

.choice-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.choice-row label {
  position: relative;
}

.choice-row input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-row span {
  display: grid;
  place-items: center;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 720;
  line-height: 1.25;
  text-align: center;
  cursor: pointer;
  overflow-wrap: anywhere;
  transition: border-color var(--motion-fast) var(--ease-soft), background var(--motion-fast) var(--ease-soft), box-shadow var(--motion-fast) var(--ease-soft), transform var(--motion-fast) var(--ease-soft);
}

.choice-row span:hover {
  box-shadow: 0 12px 28px rgba(37, 49, 46, 0.1);
  transform: translateY(-2px);
}

.choice-row input:checked + span {
  border-color: var(--brand);
  background: rgba(34, 139, 34, 0.1);
  color: var(--brand-dark);
}

.application-submit {
  width: fit-content;
  min-height: 44px;
}

.application-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(34, 139, 34, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--brand-dark);
  font-size: 0.95rem;
  line-height: 1.45;
}

.form-status[hidden] {
  display: none;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
  margin: 44px auto 0;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 30px rgba(37, 49, 46, 0.06);
  backdrop-filter: blur(16px);
  transition: border-color var(--motion-fast) var(--ease-soft), box-shadow var(--motion-medium) var(--ease-premium), transform var(--motion-medium) var(--ease-premium);
}

.faq-list details:hover,
.faq-list details[open] {
  border-color: rgba(34, 139, 34, 0.26);
  box-shadow: 0 22px 54px rgba(37, 49, 46, 0.12);
  transform: translateY(-3px);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 800;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.page-faq-list {
  margin-top: 0;
}

.faq-background-page .section {
  background: transparent;
}

.faq-background-page .page-faq-list {
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.76);
  box-shadow: 0 24px 70px rgba(37, 49, 46, 0.14);
  backdrop-filter: blur(18px) saturate(1.08);
}

.content-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.content-card {
  min-width: 0;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-strong);
  box-shadow: 0 16px 38px rgba(37, 49, 46, 0.08);
}

.content-card h2 {
  margin-bottom: 22px;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.content-card ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.single-column {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.job-reasons-section {
  padding-top: clamp(96px, 12vw, 164px);
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.74), rgba(239, 247, 242, 0.72)),
    var(--surface);
}

.job-reasons-heading {
  max-width: 980px;
  margin-bottom: clamp(64px, 8vw, 104px);
}

.job-reasons-heading h2 {
  position: relative;
  display: inline-block;
  max-width: 920px;
  padding-bottom: 18px;
  background: linear-gradient(110deg, var(--ink) 0%, #254a35 58%, var(--brand-dark) 100%);
  background-clip: text;
  color: transparent;
}

.job-reasons-heading h2::after {
  position: absolute;
  right: 12%;
  bottom: 0;
  left: 12%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(34, 139, 34, 0.34), rgba(184, 216, 210, 0.46), transparent);
  box-shadow: 0 12px 34px rgba(34, 139, 34, 0.12);
  content: "";
}

.job-reason-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.job-reason-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  min-width: 0;
  min-height: 138px;
  padding: 22px;
  border: 1px solid rgba(34, 139, 34, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 34px rgba(37, 49, 46, 0.07);
}

.job-reason-card img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.job-reason-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.job-application-section {
  background:
    linear-gradient(180deg, rgba(239, 247, 242, 0.72), rgba(255, 250, 242, 0.82)),
    var(--surface);
}

.job-application-card {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(300px, 1fr);
  gap: clamp(22px, 4vw, 42px);
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(20px, 3.6vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 28px 80px rgba(37, 49, 46, 0.11);
  backdrop-filter: blur(24px) saturate(1.14);
}

.job-application-card h2 {
  margin-bottom: 14px;
  font-size: clamp(1.75rem, 3.2vw, 2.45rem);
}

.job-application-card p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.98rem;
}

.job-application-card .application-form {
  gap: 14px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  gap: 10px;
  min-height: 170px;
  padding: 28px;
  border-left: 4px solid var(--brand);
  background: rgba(255, 255, 255, 0.74);
}

.contact-section {
  display: block;
  background:
    linear-gradient(180deg, rgba(239, 247, 242, 0.64), rgba(255, 250, 242, 0.92)),
    var(--bg);
  color: var(--ink);
  text-align: center;
}

.contact-section > div {
  max-width: 760px;
  margin: 0 auto;
}

.contact-section h2 {
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(1.28rem, 1.9vw, 1.85rem);
}

.contact-section .eyebrow,
.contact-section p {
  color: var(--muted);
}

.contact-section > div > p {
  max-width: 760px;
  margin: 12px auto 0;
  font-size: 0.96rem;
  line-height: 1.55;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(380px, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(14px, 2.1vw, 22px);
  align-items: stretch;
  max-width: 1120px;
  margin: clamp(22px, 3.2vw, 36px) auto 0;
  padding: clamp(6px, 1vw, 10px);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 28px 80px rgba(37, 49, 46, 0.12);
  backdrop-filter: blur(22px) saturate(1.12);
}

.contact-section > .contact-layout {
  max-width: 1120px;
}

.contact-box {
  width: 100%;
  margin: 0;
  padding: clamp(16px, 2vw, 22px);
  border: 1px solid rgba(34, 139, 34, 0.12);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(247, 243, 236, 0.72)),
    var(--surface-strong);
  color: var(--ink);
  font-style: normal;
  text-align: left;
  box-shadow: none;
}

.contact-box__head {
  display: grid;
  gap: 6px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(221, 213, 200, 0.86);
}

.contact-box__head strong {
  font-size: clamp(1.08rem, 1.45vw, 1.34rem);
  line-height: 1.12;
}

.contact-box__label {
  color: var(--brand-dark);
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-method {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(221, 213, 200, 0.7);
}

.contact-method:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-method > span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
}

.contact-method > div {
  display: grid;
  gap: 8px;
}

.contact-phone-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.contact-method a,
.contact-method strong {
  color: var(--ink);
  font-weight: 760;
  line-height: 1.35;
  overflow-wrap: normal;
  word-break: normal;
}

.contact-method a {
  white-space: nowrap;
}

.contact-method a {
  text-decoration: underline;
  text-decoration-color: rgba(34, 139, 34, 0.24);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  transition: color var(--motion-fast) var(--ease-soft), text-decoration-color var(--motion-fast) var(--ease-soft);
}

.contact-method a:hover {
  color: var(--brand-dark);
  text-decoration-color: rgba(34, 139, 34, 0.62);
}

.whatsapp-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.22);
}

.whatsapp-contact:hover {
  background: #1ebe5d;
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.whatsapp-contact svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.contact-map {
  overflow: hidden;
  min-height: clamp(320px, 31vw, 430px);
  border: 1px solid rgba(34, 139, 34, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(320px, 31vw, 430px);
  border: 0;
}

.map-consent {
  display: grid;
  min-height: clamp(320px, 31vw, 430px);
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: clamp(22px, 4vw, 38px);
  background:
    linear-gradient(135deg, rgba(239, 247, 242, 0.92), rgba(255, 250, 242, 0.86)),
    url("assets/site/bilder webpage logo/häuserreihe.png") center / cover no-repeat;
  text-align: center;
}

.map-consent strong {
  font-size: clamp(1.25rem, 2.8vw, 1.75rem);
  line-height: 1.1;
}

.map-consent p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.48;
}

.legal-page {
  padding: clamp(112px, 12vw, 150px) clamp(18px, 6vw, 96px) clamp(48px, 7vw, 92px);
}

.legal-page h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.legal-card {
  max-width: 980px;
  padding: clamp(22px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-strong);
}

.legal-card h2 {
  margin-top: 32px;
  font-size: clamp(1.4rem, 3vw, 2.3rem);
}

.site-footer {
  justify-content: center;
  gap: clamp(16px, 3vw, 28px);
  padding: 18px clamp(18px, 6vw, 96px) 24px;
  border-top: 1px solid rgba(221, 213, 200, 0.72);
  color: var(--muted);
  background: var(--bg);
  font-size: 0.9rem;
}

.site-footer nav {
  gap: clamp(12px, 2.4vw, 22px);
}

.site-footer a {
  color: var(--ink);
}

.site-footer a:hover {
  color: var(--brand-dark);
}

@media (max-width: 860px) {
  .site-header {
    min-height: 66px;
    padding: 14px 18px;
  }

  .brand img {
    width: 142px;
  }

  .brand .brand-mascot {
    left: 148px;
    top: -6px;
    width: 66px;
    height: 66px;
  }

  .nav-toggle {
    display: block;
    background: rgba(255, 250, 242, 0.76);
  backdrop-filter: blur(16px);
}

.analytics-page {
  min-height: 100vh;
  background: #f4f1ea;
}

.analytics-dashboard {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(32px, 6vw, 72px) 0;
}

.analytics-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.analytics-header h1 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.analytics-header p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
}

.analytics-range {
  display: inline-grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
  margin-bottom: 18px;
  padding: 4px;
  border: 1px solid rgba(221, 213, 200, 0.86);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.72);
}

.analytics-range button {
  min-height: 38px;
  padding: 0 16px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 720;
  cursor: pointer;
}

.analytics-range button[aria-pressed="true"] {
  background: #ffffff;
  color: var(--brand-dark);
  box-shadow: 0 8px 22px rgba(37, 49, 46, 0.1);
}

.analytics-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.analytics-kpis article,
.analytics-panel {
  border: 1px solid rgba(221, 213, 200, 0.86);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.82);
  box-shadow: 0 16px 40px rgba(37, 49, 46, 0.08);
}

.analytics-kpis article {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.analytics-kpis span,
.analytics-row span,
.analytics-day span,
.analytics-meta {
  color: var(--muted);
}

.analytics-kpis strong {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.analytics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.analytics-panel {
  min-height: 320px;
  padding: 20px;
}

.analytics-panel--wide {
  grid-column: 1 / -1;
}

.analytics-panel h2 {
  margin: 0 0 18px;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.analytics-bars,
.analytics-list {
  display: grid;
  gap: 10px;
}

.analytics-list--columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.analytics-row,
.analytics-day {
  display: grid;
  align-items: center;
  gap: 12px;
  min-height: 38px;
}

.analytics-row {
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 10px 0;
  border-bottom: 1px solid rgba(221, 213, 200, 0.72);
}

.analytics-row span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.analytics-day {
  grid-template-columns: 48px minmax(0, 1fr) 78px;
}

.analytics-day i {
  position: relative;
  display: block;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(156, 175, 136, 0.2);
}

.analytics-day i::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bar-size);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), var(--sage));
  content: "";
}

.analytics-day strong,
.analytics-row strong {
  font-variant-numeric: tabular-nums;
}

.analytics-empty,
.analytics-meta {
  margin: 18px 0 0;
  font-size: 0.95rem;
}

  .site-nav {
    position: absolute;
    inset: 72px 18px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(255, 250, 242, 0.72);
    border-radius: 12px;
    background: rgba(255, 250, 242, 0.9);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .hero,
  .page-hero,
  .praktikum-image-hero {
    display: none;
  }

  #start > .split-section:first-of-type {
    padding-top: calc(86px + env(safe-area-inset-top));
  }

  .legal-page {
    padding-top: calc(92px + env(safe-area-inset-top));
  }

  .visual-card,
  .window-scene {
    min-height: 340px;
  }

  .choice-stage {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, 50svh);
  }

  .choice-stage::before {
    top: 50%;
    right: 0;
    bottom: auto;
    left: 0;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  }

  .choice-question {
    top: 92px;
  }

  .choice-panel {
    height: 50svh;
    min-height: 0;
    padding: 28px;
  }

  .choice-panel__content,
  .choice-panel--praktikum .choice-panel__content {
    justify-self: center;
    text-align: center;
  }

  .choice-panel__label {
    font-size: clamp(3.15rem, 12vw, 4.8rem);
  }

  .analytics-header {
    display: grid;
    align-items: start;
  }

  .analytics-range {
    width: 100%;
  }

  .analytics-kpis,
  .analytics-grid,
  .analytics-list--columns {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .process-list,
  .job-grid,
  .job-reason-grid,
  .content-columns {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
    gap: 10px;
    padding: 18px 20px;
    border-radius: 12px;
    text-align: left;
    transform: none;
  }

  .service-card:hover,
  .service-card:focus-visible,
  .service-card.is-open {
    transform: none;
  }

  .service-card h3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-size: 1.08rem;
  }

  .service-card h3::after {
    display: grid;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    margin: 0;
    place-items: center;
    border: 1px solid rgba(34, 139, 34, 0.2);
    border-radius: 999px;
    background: rgba(34, 139, 34, 0.08);
    color: var(--brand-dark);
    font-size: 1rem;
    line-height: 1;
    content: "+";
  }

  .service-card.is-open h3::after {
    content: "-";
  }

  .service-card.is-open .service-card__info {
    max-height: 320px;
  }

  .service-card__line {
    font-size: 0.95rem;
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-width: 330px;
  }

  .team-card {
    border-radius: 12px;
  }

  .team-card::after {
    right: 6px;
    bottom: 6px;
    width: 16px;
    height: 14px;
    border-radius: 4px;
    font-size: 0.66rem;
  }

  .team-card img {
    aspect-ratio: 4 / 5;
    object-position: center 33%;
    border-radius: 11px;
  }

  .form-grid,
  .choice-row {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 320px;
  }

  .team-modal__content article {
    grid-template-columns: 1fr;
  }

  .team-modal__content img {
    max-height: 46vh;
  }

  .job-reason-card {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 16px;
    min-height: 0;
    padding: 18px;
  }

  .job-reason-card img {
    width: 58px;
    height: 58px;
  }

  .job-application-card {
    grid-template-columns: 1fr;
  }

  .spiekeroog-section__intro {
    grid-template-columns: 1fr;
  }

  .spiekeroog-carousel-shell {
    min-height: 280px;
  }

  .spiekeroog-carousel img {
    width: clamp(96px, 29vw, 180px);
    height: clamp(150px, 40vw, 230px);
    border-width: 4px;
  }

  .spiekeroog-carousel img.is-front-left {
    transform: translate(-158%, -50%);
  }

  .spiekeroog-carousel img.is-front-center {
    transform: translate(-50%, -50%);
  }

  .spiekeroog-carousel img.is-front-right {
    transform: translate(58%, -50%);
  }

  .spiekeroog-carousel img.is-next-left {
    transform: translate(-266%, -50%) scale(0.92);
  }

  .spiekeroog-carousel img.is-next-right {
    transform: translate(166%, -50%) scale(0.92);
  }

}

@media (min-width: 861px) and (max-height: 820px) {
  .section,
  .split-section,
  .contact-section {
    padding-top: clamp(42px, 7vh, 64px);
    padding-bottom: clamp(42px, 7vh, 64px);
  }

  .section-lead {
    margin-top: 12px;
  }

  .service-grid,
  .team-grid,
  .job-reason-grid {
    gap: 12px;
    margin-top: 26px;
  }

  .team-grid {
    max-width: 860px;
  }

  .team-card img {
    aspect-ratio: 4 / 5;
  }

  .service-card {
    min-height: 220px;
    padding: 22px;
  }

  .job-reasons-section {
    padding-top: clamp(52px, 8vh, 76px);
  }

  .job-reasons-heading {
    margin-bottom: clamp(34px, 6vh, 48px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  body,
  .brand .brand-mascot__arm,
  .motion-reveal,
  .motion-reveal.is-visible {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .spiekeroog-carousel img {
    transition: none;
  }
}

@media (min-width: 861px) and (max-width: 1120px) {
  .team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 700px;
  }
}

@media (max-width: 560px) {
  h1 {
    max-width: 100%;
    font-size: clamp(2.28rem, 10vw, 2.7rem);
    overflow-wrap: break-word;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .site-footer,
  .site-footer nav {
    flex-wrap: wrap;
  }

  .contact-method a {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .contact-phone-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .whatsapp-contact {
    white-space: nowrap;
  }

  .quick-facts div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
