:root {
  --white: #FFFFFF;
  --ink: #2C2D33;
  --blueblack: #38434F;
  --orange: #FF552E;
  --turquoise: #98D7C6;
  --sand: #CDC5B5;
  --line: rgba(44, 45, 51, 0.18);
  --max: 1180px;
  --page-max: 1520px;

  /* EINHEITLICHES DREIECK-SYSTEM */
  --tri-x-lg: clamp(36px, 3vw, 56px);
  --tri-y-lg: clamp(96px, 7vw, 150px);

  --tri-x-md: 34px;
  --tri-y-md: 92px;

  --tri-x-sm: 26px;
  --tri-y-sm: 70px;
}

/* =========================
   BASE
========================= */

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #F3F2EF;
}

.page {
  width: min(100%, var(--page-max));
  margin: 0 auto;
  background: var(--white);
  overflow: hidden;
}

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

.container {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blueblack);
}

.line-link,
.text-link {
  width: fit-content;
  font-size: 17px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}

.line-link:hover,
.text-link:hover {
  color: var(--orange);
}

/* =========================
   HEADER / MENÜ
========================= */

.site-header {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 50%;
  right: auto;
  width: min(100%, var(--page-max));
  z-index: 30;
  transform: translateX(-50%);
  height: 72px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.brand {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.menu-toggle {
  display: block;
  position: relative;
  z-index: 40;
  width: 34px;
  height: 24px;
  border: 0;
  background: transparent;
  padding: 0;
}

.menu-toggle span {
  display: block;
  height: 1px;
  background: var(--ink);
  margin: 8px 0;
  transition: transform 0.35s ease;
}

.menu-toggle.is-open span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.main-nav {
  position: fixed;
  top: 72px;
  left: 50%;
  right: auto;
  width: min(100%, var(--page-max));
  z-index: 25;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(18px);
  color: var(--ink);
  transform: translate(-50%, -120%);
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  border-bottom: 1px solid var(--line);
}

.main-nav.is-open {
  transform: translate(-50%, 0);
}

.menu-panel {
  padding: 10px 22px 34px;
}

.menu-item {
  border-bottom: 1px solid var(--line);
}

.submenu-toggle {
  width: 100%;
  padding: 15px 18px 15px 0;
  border: 0;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
  font-size: 25px;
  font-weight: 500;
  color: var(--ink);
  text-align: left;
}

.toggle-icon {
  margin-left: 24px;
  margin-right: 10px;
  min-width: 20px;
  font-size: 0;
  color: var(--orange);
}

.toggle-icon::before {
  content: "+";
  font-size: 28px;
  font-weight: 300;
}

.menu-item.is-open .toggle-icon::before {
  content: "–";
}

.submenu {
  display: none;
  padding: 0 0 16px;
}

.menu-item.is-open .submenu {
  display: block;
}

.submenu a {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 17px;
  color: var(--orange);
  border-bottom: 1px solid var(--orange);
}

.submenu p {
  margin: 0;
  max-width: 360px;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(44,45,51,0.72);
}

.menu-simple-link {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 25px;
  font-weight: 500;
}

.menu-contact {
  display: inline-block;
  margin-top: 30px;
  margin-bottom: 26px;
  padding: 13px 16px;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 0;
  font-size: 17px;
}

.menu-contact {
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.menu-contact:hover {
  background: var(--turquoise);
  border-color: var(--turquoise);
  color: var(--blueblack);
}

.menu-external::after {
  content: "↗";
  margin-left: 8px;
  font-size: 0.72em;
  color: var(--orange);
}

.external-arrow {
  color: var(--turquoise);
  font-size: 0.52em !important;
  line-height: 1;
  vertical-align: 0.38em;
  letter-spacing: 0;
}

.field-row-external:hover .external-arrow {
  color: var(--orange);
}

/* =========================
   STARTSEITE HERO
========================= */

.hero-c {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 62% 38%;
}

.hero-copy {
  padding: 160px 8vw 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy h1 {
  max-width: 780px;
  margin: 0 0 32px;
  font-size: clamp(64px, 10vw, 138px);
  line-height: 0.88;
  font-weight: 500;
  letter-spacing: -0.06em;
}

.hero-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 0 42px;
  font-size: clamp(21px, 2.4vw, 31px);
  line-height: 1.36;
}

.hero-signal {
  background: var(--orange);
  clip-path: polygon(
    0 0,
    100% 0,
    100% 100%,
    var(--tri-x-lg) 100%,
    0 calc(100% - var(--tri-y-lg))
  );
}

/* =========================
   ARBEITSFELDER
========================= */

.fields-c {
  position: relative;
  margin-top: -1px;
  padding: calc(var(--tri-y-lg) + 40px) 0 150px;
  background: var(--blueblack);
  color: white;
  overflow: hidden;
  clip-path: polygon(
    0 0,
    calc(100% - var(--tri-x-lg)) 0,
    100% var(--tri-y-lg),
    100% 100%,
    var(--tri-x-lg) 100%,
    0 calc(100% - var(--tri-y-lg))
  );
}

.fields-c .container {
  position: relative;
  z-index: 1;
}

.fields-c .eyebrow {
  color: var(--turquoise);
  margin-bottom: 44px;
}

.field-row {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr 1.2fr;
  gap: 32px;
  align-items: baseline;
  padding: 38px 0;
  border-top: 1px solid rgba(255,255,255,0.22);
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.2s ease;
}

.field-row.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.field-row:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.22);
}

.field-row::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s ease;
}

.field-row span {
  color: var(--turquoise);
  font-size: 15px;
}

.field-row h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: -0.045em;
}

.field-row p {
  margin: 0;
  max-width: 540px;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
}

.field-row.is-visible:hover {
  color: var(--orange);
  transform: translateX(14px);
}

