/* =========================================
   HEADER
========================================= */

.site-header {
  position: fixed;
  top: 18px;
  left: 0;

  width: 100%;
  z-index: 1000;
}

.navbar {
  min-height: 72px;
  padding: 10px 14px 10px 28px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;

  border-radius: var(--radius-pill);

  transition:
    min-height var(--transition),
    background var(--transition),
    box-shadow var(--transition);
}

.brand {
  min-width: 150px;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-main {
  color: var(--green-900);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.brand-sub {
  margin-top: 7px;

  color: var(--gold-600);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
}

.nav-links a {
  position: relative;

  color: var(--text);
  font-size: 0.84rem;
  font-weight: 600;

  transition: color var(--transition);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;

  width: 100%;
  height: 1px;

  background: var(--gold-600);

  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.nav-links a:hover {
  color: var(--green-800);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  min-height: 48px;
  padding-inline: 22px;
}

.menu-button {
  display: none;

  width: 46px;
  height: 46px;

  background: var(--green-900);
  border-radius: 50%;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--white);
}

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

.hero {
  position: relative;
  padding: 112px 0 0;

  background:
    radial-gradient(
      circle at 10% 48%,
      rgba(211, 171, 116, 0.12),
      transparent 30%
    ),
    var(--soft-white);
}

.hero-shell {
  min-height: 710px;

  display: grid;
  grid-template-columns:
  minmax(0, 0.86fr)
  minmax(0, 1.14fr);

  overflow: hidden;

  background: var(--white);
  border: 1px solid rgba(15, 47, 38, 0.08);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  box-shadow: var(--shadow-card);
}
.hero-shell {
  overflow: hidden;

  border-radius: 34px;

  background: var(--soft-white);

  box-shadow:
    0 30px 80px rgba(14, 42, 31, 0.08);
}

.hero-copy {
  position: relative;
  z-index: 2;

  padding: clamp(80px, 8vw, 120px) clamp(48px, 6vw, 82px) 48px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  background:
    radial-gradient(
      circle at 18% 18%,
      rgba(242, 230, 210, 0.52),
      transparent 34%
    ),
    var(--soft-white);
}

.hero-copy::after {
  content: "J";

  position: absolute;
  right: 45px;
  top: 38%;

  color: rgba(184, 144, 78, 0.08);
  font-size: 11rem;
  font-family: Georgia, serif;
  line-height: 1;

  pointer-events: none;
}

.hero-copy h1 {
  max-width: 650px;
}

.hero-lead {
  max-width: 480px;
  margin-top: 24px;

  color: var(--text);
  font-size: var(--body-lg);
  line-height: 1.55;
}

.hero-actions {
  margin-top: 34px;

  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-mini-benefits {
  margin-top: 50px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hero-mini-benefits > div {
  display: flex;
  align-items: center;
  gap: 11px;
}

.mini-icon {
  width: 34px;
  height: 34px;

  display: grid;
  place-items: center;

  flex: 0 0 auto;

  color: var(--green-800);
  border: 1px solid rgba(31, 89, 70, 0.22);
  border-radius: 50%;
}

.hero-mini-benefits p {
  font-size: 0.73rem;
  line-height: 1.35;
}

.hero-mini-benefits strong {
  display: block;
  color: var(--ink);
  font-size: 0.76rem;
}

/* =========================================
   HERO FOTO
========================================= */

.hero-media {
  position: relative;
  min-height: 720px;

  overflow: hidden;

  background-color: var(--soft-white);
}

/* Weicher Übergang zur linken Textseite */

.hero-media::after {
  content: "";

  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(
      90deg,
      var(--soft-white) 0%,
      rgba(251, 250, 247, 0.78) 5%,
      rgba(251, 250, 247, 0.38) 12%,
      rgba(251, 250, 247, 0.10) 20%,
      rgba(251, 250, 247, 0) 28%
    );

  pointer-events: none;
}

.hero-placeholder {
  position: absolute;
  inset: 0;

  display: grid;
  place-content: center;
  gap: 7px;

  color: var(--green-900);
  text-align: center;
}

.hero-placeholder strong {
  font-size: 1.8rem;
}

.hero-placeholder span {
  color: var(--green-700);
}

/*
  Sobald ein echtes Bild vorhanden ist:
  .hero-placeholder { display: none; }
*/

.hero-overlay {
  position: absolute;
  right: 34px;
  bottom: 46px;

  min-width: 260px;
  padding: 20px 24px;

  display: flex;
  align-items: center;
  gap: 18px;

  border-radius: var(--radius-md);
  color: var(--white);
  background: rgba(15, 47, 38, 0.38);
}

.overlay-monogram {
  padding-right: 18px;

  color: var(--gold-300);
  font-family: Georgia, serif;
  font-size: 3.1rem;
  line-height: 1;

  border-right: 1px solid rgba(211, 171, 116, 0.46);
}

.hero-overlay strong,
.hero-overlay span {
  display: block;
}

.hero-overlay strong {
  color: var(--white);
  font-size: 1.05rem;
}

.hero-overlay span:not(.overlay-monogram) {
  color: rgba(255, 255, 255, 0.82);
}

/* =========================================
   IDENTIFICATION
========================================= */

.identity-section {
  position: relative;

  background:
    radial-gradient(
      circle at 84% 20%,
      rgba(220, 232, 223, 0.65),
      transparent 28%
    ),
    var(--soft-white);
}

.identity-header {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.65fr);
  gap: 80px;
  align-items: end;
}

.identity-header h2 {
  max-width: 820px;
}

.identity-intro {
  padding-bottom: 8px;

  font-size: 1.08rem;
  line-height: 1.75;
}

.identity-grid {
  margin-top: 68px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.identity-card {
  position: relative;
  min-height: 520px;
  padding: 30px;

  display: flex;
  flex-direction: column;

  overflow: hidden;

  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);

  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.identity-card:hover {
  transform: translateY(-10px);
  border-color: rgba(184, 144, 78, 0.34);
  box-shadow: var(--shadow-card);
}

.identity-card:hover .icon-circle {
  color: var(--white);
  background: var(--green-800);
  transform: rotate(-5deg) scale(1.06);
}

.identity-card-featured {
  background:
    radial-gradient(
      circle at 80% 15%,
      rgba(211, 171, 116, 0.18),
      transparent 30%
    ),
    var(--white);
}

.identity-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-number {
  color: var(--gold-700);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.identity-card h3 {
  margin-top: 36px;

  color: var(--ink);
  font-size: clamp(1.55rem, 2.2vw, 2.25rem);
  line-height: 1.12;
}

.identity-card p {
  margin-top: 20px;

  font-size: 0.98rem;
  line-height: 1.7;
}

.card-visual {
  position: relative;

  min-height: 160px;
  margin-top: auto;

  overflow: hidden;

  background: var(--warm-white);
  border-radius: 24px;
}

.card-visual::before,
.card-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.visual-structure::before {
  width: 150px;
  height: 150px;
  right: -25px;
  bottom: -35px;
  background: rgba(31, 89, 70, 0.18);
}

.visual-structure::after {
  width: 90px;
  height: 90px;
  left: 30px;
  top: 28px;
  border: 1px solid rgba(184, 144, 78, 0.46);
}

.visual-balance::before {
  width: 190px;
  height: 190px;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  background: var(--green-gradient);
  opacity: 0.88;
}

.visual-balance::after {
  width: 112px;
  height: 112px;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(211, 171, 116, 0.76);
}

.visual-progress::before {
  width: 220px;
  height: 220px;
  left: -70px;
  bottom: -120px;
  background: rgba(211, 171, 116, 0.34);
}

.visual-progress::after {
  width: 180px;
  height: 1px;
  right: 28px;
  top: 50%;
  background: var(--gold-gradient);
  transform: rotate(-18deg);
}
.hero-title {
  max-width: 720px;
  font-size: clamp(3.5rem, 5vw, 5.25rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.hero-title > span {
  display: block;
}

.hero-title-accent {
  color: var(--green-800);
}
.navbar.glass {
  background: rgba(251, 250, 247, 0.7);

  border: 1px solid rgba(255, 255, 255, 0.82);

  backdrop-filter:
    blur(30px)
    saturate(135%);

  -webkit-backdrop-filter:
    blur(30px)
    saturate(135%);

  box-shadow:
    0 20px 65px rgba(15, 47, 38, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
/* =========================================
   JOURNEY / COACHING PROCESS
========================================= */

.journey-section {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 92% 10%,
      rgba(220, 232, 223, 0.75),
      transparent 28%
    ),
    radial-gradient(
      circle at 8% 90%,
      rgba(242, 230, 210, 0.7),
      transparent 30%
    ),
    var(--soft-white);
}

.journey-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: 80px;
  align-items: end;
}

.journey-header h2 {
  max-width: 760px;
}

.journey-intro {
  padding-bottom: 8px;

  font-size: 1.08rem;
  line-height: 1.75;
}

.journey-shell {
  margin-top: 68px;

  overflow: hidden;

  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);

  box-shadow: var(--shadow-card);
}

.journey-steps {
  position: relative;

  display: grid;
  grid-template-columns: repeat(5, 1fr);

  padding: 26px 28px;

  background: rgba(251, 250, 247, 0.84);
  border-bottom: 1px solid var(--border);
}

.journey-steps::before {
  content: "";

  position: absolute;
  top: 52px;
  left: 10%;
  right: 10%;

  height: 1px;

  background: rgba(15, 47, 38, 0.16);
}

.journey-step {
  position: relative;
  z-index: 2;

  display: grid;
  justify-items: center;
  gap: 13px;

  padding: 0 10px;

  color: var(--text-muted);
  background: transparent;

  text-align: center;

  transition:
    color var(--transition),
    transform var(--transition);
}

.journey-step:hover {
  color: var(--green-800);
  transform: translateY(-3px);
}

.journey-step-number {
  width: 52px;
  height: 52px;

  display: grid;
  place-items: center;

  color: var(--green-900);
  background: var(--soft-white);

  border: 1px solid rgba(15, 47, 38, 0.2);
  border-radius: 50%;

  font-size: 0.96rem;
  font-weight: 800;

  box-shadow: 0 8px 24px rgba(15, 47, 38, 0.08);

  transition:
    color var(--transition),
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.journey-step strong,
.journey-step small {
  display: block;
}

.journey-step strong {
  color: var(--ink);
  font-size: 0.9rem;
}

.journey-step small {
  margin-top: 4px;

  color: var(--text-muted);
  font-size: 0.72rem;
  line-height: 1.35;
}

.journey-step.is-active .journey-step-number {
  color: var(--white);

  background: var(--green-gradient);
  border-color: transparent;

  box-shadow:
    0 14px 34px rgba(15, 47, 38, 0.26),
    0 0 0 6px rgba(31, 89, 70, 0.08);

  transform: scale(1.08);
}

.journey-step.is-active strong {
  color: var(--green-800);
}

.journey-detail {
  min-height: 540px;
  padding: 58px;

  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  gap: 70px;
  align-items: center;
}

.journey-detail-copy {
  max-width: 560px;
}

.journey-detail-label {
  display: inline-flex;

  margin-bottom: 20px;

  color: var(--gold-700);

  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.journey-detail-copy h3 {
  max-width: 540px;

  font-size: clamp(2.1rem, 3.3vw, 3.5rem);
}

.journey-detail-copy > p {
  margin-top: 24px;

  font-size: 1.04rem;
  line-height: 1.75;
}

.journey-list {
  margin: 28px 0 34px;
  padding: 0;

  display: grid;
  gap: 13px;

  list-style: none;
}

.journey-list li {
  position: relative;
  padding-left: 30px;

  color: var(--text);
  font-size: 0.95rem;
}

.journey-list li::before {
  content: "✓";

  position: absolute;
  left: 0;
  top: 1px;

  width: 20px;
  height: 20px;

  display: grid;
  place-items: center;

  color: var(--green-800);
  background: var(--green-100);

  border-radius: 50%;

  font-size: 0.72rem;
  font-weight: 800;
}

.journey-visual {
  position: relative;
  min-height: 410px;

  padding: 36px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  overflow: hidden;

  background:
    linear-gradient(
      145deg,
      rgba(242, 230, 210, 0.7),
      rgba(220, 232, 223, 0.72)
    );

  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
}

.journey-glow {
  position: absolute;
  width: 330px;
  height: 330px;

  right: -100px;
  top: -120px;

  background: rgba(184, 144, 78, 0.2);
  border-radius: 50%;

  filter: blur(30px);
}

.progress-card {
  position: relative;
  z-index: 2;

  padding: 28px;

  border-radius: var(--radius-md);
}

.progress-card-header,
.progress-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.progress-card-header span {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
}

.progress-card-header strong {
  color: var(--green-800);
  font-size: 1.35rem;
}

.progress-track {
  height: 9px;
  margin: 22px 0 13px;

  overflow: hidden;

  background: rgba(15, 47, 38, 0.11);
  border-radius: var(--radius-pill);
}

.progress-value {
  display: block;
  height: 100%;

  background: var(--gold-gradient);
  border-radius: inherit;

  box-shadow: 0 4px 14px rgba(184, 144, 78, 0.28);

  transition: width 600ms var(--ease-premium);
}

.progress-status span {
  color: var(--text-muted);
  font-size: 0.76rem;
  font-weight: 600;
}

.journey-mini-grid {
  position: relative;
  z-index: 2;

  margin-top: 18px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.journey-mini-card {
  min-height: 145px;
  padding: 19px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 20px;

  box-shadow: 0 14px 38px rgba(15, 47, 38, 0.08);

  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.journey-mini-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(15, 47, 38, 0.13);
}

.journey-mini-card-dark {
  color: var(--white);
  background: var(--green-gradient);
}

.journey-mini-icon {
  margin-bottom: auto;

  color: var(--gold-600);
  font-size: 0.72rem;
  font-weight: 800;
}

.journey-mini-card strong,
.journey-mini-card small {
  display: block;
}

.journey-mini-card strong {
  color: var(--ink);
  font-size: 0.88rem;
}

.journey-mini-card small {
  margin-top: 5px;

  color: var(--text-muted);
  font-size: 0.68rem;
  line-height: 1.4;
}

.journey-mini-card-dark strong {
  color: var(--white);
}

.journey-mini-card-dark small {
  color: rgba(255, 255, 255, 0.7);
}
.journey-step {
  cursor: pointer;
  pointer-events: auto;
}

.journey-step:focus-visible {
  outline: 2px solid var(--gold-600);
  outline-offset: 5px;
}
/* =========================================
   PRINCIPLES / WHAT MAKES JUJO DIFFERENT
========================================= */

.principles-section {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 8% 18%,
      rgba(242, 230, 210, 0.72),
      transparent 28%
    ),
    radial-gradient(
      circle at 88% 78%,
      rgba(220, 232, 223, 0.58),
      transparent 30%
    ),
    var(--soft-white);
}

.principles-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: 80px;
  align-items: end;
}

.principles-header h2 {
  max-width: 760px;
}

.principles-intro {
  padding-bottom: 8px;
  font-size: 1.08rem;
  line-height: 1.75;
}

.principles-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.principle-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(260px, 0.9fr);
  align-items: stretch;

  min-height: 230px;

  overflow: hidden;

  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: var(--shadow-soft);

  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.principle-card:hover {
  transform: translateY(-8px);
  border-color: rgba(184, 144, 78, 0.36);
  box-shadow: var(--shadow-card);
}

.principle-content {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.principle-icon {
  width: 58px;
  height: 58px;

  display: grid;
  place-items: center;

  margin-bottom: 22px;

  color: var(--white);
  background: var(--green-gradient);
  border-radius: 50%;

  box-shadow:
    0 14px 34px rgba(15, 47, 38, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);

  transition:
    transform var(--transition),
    background var(--transition);
}

.principle-icon svg {
  width: 24px;
  height: 24px;
}

.principle-card:hover .principle-icon {
  transform: scale(1.06) rotate(-4deg);
}

.principle-content h3 {
  margin: 0;
  max-width: 290px;

  color: var(--ink);
  font-size: 2rem;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.principle-content p {
  max-width: 300px;
  margin-top: 16px;

  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
}

.principle-link {
  display: inline-flex;
  margin-top: auto;
  padding-top: 18px;

  color: var(--green-900);
  font-size: 1.5rem;
  line-height: 1;

  transition:
    color var(--transition),
    transform var(--transition);
}

.principle-card:hover .principle-link {
  color: var(--gold-700);
  transform: translateX(6px);
}

.principle-media {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  background: var(--warm-white);
}

/* Karte 1 */
.principle-media-plant {
  background:
    linear-gradient(
      90deg,
      rgba(251, 250, 247, 0.16),
      rgba(251, 250, 247, 0.72)
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(31, 89, 70, 0.15),
      transparent 28%
    ),
    linear-gradient(135deg, #edf4ee, #f7f2e8);
}

.principle-media-plant::before,
.principle-media-plant::after {
  content: "";
  position: absolute;
}

.principle-media-plant::before {
  width: 170px;
  height: 170px;
  right: -32px;
  bottom: -54px;

  background: rgba(31, 89, 70, 0.2);
  border-radius: 50%;
}

.principle-media-plant::after {
  width: 160px;
  height: 1px;
  right: 42px;
  bottom: 88px;

  background: rgba(184, 144, 78, 0.45);
  transform: rotate(-28deg);
}

/* Karte 2 */
.principle-media-notes {
  background:
    linear-gradient(
      90deg,
      rgba(251, 250, 247, 0.78),
      rgba(251, 250, 247, 0.12)
    ),
    radial-gradient(
      circle at 78% 26%,
      rgba(211, 171, 116, 0.2),
      transparent 32%
    ),
    linear-gradient(135deg, #f4efe6, #ffffff);
}

.principle-media-notes::before,
.principle-media-notes::after {
  content: "";
  position: absolute;
}

.principle-media-notes::before {
  width: 180px;
  height: 130px;
  right: 36px;
  top: 34px;

  background:
    repeating-linear-gradient(
      to bottom,
      rgba(15, 47, 38, 0.1) 0,
      rgba(15, 47, 38, 0.1) 1px,
      transparent 1px,
      transparent 17px
    ),
    rgba(255, 255, 255, 0.56);

  border: 1px solid rgba(15, 47, 38, 0.08);
  border-radius: 16px;
  transform: rotate(-8deg);

  box-shadow: 0 18px 42px rgba(15, 47, 38, 0.1);
}

.principle-media-notes::after {
  width: 62px;
  height: 62px;
  right: 62px;
  top: 58px;

  border: 1px solid rgba(184, 144, 78, 0.54);
  border-radius: 50%;
}

/* Karte 3 */
.principle-media-stones {
  background:
    linear-gradient(
      90deg,
      rgba(251, 250, 247, 0.12),
      rgba(251, 250, 247, 0.72)
    ),
    radial-gradient(
      circle at 78% 74%,
      rgba(31, 89, 70, 0.18),
      transparent 30%
    ),
    linear-gradient(135deg, #eef3ee, #f4efe6);
}

.principle-media-stones::before,
.principle-media-stones::after {
  content: "";
  position: absolute;
}

.principle-media-stones::before {
  width: 132px;
  height: 132px;
  right: 58px;
  bottom: -36px;

  background: rgba(21, 63, 50, 0.22);
  border-radius: 50%;
}

.principle-media-stones::after {
  width: 170px;
  height: 1px;
  right: 34px;
  top: 100px;

  background: var(--gold-gradient);
  transform: rotate(-14deg);
}
/* =========================================
   PRINCIPLES – SCROLLING CARD STACK
========================================= */

/*
  Wichtig:
  overflow: hidden verhindert position: sticky.
*/
.principles-section {
  overflow: visible;
}

.principles-grid {
  display: block;
  position: relative;
  isolation: isolate;

  margin-top: 64px;

  /*
    Dadurch bleibt die letzte Karte noch kurz sichtbar,
    bevor die nächste Section beginnt.
  */
  padding-bottom: 34vh;
}

.principle-card {
  --stack-y: 0px;
  --stack-scale: 1;
  --stack-opacity: 1;
  --stack-blur: 0px;
  --hover-y: 0px;

  position: sticky;

  min-height: clamp(380px, 52vh, 510px);
  margin-bottom: 90px;

  transform:
    translate3d(
      0,
      calc(var(--stack-y) + var(--hover-y)),
      0
    )
    scale(var(--stack-scale));

  transform-origin: top center;

  opacity: var(--stack-opacity);
  filter: blur(var(--stack-blur));

  will-change: transform, opacity, filter;

  transition:
    transform 180ms linear,
    opacity 180ms linear,
    filter 180ms linear,
    border-color var(--transition),
    box-shadow var(--transition);
}

/*
  Die leicht unterschiedlichen Top-Werte lassen
  die oberen Kanten wie einen Kartenstapel sichtbar.
*/
.principle-card:nth-child(1) {
  top: 112px;
  z-index: 1;
}

.principle-card:nth-child(2) {
  top: 128px;
  z-index: 2;
}

.principle-card:nth-child(3) {
  top: 144px;
  z-index: 3;
  margin-bottom: 0;
}

.principle-card:hover {
  --hover-y: -6px;

  border-color: rgba(184, 144, 78, 0.38);

  box-shadow:
    0 34px 90px rgba(15, 47, 38, 0.15),
    0 0 0 1px rgba(184, 144, 78, 0.08);
}

/* Inhalt und Bildfläche füllen die größere Karte aus */

.principle-content {
  min-height: 100%;
  padding: clamp(30px, 4vw, 52px);

  justify-content: center;
}

.principle-content h3 {
  max-width: 340px;
  font-size: clamp(2rem, 3vw, 3.15rem);
}

.principle-content p {
  max-width: 370px;
  font-size: 1.02rem;
}

.principle-media {
  min-height: 100%;
}
/* =========================================
   JUJO SYSTEM SECTION
========================================= */

.system-section {
  position: relative;
  overflow: hidden;
}

.system-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(211, 171, 116, 0.12), transparent 26%),
    radial-gradient(circle at 85% 25%, rgba(184, 144, 78, 0.08), transparent 22%),
    radial-gradient(circle at 55% 80%, rgba(111, 134, 98, 0.10), transparent 24%);
  pointer-events: none;
  z-index: 0;
}

.system-section .container {
  position: relative;
  z-index: 1;
}

.system-header {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}

.system-header h2 {
  max-width: 700px;
}

.system-intro {
  max-width: 560px;
  font-size: 1.06rem;
  line-height: 1.8;
  color: var(--color-text-soft);
}

.system-stage {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: stretch;
}

/* -------------------------
   LINKE SEITE
------------------------- */

.system-visual {
  position: relative;
  padding: 20px 18px 24px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0.54));
  border: 1px solid rgba(15, 47, 38, 0.08);
  box-shadow:
    0 24px 60px rgba(15, 47, 38, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.system-roof-wrap {
  position: relative;
  margin: 0 auto 24px;
  width: min(100%, 690px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.system-roof-label {
  position: relative;
  z-index: 2;
  padding: 10px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #173d31 0%, #0f2f26 100%);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow:
    0 14px 30px rgba(15, 47, 38, 0.18),
    0 0 0 1px rgba(255,255,255,0.06) inset;
}

.system-roof {
  width: 100%;
  height: 86px;
  margin-top: -10px;
  background: linear-gradient(135deg, #efe6d7 0%, #f8f3ea 50%, #e5ecd9 100%);
  clip-path: polygon(5% 100%, 95% 100%, 84% 0%, 16% 0%);
  border-radius: 16px;
  border: 1px solid rgba(15, 47, 38, 0.08);
  box-shadow:
    0 18px 32px rgba(15, 47, 38, 0.07),
    inset 0 1px 0 rgba(255,255,255,0.55);
}

.system-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: end;
  min-height: 560px;
}

.system-pillar {
  position: relative;
  height: 500px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  overflow: hidden;
  border-radius: 180px 180px 28px 28px;
  box-shadow:
    0 26px 44px rgba(15, 47, 38, 0.10),
    0 0 0 1px rgba(15, 47, 38, 0.08);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    filter 0.35s ease;
  isolation: isolate;
}

.system-pillar::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 165px 165px 22px 22px;
  border: 1px solid rgba(255,255,255,0.22);
  z-index: 3;
  pointer-events: none;
}

.system-pillar::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -24px;
  transform: translateX(-50%);
  width: 82%;
  height: 28px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(15, 47, 38, 0.18), transparent 72%);
  z-index: 0;
  pointer-events: none;
}

.system-pillar:hover {
  transform: translateY(-10px);
  box-shadow:
    0 34px 58px rgba(15, 47, 38, 0.16),
    0 0 0 1px rgba(184, 144, 78, 0.22);
}

.system-pillar.is-active {
  height: 540px;
  transform: translateY(-12px);
  box-shadow:
    0 40px 70px rgba(15, 47, 38, 0.18),
    0 0 0 1px rgba(184, 144, 78, 0.28);
}

.pillar-image,
.pillar-overlay {
  position: absolute;
  inset: 0;
}

.pillar-image {
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 0.45s ease, filter 0.45s ease;
  filter: saturate(0.94) contrast(1.02);
}

.system-pillar:hover .pillar-image,
.system-pillar.is-active .pillar-image {
  transform: scale(1.06);
  filter: saturate(1) contrast(1.04);
}

.pillar-overlay {
  background:
    linear-gradient(180deg, rgba(9, 23, 19, 0.08) 0%, rgba(9, 23, 19, 0.02) 18%, rgba(9, 23, 19, 0.60) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.00));
  z-index: 1;
}

.system-pillar.is-active .pillar-overlay {
  background:
    linear-gradient(180deg, rgba(9, 23, 19, 0.06) 0%, rgba(9, 23, 19, 0.02) 18%, rgba(9, 23, 19, 0.52) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.00));
}

.pillar-number,
.pillar-label {
  position: absolute;
  z-index: 4;
  left: 22px;
  right: 22px;
  color: #fff;
  text-align: left;
}

.pillar-number {
  top: 24px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.96;
}

.pillar-label {
  bottom: 26px;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
  max-width: 140px;
}

.system-pillar.is-active .pillar-label {
  color: #fff;
}

/* Bildwelten / Platzhalter */

/* =========================================
   JUJO SYSTEM – BILDSÄULEN
========================================= */

.pillar-image {
  position: absolute;
  inset: 0;
  z-index: 0;

  display: block;

  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;

  opacity: 1;

  transform: scale(1.02);

  transition:
    transform 450ms ease,
    filter 450ms ease;
}

.pillar-training {
  background-image:
    linear-gradient(
      180deg,
      rgba(14, 42, 31, 0.02) 0%,
      rgba(14, 42, 31, 0.08) 48%,
      rgba(14, 42, 31, 0.66) 100%
    ),
    url("../images/system/training-pillar.webp");
}

.pillar-nutrition {
  background-image:
    linear-gradient(
      180deg,
      rgba(14, 42, 31, 0.02) 0%,
      rgba(14, 42, 31, 0.08) 48%,
      rgba(14, 42, 31, 0.64) 100%
    ),
    url("../images/system/nutrition-pillar.webp");
}

.pillar-lifestyle {
  background-image:
    linear-gradient(
      180deg,
      rgba(14, 42, 31, 0.02) 0%,
      rgba(14, 42, 31, 0.08) 48%,
      rgba(14, 42, 31, 0.64) 100%
    ),
    url("../images/system/lifestyle-pillar.webp");
}

.pillar-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  pointer-events: none;
}

.pillar-number,
.pillar-label {
  z-index: 3;
}

/* -------------------------
   RECHTE CONTENT-KARTE
------------------------- */

.system-content-card {
  position: relative;
  border-radius: 36px;
  padding: 40px 38px;
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.66));
  border: 1px solid rgba(15, 47, 38, 0.08);
  box-shadow:
    0 26px 60px rgba(15, 47, 38, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.60);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  min-height: 640px;
  display: flex;
  align-items: center;
}

.system-content {
  display: none;
  width: 100%;
  animation: systemFade 0.35s ease;
}

.system-content.is-active {
  display: block;
  animation:
    systemContentIn
    520ms
    var(--ease-premium)
    both;
}

@keyframes systemContentIn {
  from {
    opacity: 0;
    transform:
      translateY(18px)
      scale(0.985);
    filter: blur(4px);
  }

  to {
    opacity: 1;
    transform:
      translateY(0)
      scale(1);
    filter: blur(0);
  }
}

.system-content h3 {
  margin-top: 14px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 2.8vw, 3rem);
  line-height: 1.08;
  max-width: 560px;
}

.system-content p {
  max-width: 560px;
  color: var(--color-text-soft);
  line-height: 1.8;
}

.system-points {
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.system-points li {
  position: relative;
  padding-left: 30px;
  color: var(--color-text);
  font-weight: 500;
  line-height: 1.6;
}

.system-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d3ab74 0%, #b8904e 100%);
  box-shadow: 0 0 0 6px rgba(211, 171, 116, 0.12);
  transform: translateY(-50%);
}

.system-note {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(242, 230, 210, 0.90), rgba(255,255,255,0.72));
  border: 1px solid rgba(184, 144, 78, 0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.55);
}

.system-note strong {
  color: var(--color-heading);
}

.system-note span {
  color: var(--color-text-soft);
}

/* -------------------------
   LERNKARTE UNTEN
------------------------- */

.system-learning-card {
  margin-top: 34px;
  padding: 36px;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(16, 48, 39, 0.95), rgba(22, 67, 53, 0.92));
  color: #fff;
  box-shadow: 0 30px 70px rgba(15, 47, 38, 0.18);
  overflow: hidden;
  position: relative;
}

.system-learning-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(211, 171, 116, 0.18), transparent 24%),
    radial-gradient(circle at 84% 70%, rgba(255,255,255,0.08), transparent 20%);
  pointer-events: none;
}

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

