/* =========================
   RESET
========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

/* =========================
   COLOR SYSTEM
========================= */

:root{
  --primary-red:#C4001C;
  --primary-orange:#FF3100;
  --secondary-blue:#2B3EF7;
  --gray:#A7A7A7;
  --black:#000000;
  --white:#FFFFFF;
  --cream:#F6F3EC;
}

html{
  font-size:19px;
  scroll-behavior:smooth;
}

body{

  font-family:
  "Helvetica Neue",
  Helvetica,
  Arial,
  sans-serif;

  color:var(--black);

  overflow-x:hidden;
}



/* =========================
   CASE STUDY PAGE
========================= */

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

  display:grid;
  grid-template-columns:55% 45%;

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

/* LEFT SIDE MEDIA */

.case-media{
  min-height:100vh;

  padding:1rem;

  display:flex;
  flex-direction:column;

  gap:1rem;

  border-right:1px solid rgba(255,255,255,.18);
}

.case-image{
  width:100%;

  background:#080808;

  border:1px solid rgba(255,255,255,.18);

  overflow:hidden;

  display:flex;
  align-items:center;
  justify-content:center;
}

.case-image.large{
  min-height:42rem;
}

.case-image img{
  width:100%;
  height:100%;

  display:block;

  object-fit:contain;
}

.case-image:not(.large){
  min-height:34rem;
}

/* RIGHT SIDE TEXT */

.case-info{
  min-height:100vh;

  padding:2rem;

  border-left:1px solid rgba(255,255,255,.08);
}

.case-sticky{
  position:sticky;

  top:2rem;

  max-width:44rem;
}

/* BACK */

.back-link{
  display:inline-block;

  color:rgba(255,255,255,.7);

  text-decoration:none;

  font-size:.8rem;
  font-weight:800;

  letter-spacing:.05em;

  margin-bottom:1.5rem;

  transition:.3s ease;
}

.back-link:hover{
  color:var(--primary-orange);

  transform:translateX(-.2rem);
}

/* TITLE */

.case-sticky h1{
  font-size:clamp(3.4rem, 5.8vw, 6.5rem);

  line-height:.82;

  font-weight:500;

  letter-spacing:-.08em;

  margin-bottom:1rem;
}

.case-subtitle{
  max-width:38rem;

  color:rgba(255,255,255,.72);

  font-size:.95rem;

  line-height:1.55;

  margin-bottom:1.3rem;
}

/* TAGS */

.case-tags{
  display:flex;
  flex-wrap:wrap;

  gap:.55rem;

  margin-bottom:1.6rem;
}

.case-tags span{
  padding:.5rem .75rem;

  border-radius:999px;

  background:var(--white);
  color:var(--black);

  font-size:.65rem;
  font-weight:900;

  letter-spacing:.04em;
}

.case-tags span:hover{
  background:var(--primary-orange);
  color:var(--white);
}

/* META */

.case-meta{
  display:grid;
  grid-template-columns:repeat(3, 1fr);

  border-top:1px solid rgba(255,255,255,.18);
  border-bottom:1px solid rgba(255,255,255,.18);

  margin-bottom:1.5rem;
}

.case-meta div{
  padding:.8rem;

  border-right:1px solid rgba(255,255,255,.18);
}

.case-meta div:last-child{
  border-right:none;
}

.case-meta span{
  display:block;

  color:var(--primary-orange);

  font-size:.58rem;
  font-weight:900;

  letter-spacing:.12em;

  text-transform:uppercase;

  margin-bottom:.5rem;
}

.case-meta p{
  color:var(--white);

  font-size:.75rem;

  line-height:1.35;
}

/* TEXT */

.case-text{
  max-width:40rem;
}

.case-text h2{
  color:var(--white);

  font-size:.82rem;

  font-weight:900;

  letter-spacing:.08em;

  text-transform:uppercase;

  margin:1.5rem 0 .65rem;

  padding-top:.9rem;

  border-top:1px solid rgba(255,255,255,.18);
}

