:root{
  --gap: 100px;
  --pad: 12vw;

  --text: #111;
  --bg: #fff;
  --accent: #e24f2f;

  --bg-grey: #f3f2ed;
  --bg-orange: var(--accent);

  --font-display: 'League Spartan', sans-serif;
  --font-body: 'League Spartan', sans-serif;
}

@font-face{
  font-family:'League Spartan';
  src:url('../fonts/LeagueSpartan-VariableFont_wght.woff2') format('woff2');
  font-weight:100 400 900;
  font-style:normal;
  font-display:swap;
}

*{ box-sizing:border-box; }

* {  -webkit-tap-highlight-color: transparent;}

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--font-body);
}

p,
li{
  font-size:clamp(9px,16px,22px);
  line-height:1.1;
}
a{
	text-decoration: none;
}
a:hover{
	text-decoration: underline;
}
h1{
  font-family:var(--font-display);
  font-weight:900;
  letter-spacing:-0.03em;
  line-height:0.9;
}
h2{
  font-size: clamp(24px, 2vw, 34px);
}
h3{
  font-size: clamp(20px, 1.6vw, 28px);
}

/* -------------------------------------------------- */
/* Header */
/* -------------------------------------------------- */

.klee-header{
  position:relative;
  padding-top:5px;
  padding-bottom:10px;
  height:200px;
  display:flex;
  z-index:100;
  align-items:center; 
}

.klee-header__logo{
  display:flex;
  justify-content:left;
}

.klee-header__logo img{
  height:150px;
  width:auto;
  display:block;
}

.klee-header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:24px;
}

.klee-header__burger{
  position:absolute;
  top:70px;
  right:0;
  width:290px;
  height:220px;
  background:transparent;
  border:0;
  cursor:pointer;
  padding:0;
  overflow:visible;
  z-index:130;
}

/* geschlossener Zustand: 4 enge Striche rechts */
.klee-header__burger span{
  position:absolute;
  top:0;
  display:block;
  width:24px;
  height:80px;
  transform-origin:top;
	pointer-events:auto;
  transition:
    right .4s cubic-bezier(.65,0,.2,1),
    height .4s cubic-bezier(.65,0,.2,1),
    opacity .2s ease;
}

.klee-header__burger span::after{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  width:2px;
  height:100%;
  background:var(--accent);
  pointer-events:auto;
}

/* Startpositionen der Striche */
.klee-header__burger span:nth-child(1){ right:78px; }
.klee-header__burger span:nth-child(2){ right:62px; }
.klee-header__burger span:nth-child(3){ right:46px; }
.klee-header__burger span:nth-child(4){ right:30px; }

.klee-header__menu{
  position:absolute;
  top:70px;
  right:0;
  width:290px;
  height:220px;
  pointer-events:none;
  z-index:120;
}

.klee-header__menu::before{
  pointer-events:none;
  content:"";
  position:absolute;
  top:0;
  right:0;
  width:290px;
  height:80px;
  background:var(--bg);
  opacity:0;
  transition:
    height .4s cubic-bezier(.65,0,.2,1),
    opacity .24s ease 0.1s;
  z-index:1;
}
.klee-header__menu a{
  position:absolute;
  top:0;
  bottom:0;
  width:24px;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  text-decoration:none;
  color:var(--accent);
  font-family:var(--font-display);
  font-weight:900;
  font-size:clamp(16px,1.5vw,25px);
  line-height:1;
  writing-mode:vertical-rl;
  transform:rotate(180deg);
  transform-origin:center center;
  white-space:nowrap;
  transition:
    opacity .24s ease,
    transform .24s ease;
  z-index:2;
}

/* Zielpositionen der 4 Menüpunkte */
.klee-header__menu a:nth-child(1){ right:230px; }
.klee-header__menu a:nth-child(2){ right:180px; }
.klee-header__menu a:nth-child(3){ right:130px; }
.klee-header__menu a:nth-child(4){ right:80px; }

/* offener Zustand: Striche fahren auf dieselben Achsen wie die Schrift */
.klee-header.is-open .klee-header__burger span:nth-child(1){ right:230px; }
.klee-header.is-open .klee-header__burger span:nth-child(2){ right:180px; }
.klee-header.is-open .klee-header__burger span:nth-child(3){ right:130px; }
.klee-header.is-open .klee-header__burger span:nth-child(4){ right:80px; }

/* Striche wachsen nach unten und verschwinden dann */
.klee-header.is-open .klee-header__burger span{
  height:200px;
  opacity:0;
  transition-delay:0s, 0s, 0.4s;
	z-index:110;
}
.klee-header.is-menu-active .klee-header__burger{
  z-index:110;
}

.klee-header.is-menu-active .klee-header__menu{
  z-index:140;
  pointer-events:auto;
}

.klee-header.is-open .klee-header__menu::before{
  height:220px;
  opacity:1;
}
/* Schrift erscheint darüber */
.klee-header.is-open .klee-header__menu a{
  opacity:1;
  transform:translateX(0) rotate(180deg);
  transition-delay:0.5s;
}

.klee-header--home2-mobile{
  display:none;
}


@media (max-width:1024px){

  .klee-header--home2-mobile{
    display:block;
  }

  .klee-header{
    height:200px;
  }

  .klee-header__logo img{
    height:150px;
  }

  .klee-header__burger,
  .klee-header__menu{
    width:220px;
    height:180px;
    top:70px;
  }

  .klee-header__burger span{
    height:60px;
  }

  .klee-header__menu::before{
    height:60px;
  }

  .klee-header__menu a{
    font-size:18px;
  }

}
/* -------------------------------------------------- */
/* Footer */
/* -------------------------------------------------- */

.klee-footer{
  padding: 60px var(--pad) 40px;
}

.klee-footer__inner{
  display: flex;
  justify-content: flex-end;
}

.klee-footer__nav{
  display: flex;
  gap: 28px;
}

.klee-footer__nav a{
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1em;
  letter-spacing: -0.02em;
  text-transform: lowercase;
}

