
/*                                                                                                
                                                                                                    
                                                                                                                                                                                                                                                                                              
                                        .@@@@@@@@@@@@@@*                                            
                                   @@@@@@@@,             @@@@@                                      
                                @@@@@@@                        @@&                                  
                             @@@@@@@                            @@@                                 
                            @@@@@@                            @@@@                                  
                          @@@@@@@                           @@@@@                                   
                         %@@@@@@             @@           @@@@@@       @@                           
                         @@@@@@@            @@@@@@      @@@@@@@        (@@                          
                         @@@@@@@           @@@@@@@@@@ @@@@@@@@          @@@                         
                         @@@@@@@          @@@@@@@@@@@@@@@@@@            @@@                         
                         @@@@@@@@        @@@@@@@@@@@@@@@@@@             @@@/                        
                         @@@@@@@@*      @@@@@@@@@@@@@@@@@@              @@@*                        
                          @@@@@@@@@    @@@@@@@@@@ @@@@@@@              @@@@                         
                           @@@@@@@@@( @@@@@@@@@      @@@             (@@@@@                         
                             @@@@@@@@@@@@@@@*                      .@@@@@@                          
                              @@@@@@@@@@@@                      ,@@@@@@@@                           
                                @@@@@@@@         @@@,    ,@@@@@@@@@@@@@                             
                                  @@@@         @@@@@@@@@@@@@@@@@@@@@/                               
                                 @@@         @@@@@@@@@@@@@@@@@@@@                                   
                                @                .@@@@@@@@                                          
                                                                                                    
                                                                                                    
                                                                                                    
*/

:root {
  --glow-r: 160;
  --glow-g: 207;
  --glow-b: 115;
  --glow: rgb(var(--glow-r), var(--glow-g), var(--glow-b));
  --glow-30: rgba(var(--glow-r), var(--glow-g), var(--glow-b), .30);
  --glow-20: rgba(var(--glow-r), var(--glow-g), var(--glow-b), .20);
  --glow-12: rgba(var(--glow-r), var(--glow-g), var(--glow-b), .12);
  --glow-08: rgba(var(--glow-r), var(--glow-g), var(--glow-b), .08);
  --glow-04: rgba(var(--glow-r), var(--glow-g), var(--glow-b), .04);
}

@keyframes slideDown {
  0% { transform: translateY(-100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}


.header-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  padding: 60px 0;
  background: linear-gradient(to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.95) 40%,
    rgba(0, 0, 0, 0) 100%);
  z-index: 1000;
  animation: slideDown 0.8s ease-out forwards;
}

.header-container {
  width: 70vw;
  max-width: 1400px;
  min-width: 320px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-container img { height: 60px; }

.header-title {
  font-size: clamp(24px, 6vw, 46px);
  font-weight: 900;
  letter-spacing: -0.5px;
  text-align: center;
  flex: 1;
  color: #fff;
}

.content {
  margin-top: -100px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.soc-wrap {
  display: flex;
  flex-direction: row-reverse;
  width: 80vw;
  max-width: 1000px;
  align-items: flex-start;
  margin-left: 100px;
}

.social-block {
  display: flex;
  flex-direction: column;
  width: 100px;
  height: 300px;
  margin-left: 20px;
  align-items: center;
  justify-content: center;
}

.work-social-link {
  display: block;
  width: 30px;
  height: 30px;
  opacity: 0.6;
  margin-top: 30px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.work-social-link:hover { opacity: 1; transform: translateY(-2px); }
.work-social-link img { width: 70px; height: 70px; }


.works-content-v1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  width: 100%;
  justify-content: center;
}

.works-content-v2 {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 30px;
  width: 100%;
}

.top-content-v1 {
  grid-column: 1 / 3;
  border-radius: 20px;
  background: #0b0f0b;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 16px 48px -12px var(--glow-12),
    0 0 80px 24px var(--glow-08),
    0 0 240px 60px var(--glow-04);
  transition: transform .25s ease, box-shadow .25s ease;
}
.top-content-v1:hover {
  box-shadow:
    0 20px 60px -10px var(--glow-20),
    0 0 100px 32px var(--glow-12),
    0 0 300px 80px var(--glow-08);
}
.top-content-v1 video,
.top-content-v1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.left-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.left-column > div,
.left-column-v2 > div {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: #000;
}
.left-column > div { flex: 1; }
.left-column img,
.left-column-v2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.left-column-v2 {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 30px;
}
.left-column-v2 > div { flex: 0 0 calc(50% - 15px); }

.right-v1 {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  display: flex;
  flex-direction: column;
}
.right-v1 img,
.right-v1 video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.bottom-text {
  width: 80vw;
  max-width: 1000px;
  font-size: 22px;
  font-weight: 200;
  color: #fff;
  text-align: left;
  margin: 40px 0 0 100px;
}
.desc-text { max-width: 900px; margin-bottom: 30px; }
.bottom-link a {
  font-size: 23px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}
.bottom-link a:hover { color: #de5b3b; }


.works-nav {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 8px;
  margin: 50px 0 100px;
}

.prev-work,
.next-work {
  display: flex;
  align-items: center;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
}
.prev-work a,
.next-work a,
.letstalk-work a {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}
.prev-work img,
.next-work img,
.letstalk-work img {
  height: 30px;
  margin-bottom: -7px;
}
.next-work img { margin-left: 10px; }
.prev-work img { margin-right: 10px; transform: scaleX(-1); }
.letstalk-work img { margin-right: 10px; }
.prev-work:hover img,
.next-work:hover img,
.letstalk-work:hover img { scale: 1.1; }
.prev-work a:hover,
.next-work a:hover,
.letstalk-work a:hover { color: #de5b3b; }
.letstalk-work {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .works-content-v1 { gap: 10px; }
  .bottom-text {
    font-size: 21px;
    letter-spacing: -0.5px;
    width: 90vw;
    max-width: 900px;
    margin-top: 60px;
    margin-left: 0;
  }
  .social-block {
    flex-direction: row;
    margin-right: 100px;
    height: 60px;
  }
  .work-social-link { margin-left: 30px; }
  .header-container {
    width: 90vw;
    max-width: 800px;
  }
  .header-container img { height: 40px; }
  .soc-wrap {
    flex-direction: column-reverse;
    width: 90vw;
    max-width: 900px;
    align-items: flex-end;
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .works-content-v2 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .left-column-v2 {
    flex-wrap: nowrap;
    flex-direction: column;
  }
  .left-column-v2 > div { flex: auto; }
  .works-content-v1 { grid-template-columns: 1fr; gap: 30px; margin-left: 0; }
  .right-v1 { aspect-ratio: 2/2; }
  .top-content-v1 { grid-column: 1; aspect-ratio: 16 / 9; }
  .content { margin-top: -20px; }
  .header-title { font-size: 20px; font-weight: 700; }
  .header-gradient { margin-top: -50px; height: 200px; }
  .works-nav {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 2fr;
    gap: 40px;
  }
  .works-nav > :nth-child(3) {
    display: flex;
    justify-items: right;
    grid-column: 1 / -1;
    height: 100px;
  }
  .prev-work { justify-content: flex-end; }
}