.system-learning-text {
  margin-bottom: 28px;
}

.system-learning-text h3 {
  color: #fff;
  margin: 10px 0 14px;
}

.system-learning-text p {
  max-width: 820px;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
}

.system-learning-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.learning-item {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.learning-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d3ab74 0%, #b8904e 100%);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.learning-item h4 {
  margin-bottom: 8px;
  color: #fff;
}

.learning-item p {
  margin: 0;
  color: rgba(255,255,255,0.80);
  line-height: 1.7;
}
.system-pillar.is-active {
  height: 540px;
  transform: translateY(-12px);

  box-shadow:
    0 40px 70px rgba(15, 47, 38, 0.18),
    0 0 0 2px rgba(184, 144, 78, 0.34),
    0 0 46px rgba(184, 144, 78, 0.13);
}

.system-pillar.is-active .pillar-label {
  color: var(--white);
}

.system-pillar.is-active .pillar-number {
  color: var(--gold-300);
}

.system-pillar:not(.is-active) {
  filter:
    saturate(0.82)
    brightness(0.92);
}

.system-pillar:not(.is-active):hover {
  filter:
    saturate(0.94)
    brightness(0.98);
}
.system-pillar::before {
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.system-pillar.is-active::before {
  border-color: rgba(211, 171, 116, 0.48);

  box-shadow:
    inset 0 0 32px rgba(211, 171, 116, 0.08);
}
/* =========================================
   STORIES / ERFOLGSGESCHICHTEN
========================================= */

.stories-section {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 92% 12%,
      rgba(220, 232, 223, 0.72),
      transparent 28%
    ),
    radial-gradient(
      circle at 8% 88%,
      rgba(242, 230, 210, 0.78),
      transparent 30%
    ),
    var(--warm-white);
}