.klee-footer__nav a:hover{
  color: var(--accent);
}
/* -------------------------------------------------- */
/* Home 1 */
/* -------------------------------------------------- */

.home1{
  min-height:calc(100vh - 90px);
  display:flex;
  align-items:center;
  justify-content:center;
}

.home1-center{
  text-align:center;
}

.home1-logo video{
  width: 85vw;
  max-width: 2000px;
  align-items:center;
}

.home1-links{
  display:flex;
  gap:13px;
  justify-content:center;
  margin-top:-12vw;
}

.home1-links a{
  text-decoration:none;
  color: var(--text);
  font-family:var(--font-display);
  font-weight:900;
  font-size:clamp(1em,5.78vw,10em);
  letter-spacing:-0.05em;
  text-transform: uppercase;
}
.home1-links-klee {
	display:none;
}
@media (max-width:1024px){

  .home1{
    min-height:100svh;
    height:100svh;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    overflow:hidden;
  }

  .home1-center{
    width:100%;
    height:100%;
    position:relative;
    text-align:left;
  }

  .home1-logo{
    position:absolute;
    inset:0;
    z-index:1;
    display:flex;
    align-items:top;
    justify-content:center;
    pointer-events:none;
  }
	.home1-logo a{
  pointer-events:auto;
}

  .home1-logo video{
    width:100%;
    max-width:none;
    align-items:center;
    margin-top:22vh;
    position:relative;
    transform:scale(2);
    transform-origin:center;
    z-index:1;
  }

  .home1-links{
    display:block;
    width:100vw;
    position:fixed;
    left:0;
    bottom:0;
    z-index:999;

    margin:0;
    gap:0;

    text-align:left;
    font-size:clamp(1em,17vw,7em);
    line-height:.82;
  }

  .home1-links a{
    display:inline;
    overflow-wrap:anywhere;
    word-break:break-all;
    line-height:.82;
  }

  .home1-links-klee{
    display:block;
  }

  .home1-links-klee a{
    display:inline;
  }
}

/* -------------------------------------------------- */
/* Home 2 */
/* -------------------------------------------------- */


:root{
  --floatpos: calc(((((100vw - (5 * var(--gap))) / 4) * 10) + var(--gap) * 11) + 8vw );
}
.home2{
  position:relative;
  padding-top:var(--gap);
  padding-bottom:var(--gap);
  padding-inline:var(--gap);
  overflow-x:clip;
}

.home2-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  grid-auto-rows:calc((100vw - (5 * var(--gap))) / 4);
  gap:var(--gap);
  align-items:center;
}

/* Floating HEAD, eigenes Element, nicht Teil des Grids */

.home2-floating-head{
  height:550vw;
  height:var(--floatpos);
  margin-top:0;
  margin-bottom:calc(var(--floatpos) * -1 );
  position:relative;
  z-index:40;
  pointer-events:none;
}

.home2-floating-head__inner{
  position:sticky;
	/*1.5 mal eine kachel + 2 mal gap: */
  top:calc((((100vw - (5 * var(--gap))) / 4) * 1.5) + (var(--gap) * 2) + 2vw);
  padding-left: calc((((100vw - (5 * var(--gap))) / 4) * 1) + (var(--gap) * 1) + 2vw);
}

.home2-floating-head p{
  margin:0;
  max-width:100%;
  font-family:var(--font-display);
 font-weight:900;
  font-size:clamp(1rem,4.5vw,8rem);
  line-height:.5;
  letter-spacing:-0.06em;
  transform-origin:left bottom;
  transform: translateX(5vw) translateY(-1.2vh) rotate(-90deg);
  color:var(--text);
}
.home2-floating-head__klee,
.home2-floating-head__sub{
  display:block;
}
.home2-floating-head__klee{  
 font-weight:900;
  font-size:clamp(1rem,8.5vw,15rem);
  line-height:.75;
  letter-spacing:-0.05em;
}

/* Floating TEXT, eigenes Element, nicht Teil des Grids */

.home2-floating-text{
  height:var(--floatpos);
  margin-top:0;
  margin-bottom:calc(var(--floatpos) * -1 );
  position:relative;
  z-index:40;
  pointer-events:none;
  padding-left: 37vw;
	
  width:calc(99.5vw - var(--gap));
  max-width:none;
}

.home2-floating-text__inner{
  position:sticky;
  top:calc((((100vw - (5 * var(--gap))) / 4) * 1) + (var(--gap) * 1) + 2.5vw);
}

.home2-floating-text p{
  margin:0;
  max-width:100%;
  font-family:var(--font-display);
  font-weight:900;
  font-size:clamp(0.85rem,1vw,8rem);
  line-height:1.2;
  letter-spacing:-0.05em;
  text-transform:uppercase;
  color:var(--text);
}
.home2-floating-text__inner{
  transition:
    transform .95s cubic-bezier(.65,0,.2,1),
    opacity .75s ease;
}
.home2-floating-text.is-exiting .home2-floating-text__inner{
  transform:translateY(-120vw);
  opacity:0;
}
/* Floating transformation */

.home2-floating-head__inner{
  transition:
    transform .95s cubic-bezier(.65,0,.2,1),
    opacity .75s ease;
}
.home2-floating-head.is-exiting .home2-floating-head__inner{
  transform:translateY(-120vw);
  opacity:0;
}
.home2-floating-text.is-exiting .home2-floating-text__inner{
  transform:translateX(-120vw);
  opacity:0;
}
/* Floating Ende */

.tile{
  display:block;
  width:100%;
}

/* Project tiles */

.tile--project{
  aspect-ratio:1 / 1;
}

.tile--project img{
  width:100%;
  height: 100%;
  object-fit:cover;
  object-position:center;
  display:block;
}

/* Logo tile */

.tile--logo{
  position:relative;
  display:block;
  width:100%;
  height:100%;
  overflow:visible;
  z-index:-99;
}

