@font-face {
	  font-family: "Funnel Display";
	  src: url("fonts/FunnelDisplay-Light.ttf") format("truetype");
	  font-weight: 300;
	  font-style: normal;
	  font-display: swap;
	}
	
	@font-face {
	  font-family: "Funnel Display";
	  src: url("fonts/FunnelDisplay-Regular.ttf") format("truetype");
	  font-weight: 400;
	  font-style: normal;
	  font-display: swap;
	}
	
	@font-face {
	  font-family: "Funnel Display";
	  src: url("fonts/FunnelDisplay-Medium.ttf") format("truetype");
	  font-weight: 500;
	  font-style: normal;
	  font-display: swap;
	}
	
	@font-face {
	  font-family: "Funnel Display";
	  src: url("fonts/FunnelDisplay-SemiBold.ttf") format("truetype");
	  font-weight: 600;
	  font-style: normal;
	  font-display: swap;
	}
	
*{margin:0;padding:0;box-sizing:border-box}
:root{
	  --nav-right: 28px;
	  --burger-size: 42px;
	  --logo-gap: 96px;
	}
	
html,body{
  width:100%;
  height: auto;
  font-family:"Funnel Display",-apple-system,BlinkMacSystemFont,sans-serif;
  background:#ffd7d8;
  color:#161616;
  overflow-x: clip;
touch-action: pan-y;
  scroll-behavior: smooth;
  
}
body{
	padding-top: env(safe-area-inset-top);
	  padding-bottom: env(safe-area-inset-bottom);
	  position: relative;
	  overflow-x: hidden;   /* Layout bleibt sicher */
		overflow-y: auto;
		overscroll-behavior-x: auto; /* WICHTIG */
	}

/* ===== BACKGROUND ===== */
canvas{
  position:fixed;
  inset:0;
  width:100%;
  height:100vh;
  z-index:0;
}

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

p {
	  hyphens: auto;
	}
	
	h1, h2, footer p {
	  hyphens: manual;
	}

.kleinertext {
	margin-top: 10px;
	  font-size: 0.7em !important;
	  line-height: 1.25em !important; 
	  max-width: 75% !important;
	}

a{
	  color:#fff;
	  font-weight:600;
	  text-decoration:none;
	  position:relative;
	  transition:color .25s ease;
	}
	
	/* custom underline */
	a::after{
	  content:"";
	  position:absolute;
	  left:0;
	  bottom:-2px;
	  width:100%;
	  height:2px;
	  background:#fff;
	  transition:background-color .25s ease, transform .25s ease;
	}
	
	/* hover */
	a:hover::after{
	  background:#ffd7d8;
	}
	
	/* Fokus (Accessibility nice-to-have) */
	a:focus-visible::after{
	  background:#ffd7d8;
	}
/* ===== NAV ===== */
.nav{
	  position:fixed;
	  top:24px;
	  right:28px;
	  z-index:6;
	}
	
/* ===== BUTTON  ===== */
.btn, .btn2, .btn3{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0.65em 1.2em;
  margin-top: 0.5em;

  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.2;

  background: #161616;
  color: #ffd5d7;

  border: 2px solid #161616 !important;
  border-radius: 2px;

  text-decoration: none;
  white-space: nowrap;

  transition:
	background-color .25s ease,
	color .25s ease,
	border-color .25s ease;
}
.btn2{
	  background: #ffd5d7;
	  color: #161616;
	  border: 2px solid #ffd5d7 !important;
	}
.btn3{
	  background: transparent;
	  color: #161616;
	  border: 2px solid #161616 !important;
	}
.btn:hover,
.btn:focus-visible{
  background: transparent;
  color: #161616;
  border-color: #161616;
}
.btn2:hover,
.btn2:focus-visible{
  background: transparent;
  color: #ffd5d7;
  border-color: #ffd5d7;
}
.btn3:hover,
.btn3:focus-visible{
  background: #161616;
  color: #ffd5d7;
  border-color: #161616;
}
.btn::after, .btn2::after, .btn3::after{
	  content: none;
	}

p .btn, p .btn2, p .btn3{
  font-size: 0.9rem;
  padding: 0.5em 1em;
}
	