.field-row.is-visible:hover p {
  color: white;
}

.field-row.is-visible:hover::after {
  width: 100%;
}

/* =========================
   ARBEITSWEISE / PERSON
========================= */

.approach-about {
  padding: 150px 0;
  background: var(--white);
}

.approach-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 88px;
  align-items: center;
}

.approach-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(135deg, rgba(205,197,181,0.58), rgba(152,215,198,0.34)),
    #ddd;
  overflow: hidden;

  clip-path: polygon(
    0 0,
    calc(100% - var(--tri-x-md)) 0,
    100% var(--tri-y-md),
    100% 100%,
    0 100%
  );
}

.approach-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.approach-photo::after {
  content: "";
  position: absolute;
  left: 34px;
  bottom: 34px;
  width: 42%;
  height: 2px;
  background: var(--orange);
}

.approach-text {
  max-width: 690px;
}

.approach-text .eyebrow {
  margin-bottom: 26px;
}

.approach-text h2 {
  max-width: 680px;
  margin: 0 0 28px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.055em;
}

.approach-text p {
  margin: 0 0 22px;
  max-width: 620px;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(44,45,51,0.78);
}

.approach-text .text-link {
  margin-top: 18px;
}

@media (max-width: 860px) {
  .approach-about {
    padding: 100px 0;
  }

  .approach-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .approach-photo {
    order: -1;
    aspect-ratio: 16 / 11;
  }

  .approach-photo::after {
    left: 26px;
    bottom: 24px;
    width: 54%;
  }

  .approach-text h2 {
    font-size: clamp(34px, 11vw, 54px);
    line-height: 0.98;
  }

  .approach-text p {
    font-size: 18px;
    line-height: 1.6;
  }
}
/* =========================
   AKTUELLES / SLIDER
========================= */

.latest {
  padding: 140px 0;
  background: var(--white);
  overflow: hidden;
}

.latest-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 56px;
}

.latest-head h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.055em;
}

.slider-controls {
  display: flex;
  gap: 10px;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-family: inherit;
  font-size: 22px;
  cursor: pointer;
}

.slider-btn:hover {
  background: var(--blueblack);
  color: white;
}

.swipe-hint {
  display: none;
}

.swipe-progress {
  display: none;
}

.latest-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 24px;
  padding-left: max(24px, calc((100vw - var(--max)) / 2));
  padding-right: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.slider-track::-webkit-scrollbar {
  display: none;
}

.slide-card {
  position: relative;
  flex: 0 0 min(420px, 78vw);
  min-height: 420px;
  padding: 34px;
  border: 0;
  background: transparent;
  color: var(--ink);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: scale(0.96);
  opacity: 0.82;
  filter: saturate(0.92);
  z-index: 1;
  will-change: transform, opacity, filter;
  transition:
    transform 0.32s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.28s ease,
    filter 0.32s ease;
}

.slide-card.is-active {
  transform: scale(1);
  opacity: 1;
  filter: saturate(1);
  z-index: 3;
}

.slide-card.is-near {
  opacity: 0.9;
  filter: saturate(0.96);
  z-index: 2;
}

.slide-card > * {
  position: relative;
  z-index: 2;
}

.slide-card::before,
.slide-card::after {
  content: "";
  position: absolute;
  inset: 0;
}

/* 1., 3., 5. ... Karte: Ecke oben rechts */
.slide-card:nth-child(odd)::before,
.slide-card:nth-child(odd)::after {
  clip-path: polygon(
    0 0,
    calc(100% - var(--tri-x-md)) 0,
    100% var(--tri-y-md),
    100% 100%,
    0 100%
  );
}

/* 2., 4., 6. ... Karte: Ecke unten links */
.slide-card:nth-child(even)::before,
.slide-card:nth-child(even)::after {
  clip-path: polygon(
    0 0,
    100% 0,
    100% 100%,
    var(--tri-x-md) 100%,
    0 calc(100% - var(--tri-y-md))
  );
}

.slide-card::before {
  z-index: 0;
  background: rgba(44,45,51,0.28);
}

.slide-card::after {
  z-index: 1;
  inset: 1.5px;
  background: var(--white);
}

.slide-card.dark {
  color: white;
}

.slide-card.dark::before,
.slide-card.orange::before {
  background: transparent;
}

.slide-card.dark::after {
  background: var(--blueblack);
}

.slide-card.orange {
  color: white;
}

.slide-card.orange::after {
  background: var(--orange);
}

.slide-card.dark .slide-kicker {
  color: var(--turquoise);
}

.slide-card.dark p {
  color: rgba(255,255,255,0.76);
}

.slide-card.orange .slide-kicker {
  color: var(--blueblack);
}

.slide-card.orange p {
  color: rgba(255,255,255,0.84);
}

.slide-card:hover {
  transform: scale(1) translateY(-6px);
}

.slide-kicker {
  display: block;
  margin-bottom: 28px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}

.slide-card h3 {
  margin: 0 0 24px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.045em;
}

.slide-card p {
  margin: 0;
  max-width: 320px;
  font-size: 17px;
  line-height: 1.5;
  color: rgba(44,45,51,0.72);
}

.slide-link {
  display: inline-block;
  width: fit-content;
  margin-top: 42px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 17px;
}

.slide-card:nth-child(even) .slide-link {
  margin-left: auto;
  text-align: right;
  padding-right: 2px; /* feines Ausgleichen */
}

/* =========================
   KONTAKT / FINAL
========================= */