.tile-logo__img{
  position:absolute;
  top:40%;
  left:40%;
  width:180%;
  height:auto;
  transform:translate(-50%, -50%) scale(1.35);
  transform-origin:center;
  display:block;
  object-fit:contain;
  pointer-events:none;
}

/* Contact tile */

.tile--contact{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--text);
}

/* circle */

.tile-contact__circle{
  position:relative;
  width:220px;
  aspect-ratio:1 / 1;
  border-radius:50%;
  background:var(--accent);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:visible;
}

.tile-contact__inner{
  position:absolute;
  width:400px;
  text-align:center;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
}

/* links */

.tile--contact a{
  color:inherit;
  text-decoration:none;
}

.tile--contact a:hover{
  text-decoration:underline;
}

/* headline link */

.tile-contact__button{
  display:block;
  font-family:var(--font-display);
  font-weight:900;
  letter-spacing:-0.03em;
  font-size:clamp(1.5rem,3.5vw,3.5rem);
  margin-bottom:8px;
  text-transform:lowercase;
}

/* text */

.tile-contact__text{
  font-family:var(--font-display);
  font-weight:900;
  font-size:clamp(1.5rem,2vw,2rem);
  line-height:1.25;
}

.tile-contact__text a{
  display:inline;
}

/* zoom */

.contact-zoom{
  display:flex;
  flex-direction:column;
  align-items:center;
}

.contact-zoom__line{
  display:block;
  transform:scale(.6);
  transform-origin:center;
  will-change:transform;
  transition:transform .1s linear;
}
/* Insight tiles */

.tile--insight{
  position:relative;
  background:var(--insight-bg,#F2F2F2);
  overflow:hidden;
  display:block;
  height: 100%;
}

.tile--insight.is-breakout-left{
  aspect-ratio:auto;
}

.tile--insight.is-breakout-full{
  aspect-ratio:auto;
}

.tile--insight.is-breakout-right{
  aspect-ratio:auto;
}

.tile--insight.is-breakout-left{
  margin-left:calc(-1 * var(--pad));
  width:calc(100% + var(--pad));
}

.tile--insight.is-breakout-full{
  margin-left:calc(-1 * var(--pad));
  width:calc(100% + (2 * var(--pad)));
}

.tile--insight.is-breakout-right{
  margin-right:calc(-1 * var(--pad));
  width:calc(100% + var(--pad));
}

.tile-insight__inner{
  position:absolute;
  inset:0;
}

.tile--insight .tile-insight__img{
  position:absolute;
  left:var(--insight-x,50%);
  top:var(--insight-y,50%);
  transform:translate(-50%,-50%);
  width:var(--insight-scale,85%);
  height:100%;
  max-width:none;
  max-height:none;
  object-fit:var(--insight-fit,contain);
  display:block;
  z-index:1;
}

.tile-insight__text{
  position:absolute;
  font-family:var(--font-display);
  font-weight:900;
  letter-spacing:-0.08em;
  font-size:inherit;
  line-height:0.9;
  color:var(--text);
  z-index:2;
}

.insight-line{
  display:block;
}

.insight-line--lead{
  display:block;
  font-size:clamp(30px,4.2vw,100px);
  transform-origin:left center;
  will-change:transform;
}

.insight-line--rest-line{
  display:block;
  font-size:clamp(30px,2.5vw,50px);
}

.tile-insight__text.is-left{
  left:-60px;
  bottom:15px;
  transform:translateX(19vw) rotate(-90deg);
  transform-origin:bottom left;
}

.tile-insight__text.is-right{
  right:-60px;
  bottom:19vw;
  transform:translateX(-12vw) rotate(-90deg);
  transform-origin:bottom right;
}

.tile-insight__text.is-center{
  left:50%;
  bottom:15px;
  transform:translateX(-50%);
  max-width:24ch;
}



/* Menu tile */

.tile--menu{
  position:relative;
  background:var(--accent);
  width:calc(100% + var(--pad));
  height:100%;
  margin-right:calc(-1 * var(--pad));
  display:flex;
  align-items:center;
  justify-content:center;
  align-self:stretch;
  justify-self:stretch;
}

.tile-menu__nav{
  transform:rotate(-90deg);
  transform-origin:center;
}

.tile-menu__list{
  list-style:none;
  margin:0;
  padding:0;
  text-align:center;
}

.tile-menu__list li{
  display:block;
  margin:8px 0;
}

.tile-menu__list a{
  text-decoration:none;
  color:var(--text);
  font-family:var(--font-display);
  font-weight:900;
  font-size:clamp(16px,1.5vw,25px);
}



/* Home 2 responsive */

@media (max-width:1024px){

  :root{
    --gap:18px;
    --pad:20px;
    --home2-project-w:80vw;
    --home2-contact-circle:34vw;
    --home2-rail:20vw;
    --home2-insight-h:80vw;
  }

  body{
    background:var(--bg);
  }

  .home2{
    background:var(--bg);
    padding-top:18px;
    padding-bottom:36px;
    padding-inline:0;
  }

  .home2-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:0;
    align-items:start;
	grid-auto-rows:auto;
  }

  .home2-grid > *{
    grid-column:auto !important;
    grid-row:auto !important;
  }
	
/* Floating head, eigenes Element, nicht Teil des Grids */

  .home2-floating-text{
    height:auto;
    margin-top:50px;
    margin-bottom:var(--gap);
    position:relative;
    z-index:40;
    pointer-events:auto;
	padding-left:0;
  }
  .home2-floating-head{
  height:0;
  margin-bottom:0;
  position:relative;
  left:calc(-1 * var(--gap));
  width:calc(100% + var(--gap));
  z-index:45;
  pointer-events:auto;
}
  .home2-floating-text__inner{
    position:relative;
    top:auto;
    transform:none;
    opacity:1;
  }
.home2-floating-head__inner{
    position:relative;
    top:100vh;
    transform:none;
    opacity:1;
	}

  .home2-floating-head.is-exiting .home2-floating-head__inner,
  .home2-floating-text.is-exiting .home2-floating-text__inner{
    transform:none;
    opacity:1;
  }

  .home2-floating-head p,
  .home2-floating-text p{
    margin:0;
    max-width:100%;
    font-family:var(--font-display);
    font-weight:900;
    letter-spacing:-0.05em;
    text-transform:lowercase;
    color:var(--text);
  }

  .home2-floating-head__klee,
  .home2-floating-head__sub{
    display:block;
  }

  .home2-floating-head__klee{
    font-size:clamp(3rem,30vw,12rem);
  }
  .home2-floating-head__sub p{
    font-size:clamp(1.4rem,7vw,3rem);
    line-height:.3;
  }
  .home2-floating-text p{
    font-size:clamp(1.4rem,7vw,3rem);
    line-height:.95;
    text-transform:none;
  }
	

  .tile{
    width:100%;
    margin:0;
  }

  .tile--menu{
    display:none !important;
  }
	
.tile--project{
  width:var(--home2-project-w);
  margin:40px auto ;
  padding:0;
  display:block;
  min-height:0 !important;
  max-height:70vw !important;
  aspect-ratio:1/1 !important;
  block-size:auto !important;
  inline-size:var(--home2-project-w);
  overflow:hidden;
}

.tile--project img{
  display:block;
  width:100% !important;
  height:100% !important;
  min-height:0 !important;
  max-height:none !important;
  aspect-ratio:auto !important;
  object-fit:cover !important;
  object-position:center;
  vertical-align:top;
}
img[width][height]{
  height:auto;
}
	
	
  .tile--logo{
 display:none;
  }

  .tile--contact{
    width:var(--home2-project-w);
    min-height:116px;
    margin:0 auto;
    padding:60px 0 ;
  }

  .tile-contact__circle{
    width:var(--home2-contact-circle);
	overflow:visible;

  }

  .tile-contact__button{
    font-size:clamp(1rem,8vw,12rem);
    margin-bottom:2px;
	text-transform:lowercase;
	letter-spacing:-0.03em;
  }

  .tile-contact__text{
    font-size:3vw;
    line-height:1.05;
	  text-transform:lowercase;
	  letter-spacing:-0.03em;
  }

  .contact-zoom__line{
 margin-top:10px;
    transform:scale(.48);
  }


.tile--insight,
.tile--insight.is-breakout-left,
.tile--insight.is-breakout-full,
.tile--insight.is-breakout-right{
  height:var(--home2-insight-h);
  width:100%;
  margin:30px 0;
  aspect-ratio:auto !important;
}

.tile-insight__inner{
  position:relative;
  inset:0;
  display:grid;
  grid-template-columns:var(--home2-rail) minmax(0,1fr);
  grid-template-areas:"rail media";
  align-items:stretch;
}

.tile--insight .tile-insight__img{
  grid-area:media;
  position:relative;
  left:auto;
  top:auto;
  transform:none !important;
  width:100%;
  height:100%;
  min-height:var(--home2-insight-h);
  display:block;
  object-fit:cover;
  max-width:none;
  max-height:none;
  z-index:1;
}

.tile-insight__text,
.tile-insight__text.is-left,
.tile-insight__text.is-right,
.tile-insight__text.is-center{
  grid-area:rail;
  position:absolute;
  left:52%;
  bottom:30%;

  transform:translate(-50%, 50%) rotate(-90deg);
  transform-origin:center;

  right:auto;
  top:auto;
  display:block;
  margin:0;
  padding:0;
  z-index:2;
  overflow:visible;

  writing-mode:horizontal-tb;
  white-space:nowrap;
}

.tile-insight__text .insight-line{
  display:block;
  white-space:nowrap;
}

.tile-insight__text .insight-line--lead{
  font-size:clamp(20px,8vw,50px);
  line-height:0.88;
}

.tile-insight__text .insight-line--rest-line{
  font-size:clamp(12px,5vw,30px);
  line-height:0.88;
}
}
/* -------------------------------------------------- */
/* Project Overview */
/* -------------------------------------------------- */