.site-logo{
	  position: fixed;
	  top: 31px;
	  right: 100px;
	  height: 30px;
	  width: auto;
	  object-fit: contain;
	  z-index: 6;
	  filter: none;
	  transition: filter .35s ease, opacity .25s ease;
	  opacity: 0.15;
	}
	  
	  .site-logo.is-inverted{
		filter:invert(1);
	  }
	  
.site-logo.menu-open{
	  opacity: 1;
	}	  


.burger{
  width:42px;height:42px;
  border-radius:50%;
  background:#161616;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.burger span{
  width:18px;height:2px;
  background:#ffd7d8;
  position:relative;
}
.burger span::before,
.burger span::after{
  content:"";
  position:absolute;
  width:18px;height:2px;
  background:#ffd7d8;
  left:0;
}
.burger span::before{top:-6px}
.burger span::after{top:6px}

.burger span{
	  transition:background .2s ease;
	}
	
	.burger span::before,
	.burger span::after{
	  transition:
		transform .3s cubic-bezier(.4,0,.2,1),
		top .3s cubic-bezier(.4,0,.2,1),
		opacity .2s ease;
	}
	
	/* ===== Burger offen ===== */
	.burger.open span{
	  background:transparent;
	}
	
	.burger.open span::before{
	  top:0;
	  transform:rotate(45deg);
	}
	
	.burger.open span::after{
	  top:0;
	  transform:rotate(-45deg);
	}

/* ===== CONTENT ===== */
main{
  position: relative;
	z-index: 4;	
}

.section{
  max-width:1300px;
  margin:0 auto;
  padding:14vh 8vw;
}


.section.dark{
	  position: relative;
	  color:#ffd7d8;
	}
.dark-trigger{
	  position:absolute;
	  left:0;
	  width:1px;
	  height:1px;
	  pointer-events:none;
	}
	
	.dark-trigger.start{
	  top:0;
	}
	
	.dark-trigger.end{
	  bottom:0;
	}
.section.dark::before{
	  content:"";
	  position:absolute;
	  top:0;
	  bottom:0;
	  left:50%;
	  width:100vw;
	  transform:translateX(-50%);
	  right:auto;
	  max-width: calc(
		100vw
		- (
		  var(--nav-right)
		  + var(--burger-size)
		  + var(--logo-gap)
		)
	  );
	
	  background:#161616;
	  z-index:-1;
	}
	
	
.artist-card{
	  display: flex;
	  align-items: center;
	  gap: 10px;
	}
	
	.artist-meta{
	  display: flex;
	  flex-direction: column;
	  align-items: flex-start;
	  text-align: left;
	  line-height: 1.2;
	}
	
	.artist-meta strong{
	  font-weight: 600;
	  line-height: 1.1;
	}
	
	.artist-meta span{
	  font-size: 0.9rem;
	  opacity: 0.85;
	}
	
.artist-img{
	  width: 30px;
	  height: 30px;
	  flex-shrink: 0;
	  overflow: hidden;
	  border-radius: 50%; 
	}
	
	.artist-img img{
	  width: 100%;
	  height: 100%;
	  object-fit: cover;
	  display: block;
	}

.org-card {			  
	  text-align: center;
}	

.org-card span, .org-card p {			  
	  font-size: 0.9em !important;
	  line-height: 1.5em !important;
}	
	
@media (max-width:1300px){
	  .section.dark::before{
		width:100%;
		max-width:none;
		left:0;
		transform:none;
	  }
	}
	

@media (min-width: 901px){
	  .section.dark.has-figure .section-figure{
		justify-content: flex-end;
	  }
	}

.section h1{
  font-size:clamp(2.6rem,5vw,4.4rem);
  margin-bottom:1.5rem;
  line-height:0.95;
}

.section h2{
  font-size:clamp(1.8rem,4vw,2.8rem);
  margin-bottom:1rem;
}

.section h3{
  font-size:.8rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  opacity:.7;
  margin-bottom:.8rem;
}

.section p{
  font-size:1.05rem;
  line-height:1.7;
  max-width:720px;
  opacity:.9;
  margin-bottom:1.3rem;
}
.section p:last-child{
	  margin-bottom:0;
	}