.case-text p{
  color:rgba(255,255,255,.72);

  font-size:.85rem;

  line-height:1.65;

  margin-bottom:.85rem;
}

.case-text strong{
  color:var(--white);
}

/* =========================
   CASE PAGE RESPONSIVE
========================= */

@media(max-width:1000px){

  .case-page{
    grid-template-columns:1fr;
  }

  .case-media{
    border-right:none;
    border-bottom:1px solid rgba(255,255,255,.18);
  }

  .case-info{
    border-left:none;
  }

  .case-sticky{
    position:relative;
    top:0;

    max-width:100%;
  }

  .case-image.large,
  .case-image:not(.large){
    min-height:auto;
    aspect-ratio:16 / 10;
  }
}

@media(max-width:650px){

  .case-media{
    padding:.8rem;
  }

  .case-info{
    padding:1.2rem;
  }

  .case-sticky h1{
    font-size:clamp(3.2rem, 17vw, 5.8rem);
  }

  .case-meta{
    grid-template-columns:1fr;
  }

  .case-meta div{
    border-right:none;
    border-bottom:1px solid rgba(255,255,255,.18);
  }

  .case-meta div:last-child{
    border-bottom:none;
  }

  .case-image.large,
  .case-image:not(.large){
    aspect-ratio:1 / 1;
  }
}
/* CASE VIDEO */

.case-video{
  width:100%;

  background:#080808;

  border:1px solid rgba(255,255,255,.18);

  overflow:hidden;

  display:flex;
  align-items:center;
  justify-content:center;
}

.case-video.large{
  min-height:42rem;
}

.case-video video{
  width:100%;
  height:100%;

  display:block;

  object-fit:contain;

  background:#080808;
}

/* CASE BUTTON */

.case-actions{
  margin:0 0 1.6rem;
}

.case-button{
  width:fit-content;

  display:flex;
  align-items:center;
  gap:.8rem;

  text-decoration:none;

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

  border:1px solid var(--cream);
  border-radius:999px;

  padding:.7rem .85rem .7rem 1rem;

  font-size:.75rem;
  font-weight:900;

  letter-spacing:.04em;

  transition:.35s ease;
}

.case-button:hover{
  color:var(--primary-orange);
  border-color:var(--primary-orange);

  transform:translateY(-.15rem);
}

.case-button span:last-child{
  width:2rem;
  height:2rem;



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

 

  color:var(--cream);

  transition:.35s ease;
}

.case-button:hover span:last-child{
  border-color:var(--primary-orange);
  color:var(--primary-orange);

  transform:rotate(45deg);
}
@media(max-width:1000px){

  .case-video.large{
    min-height:auto;
    aspect-ratio:16 / 10;
  }
}

@media(max-width:650px){

  .case-video.large{
    aspect-ratio:1 / 1;
  }
}


/* =========================
   THE MORNING BREW THEME
   Uses same case-page layout
========================= */

.brew-theme{
  background:#F6EDCA;
  color:#3E2723;
}

.brew-theme .case-media{
  border-right:1px solid rgba(62,39,35,.25);
}

.brew-theme .case-image,
.brew-theme .case-video{
  background:#D9D0BD;
  border:1px solid rgba(62,39,35,.25);
}

.brew-theme .case-image img,
.brew-theme .case-video video{
  background:#D9D0BD;
}

.brew-theme .case-info{
  border-left:1px solid rgba(62,39,35,.18);
}

.brew-theme .back-link{
  color:#3E2723;
}

.brew-theme .back-link:hover{
  color:#B00005;
}

.brew-theme .case-sticky h1{
  color:#3E2723;
  font-weight:950;
}

.brew-theme .case-subtitle{
  color:rgba(62,39,35,.78);
}

.brew-theme .case-tags span{
  background:#3E2723;
  color:#F6EDCA;
}

.brew-theme .case-tags span:hover{
  background:#B00005;
  color:#FFFFFF;
}