.projects-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:32px;
  padding:32px;
}

.project-card img{
  width:100%;
  height:auto;
  display:block;
}

.project-card__meta{
  display:flex;
  gap:12px;
  margin-top:8px;
}

.project-card__mark{
  opacity:0.6;
}

@media (max-width:1024px){

  .projects-grid{
    grid-template-columns:1fr;
  }
}

/* -------------------------------------------------- */
/* GLOBAL VARS */
/* -------------------------------------------------- */

:root{
  --project-accent:#d9c2b7;
  --project-anchor:55vw;
  --project-row-height:350px;
}


/* -------------------------------------------------- */
/* BASE */
/* -------------------------------------------------- */

.project-detail{
  padding:0 0 120px 0;
  background:var(--bg);
}


/* -------------------------------------------------- */
/* HERO */
/* -------------------------------------------------- */

.project-hero-split{
  background:var(--bg-grey);
  display:grid;
  grid-template-columns:350px 1fr;
  align-items:stretch;
  margin-top:20px;
}

.project-hero-split__text{
  display:flex;
  align-items:flex-start;
}

.project-hero-split__text-inner{
  padding:72px 35px 20px 35px;
  color:var(--text);
}

.project-title{
  font-family:var(--font-display);
  font-weight:900;
  font-size:clamp(33px,2.3vw,44px);
  line-height:0.92;
  margin:0 0 22px 0;
  text-transform:uppercase;
  text-align:center;
  letter-spacing:-1.5px;
}

.project-context{
  font-family:var(--font-display);
  font-weight:900;
  font-size:clamp(10px,0.85vw,14px);
  line-height:1.15;
  margin-bottom:18px;
  text-align:center;
}

.project-context p{ margin:0; }

.project-intro__text{
  font-family:var(--font-body);
  font-weight:100;
  font-size:clamp(10px,0.85vw,14px);
  line-height:1.15;
}