/* ===== HERO ===== */
.hero{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8vw;
  align-items:center;
  min-height:90vh;
}


.hero-visual{
	  aspect-ratio:5/4;
	  display:flex;
	  align-items:center;
	  justify-content:center;
		  will-change: transform;
		  transform: translate3d(0, 0, 0);
		  transition: transform 0.05s linear;
		  filter: drop-shadow(0 50px 80px rgba(0,0,0,0.25));
				  
	}
	
.hero-svg{
	  width:75%;
	  height:auto;
	  max-width:none;
	  object-fit:contain;
	}

.menu{
	  position:fixed;
	  top:0;
	  right:0;
		width:33%;
		min-width: 350px;
	  height:100%;
	  background:#161616;
	  padding-top:calc(24px + 42px + 24px); /* Burger top + size + spacing */
	  padding-left:8vw;
	  padding-right:42px;
	  padding-bottom:40px;
	  align-items: flex-end;   /* rechtsbündig */
	   text-align: right;	
	  display:flex;
	  flex-direction:column;
	  gap:24px;
	  transform:translateY(-100%);
	  transition:transform .45s cubic-bezier(.4,0,.2,1);
	  z-index:5;
	  overflow: hidden;
	}
.menu > *{
	  position: relative;
	  z-index: 1;
	}
.menu::before{
	  content:"";
	  position:absolute;
	  inset:-25%; 
	  background-image: url("img/bgmenu.svg");
	  background-repeat: no-repeat;
	  background-position: center;
	  background-size: 145% auto;
	  opacity: 0.06;
	  transform: rotate(-25deg);
	  transform-origin: center;
	  pointer-events: none;
	  z-index: 0;
	  overflow: auto;
	}
	
.menu a {
	  position: relative;
	  transform: translateX(0);
	  transition:
		transform .35s cubic-bezier(.4,0,.2,1),
		opacity .25s ease,
		color .25s ease;
	  font-size: 1.25em;
	  opacity: 0.85;
	  line-height: 0.75em;
	  font-weight: 400;
	}
	
	/* Hover */
	.menu a:hover {
	  transform: translateX(12px);
	  opacity: 1;
	  color: #ffd5d7;
	}
	
	/* ACTIVE (Scroll-Position) */
	.menu a.is-active {
	  transform: translateX(12px);
	  opacity: 1;
	  color: #ffd5d7;
	  font-weight: 600;
	}
	.menu a::after{
	  display:none;
	}	

	
	/* offen */
	.menu.open{
	  transform:translateY(0);
	}

/* ===== HR ===== */

hr {
	  height: 1px;
	  border: 1px solid #afaeda;
	  margin: 25px 0;
	}
.menu hr{
		  width: 100%;
		  align-self: stretch;
		  border: none;
		  border-top: 1px solid #afaeda;
		  margin: 0;
		}

/* ===== GRID ===== */
.grid-3{
	margin-top:50px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:4vw;
}
.grid-4{
	margin-top:50px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:4vw;
}

.card{
  background:#161616;
  color:#ffd7d8;
  padding:24px;
}

.card .img{
  width:100%;
  aspect-ratio:1/1;
  background:#ffd7d8;
  margin-bottom:12px;
}

/* ===== FOOTER ===== */
footer{
  background:#161616;
  color:#ffd7d8;
  padding:18vh 8vw 10vh;
  position:relative;
  z-index:4;
  overflow-x: hidden;
}
.footer-inner{
	  display: grid;
	  grid-template-columns: auto 1fr;
	  gap: 4vw;
	  align-items: stretch;
	  max-width: 100%;
	}
	
	.footer-visual{
	  display: flex;
	  align-items: flex-start;
	}
	
	.footer-visual img{
	  max-width: 250px;
	  width: 100%;
	  height: auto;
	  object-fit: contain;
	  opacity: 1;
	}

/* ===== SECTIONS MIT SVG-SPALTE ===== */

.section.has-figure{
	  display:grid;
	  grid-template-columns: minmax(0,1fr) 20vw;
	  gap:6vw;
	  align-items:stretch;
	}