.contact-final {
  padding: 150px 0 70px;
  background: var(--blueblack);
  color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-final .eyebrow {
  color: var(--turquoise);
}

.contact-final h2 {
  margin: 0;
  max-width: 640px;
  font-size: clamp(42px, 6vw, 86px);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: -0.06em;
}

.contact-copy p {
  margin: 0 0 28px;
  max-width: 520px;
  font-size: 20px;
  line-height: 1.5;
  color: rgba(255,255,255,0.78);
}

.contact-mail {
  display: inline-block;
  margin: 12px 0 42px;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  border-bottom: 2px solid var(--orange);
}

.contact-mail:hover {
  color: var(--orange);
}

.contact-note {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.22);
  font-size: 17px !important;
  color: rgba(255,255,255,0.62) !important;
}

.contact-note a {
  color: white;
  border-bottom: 1px solid currentColor;
}

.contact-note a:hover {
  color: var(--orange);
}

.site-footer {
  padding: 26px 24px;
  display: flex;
  gap: 24px;
  justify-content: flex-end;
  background: var(--blueblack);
  color: rgba(255,255,255,0.72);
  border-top: 1px solid rgba(255,255,255,0.14);
  font-size: 14px;
}

.site-footer a:hover {
  color: white;
}

/* =========================
   PRODUCT PAGE / COACHING
========================= */

.product-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 52% 48%;
  background: var(--white);
}

.product-hero-copy {
  padding: 150px 8vw 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-hero-copy h1 {
  max-width: 760px;
  margin: 0 0 34px;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: -0.065em;
}

.product-hero-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 0 38px;
  font-size: clamp(21px, 2.2vw, 30px);
  line-height: 1.36;
}

.product-hero-image {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--sand);

  clip-path: polygon(
    0 0,
    100% 0,
    100% 100%,
    var(--tri-x-lg) 100%,
    0 calc(100% - var(--tri-y-lg))
  );
}

.product-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-intro,
.product-method,
.product-process {
  padding: 130px 0;
}

.product-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.product-two-col h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.055em;
}

.product-text p {
  margin: 0 0 24px;
  font-size: 20px;
  line-height: 1.55;
  color: rgba(44,45,51,0.78);
}

.product-list-section {
  padding: 140px 0 160px;
  background: var(--blueblack);
  color: white;
  clip-path: polygon(
    0 0,
    calc(100% - var(--tri-x-lg)) 0,
    100% var(--tri-y-lg),
    100% 100%,
    var(--tri-x-lg) 100%,
    0 calc(100% - var(--tri-y-lg))
  );
}

.product-list-section .eyebrow {
  color: var(--turquoise);
  margin-bottom: 48px;
}

.product-list {
  border-top: 1px solid rgba(255,255,255,0.22);
}

.product-list-item {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr 1.1fr;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,0.22);
  align-items: baseline;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.2s ease;
}

.product-list-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.product-list-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s ease;
}

.product-list-item span {
  color: var(--turquoise);
  font-size: 15px;
}

.product-list-item h3 {
  margin: 0;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.045em;
}

.product-list-item p {
  margin: 0;
  max-width: 520px;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
}

.product-list-item:hover {
  color: var(--orange);
  transform: translateX(14px);
}

.product-list-item:hover p {
  color: white;
}

.product-list-item:hover::after {
  width: 100%;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  border-top: 1px solid var(--line);
}

.process-grid > div {
  padding-top: 34px;
}

.process-grid h3 {
  margin: 0 0 14px;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.process-grid p {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(44,45,51,0.72);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 860px) {
  .hero-c,
  .product-hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 78vh;
    padding: 130px 28px 70px;
  }

  .hero-signal {
  min-height: 22vh;
  clip-path: polygon(
    0 0,
    100% 0,
    100% 100%,
    var(--tri-x-lg) 100%,
    0 calc(100% - var(--tri-y-lg))
  );
}

  .fields-c {
    padding: 130px 0 150px;
    clip-path: polygon(
      0 0,
      calc(100% - var(--tri-x-lg)) 0,
      100% var(--tri-y-lg),
      100% 100%,
      var(--tri-x-lg) 100%,
      0 calc(100% - var(--tri-y-lg))
    );
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 30px 0;
  }

  .field-row h2 {
    font-size: clamp(34px, 11vw, 54px);
  }

  .field-row p {
    font-size: 18px;
    color: rgba(255,255,255,0.82);
  }

  .field-row.is-visible:hover,
  .field-row.is-visible:hover h2,
  .field-row.is-visible:hover p {
    transform: none;
  }

  .approach-about {
    padding: 100px 0;
  }

  .approach-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .approach-photo::after {
    right: 0;
    top: auto;
    bottom: -12px;
    width: 60%;
    height: 2px;
  }

  .latest {
    padding: 100px 0;
  }

  .latest-head {
    display: block;
    margin-bottom: 38px;
  }

  .latest-head h2 {
    font-size: clamp(36px, 11vw, 56px);
  }

  .slider-controls {
    display: none;
  }

  .swipe-hint {
    display: none;
  }

  .swipe-progress {
    display: block;
    width: min(calc(100% - 48px), var(--max));
    margin: -16px auto 24px;
  }

  .progress-line {
    position: relative;
    display: block;
    height: 22px;
  }

  .progress-line::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: rgba(44,45,51,0.18);
    transform: translateY(-50%);
  }

  .progress-fill {
    position: absolute;
    left: 0;
    top: 50%;
    width: var(--slider-progress, 0%);
    height: 1px;
    background: var(--orange);
    transform: translateY(-50%);
    transition: width 0.18s linear;
  }

  .progress-thumb {
    position: absolute;
    top: 50%;
    left: var(--slider-progress, 0%);
    transform: translate(-50%, -50%);
    color: var(--orange);
    font-size: 18px;
    line-height: 1;
    transition:
      left 0.18s linear,
      transform 0.25s ease;
  }

  .progress-thumb.is-start {
    transform: translate(0, -50%);
  }

  .progress-thumb.is-end {
    transform: translate(-100%, -50%);
  }

  .slider-track {
    gap: 18px;
    padding-left: 24px;
    padding-right: 120px;
    scroll-padding-left: 24px;
  }

  .slide-card {
    flex-basis: 70vw;
    min-height: 390px;
    padding: 28px;
    transform: scale(0.94);
    opacity: 0.72;
  }

  .slide-card h3 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .contact-final {
    padding: 110px 0 54px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .contact-copy p {
    font-size: 18px;
  }

  .contact-mail {
    font-size: clamp(30px, 9vw, 42px);
    word-break: break-word;
  }

  .site-footer {
    justify-content: flex-start;
  }

  .product-hero-copy {
    min-height: 72vh;
    padding: 130px 28px 70px;
  }

  .product-hero-image {
    min-height: 36vh;

    clip-path: polygon(
      0 0,
      100% 0,
      100% 100%,
      var(--tri-x-lg) 100%,
      0 calc(100% - var(--tri-y-lg))
    );
  }


  .product-intro,
  .product-method,
  .product-process {
    padding: 90px 0;
  }

  .product-two-col {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .product-text p {
    font-size: 18px;
  }

  .product-list-section {
    padding: 120px 0 140px;
    clip-path: polygon(
      0 0,
      calc(100% - var(--tri-x-lg)) 0,
      100% var(--tri-y-lg),
      100% 100%,
      var(--tri-x-lg) 100%,
      0 calc(100% - var(--tri-y-lg))
    );
  }

  .product-list-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 30px 0;
  }

  .product-list-item h3 {
    font-size: clamp(32px, 10vw, 48px);
  }

  .product-list-item:hover {
    transform: none;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
/* =========================
   PERSON PAGE
========================= */

.person-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--white);
}