.project-intro__text p{
  margin:0;
  text-align:justify;
  hyphens:auto;
  overflow-wrap:break-word;
}

.project-hero-split__image{
  position:relative;
  overflow:hidden;
  height:50vw;
  max-height:700px;
  max-width:65vw;
  display:flex;
  align-items:center;
  justify-content:center;
  padding-left:clamp(20px, 3vw, 60px);
}

.project-hero-split__image img{
  display:block;
  height:100%;
  width:auto;
  max-width:none;
  object-fit:contain;
  margin-left:35px;
}


/* -------------------------------------------------- */
/* PROJECT ROW */
/* -------------------------------------------------- */

.project-row{
  margin:100px auto 0;
  width:90vw;
  max-width:1100px;
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:clamp(16px, 4vw, 60px);
}

.project-row--with-text{
  align-items:stretch;
}

.project-row__item{
  flex:1 1 0;
  min-width:0;
  margin:0;
  height:var(--project-row-height);
  display:flex;
  align-items:stretch;
  justify-content:center;
  overflow:hidden;
}

.project-row__item img{
  height:100%;
  width:auto;
  max-width:none;
  object-fit:contain;
  display:block;
}

.project-row__item--text{
  height:var(--project-row-height);
  min-width:min(26vw, 320px);
  max-width:min(26vw, 320px);
  display:flex;
  align-items:center;
  justify-content:center;
}

.project-row__text{
  padding:28px 24px;
  font-family:var(--font-display);
  font-weight:900;
}

.project-row__text p{
  margin:0;
  line-height:1.5;
  text-align:justify;
  hyphens:auto;
}


/* -------------------------------------------------- */
/* PROJECT BLOCKS */
/* -------------------------------------------------- */

.project-block{
  --block-h:min(50vw, 700px);
  position:relative;
  margin:100px 0;
  height:var(--block-h);
}

.project-block__media{
  position:absolute;
  top:0;
  height:var(--block-h);
  z-index:2;
  display:flex;
  align-items:stretch;
  overflow:hidden;
}

.project-block__media img{
  height:100%;
  width:auto;
  max-width:70vw;
  max-height:700px;
  object-fit:cover;
}

.project-block__banner{
  position:absolute;
  top:0;
  height:var(--block-h);
  background:var(--bg-grey);
  display:flex;
  align-items:center;
  z-index:1;
}

.project-block__banner-inner{
  font-family:var(--font-body);
  max-width:15vw;
}

.project-block__banner-inner p{
  font-weight:100;
  margin:0;
  text-align:justify;
  hyphens:auto;
  overflow-wrap:break-word;
}
.project-block__title{
  font-family:var(--font-display);
  font-weight:900;
  font-size:clamp(22px, 1.8vw, 34px);
  line-height:0.92;
  margin:0 0 22px 0;
  text-transform:uppercase;
  text-align:left;
  letter-spacing:-1.5px;
}

/* Layout */

.project-block--text-left .project-block__media{
  left:calc(40vw + var(--project-anchor));
  transform:translateX(-100%);
}

.project-block--text-left .project-block__banner{
  left:0;
  right:calc(100vw - var(--project-anchor));
}

.project-block--text-left .project-block__banner-inner{
  margin-left:clamp(20px, 5vw, 72px);
  margin-right:20px;
}

.project-block--text-right .project-block__media{
  left:0;
  right:calc(100% - var(--project-anchor));
  transform:translateX(20%);
}

.project-block--text-right .project-block__banner{
  left:var(--project-anchor);
  right:0;
}

.project-block--text-right .project-block__banner-inner{
  margin-left:auto;
  margin-right:clamp(20px, 5vw, 72px);
}

.project-block--image-only .project-block__media{
  left:var(--project-anchor);
  transform:translateX(-50%);
}

.project-block--image-only .project-block__banner{
  left:0;
  right:0;
}

.project-block--image-only::after{
  content:"";
  position:absolute;
  top:0;
  left:var(--project-anchor);
  height:var(--block-h);
  width:88px;
}


/* -------------------------------------------------- */
/* INSIGHT EXTRA */
/* -------------------------------------------------- */

.insight-extra{
  margin:100px 15vw;
  display:grid;
  grid-template-columns:60% 40%;
}

.insight-extra__media{
  overflow:hidden;
}

.insight-extra__media img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.insight-extra__text{
  display:flex;
  align-items:center;
}

.insight-extra__text-inner{
  padding:48px clamp(24px, 4vw, 64px);
  font-family:var(--font-body);
  font-weight:100;
  font-size:12px;
  line-height:1.16;
  max-width:26rem;
}

.insight-extra__text-inner p{
  margin:0;
  text-align:justify;
  hyphens:auto;
}
.insight-extra__title{
  margin:0 0 16px 0;
  font-family:var(--font-display);
  font-weight:900;
  font-size:clamp(22px, 1.8vw, 34px);
  line-height:0.92;
  letter-spacing:-0.03em;
  text-transform:uppercase;
}


/* -------------------------------------------------- */
/* INSIGHT PARTNER */
/* -------------------------------------------------- */

.insight-partner{
  margin:100px 15vw;
  display:grid;
  grid-template-columns:60% 40%;
  gap:40px;
}

.insight-partner__media img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.insight-partner__text{
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}

.insight-partner__text-inner{
  font-family:var(--font-body);
  font-weight:100;
  font-size:12px;
  line-height:1.16;
  padding-right:clamp(20px, 5vw, 72px);
}

.insight-partner__title{
  margin:0 0 16px 0;
  font-family:var(--font-display);
  font-weight:900;
  font-size:clamp(22px, 1.8vw, 34px);
  line-height:0.92;
  letter-spacing:-0.03em;
  text-transform:uppercase;
}

.insight-partner__text-inner p{
  margin:0;
  text-align:justify;
  hyphens:auto;
}


/* -------------------------------------------------- */
/* RESPONSIVE */
/* -------------------------------------------------- */