.brew-theme .case-meta{
  border-top:1px solid rgba(62,39,35,.25);
  border-bottom:1px solid rgba(62,39,35,.25);
}

.brew-theme .case-meta div{
  border-right:1px solid rgba(62,39,35,.25);
}

.brew-theme .case-meta div:last-child{
  border-right:none;
}

.brew-theme .case-meta span{
  color:#B00005;
}

.brew-theme .case-meta p{
  color:#3E2723;
}

.brew-theme .case-text h2{
  color:#B00005;
  border-top:1px solid rgba(62,39,35,.25);
}

.brew-theme .case-text p{
  color:rgba(62,39,35,.78);
}

.brew-theme .case-text strong{
  color:#3E2723;
}

/* button theme */

.brew-theme .case-button{
  color:#3E2723;
  border:1px solid #3E2723;
}

.brew-theme .case-button span:last-child{
  color:#3E2723;
}

.brew-theme .case-button:hover{
  color:#B00005;
  border-color:#B00005;
}

.brew-theme .case-button:hover span:last-child{
  color:#B00005;
}

/* responsive border fixes */

@media(max-width:1000px){

  .brew-theme .case-media{
    border-right:none;
    border-bottom:1px solid rgba(62,39,35,.25);
  }

  .brew-theme .case-info{
    border-left:none;
  }
}

@media(max-width:650px){

  .brew-theme .case-meta div{
    border-right:none;
    border-bottom:1px solid rgba(62,39,35,.25);
  }

  .brew-theme .case-meta div:last-child{
    border-bottom:none;
  }
}

/* =========================
   PARASITE / LIVING ABOVE THEME
   Uses same case-page layout
========================= */

.parasite-theme{
  background:#050505;
  color:#F6F3EC;
}

.parasite-theme .case-media{
  border-right:1px solid rgba(246,243,236,.18);
  background:
    linear-gradient(
      180deg,
      #111 0%,
      #050505 45%,
      #000 100%
    );
}

.parasite-theme .case-image,
.parasite-theme .case-video{
  background:#0A0A0A;
  border:1px solid rgba(246,243,236,.18);
}

.parasite-theme .case-image img,
.parasite-theme .case-video video{
  background:#0A0A0A;
}

.parasite-theme .case-info{
  border-left:1px solid rgba(246,243,236,.08);
  background:
    radial-gradient(
      circle at top right,
      rgba(196,0,28,.18),
      transparent 35%
    ),
    #050505;
}

.parasite-theme .back-link{
  color:var(--cream);
}

.parasite-theme .back-link:hover{
  color:var(--primary-red);
}

.parasite-theme .case-sticky h1{
  color:#F6F3EC;

  font-weight:950;

  letter-spacing:-.09em;
}

.parasite-theme .case-subtitle{
  color:rgba(246,243,236,.72);
}

.parasite-theme .case-tags span{
  background:#F6F3EC;
  color:#050505;
}

.parasite-theme .case-tags span:hover{
  background:var(--primary-red);
  color:#F6F3EC;
}

.parasite-theme .case-meta{
  border-top:1px solid rgba(246,243,236,.18);
  border-bottom:1px solid rgba(246,243,236,.18);
}

.parasite-theme .case-meta div{
  border-right:1px solid rgba(246,243,236,.18);
}

.parasite-theme .case-meta div:last-child{
  border-right:none;
}

.parasite-theme .case-meta span{
  color:var(--primary-red);
}

.parasite-theme .case-meta p{
  color:#F6F3EC;
}

.parasite-theme .case-text h2{
  color:var(--primary-red);

  border-top:1px solid rgba(246,243,236,.18);
}

.parasite-theme .case-text p{
  color:rgba(246,243,236,.72);
}

.parasite-theme .case-text strong{
  color:#F6F3EC;
}

.parasite-theme .case-button{
  color:#F6F3EC;

  border:1px solid rgba(246,243,236,.7);
}