.person-hero-inner {
  padding-top: 110px;
  padding-bottom: 100px;
}

.person-hero h1 {
  max-width: 980px;
  margin: 0 0 34px;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: -0.065em;
}

.person-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.35;
}

/* Bild + Fließtext */

.person-intro {
  padding: 140px 0;
  background: var(--white);
}

.person-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.person-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #ddd;
  overflow: hidden;

  clip-path: polygon(
    0 0,
    calc(100% - var(--tri-x-lg)) 0,
    100% var(--tri-y-lg),
    100% 100%,
    0 100%
  );
}

.person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.person-text-flow {
  max-width: 980px;
}

.person-text-flow p {
  margin: 0 0 26px;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: -0.01em;
  color: rgba(44,45,51,0.82);
}

.person-text-flow p + p {
  margin-top: 0;
}

.person-qualifications {
  margin-top: 54px;
  padding-top: 38px;
  border-top: 1px solid rgba(44,45,51,0.12);
}

.person-qualifications ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.person-qualifications li {
  position: relative;
  margin: 0;
  padding: 0 0 18px 22px;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(44,45,51,0.76);
}

.person-qualifications li + li {
  margin-top: 18px;
  border-top: 1px solid rgba(44,45,51,0.08);
  padding-top: 18px;
}

.person-qualifications li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 7px;
  height: 7px;
  background: var(--orange);
  transform: rotate(45deg);
}

/* Statement */

.person-statement {
  padding: 130px 0;
  background: var(--white);
}

/* Mobile */

@media (max-width: 860px) {
  .person-hero {
    min-height: 100vh;
  }

  .person-hero-inner {
    padding-top: 120px;
    padding-bottom: 80px;
  }

  .person-intro,
  .person-statement {
    padding: 90px 0;
  }

  .person-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .person-photo {
    order: -1;
    aspect-ratio: 16 / 11;

    clip-path: polygon(
      0 0,
      calc(100% - var(--tri-x-lg)) 0,
      100% var(--tri-y-lg),
      100% 100%,
      0 100%
    );
  }

  .person-text-flow {
    column-count: 1;
  }

  .person-text-flow p {
    font-size: 18px;
    line-height: 1.6;
  }


}

/* =========================
   SUPERVISION
========================= */

.supervision-list-section {
  padding: 140px 0 160px;
  background: var(--sand);
  color: var(--ink);

  clip-path: polygon(
    0 0,
    calc(100% - var(--tri-x-lg)) 0,
    100% var(--tri-y-lg),
    100% 100%,
    var(--tri-x-lg) 100%,
    0 calc(100% - var(--tri-y-lg))
  );
}

.supervision-list-section .eyebrow {
  color: var(--blueblack);
  margin-bottom: 48px;
}

.supervision-list-section .product-list {
  border-top: 1px solid rgba(44,45,51,0.22);
}

.supervision-list-section .product-list-item {
  border-bottom: 1px solid rgba(44,45,51,0.22);
}

.supervision-list-section .product-list-item span {
  color: var(--orange);
}

.supervision-list-section .product-list-item p {
  color: rgba(44,45,51,0.72);
}

.supervision-list-section .product-list-item:hover {
  color: var(--orange);
}

.supervision-list-section .product-list-item:hover p {
  color: rgba(44,45,51,0.9);
}

/* =========================
   SUPERVISION HERO SIGNAL
========================= */

.supervision-hero-signal {
  min-height: 100vh;
  background: var(--turquoise);
  overflow: hidden;

  clip-path: polygon(
    0 0,
    100% 0,
    100% 100%,
    var(--tri-x-lg) 100%,
    0 calc(100% - var(--tri-y-lg))
  );
}

.supervision-hero-signal span,
.supervision-hero-signal::after {
  display: none;
}

/* =========================
   SUPERVISION MOBILE
========================= */