@media (max-width:1024px){

  .project-detail{
    padding:0 0 64px 0;
    --project-anchor:50vw;
    --project-row-height:auto;
  }

  /* Hero */

  .project-hero-split{
    display:flex;
    flex-direction:column;
    background:transparent;
    margin-top:0;
  }

  .project-hero-split__image{
    order:1;
    width:100%;
    margin:24px 0;
    max-width:none;
    padding-left:0;
  }

  .project-hero-split__image img{
    width:100%;
    height:auto;
    object-fit:cover;
    margin-left:0;
  }
  .project-hero-split__text-inner{
    display:grid;
    grid-template-columns:72px 1fr;
    padding:0;
    align-items:stretch;
  }
  .project-title{
    grid-column:1;
    grid-row:1 / span 2;
    margin:0;
    padding:18px 0;
    background:var(--accent);
    color:var(--text);
    font-size:clamp(28px,8vw,48px);
    line-height:0.9;
    writing-mode:vertical-rl;
    transform:rotate(180deg);
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    letter-spacing:-0.04em;
    writing-mode:vertical-rl;
    transform:rotate(180deg);
  }
  .project-context{
    grid-column:2;
    grid-row:1;
    text-align:left;
    margin:0;
    padding:18px 18px 0 18px;
    font-size:12px;
    line-height:1.15;
  }
  .project-hero-split__text{
    order:2;
    background:var(--bg-grey);
  }

  .project-hero-split__text-inner{
    display:grid;
    grid-template-columns:72px 1fr;
  }
  .project-intro__text{
    grid-column:2;
    grid-row:2;
    margin:0;
    padding:12px 18px 18px 18px;
    font-size:12px;
    line-height:1.2;
  }


  /* Row */

  .project-row{
    display:block;
    width:100%;
    max-width:85vw;
    margin:70px auto 0;
    padding:0 18px;
	
  }

  .project-row__item{
    width:100%;
    height:auto;
    margin-bottom:24px;
    display:block;
  }
	  .project-row__item--text{
    width:100%;
    max-width:none;
    margin:0 auto 24px;
    display:flex;
    justify-content:center;
  }

  .project-row__text{
    width:100%;
    max-width:85vw;
    padding:18px 0;
  }


  .project-row__item img{
    width:100%;
    height:auto;
  }

  /* Blocks */

/* Blocks */

.project-block{
  --block-h:auto;
  position:relative;
  height:auto;
  margin:24px 0;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  width:100%;
}

.project-block__media,
.project-block__banner{
  position:relative;
  left:auto !important;
  right:auto !important;
  top:auto;
  bottom:auto;
  transform:none !important;
  width:100% !important;
  height:auto;
  max-width:none;
}

.project-block__banner{
  order:1;
  display:block;
  min-height:auto;
  background:var(--bg-grey);
  padding:18px;
  margin:0;
  text-align:left;
}

.project-block__media{
  order:2;
  display:block;
  margin-top:24px;
}

.project-block__media img{
  display:block;
  width:100%;
  height:auto;
  object-fit:cover;
  max-width:none;
}

.project-block__banner-inner,
.project-block--text-left .project-block__banner-inner,
.project-block--text-right .project-block__banner-inner{
  max-width:100%;
  margin:0;
  font-size:12px;
  line-height:1.2;
  text-align:left;
}

.project-block--text-left .project-block__media,
.project-block--text-right .project-block__media,
.project-block--image-only .project-block__media{
  left:auto !important;
  right:auto !important;
  transform:none !important;
  width:100% !important;
}

.project-block--text-left .project-block__banner,
.project-block--text-right .project-block__banner{
  left:auto !important;
  right:auto !important;
  width:100% !important;
}

.project-block--image-only::after{
  display:none;
}

  /* Insight */

  .insight-extra{
    margin:100px 10vw;
    grid-template-columns:1fr;
  }

  .insight-partner{
    margin:100px 10vw;
    grid-template-columns:1fr;
  }
}

/* -------------------------------------------------- */
/* Studio Page */
/* -------------------------------------------------- */

.studio-page{
  background:var(--bg);
  padding-bottom:120px;
}

.studio-band{
  display:grid;
  align-items:stretch;
  margin-bottom:10vw;
}

.studio-band--top{
  grid-template-columns:1.2fr 0.72fr clamp(100px, 20vw, 500px);
}

.studio-band--person{
  grid-template-columns:clamp(100px, 500px, 14vw) 420px 520px;
  justify-content:start;
}

.studio-band--person-right{
  grid-template-columns:520px 420px clamp(100px, 500px, 14vw);
  justify-content:end;
}

.studio-band__panel{
  min-width:0;
}

.studio-band__panel--text{
  background:var(--accent);
  display:flex;
  align-items:center;
}

.studio-band__panel--image{
  display:flex;
  align-items:stretch;
}

.studio-band__panel--image img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

.studio-band__panel--persontext{
  display:flex;
  align-items:flex-start;
  background:transparent;
}

.studio-band__rail{
  background:var(--accent);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  height:100%;
}

.studio-band__rail span{
  font-family:var(--font-display);
  font-weight:900;
  font-size:clamp(52px,4.8vw,82px);
  letter-spacing:-0.08em;
  line-height:0.9;
  color:var(--text);
  writing-mode:vertical-rl;
  transform:rotate(180deg);
  text-transform:uppercase;
}

.studio-person__inner{
  width:100%;
  padding-top:24px;
  display:flex;
  flex-direction:column;
}

.studio-band--person-right .studio-person__inner{
  text-align:right;
  align-items:flex-end;
}

.studio-copy{
  font-family:var(--font-body);
  font-weight:400;
  color:var(--text);
}

.studio-copy--small{
  max-width:520px;
  padding:0 18px 28px 18px;
}

.studio-copy--small-person{
  max-width:520px;
  padding:0 18px 28px 18px;
  font-weight:100;
}

.studio-band--top .studio-copy--small{
  max-width:560px;
  padding:48px 42px;
  font-size:clamp(9px,1rem,22px);
  line-height:1.1;
}