.parasite-theme .case-button span:last-child{
  color:#F6F3EC;
}

.parasite-theme .case-button:hover{
  color:var(--primary-red);
  border-color:var(--primary-red);
}

.parasite-theme .case-button:hover span:last-child{
  color:var(--primary-red);
}

/* responsive border fixes */

@media(max-width:1000px){

  .parasite-theme .case-media{
    border-right:none;
    border-bottom:1px solid rgba(246,243,236,.18);
  }

  .parasite-theme .case-info{
    border-left:none;
  }
}

@media(max-width:650px){

  .parasite-theme .case-meta div{
    border-right:none;
    border-bottom:1px solid rgba(246,243,236,.18);
  }

  .parasite-theme .case-meta div:last-child{
    border-bottom:none;
  }
}

/* =========================
   BLENDER / POOLHOUSE THEME
   Uses same case-page layout
========================= */

.blender-theme{
  background:#05030A;
  color:#F6F3EC;
}

.blender-theme .case-media{
  border-right:1px solid rgba(246,243,236,.16);

  background:
    radial-gradient(
      circle at 20% 10%,
      rgba(43,62,247,.22),
      transparent 32%
    ),
    radial-gradient(
      circle at 80% 40%,
      rgba(255,49,0,.18),
      transparent 35%
    ),
    #05030A;
}

.blender-theme .case-image,
.blender-theme .case-video{
  background:#080612;

  border:1px solid rgba(246,243,236,.18);

  box-shadow:
    0 0 2rem rgba(43,62,247,.08),
    0 0 3rem rgba(255,49,0,.06);
}

.blender-theme .case-image img,
.blender-theme .case-video video{
  background:#080612;
}

.blender-theme .case-info{
  border-left:1px solid rgba(246,243,236,.08);

  background:
    radial-gradient(
      circle at top right,
      rgba(43,62,247,.2),
      transparent 38%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(255,49,0,.15),
      transparent 35%
    ),
    #05030A;
}

.blender-theme .back-link{
  color:rgba(246,243,236,.68);
}

.blender-theme .back-link:hover{
  color:var(--secondary-blue);
}

.blender-theme .case-sticky h1{
  color:#F6F3EC;

  font-weight:950;

  letter-spacing:-.085em;

  text-shadow:
    0 0 1.5rem rgba(43,62,247,.18);
}

.blender-theme .case-subtitle{
  color:rgba(246,243,236,.72);
}

.blender-theme .case-tags span{
  background:#F6F3EC;
  color:#05030A;
}

.blender-theme .case-tags span:hover{
  background:var(--secondary-blue);
  color:#FFFFFF;
}

.blender-theme .case-tags span:nth-child(2):hover,
.blender-theme .case-tags span:nth-child(4):hover{
  background:var(--primary-orange);
}

.blender-theme .case-meta{
  border-top:1px solid rgba(246,243,236,.18);
  border-bottom:1px solid rgba(246,243,236,.18);
}

.blender-theme .case-meta div{
  border-right:1px solid rgba(246,243,236,.18);
}

.blender-theme .case-meta div:last-child{
  border-right:none;
}

.blender-theme .case-meta span{
  color:var(--secondary-blue);
}

.blender-theme .case-meta p{
  color:#F6F3EC;
}

.blender-theme .case-text h2{
  color:var(--primary-orange);

  border-top:1px solid rgba(246,243,236,.18);
}

.blender-theme .case-text p{
  color:rgba(246,243,236,.72);
}

.blender-theme .case-text strong{
  color:#F6F3EC;
}

.blender-theme .case-button{
  color:#F6F3EC;

  border:1px solid rgba(246,243,236,.7);
}

.blender-theme .case-button:hover{
  color:var(--secondary-blue);
  border-color:var(--secondary-blue);
}

.blender-theme .case-button:hover span:last-child{
  color:var(--secondary-blue);
}

/* responsive border fixes */