/* helle Sections: SVG links */
.section.has-figure:not(.dark){
  grid-template-columns: 20vw minmax(0,1fr);
}

/* Inhalt */
.section-content{
  max-width:800px;
}

.section-figure{
	  display:flex;
	  align-items:flex-start;
	  justify-content:flex-start;
	  height:100%;
	  will-change: transform;
		transform: translate3d(0, 0, 0);
		transition: transform 0.05s linear;
		filter: drop-shadow(0 50px 80px rgba(0,0,0,0.25));	
	}
	
.keypoints{
	  max-width: 1300px;
	  margin: 6vh auto 8vh;
	  padding: 0 8vw;
	}
	
	.keypoints-list{
	  display: grid;
	  grid-template-columns: 1fr;
	  gap: 0;
	  list-style: none;
	  padding: 0;
	  margin: 0;
	}
	
	.keypoints-list li{
	  display: flex;
	  align-items: flex-start;
	  gap: 16px;
	  padding: 18px 0;
	  border-bottom: 1px solid #afaeda;
	  font-size: 1rem;
	  line-height: 1.5;
	  hyphens: auto;
	  width: 100%;
	}
	
	.keypoints-list li p{
	  margin: 0;
	  line-height: 1.45;
	  flex: 1;
	  max-width: none;
	}
	.keypoints-list li strong{
		  font-weight: 600;
	}
	
	.keypoints-icon{
	  width: 16px;
	  height: 16px;
	  flex-shrink: 0;
	  margin-top: 4px;
	}

/* SVG selbst */
.section-figure img,
.section-figure svg{
  height:100%;
  max-height:100%;
  width:auto;
  max-width:225px;
  object-fit:contain;
}
.transparency{
  opacity: 0.25;
}



.bg-gradient-overlay{
	  position: fixed;
	  inset: 0;
	  z-index: 2; 
	  pointer-events: none;
	
	  background:
		linear-gradient(
		  to bottom,
		  #ffd7d8 0%,
		  rgba(255,215,216,0.85) 6%,
		  rgba(255,215,216,0.35) 14%,
		  rgba(255,215,216,0.0) 22%
		),
		linear-gradient(
		  to top,
		  #ffd7d8 0%,
		  rgba(255,215,216,0.85) 6%,
		  rgba(255,215,216,0.35) 14%,
		  rgba(255,215,216,0.0) 22%
		);
	}




@media(max-width:900px){
	.site-logo{
		  top: 34px;
		  height: 25px;
		}
	  .hero{
		grid-template-columns:1fr;
	  }
	  .hero-visual{
		order:-1;              /* kommt nach oben */
		margin-bottom:-1vh;
		margin-top:-1vh;
	  }
	  .hero-text{
		order:1;
	  }
	  .grid-3,.grid-4{
		grid-template-columns:1fr;
	  }
	  .artist-card{
			margin-bottom: 15px;
		  }
	  .org-card img{
		  width: 50%;
		  margin: 0 auto;
		  margin-top: 55px !important;
		}
	.org-card {			  
			  text-align: center;
		}

		
		.menu, .menu a {
			  font-size: 0.95em;
			  line-height: 0.42em;
			}
			
.section.has-figure{
	display:flex;
	flex-direction:column;
  }

  .section-figure{
	margin-bottom:1.5rem;
	justify-content:flex-start;
  }

  .section-figure svg,
  .section-figure img{
	max-width:100px;
  }

  .section-content{
	display:block;
  }
 
	.section.has-figure .section-figure{
	  order:0;
	  margin-bottom:1.5rem;
	  justify-content:flex-start;
	}
  
	.section.has-figure .section-content{
	  order:1;
	}
	 .section.dark::before{
			left: 0;
			width: 100%;
			max-width: 100%;
			transform: none;
	}
	.keypoints-list{
		grid-template-columns: 1fr;
	  }
	  
	.footer-inner{
		grid-template-columns: 1fr;
	  }
	
	  .footer-visual{
		justify-content: flex-start;
		margin-bottom: 1.5rem;
	  }
	
	  .footer-visual img{
		max-width: 130px;
		height: auto;
		margin: -4vw;
	  }
}