.studio-band--person-right .studio-copy--small{
  margin-left:auto;
}

.studio-copy p{
  margin:0 0 16px 0;
}

.studio-copy p:last-child{
  margin-bottom:0;
}

.studio-contact{
  padding-inline:18px;
  margin-top:8px;
  color:var(--text);
}

.studio-band--person-right .studio-contact{
  text-align:right;
  margin-left:auto;
  max-width:500px;
}

.studio-contact__person{
  font-family:var(--font-display);
  font-weight:900;
  margin-bottom:14px;
}

.studio-contact__person p{
  margin:0 0 6px 0;
}

.studio-contact__note{
  font-family:var(--font-body);
  font-weight:400;
  font-size:clamp(10px,1.2rem,25px);
  line-height:1.25;
  max-width:500px;
}

.studio-band--person-right .studio-contact__note{
  margin-left:auto;
}

.studio-contact__note p{
  margin:0;
}

/* Studio responsive */

@media (max-width:1024px){

  .studio-band--top,
  .studio-band--person,
  .studio-band--person-right{
    display:grid;
    grid-template-columns:1fr 90px;
    grid-template-areas:
      "image rail"
      "text text";
  }

  .studio-band__panel--image{
    grid-area:image;
    min-height:unset;
  }

  .studio-band__rail{
    grid-area:rail;
    min-height:180px;
  }

  .studio-band__panel--text,
  .studio-band__panel--persontext{
    grid-area:text;
  }

  .studio-band__rail span{
    writing-mode:vertical-rl;
    transform:rotate(180deg);
  }

  .studio-person__inner,
  .studio-band--person-right .studio-person__inner{
    text-align:left;
    align-items:flex-start;
  }

  .studio-band--person-right .studio-copy--small{
    margin-left:0;
  }

  .studio-band--person-right .studio-contact{
    margin-left:0;
    text-align:left;
  }
}


/* -------------------------------------------------- */
/* Project Archive List */
/* -------------------------------------------------- */

.projects-archive{
  background:var(--bg-grey);
  min-height:100vh;
  padding:0 0 80px 0;
}

.projects-archive__shell{
  display:grid;
  grid-template-columns:120px minmax(0, 1fr);
  column-gap:56px;
  align-items:start;
  padding-right:var(--pad);
}

.projects-archive__rail{
  align-self:start;
  display:flex;
  justify-content:center;
  align-items:flex-start;
  margin-top:60px;
}

.projects-archive__rail-text{
  font-family:var(--font-display);
  font-weight:900;
  font-size:clamp(72px,8vw,140px);
  letter-spacing:-0.03em;
  line-height:0.85;
  color:var(--text);
  writing-mode:vertical-rl;
  transform:rotate(180deg);
  text-transform:uppercase;
}

.projects-archive__list{
  max-width:900px;
  padding-top:60px;
}

.archive-entry{
  margin-bottom:34px;
}

.archive-entry__link{
  display:grid;
  grid-template-columns:135px minmax(0, 1fr);
  column-gap:18px;
  align-items:start;
  text-decoration:none;
  color:inherit;
}

.archive-entry__image{
  width:135px;
  aspect-ratio:1 / 1;
  overflow:hidden;
}

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

.archive-entry__content{
  padding-top:14px;
}

.archive-entry__title{
  margin:0 0 6px 0;
  font-family:var(--font-display);
  font-weight:900;
  font-size:clamp(20px,1.8vw,34px);
  line-height:0.92;
  letter-spacing:-0.03em;
  text-transform:uppercase;
  color:var(--text);
}

.archive-entry__meta{
  font-family:var(--font-display);
  font-weight:300;
  font-size:11px;
  line-height:1.1;
  text-transform:uppercase;
  color:var(--text);
}

.archive-entry__insight{
  margin-top:8px;
  font-family:var(--font-display);
  font-size:11px;
  line-height:1.15;
  color:var(--accent);
}

.archive-entry__insight-label{
  font-weight:900;
  text-transform:uppercase;
  margin-right:8px;
}

.archive-entry__insight-text{
  font-weight:300;
}
.archive-entry.is-insight{
  background:transparent;
}

/* Project Archive responsive */

@media (max-width:1024px){

  .projects-archive__shell{
    grid-template-columns:80px minmax(0, 1fr);
    column-gap:28px;
  }

  .archive-entry__link{
    grid-template-columns:110px minmax(0, 1fr);
  }

  .archive-entry__image{
    width:110px;
  }

  /* ↓ DAS gehört mit rein ↓ */

  .projects-archive{
    padding-bottom:48px;
  }

  .projects-archive__shell{
    grid-template-columns:1fr;
    padding-inline:var(--pad);
  }

  .projects-archive__rail{
    position:relative;
    min-height:auto;
    justify-content:flex-start;
    margin-bottom:20px;
  }

  .projects-archive__rail-text{
    writing-mode:horizontal-tb;
    transform:none;
    font-size:42px;
  }

  .projects-archive__list{
    padding-top:0;
  }

  .archive-entry__link{
    grid-template-columns:88px minmax(0, 1fr);
    column-gap:14px;
  }

  .archive-entry__image{
    width:88px;
  }

  .archive-entry__content{
    padding-top:8px;
  }

  .archive-entry__title{
    font-size:18px;
  }

}
/* -------------------------------------------------- */
/* Contact Page */
/* -------------------------------------------------- */

.contact-page{
  background:var(--bg-grey);
  min-height:100vh;
  padding-bottom:140px;
}

.contact-hero{
  margin:0;
}

.contact-hero__image img{
  display:block;
  width:100%;
  height:auto;
  max-height:850px;
  object-fit:cover;
}

.contact-info{
  padding:48px var(--pad) 0;
}

.contact-info__inner{
  margin-left:clamp(4rem, 18vw, 12rem);
  max-width:18rem;
}