@media(max-width:1000px){

  .blender-theme .case-media{
    border-right:none;
    border-bottom:1px solid rgba(246,243,236,.18);
  }

  .blender-theme .case-info{
    border-left:none;
  }
}

@media(max-width:650px){

  .blender-theme .case-meta div{
    border-right:none;
    border-bottom:1px solid rgba(246,243,236,.18);
  }

  .blender-theme .case-meta div:last-child{
    border-bottom:none;
  }
}

/* aino */
/* =========================
   AINO TYPOGRAPHY THEME
========================= */

.aino-theme{
  background:var(--cream);
  color:var(--black);
}

.aino-theme .case-media{
  background:var(--cream);
  border-right:1px solid rgba(0,0,0,.18);
}

.aino-theme .case-image,
.aino-theme .case-video{
  background:#EFE8DD;
  border:1px solid rgba(0,0,0,.18);
}

.aino-theme .case-info{
  background:var(--cream);
  border-left:1px solid rgba(0,0,0,.12);
}

.aino-theme .back-link{
  color:rgba(0,0,0,.7);
}

.aino-theme .back-link:hover{
  color:var(--primary-orange);
}

.aino-theme .case-sticky h1{
  color:var(--black);
  font-weight:950;
  letter-spacing:-.09em;
}

.aino-theme .case-subtitle,
.aino-theme .case-text p{
  color:rgba(0,0,0,.72);
}

.aino-theme .case-tags span{
  background:var(--black);
  color:var(--cream);
}

.aino-theme .case-tags span:hover{
  background:var(--primary-orange);
  color:var(--white);
}

.aino-theme .case-meta{
  border-top:1px solid rgba(0,0,0,.18);
  border-bottom:1px solid rgba(0,0,0,.18);
}

.aino-theme .case-meta div{
  border-right:1px solid rgba(0,0,0,.18);
}

.aino-theme .case-meta span{
  color:var(--primary-orange);
}

.aino-theme .case-meta p,
.aino-theme .case-text strong{
  color:var(--black);
}

.aino-theme .case-text h2{
  color:var(--primary-orange);
  border-top:1px solid rgba(0,0,0,.18);
}


/* beeldtaal */
/* =========================
   VISUAL LANGUAGE / BEELDTAAL THEME
========================= */

.visual-language-theme{
  background:#F6F3EC;
  color:#000;
}

.visual-language-theme .case-media{
  background:#F6F3EC;
  border-right:1px solid rgba(0,0,0,.18);
}

.visual-language-theme .case-image,
.visual-language-theme .case-video{
  background:#EDECEA;
  border:1px solid rgba(0,0,0,.18);
}

.visual-language-theme .case-info{
  background:
    radial-gradient(circle at top right,rgba(196,0,28,.16),transparent 36%),
    #F6F3EC;
  border-left:1px solid rgba(0,0,0,.12);
}

.visual-language-theme .back-link{
  color:rgba(0,0,0,.65);
}

.visual-language-theme .back-link:hover{
  color:var(--primary-red);
}

.visual-language-theme .case-sticky h1{
  color:#000;
  font-weight:950;
  letter-spacing:-.085em;
}

.visual-language-theme .case-subtitle{
  color:rgba(0,0,0,.72);
}

.visual-language-theme .case-tags span{
  background:#000;
  color:#F6F3EC;
}

.visual-language-theme .case-tags span:hover{
  background:var(--primary-red);
  color:#fff;
}

.visual-language-theme .case-meta{
  border-top:1px solid rgba(0,0,0,.18);
  border-bottom:1px solid rgba(0,0,0,.18);
}

.visual-language-theme .case-meta div{
  border-right:1px solid rgba(0,0,0,.18);
}

.visual-language-theme .case-meta div:last-child{
  border-right:none;
}

.visual-language-theme .case-meta span{
  color:var(--primary-red);
}

.visual-language-theme .case-meta p{
  color:#000;
}