@media (max-width: 860px) {
  .supervision-list-section {
    padding: 120px 0 140px;

    clip-path: polygon(
      0 0,
      calc(100% - var(--tri-x-lg)) 0,
      100% var(--tri-y-lg),
      100% 100%,
      var(--tri-x-lg) 100%,
      0 calc(100% - var(--tri-y-lg))
    );
  }

  .supervision-list-section .product-list-item {
    padding: 30px 0;
  }

  .supervision-hero-signal {
    min-height: 22vh;

    clip-path: polygon(
      0 0,
      100% 0,
      100% 100%,
      var(--tri-x-lg) 100%,
      0 calc(100% - var(--tri-y-lg))
    );
  }
}
/* =========================
   PROCESS INTRO
========================= */

.process-intro {
  max-width: 640px;
  margin-bottom: 60px;
}

.process-intro .eyebrow {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blueblack);
  margin-bottom: 18px;
}

.process-intro h2 {
  margin: 0 0 18px;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.055em;
}

.process-intro p {
  margin: 0;
  font-size: 20px;
  line-height: 1.55;
  color: rgba(44,45,51,0.78);
}

@media (max-width: 860px) {
  .process-intro {
    margin-bottom: 40px;
  }

  .process-intro .eyebrow {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .process-intro h2 {
    font-size: clamp(34px, 11vw, 54px);
    line-height: 0.98;
  }

  .process-intro p {
    font-size: 18px;
    line-height: 1.6;
  }
}

/* =========================
   TEXTE PAGE
========================= */

.texts-hero {
  min-height: auto;
  display: flex;
  align-items: center;
  background: var(--white);
}

.texts-hero-inner,
.texts-hero-grid {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding-top: 120px;
  padding-bottom: 72px;
}

.texts-hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 52px;
  align-items: center;
}

.texts-hero h1,
.texts-hero-copy h1 {
  max-width: 650px;
  margin: 0 0 34px;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: -0.065em;
}

.texts-hero p:not(.eyebrow),
.texts-hero-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  font-size: clamp(21px, 2.2vw, 30px);
  line-height: 1.36;
}

/* =========================
   BÜCHER
========================= */

.books-section {
  padding: 0 0 145px;
  background: var(--white);
}

.books-section .eyebrow {
  margin-bottom: 52px;
}

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

.book-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  height: auto;
  padding: 34px;
  background: rgba(44,45,51,0.16);
  border: none;
  clip-path: polygon(
    0 0,
    calc(100% - var(--tri-x-md)) 0,
    100% var(--tri-y-md),
    100% 100%,
    0 100%
  );
  transition: background 0.25s ease;
}

.book-card::before {
  content: "";
  position: absolute;
  inset: 1.5px;
  z-index: 0;
  background: var(--white);
  clip-path: inherit;
}

.book-card > * {
  position: relative;
  z-index: 1;
}

.book-card:nth-child(even),
.book-card.book-card-featured {
  clip-path: polygon(
    0 0,
    100% 0,
    100% 100%,
    var(--tri-x-md) 100%,
    0 calc(100% - var(--tri-y-md))
  );
}

.book-card:hover,
.book-card:nth-child(odd):hover,
.book-card:nth-child(even):hover {
  transform: none;
  box-shadow: none;
  background: var(--turquoise);
}

.book-cover {
  width: 70%;
  max-width: 266px;
  aspect-ratio: 3 / 4;
  align-self: center;
  margin: 0 auto 38px;
  background: var(--sand);
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(44,45,51,0.14);
  transition: filter 0.25s ease;
}

.book-card:hover .book-cover {
  filter: saturate(1.04) contrast(1.03);
}

.book-cover {
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 18px;
  background: transparent;
}

.book-cover img {
  display: block;

  width: auto;
  height: auto;

  max-width: 100%;
  max-height: 100%;

  object-fit: contain;
  object-position: center;
}