.contact-title{
  margin:0 0 20px 0;
  font-size:clamp(44px, 4vw, 72px);
  line-height:0.9;
  text-transform:lowercase;
  color:var(--accent);
  letter-spacing: -0.03em;
}

.contact-copy{
  font-family:var(--font-body);
  font-weight:300;
  font-size:clamp(11px, 0.9vw, 15px);
  line-height:1.25;
  color:var(--accent);
}

.contact-copy p{
  margin:5px 0;
}

.contact-copy a{
  color: var(--accent);
}

.contact-copy--spaced{
  margin-top:28px;
}

/* Contact responsive */

@media (max-width:1024px){

  .contact-hero__image img{
    max-height:none;
  }


  .contact-info__inner{
    margin-left:clamp(2rem, 10vw, 6rem);
  }

  .contact-page{
    padding-bottom:80px;
  }

  .contact-info{
    padding:28px 18px 0;
  }

  .contact-info__inner{
    margin-left:0;
    max-width:100%;
  }

  .contact-copy{
    font-size:12px;
  }

}

/* -------------------------------------------------- */
/* Legal Page */
/* -------------------------------------------------- */

.legal-page{
  background: var(--bg);
  padding: 70px var(--pad) 100px 17vw;
}

.legal-page__shell{
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  column-gap: 15px;
  align-items: start;
}

.legal-page__rail{
  align-self: start;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 20px;
}

.legal-page__rail-text{
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 115px;
  letter-spacing: -0.03em;
  line-height: 0.85;
  color: var(--text);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-transform: lowercase;
}

.legal-page__content{
  max-width: 820px;
  min-width: 0;
  padding-top: 20px;
}

.legal-entry{
  min-width: 0;
}

.legal-entry__header{
  margin: 0 0 32px;
}

.legal-entry__body{
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(12px, 0.95vw, 16px);
  line-height: 1.2;
  color: var(--text);
}

.legal-entry__body > *:first-child{
  margin-top: 0;
}

.legal-entry__body p{
  margin: 0 0 14px;
  font-family: var(--font-body);
  font-weight: 400;
}

.legal-entry__body ul,
.legal-entry__body ol{
  margin: 0 0 14px;
  padding-left: 1.2em;
  font-family: var(--font-body);
  font-weight: 400;
}

.legal-entry__body li{
  margin: 0 0 6px;
}

.legal-entry__body strong{
  font-weight: 900;
}

.legal-entry__body a{
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 0.1em;
  overflow-wrap: anywhere;
}

.legal-entry__body a:hover{
  color: var(--accent);
}

@media (max-width: 640px){
  .legal-page{
    padding: 55px var(--pad) 80px;
  }
	
.legal-page__shell{
  column-gap: 0;
}
	
.legal-page__rail-text{
  font-size: 75px;
}

  .legal-page__content{
    max-width: 100%;
    padding-top: 0;
  }
}

/* -------------------------------------------------- */
/* Zusammenarbeit */
/* -------------------------------------------------- */

.collab-page{
  background:var(--bg-grey);
  color:var(--accent);
  font-family:var(--font-body);
}

.collab-intro,
.collab-section{
  width:100%;
  padding:calc(var(--gap) * 0.7) var(--pad);
}

.collab-intro{
  min-height:auto;
  padding-top:calc(var(--gap) * 1.1);
  padding-bottom:calc(var(--gap) * 0.9);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

.collab-mark{
  width:clamp(120px, 14vw, 220px);
  margin-bottom:calc(var(--gap) * 0.7);
}

.collab-mark img{
  width:100%;
  display:block;
}

.collab-text{
  width:min(520px, 100%);
}

.collab-text h1,
.collab-text h2{
  font-size: 22px;
  margin:0 0 0.8em;
  font-weight:900;
  letter-spacing:0;
  line-height:1;

}

.collab-text p{
   font-size: 20px;
  font-weight:100;
  margin:0 0 1em;
}

.collab-section{
  display:flex;
  justify-content:center;
}

.collab-band{
  min-height:auto;
  background:var(--bg-orange);
  color:var(--text);
  display:grid;
  grid-template-columns:1fr minmax(280px, 520px) 1fr;
  align-items:center;
  padding:calc(var(--gap) * 0.55) var(--pad);
}

.collab-band__rail{
  justify-self:end;
  margin-right:calc(var(--gap) * 0.4);
  writing-mode:vertical-rl;
  transform:rotate(180deg);
  font-family:var(--font-display);
  font-size:clamp(28px, 3.5vw, 58px);
  line-height:0.85;
  font-weight:900;
  letter-spacing:-0.03em;
  text-transform:uppercase;
}

.collab-band__content{
  max-width:360px;
}

.collab-band__content h2{
  font-size: 22px;
  line-height:1.1;
  margin:1.4em 0 0.25em;
  font-weight:900;
}

.collab-band__content p{
  font-size: 20px;
  font-weight:100;
  margin:0 0 1em;
}

.collab-section--final{
  padding-top:calc(var(--gap) * 0.8);
  padding-bottom:calc(var(--gap) * 1);
}

.collab-section--final .collab-text h2{
	  font-size: 22px;

  margin-top:2em;
}

.collab-section--final .collab-text h2:first-child{
  margin-top:0;
}

@media (max-width:1024px){
  .collab-intro,
  .collab-section{
    padding:calc(var(--gap) * 2) var(--pad);
  }

  .collab-intro{
    padding-top:calc(var(--gap) * 1.3);
    padding-bottom:calc(var(--gap) * 1.05);
  }

  .collab-band{
    grid-template-columns:70px 1fr;
    gap:calc(var(--gap) * 0.35);
    padding:calc(var(--gap) * 0.95) var(--pad);
  }

  .collab-band__rail{
    justify-self:center;S
    margin-right:0;
    font-size:clamp(28px, 10vw, 44px);
  }

  .collab-band__content{
    max-width:none;
  }

  .collab-mark{
    margin-bottom:calc(var(--gap) * 0.9);
  }
}