.visual-language-theme .case-text h2{
  color:var(--primary-red);
  border-top:1px solid rgba(0,0,0,.18);
}

.visual-language-theme .case-text p{
  color:rgba(0,0,0,.72);
}

.visual-language-theme .case-text strong{
  color:#000;
}

@media(max-width:1000px){

  .visual-language-theme .case-media{
    border-right:none;
    border-bottom:1px solid rgba(0,0,0,.18);
  }

  .visual-language-theme .case-info{
    border-left:none;
  }
}

@media(max-width:650px){

  .visual-language-theme .case-meta div{
    border-right:none;
    border-bottom:1px solid rgba(0,0,0,.18);
  }

  .visual-language-theme .case-meta div:last-child{
    border-bottom:none;
  }
}

/* =========================
   INTERFACE MOTION THEME
========================= */

.motion-theme{
  background:#050505;
  color:#F6F3EC;
}

.motion-theme .case-media{
  background:
    radial-gradient(circle at 20% 10%,rgba(255,49,0,.24),transparent 30%),
    radial-gradient(circle at 85% 45%,rgba(43,62,247,.22),transparent 34%),
    #050505;

  border-right:1px solid rgba(246,243,236,.16);
}

.motion-theme .case-image,
.motion-theme .case-video{
  background:#080808;
  border:1px solid rgba(246,243,236,.18);
  box-shadow:
    0 0 2rem rgba(255,49,0,.08),
    0 0 3rem rgba(43,62,247,.07);
}

.motion-theme .case-info{
  background:
    radial-gradient(circle at top right,rgba(255,49,0,.18),transparent 36%),
    radial-gradient(circle at bottom left,rgba(43,62,247,.16),transparent 35%),
    #050505;

  border-left:1px solid rgba(246,243,236,.08);
}

.motion-theme .back-link{
  color:rgba(246,243,236,.68);
}

.motion-theme .back-link:hover{
  color:var(--primary-orange);
}

.motion-theme .case-sticky h1{
  color:#F6F3EC;
  font-weight:950;
  letter-spacing:-.085em;
}

.motion-theme .case-subtitle{
  color:rgba(246,243,236,.72);
}

.motion-theme .case-tags span{
  background:#F6F3EC;
  color:#050505;
}

.motion-theme .case-tags span:hover{
  background:var(--primary-orange);
  color:#FFFFFF;
}

.motion-theme .case-tags span:nth-child(2):hover,
.motion-theme .case-tags span:nth-child(4):hover{
  background:var(--secondary-blue);
}

.motion-theme .case-meta{
  border-top:1px solid rgba(246,243,236,.18);
  border-bottom:1px solid rgba(246,243,236,.18);
}

.motion-theme .case-meta div{
  border-right:1px solid rgba(246,243,236,.18);
}

.motion-theme .case-meta div:last-child{
  border-right:none;
}

.motion-theme .case-meta span{
  color:var(--primary-orange);
}

.motion-theme .case-meta p{
  color:#F6F3EC;
}

.motion-theme .case-text h2{
  color:var(--primary-orange);
  border-top:1px solid rgba(246,243,236,.18);
}

.motion-theme .case-text p{
  color:rgba(246,243,236,.72);
}

.motion-theme .case-text strong{
  color:#F6F3EC;
}

.motion-theme .case-button{
  color:#F6F3EC;
  border-color:rgba(246,243,236,.75);
}

.motion-theme .case-button:hover{
  color:var(--primary-orange);
  border-color:var(--primary-orange);
}

@media(max-width:1000px){

  .motion-theme .case-media{
    border-right:none;
    border-bottom:1px solid rgba(246,243,236,.18);
  }

  .motion-theme .case-info{
    border-left:none;
  }
}

@media(max-width:650px){

  .motion-theme .case-meta div{
    border-right:none;
    border-bottom:1px solid rgba(246,243,236,.18);
  }

  .motion-theme .case-meta div:last-child{
    border-bottom:none;
  }
}