.book-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.book-content h3 {
  margin: 0 0 18px;
  font-size: clamp(24px, 2vw, 31px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.025em;
  transition:
    color 0.25s ease,
    letter-spacing 0.25s ease;
}

.book-card:hover h3 {
  letter-spacing: -0.03em;
}

.book-content p {
  margin: 0 0 42px;
  font-size: 16px;
  line-height: 1.68;
  color: rgba(44,45,51,0.72);
}

.book-links {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(44,45,51,0.12);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.book-links a {
  font-size: 15px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.book-links a::after {
  content: "↗";
  margin-left: 6px;
  font-size: 0.9em;
}

.book-card:hover .book-links {
  border-top-color: rgba(152,215,198,0.9);
}

.book-card:hover .book-links a {
  color: var(--orange);
  border-color: var(--orange);
}

.book-links a:hover {
  color: var(--orange);
}
/* Hero-Buchkarte Typo fix */
.book-card.book-card-featured .book-content p {
  font-size: 16px;
  line-height: 1.68;
}

/* =========================
   PUBLIKATIONEN
========================= */

.publications-section {
  padding: 140px 0 150px;
  background: var(--sand);
  color: var(--ink);
  clip-path: polygon(
    0 0,
    calc(100% - var(--tri-x-lg)) 0,
    100% var(--tri-y-lg),
    100% 100%,
    var(--tri-x-lg) 100%,
    0 calc(100% - var(--tri-y-lg))
  );
}

.publications-section .eyebrow {
  margin-bottom: 48px;
}

.pub-year {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  padding: 38px 0;
  border-top: 1px solid rgba(44,45,51,0.22);
}

.pub-year:last-child {
  border-bottom: 1px solid rgba(44,45,51,0.22);
}

.pub-year-label {
  font-size: 15px;
  color: var(--orange);
}

.pub-list {
  display: grid;
  gap: 18px;
}

.pub-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
}

.pub-item p {
  margin: 0;
  max-width: 820px;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(44,45,51,0.78);
}

.pub-item a {
  font-size: 15px;
  border-bottom: 1px solid currentColor;
  white-space: nowrap;
}

.pub-item a:hover {
  color: var(--orange);
}

/* =========================
   MOBILE – TEXTE PAGE
========================= */

@media (max-width: 860px) {
  .texts-hero {
    min-height: auto;
  }

  .texts-hero-inner,
  .texts-hero-grid {
    width: min(calc(100% - 68px), var(--max));
    padding-top: 128px;
    padding-bottom: 64px;
  }

  .texts-hero-grid {
    grid-template-columns: 1fr;
    gap: 72px;
    align-items: start;
  }

  .texts-hero h1,
  .texts-hero-copy h1 {
    max-width: 100%;
    margin-bottom: 28px;
    font-size: clamp(46px, 13vw, 68px);
    line-height: 0.94;
    letter-spacing: -0.045em;
  }

  .texts-hero p:not(.eyebrow),
  .texts-hero-copy p:not(.eyebrow) {
    font-size: 21px;
    line-height: 1.42;
  }

  .texts-hero .book-card,
  .texts-hero .book-card-featured {
    margin-top: 10px;
  }

  .books-section {
    padding: 0 0 110px;
  }

  .books-section .eyebrow {
    margin-bottom: 34px;
  }

  .books-grid {
    grid-template-columns: 1fr;
    gap: 72px;
  }

  .book-card {
    padding: 26px;
  }

  .book-cover {
    width: 73%;
    max-width: 238px;
    margin-bottom: 30px;
    box-shadow: 0 14px 28px rgba(44,45,51,0.14);
  }

  .book-content h3 {
    font-size: 27px;
  }

  .book-content p {
    font-size: 16.5px;
    line-height: 1.6;
    margin-bottom: 34px;
  }

  .book-links {
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    padding-top: 22px;
  }

  .publications-section {
    padding: 120px 0 140px;
    clip-path: polygon(
      0 0,
      calc(100% - var(--tri-x-lg)) 0,
      100% var(--tri-y-lg),
      100% 100%,
      var(--tri-x-lg) 100%,
      0 calc(100% - var(--tri-y-lg))
    );
  }

  .pub-year {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 32px 0;
  }

  .pub-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .pub-item p {
    font-size: 15.5px;
  }
}

@media (max-width: 860px) {
  :root {
    --tri-x-lg: 26px;
    --tri-y-lg: 70px;

    --tri-x-md: 24px;
    --tri-y-md: 64px;

    --tri-x-sm: 20px;
    --tri-y-sm: 54px;
  }

  .fields-c {
    padding: calc(var(--tri-y-lg) + 36px) 0 120px;
  }
}



/* =========================
   WEITERBILDUNG PAGE
========================= */

.education-hero-split {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 58% 42%;
  background: var(--white);
}

.education-hero-copy {
  padding: 160px 8vw 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.education-hero-copy h1 {
  max-width: 760px;
  margin: 0 0 32px;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.92;
  font-weight: 500;
  letter-spacing: -0.05em;
}

.education-hero-copy p:not(.eyebrow) {
  max-width: 600px;
  margin: 0;
  font-size: clamp(21px, 2.2vw, 30px);
  line-height: 1.4;
}

.education-hero-signal {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 80px;
  box-sizing: border-box;
  background: var(--orange);
  color: var(--blueblack);
  clip-path: polygon(
    0 0,
    100% 0,
    100% 100%,
    var(--tri-x-lg) 100%,
    0 calc(100% - var(--tri-y-lg))
  );
}

.education-hero-signal span {
  max-width: 360px;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: -0.05em;
}

/* Programme */

.education-programs {
  padding: 130px 0 150px;
  background: var(--white);
}

.education-section-head {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 52px;
  align-items: end;
  margin-bottom: 56px;
}

.education-section-head h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.055em;
}

.program-list {
  display: grid;
  gap: 42px;
}

.program-card {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 52px;
  align-items: start;
  padding: 44px;
  background: rgba(44,45,51,0.16);
  clip-path: polygon(
    0 0,
    calc(100% - var(--tri-x-md)) 0,
    100% var(--tri-y-md),
    100% 100%,
    0 100%
  );
  transition: background 0.25s ease;
}

.program-card::before {
  content: "";
  position: absolute;
  inset: 1.5px;
  z-index: 0;
  background: var(--white);
  clip-path: inherit;
}

.program-card:nth-child(even) {
  clip-path: polygon(
    0 0,
    100% 0,
    100% 100%,
    var(--tri-x-md) 100%,
    0 calc(100% - var(--tri-y-md))
  );
}

.program-card > * {
  position: relative;
  z-index: 1;
}

.program-card:hover {
  background: var(--turquoise);
}

.program-logo {
  width: 100%;
  aspect-ratio: 4 / 3;

  display: flex;
  align-items: center;
  justify-content: center;
  align-self: start;

  box-sizing: border-box;
  padding: 12px 0;

  background: transparent;
  border: none;
  box-shadow: none;
}

.program-logo span {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 82px;

  border: none;

  color: rgba(44,45,51,0.46);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.program-logo img {
  display: block;

  width: auto;
  max-width: 220px;
  max-height: 88px;

  object-fit: contain;
  object-position: center;
}

.program-meta {
  display: block;
  margin-bottom: 18px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}

.program-content h3 {
  max-width: 760px;
  margin: 0 0 22px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.045em;
}

.program-content p {
  max-width: 820px;
  margin: 0 0 42px;
  font-size: 18px;
  line-height: 1.68;
  color: rgba(44,45,51,0.76);
}

.program-bottom {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 56px;
  align-items: end;
  padding-top: 32px;
  border-top: 1px solid rgba(44,45,51,0.14);
}

.program-facts {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.program-facts div {
  display: flex;
  gap: 8px;
  align-items: baseline;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(44,45,51,0.12);
}

.program-facts dt {
  margin: 0;
  min-width: 88px;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 400;
  color: rgba(44,45,51,0.64);
}

.program-facts dt::after {
  content: ":";
}

.program-facts dd {
  margin: 0;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 550;
  color: var(--blueblack);
}

.program-dates {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  text-align: right;
}

.program-dates span {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  line-height: 1.3;
  color: rgba(44,45,51,0.62);
}

.program-dates span::after {
  content: ":";
}

.program-dates strong {
  display: block;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 550;
  color: var(--ink);
}

.program-link {
  display: inline-block;
  width: fit-content;
  margin-top: 4px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  font-size: 16px;
}

.program-link::after {
  content: "↗";
  margin-left: 6px;
  font-size: 0.9em;
}

.program-link:hover {
  color: var(--orange);
}

/* Seminare */

.seminars-section {
  padding: 140px 0 150px;
  background: var(--turquoise);
  color: var(--blueblack);
  clip-path: polygon(
    0 0,
    calc(100% - var(--tri-x-lg)) 0,
    100% var(--tri-y-lg),
    100% 100%,
    var(--tri-x-lg) 100%,
    0 calc(100% - var(--tri-y-lg))
  );
}

.seminars-section .eyebrow {
  color: var(--blueblack);
}

.seminar-list {
  border-top: 1px solid rgba(44,45,51,0.24);
}

.seminar-row {
  display: grid;
  grid-template-columns: 132px 1fr auto;
  gap: 34px;
  align-items: center;
  padding: 34px 0;
  border-bottom: 1px solid rgba(44,45,51,0.24);
}

.seminar-row time {
  display: block;
  color: var(--orange);
}

.seminar-row time span {
  display: block;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: -0.06em;
}

.seminar-row time small {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(44,45,51,0.68);
}

.seminar-row h3 {
  margin: 0 0 8px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.seminar-row p {
  max-width: 720px;
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(44,45,51,0.76);
}

.seminar-row strong {
  font-size: 15px;
  font-weight: 400;
  border-bottom: 1px solid currentColor;
}

.seminar-row:hover h3,
.seminar-row:hover strong {
  color: var(--orange);
}

.past-events {
  margin-top: 40px;
}

.past-events summary {
  width: fit-content;
  margin: 0 auto;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 0;
  font-size: 17px;
  text-align: center;
  color: var(--blueblack);
  border-bottom: 1px solid currentColor;
}

.past-events summary::-webkit-details-marker {
  display: none;
}

.past-events summary::before,
.past-events summary::after {
  content: "↓";
  color: var(--orange);
  font-size: 18px;
  line-height: 1;
}

.past-events[open] summary::before,
.past-events[open] summary::after {
  content: "↑";
}

.seminar-list-past {
  margin-top: 34px;
  opacity: 0.72;
  border-top: 1px solid rgba(44,45,51,0.24);
}

/* Moodle */

.moodle-section {
  padding: 130px 0;
  background: var(--white);
}

.moodle-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-top: 56px;
  border-top: 1px solid var(--line);
}

.moodle-card h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.055em;
}

.moodle-copy p {
  margin: 0 0 32px;
  max-width: 560px;
  font-size: 20px;
  line-height: 1.55;
  color: rgba(44,45,51,0.76);
}

.moodle-link {
  display: inline-block;
  padding: 13px 18px;
  border: 1px solid var(--ink);
  font-size: 17px;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.moodle-link:hover {
  background: var(--turquoise);
  border-color: var(--turquoise);
}

/* Mobile Weiterbildung */

@media (max-width: 860px) {
  .education-hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .education-hero-copy {
    min-height: 70vh;
    padding: 128px 34px 74px;
  }

  .education-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(46px, 13vw, 68px);
    line-height: 0.94;
    letter-spacing: -0.045em;
  }

  .education-hero-copy p:not(.eyebrow) {
    font-size: 21px;
    line-height: 1.42;
  }

  .education-hero-signal {
    min-height: 26vh;
    padding: 34px;
  }

  .education-hero-signal span {
    font-size: clamp(30px, 9vw, 42px);
  }

  .education-programs {
    padding: 96px 0 110px;
  }

  .education-section-head {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 38px;
  }

  .education-section-head h2 {
    font-size: clamp(34px, 11vw, 54px);
  }

  .program-list {
    gap: 30px;
  }

  .program-card {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 28px;
  }

  .program-logo {
    width: 190px;
    max-width: 76%;
    padding: 22px;
  }

  .program-logo span {
    min-height: 72px;
  }

  .program-content h3 {
    font-size: clamp(30px, 9vw, 44px);
  }

  .program-content p {
    font-size: 17px;
    line-height: 1.64;
  }

  .program-bottom {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .program-facts {
    gap: 14px;
  }

  .program-facts div {
    padding-bottom: 14px;
  }

  .program-facts dt {
    min-width: 82px;
    font-size: 14px;
  }

  .program-facts dd {
    font-size: 16.5px;
  }

  .program-dates {
    align-items: flex-start;
    text-align: left;
  }

  .seminars-section {
    padding: 120px 0 140px;
  }

  .seminar-row {
    grid-template-columns: 86px 1fr;
    gap: 22px;
    padding: 30px 0;
  }

  .seminar-row strong {
    grid-column: 2;
    width: fit-content;
  }

  .seminar-row time span {
    font-size: 48px;
  }

  .seminar-row h3 {
    font-size: clamp(28px, 9vw, 42px);
  }

  .past-events summary {
    font-size: 16px;
    gap: 10px;
  }

  .moodle-section {
    padding: 96px 0 110px;
  }

  .moodle-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 38px;
  }

  .moodle-card h2 {
    font-size: clamp(34px, 11vw, 54px);
  }

  .moodle-copy p {
    font-size: 18px;
    line-height: 1.6;
  }
}


/* =========================
   PATCH: PAGE WIDTH + START SLIDER
========================= */

.latest {
  padding: 150px 0 140px;
  overflow: hidden;
}

.latest-head {
  display: block;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto 38px;
}

.latest-head > div:first-child {
  max-width: 720px;
}

.latest-slider {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  overflow: visible;
  padding: 26px 0 8px;
}

.slider-track {
  padding-left: 0;
  padding-right: 0;
  padding-top: 22px;
  padding-bottom: 32px;
  scroll-padding-left: 0;
}

.slider-controls {
  width: min(calc(100% - 48px), var(--max));
  margin: 24px auto 0;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.slide-card {
  transform-origin: center center;
}

@media (max-width: 860px) {
  .latest {
    padding: 100px 0;
  }

  .latest-head {
    width: min(calc(100% - 48px), var(--max));
    margin: 0 auto 32px;
  }

  .latest-slider {
    width: 100%;
    margin: 0;
    overflow: hidden;
    padding: 0;
  }

  .slider-track {
    padding-left: 24px;
    padding-right: 120px;
    padding-top: 12px;
    padding-bottom: 24px;
    scroll-padding-left: 24px;
  }

  .slider-controls {
    display: none;
  }
}
/* =========================
   DESKTOP NAV (kein Burger)
========================= */

@media (min-width: 1080px) {
  .menu-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    transform: none;
    width: auto;
    max-height: none;
    overflow: visible;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 0;
  }

  .menu-panel {
    padding: 0;
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .menu-simple-link {
    padding: 0;
    border-bottom: 1px solid transparent;
    font-size: 15px;
    font-weight: 400;
  }

  .menu-simple-link:hover {
    color: var(--orange);
    border-bottom-color: var(--orange);
  }

  .menu-contact {
    margin-left: 8px;
    padding: 8px 12px;
    font-size: 15px;
  }
}

/* =========================
   WORDPRESS INTEGRATION
========================= */
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }

img { max-width: 100%; height: auto; }

.menu-panel { list-style: none; margin: 0; }
.menu-panel li { margin: 0; }
.menu-panel a { display: block; }

.menu-external::after {
  content: "↗";
  margin-left: 8px;
  font-size: 0.72em;
  color: var(--orange);
}

.menu-contact {
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.menu-contact:hover {
  background: var(--turquoise);
  border-color: var(--turquoise);
  color: var(--blueblack);
}

.external-arrow {
  color: var(--turquoise);
  font-size: 0.52em !important;
  line-height: 1;
  vertical-align: 0.38em;
  letter-spacing: 0;
}

.field-row-external:hover .external-arrow { color: var(--orange); }

.logo-placeholder,
.book-placeholder {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(44,45,51,0.58);
}

.empty-state {
  padding: 32px 0;
  color: rgba(44,45,51,0.72);
}

.product-text ul,
.product-text ol {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(44,45,51,0.78);
}

@media (min-width: 1080px) {
  .menu-toggle { display: none; }

  .main-nav {
    position: static;
    transform: none;
    width: auto;
    max-height: none;
    overflow: visible;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 0;
  }

  .main-nav.is-open { transform: none; }

  .menu-panel {
    padding: 0;
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .menu-panel li { display: block; }

  .menu-simple-link {
    padding: 0;
    border-bottom: 1px solid transparent;
    font-size: 15px;
    font-weight: 400;
  }

  .menu-simple-link:hover {
    color: var(--orange);
    border-bottom-color: var(--orange);
  }

  .menu-contact {
    margin: 0 0 0 6px;
    padding: 8px 12px;
    font-size: 15px;
  }
}


/* =========================
   ACF HERO VARIANTS
   Rechte Hero-Fläche ohne Bild
========================= */

.product-hero-image.hero-variant-turquoise {
  background: var(--turquoise);
}

.product-hero-image.hero-variant-orange {
  background: var(--orange);
}

.product-hero-image.hero-variant-sand {
  background: var(--sand);
}

.product-hero-image.hero-variant-turquoise img,
.product-hero-image.hero-variant-orange img,
.product-hero-image.hero-variant-sand img {
  display: none;
}


/* =========================
   V2: TEXTS / BOOKS REFINEMENT
========================= */

.books-section-head,
.publications-section-head {
  margin-bottom: 52px;
}

.books-section-head h2,
.publications-section-head h2 {
  max-width: 760px;
  margin: 0 0 22px;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.055em;
}

.books-section-head p:not(.eyebrow),
.publications-section-head p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  font-size: 19px;
  line-height: 1.55;
  color: rgba(44,45,51,0.76);
}

.book-cover {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.book-cover img {
  width: auto;
  height: auto;

  max-width: 100%;
  max-height: 100%;

  object-fit: contain;
  object-position: center;
}

.book-description {
  margin: 0 0 42px;
}

.book-description p {
  margin: 0;
}

.book-content .book-description p {
  margin-bottom: 0;
}

.book-readmore {
  display: inline-block;
  margin-top: 12px;
  padding: 0 0 2px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--orange);
  font: inherit;
  font-size: 15px;
  cursor: pointer;
}

.book-readmore:hover {
  color: var(--ink);
}

@media (max-width: 860px) {
  .books-section-head,
  .publications-section-head {
    margin-bottom: 34px;
  }

  .books-section-head h2,
  .publications-section-head h2 {
    font-size: clamp(34px, 11vw, 54px);
  }

  .books-section-head p:not(.eyebrow),
  .publications-section-head p:not(.eyebrow) {
    font-size: 18px;
    line-height: 1.6;
  }
}