.stories-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: 80px;
  align-items: end;
}

.stories-header h2 {
  max-width: 780px;
}

.stories-intro {
  padding-bottom: 8px;

  font-size: 1.08rem;
  line-height: 1.75;
}

/* Tabs */

.stories-tabs {
  margin-top: 58px;
  padding: 7px;

  display: inline-flex;
  gap: 6px;

  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);

  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.story-tab {
  min-height: 46px;
  padding: 11px 20px;

  color: var(--text-muted);
  background: transparent;

  border-radius: var(--radius-pill);

  font-size: 0.84rem;
  font-weight: 700;

  transition:
    color var(--transition),
    background var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.story-tab:hover {
  color: var(--green-800);
}

.story-tab.is-active {
  color: var(--white);
  background: var(--green-gradient);

  box-shadow:
    0 12px 28px rgba(15, 47, 38, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

/* Große Story-Karte */

.stories-stage {
  position: relative;
  margin-top: 24px;
}

.story-panel {
  min-height: 590px;

  display: none;
  grid-template-columns: minmax(420px, 0.92fr) minmax(0, 1.08fr);

  overflow: hidden;

  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  border-radius: 38px;

  box-shadow: var(--shadow-card);
}

.story-panel.is-active {
  display: grid;

  animation:
    storyPanelIn
    600ms
    var(--ease-premium)
    both;
}

@keyframes storyPanelIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.99);
    filter: blur(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* Bildseite */

.story-media {
  position: relative;
  min-height: 590px;
  overflow: hidden;

  background-size: cover;
  background-position: center;

  isolation: isolate;
}

.story-media::before {
  content: "";

  position: absolute;
  inset: 0;
  z-index: -1;

  background:
    linear-gradient(
      180deg,
      rgba(15, 47, 38, 0.03),
      rgba(15, 47, 38, 0.35)
    );
}

/* =========================================
   STORY-BILDER
========================================= */

.story-media-training {
  background-image:
    linear-gradient(
      180deg,
      rgba(14, 42, 31, 0.02) 0%,
      rgba(14, 42, 31, 0.12) 55%,
      rgba(14, 42, 31, 0.50) 100%
    ),
    url("../images/stories/story-training.webp");

  background-position: center;
}

.story-media-nutrition {
  background-image:
    linear-gradient(
      180deg,
      rgba(14, 42, 31, 0.01) 0%,
      rgba(14, 42, 31, 0.08) 55%,
      rgba(14, 42, 31, 0.42) 100%
    ),
    url("../images/stories/story-nutrition.webp");

  background-position: center;
}

.story-media-lifestyle {
  background-image:
    linear-gradient(
      180deg,
      rgba(14, 42, 31, 0.01) 0%,
      rgba(14, 42, 31, 0.08) 55%,
      rgba(14, 42, 31, 0.46) 100%
    ),
    url("../images/stories/story-lifestyle.webp");

  background-position: center;
}

.story-media-training,
.story-media-nutrition,
.story-media-lifestyle {
  background-size: cover;
  background-repeat: no-repeat;
}

.story-result-card {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;

  padding: 20px 22px;

  display: grid;
  gap: 3px;

  border-radius: 22px;

  color: var(--white);
  background: rgba(15, 47, 38, 0.42);
}

.story-result-card span {
  color: var(--gold-300);

  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.story-result-card strong {
  color: var(--white);
  font-size: 1.35rem;
}

.story-result-card small {
  color: rgba(255, 255, 255, 0.76);
}

/* Textseite */

.story-copy {
  padding: clamp(44px, 6vw, 78px);

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-label {
  margin-bottom: 18px;

  color: var(--gold-700);

  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.story-copy h3 {
  max-width: 610px;

  font-size: clamp(2.2rem, 3.6vw, 3.8rem);
  line-height: 1.04;
}

.story-copy > p {
  max-width: 610px;
  margin-top: 24px;

  font-size: 1.02rem;
  line-height: 1.78;
}

.story-outcomes {
  margin-top: 30px;

  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.story-outcomes span {
  padding: 10px 14px;

  color: var(--green-800);
  background: var(--green-100);

  border: 1px solid rgba(31, 89, 70, 0.12);
  border-radius: var(--radius-pill);

  font-size: 0.76rem;
  font-weight: 700;
}

.story-bottom-line {
  margin-top: 34px;
  padding-top: 22px;

  color: var(--text-muted);
  border-top: 1px solid var(--border);

  font-size: 0.9rem;
  line-height: 1.6;
}

.story-bottom-line strong {
  color: var(--ink);
}

/* Controls */

.stories-controls {
  margin-top: 24px;

  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto auto;
  gap: 24px;
  align-items: center;
}

.stories-progress {
  height: 3px;

  overflow: hidden;

  background: rgba(15, 47, 38, 0.12);
  border-radius: var(--radius-pill);
}

.stories-progress-value {
  display: block;
  width: 33.333%;
  height: 100%;

  background: var(--gold-gradient);
  border-radius: inherit;

  transition: width 500ms var(--ease-premium);
}

.stories-counter {
  color: var(--text-muted);

  font-size: 0.82rem;
  font-weight: 700;
}

.stories-counter strong {
  color: var(--green-800);
  font-size: 1rem;
}

.stories-arrows {
  display: flex;
  gap: 9px;
}

.story-arrow {
  width: 46px;
  height: 46px;

  display: grid;
  place-items: center;

  color: var(--green-900);
  background: rgba(255, 255, 255, 0.7);

  border: 1px solid var(--border);
  border-radius: 50%;

  font-size: 1.1rem;

  box-shadow: 0 10px 28px rgba(15, 47, 38, 0.08);

  transition:
    color var(--transition),
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.story-arrow:hover {
  color: var(--white);
  background: var(--green-900);

  transform: translateY(-3px);

  box-shadow: 0 18px 38px rgba(15, 47, 38, 0.18);
}
/* =========================================
   FAQ
========================================= */

.faq-section {
  position: relative;
  overflow: visible;

  background:
    radial-gradient(
      circle at 10% 16%,
      rgba(242, 230, 210, 0.76),
      transparent 28%
    ),
    radial-gradient(
      circle at 90% 82%,
      rgba(220, 232, 223, 0.68),
      transparent 30%
    ),
    var(--soft-white);
}

.faq-layout {
  display: grid;
  grid-template-columns:
    minmax(320px, 0.72fr)
    minmax(0, 1.28fr);

  gap: clamp(58px, 7vw, 100px);
  align-items: start;
}

/* Linke Seite */

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-intro h2 {
  max-width: 520px;
}

.faq-intro > p:not(.eyebrow) {
  max-width: 500px;
  margin-top: 26px;

  font-size: 1.04rem;
  line-height: 1.78;
}

.faq-contact-card {
  margin-top: 40px;
  padding: 28px;

  border-radius: 28px;

  background:
    radial-gradient(
      circle at 88% 14%,
      rgba(211, 171, 116, 0.18),
      transparent 32%
    ),
    rgba(255, 255, 255, 0.62);
}

.faq-contact-label {
  display: block;
  margin-bottom: 10px;

  color: var(--gold-700);

  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.faq-contact-card strong {
  display: block;

  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1.25;
}

.faq-contact-card p {
  margin: 13px 0 23px;

  font-size: 0.9rem;
  line-height: 1.65;
}

.faq-contact-card .btn {
  min-height: 48px;
  padding-inline: 20px;
}

/* Accordion */

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;

  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: 26px;

  box-shadow: 0 14px 46px rgba(15, 47, 38, 0.06);

  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition),
    background var(--transition);
}

.faq-item:hover {
  transform: translateY(-3px);

  border-color: rgba(184, 144, 78, 0.24);

  box-shadow:
    0 22px 58px rgba(15, 47, 38, 0.1);
}

.faq-item.is-open {
  background: rgba(255, 255, 255, 0.9);

  border-color: rgba(184, 144, 78, 0.38);

  box-shadow:
    0 24px 66px rgba(15, 47, 38, 0.11),
    0 0 0 1px rgba(184, 144, 78, 0.06);
}

.faq-question {
  width: 100%;
  padding: 25px 27px;

  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  gap: 18px;
  align-items: center;

  color: var(--ink);
  background: transparent;

  text-align: left;
}

.faq-number {
  color: var(--gold-700);

  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.faq-question-text {
  font-size: 1.03rem;
  font-weight: 750;
  line-height: 1.45;
}

.faq-toggle {
  position: relative;

  width: 38px;
  height: 38px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: var(--green-100);
  border: 1px solid rgba(31, 89, 70, 0.12);

  transition:
    background var(--transition),
    transform var(--transition);
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";

  position: absolute;

  width: 14px;
  height: 1.5px;

  background: var(--green-800);
  border-radius: 10px;

  transition:
    opacity var(--transition),
    transform var(--transition),
    background var(--transition);
}

.faq-toggle::after {
  transform: rotate(90deg);
}

.faq-item.is-open .faq-toggle {
  background: var(--green-900);
  transform: rotate(180deg);
}

.faq-item.is-open .faq-toggle::before,
.faq-item.is-open .faq-toggle::after {
  background: var(--white);
}

.faq-item.is-open .faq-toggle::after {
  opacity: 0;
  transform: rotate(0);
}

/* Antwort mit flüssiger Höhenanimation */

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;

  transition:
    grid-template-rows
    450ms
    var(--ease-premium);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer-inner p {
  margin: 0;
  padding:
    0
    78px
    25px
    87px;

  font-size: 0.96rem;
  line-height: 1.75;
}

.faq-answer-inner p + p {
  padding-top: 13px;
}
/* =========================================
   CONTACT / FINAL CTA
========================================= */

.contact-section {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(211, 171, 116, 0.16),
      transparent 28%
    ),
    radial-gradient(
      circle at 86% 18%,
      rgba(220, 232, 223, 0.72),
      transparent 30%
    ),
    linear-gradient(180deg, var(--soft-white), var(--warm-white));
}

.contact-section::before {
  content: "";

  position: absolute;
  inset: auto -10% -38% -10%;

  height: 520px;

  background:
    radial-gradient(
      ellipse at center,
      rgba(15, 47, 38, 0.12),
      transparent 68%
    );

  pointer-events: none;
}

.contact-shell {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns:
    minmax(0, 0.95fr)
    minmax(420px, 0.82fr);

  gap: clamp(44px, 6vw, 90px);
  align-items: center;
}

.contact-copy h2 {
  max-width: 720px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 26px;

  font-size: 1.08rem;
  line-height: 1.8;
}

.contact-highlights {
  margin-top: 44px;

  display: grid;
  gap: 16px;

  max-width: 650px;
}

.contact-highlight {
  padding: 20px 22px;

  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  column-gap: 18px;

  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--border);
  border-radius: 24px;

  box-shadow: 0 16px 44px rgba(15, 47, 38, 0.06);
}

.contact-highlight span {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  color: var(--white);
  background: var(--gold-gradient);

  border-radius: 50%;

  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;

  grid-row: span 2;
}

.contact-highlight strong {
  color: var(--ink);

  font-size: 1rem;
  line-height: 1.35;
}

.contact-highlight p {
  margin: 6px 0 0;

  font-size: 0.9rem;
  line-height: 1.65;
}

/* Formular-Karte */

.contact-card {
  position: relative;

  padding: clamp(28px, 4vw, 42px);

  border-radius: 36px;

  background:
    radial-gradient(
      circle at 92% 10%,
      rgba(211, 171, 116, 0.18),
      transparent 34%
    ),
    rgba(255, 255, 255, 0.76);

  box-shadow:
    0 30px 76px rgba(15, 47, 38, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.contact-card-header h3 {
  max-width: 440px;
  margin-top: 10px;

  font-size: clamp(2rem, 2.7vw, 3rem);
  line-height: 1.08;
}

.contact-form {
  margin-top: 32px;

  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  color: var(--green-900);

  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;

  padding: 15px 16px;

  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);

  border: 1px solid rgba(15, 47, 38, 0.12);
  border-radius: 18px;

  font: inherit;

  outline: none;

  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.form-row textarea {
  resize: vertical;
  min-height: 132px;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(16, 34, 61, 0.42);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: rgba(184, 144, 78, 0.58);

  background: rgba(255, 255, 255, 0.92);

  box-shadow:
    0 0 0 4px rgba(184, 144, 78, 0.12);
}

.contact-submit {
  width: 100%;
  margin-top: 6px;
}

.form-note {
  margin: 0;

  color: var(--text-muted);

  font-size: 0.82rem;
  line-height: 1.6;
  text-align: center;
}

.form-success {
  display: none;

  margin: 4px 0 0;
  padding: 14px 16px;

  color: var(--green-900);
  background: var(--green-100);

  border: 1px solid rgba(31, 89, 70, 0.14);
  border-radius: 16px;

  font-size: 0.86rem;
  line-height: 1.55;
}

.contact-form.is-submitted .form-success {
  display: block;
}

/* =========================================
   FOOTER
========================================= */

.site-footer {
  position: relative;

  padding: 52px 0 34px;

  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(
      circle at 12% 22%,
      rgba(211, 171, 116, 0.16),
      transparent 24%
    ),
    linear-gradient(135deg, #0f2f26, #10223d);
}

.footer-inner {
  display: grid;
  gap: 34px;
}

.footer-brand {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
}

.footer-logo {
  color: var(--white);

  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-brand p {
  max-width: 420px;
  margin: 0;

  color: rgba(255, 255, 255, 0.72);

  font-size: 0.94rem;
  line-height: 1.65;
  text-align: right;
}

.footer-nav {
  padding: 24px 0;

  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;

  border-top: 1px solid rgba(255, 255, 255, 0.10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.72);

  font-size: 0.86rem;
  font-weight: 700;

  transition:
    color var(--transition),
    transform var(--transition);
}

.footer-nav a:hover {
  color: var(--gold-300);
  transform: translateY(-2px);
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 24px;

  color: rgba(255, 255, 255, 0.58);

  font-size: 0.8rem;
}

.footer-meta div {
  display: flex;
  gap: 18px;
}

.footer-meta a {
  color: rgba(255, 255, 255, 0.58);
}

.footer-meta a:hover {
  color: var(--gold-300);
}
/* =========================================
   LEGAL PAGES
========================================= */

.legal-page {
  min-height: 100vh;

  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(242, 230, 210, 0.78),
      transparent 30%
    ),
    radial-gradient(
      circle at 88% 20%,
      rgba(220, 232, 223, 0.72),
      transparent 32%
    ),
    var(--soft-white);
}

.legal-hero {
  padding-bottom: 40px;
}

.legal-container {
  max-width: 980px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-bottom: 42px;

  color: var(--green-800);

  font-size: 0.88rem;
  font-weight: 800;

  transition:
    color var(--transition),
    transform var(--transition);
}

.legal-back:hover {
  color: var(--gold-700);
  transform: translateX(-4px);
}

.legal-hero h1 {
  max-width: 760px;

  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
}

.legal-updated {
  margin-top: 22px;

  color: var(--text-muted);

  font-size: 1rem;
}

.legal-content-section {
  padding-bottom: 110px;
}

.legal-card {
  padding: clamp(30px, 5vw, 64px);

  border-radius: 36px;

  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.82),
      rgba(255, 255, 255, 0.66)
    );
}

.legal-card h2 {
  margin-top: 42px;
  margin-bottom: 14px;

  color: var(--ink);

  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.18;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  color: var(--text-muted);

  font-size: 0.98rem;
  line-height: 1.8;
}

.legal-card p + p {
  margin-top: 14px;
}

.legal-card a {
  color: var(--green-800);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-card ul {
  margin: 14px 0 0;
  padding-left: 22px;
}

.legal-note {
  padding: 18px 20px;

  background: var(--green-100);
  border: 1px solid rgba(31, 89, 70, 0.12);
  border-radius: 18px;
}
/* =========================================
   PRINCIPLES – ECHTE BILDER
========================================= */

.principle-media {
  position: relative;
  overflow: hidden;

  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;

  isolation: isolate;
}

/* Alte abstrakte CSS-Illustrationen entfernen */

.principle-media::before {
  display: none;
}

.principle-media::after {
  content: "";

  position: absolute;
  inset: 0;

  display: block;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.04),
      rgba(14, 42, 31, 0.10)
    );

  pointer-events: none;
  z-index: 1;
}

.principle-media-plant {
  background-image:
    url("../images/principles/causes.webp");

  background-position: center;
}

.principle-media-notes {
  background-image:
    url("../images/principles/structure.webp");

  background-position: center;
}

.principle-media-stones {
  background-image:
    url("../images/principles/progress.webp");

  background-position: center;
}
/* Ruhiger JUJO-Fotolook */

.pillar-image,
.story-media,
.principle-media {
  filter:
    saturate(0.88)
    contrast(1.02)
    brightness(0.98);
}

.system-pillar:hover .pillar-image,
.system-pillar.is-active .pillar-image {
  filter:
    saturate(0.98)
    contrast(1.04)
    brightness(1);
}
.hero-placeholder {
  display: none;
}
/* =========================================
   HERO FOTO – FINAL
========================================= */

.hero-media {
  position: relative;
  min-height: 720px;
  overflow: hidden;

  background: var(--soft-white);
}

.hero-photo {
  position: absolute;
  inset: 0;

  display: block;
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: 62% center;

  filter:
    saturate(0.9)
    contrast(1.02)
    brightness(1.01);

  transform: scale(1.01);
}

/* Weicher Übergang zum cremefarbenen Textbereich */

.hero-media::after {
  content: "";

  position: absolute;
  inset: 0;
  z-index: 2;

  background:
    linear-gradient(
      90deg,
      var(--soft-white) 0%,
      rgba(251, 250, 247, 0.9) 7%,
      rgba(251, 250, 247, 0.48) 17%,
      rgba(251, 250, 247, 0.12) 29%,
      rgba(251, 250, 247, 0) 43%
    );

  pointer-events: none;
}
/* =========================================
   HERO FOTO – FINAL
========================================= */

.hero-media {
  position: relative;

  min-height: 720px;
  height: 100%;

  overflow: hidden;

  background: var(--soft-white);

  /* Rundung auf der rechten Seite */
  border-radius: 0 34px 34px 0;
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;

  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  /*
    Höherer Prozentwert bewegt das Motiv
    innerhalb des Ausschnitts etwas nach links.
  */
  object-position: 67% center;

  filter:
    saturate(0.92)
    contrast(1.02)
    brightness(1.01);
}

/* Weicher Übergang zur linken Textseite */

.hero-media::after {
  content: "";

  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(
      90deg,
      var(--soft-white) 0%,
      rgba(251, 250, 247, 0.88) 7%,
      rgba(251, 250, 247, 0.48) 18%,
      rgba(251, 250, 247, 0.12) 30%,
      rgba(251, 250, 247, 0) 44%
    );

  pointer-events: none;
}
.hero-content {
  border-radius: 34px 0 0 34px;
}
.story-media-placeholder {
  display: none;
}