/* 공통 변수  */
:root{
  --white:#fff;
  --muted:#9aa0a6;     /* 하단 글자 회색 */
  --accent:#d10a0a;    /* 진행바 포인트 색 */
}
body{  font-family: "Montserrat", sans-serif;}
/* 히어로 영역 */
.hero{
  position:relative;
  height:100vh;
  overflow:hidden;
}

/* 상단 네비 */
.hero .navigation{ position:absolute; top:18px; left:0; right:0; height:40px; z-index:3; }
.hero .menu{ position:absolute; left:24px; top:0; display:flex; gap:40px; color:#fff; font-size:16px; font-weight:200; }
.hero .menu a{ color:inherit; }
.hero .menu a:hover{ text-decoration:underline; }
.banner_logo{ position:absolute; left:50%; top:0; transform:translateX(-50%); width:76px; height:32px; display:inline-flex; align-items:center; justify-content:center; }
.banner_logo img{ width:100%; display:block; }

/*  슬라이드(라디오)  */
input[type="radio"]{ position:absolute; opacity:0; pointer-events:none; }

/* 슬라이드 리스트 */
.slides{ position:absolute; inset:0; margin:0; padding:0; z-index:1; }
.slide{ position:absolute; inset:0; opacity:0; transition:opacity .6s ease; }
.slide img, .slide video{ width:100%; height:100%; object-fit:cover; display:block; }

#s1:checked ~ .slides li:nth-child(1),
#s2:checked ~ .slides li:nth-child(2),
#s3:checked ~ .slides li:nth-child(3),
#s4:checked ~ .slides li:nth-child(4),
#s5:checked ~ .slides li:nth-child(5){ opacity:1; z-index:1; }

/*  좌/우 화살표 */
.arrows .arrow{
  position:absolute; top:50%; transform:translateY(-50%);
  width:60px; height:60px; border-radius:50%; border:none;
  background:rgba(255,255,255,.25); color:#fff;
  text-align:center; z-index:4; cursor:pointer; user-select:none;
  backdrop-filter: blur(2px); transition:all .25s ease;
}

.arrows .arrow::before{
  content:""; display:inline-block; font-size:40px; line-height:60px; color:#fff; transform: translateY(-5%);
}
.arrow.prev::before{ content:"‹"; }
.arrow.next::before{ content:"›"; }

.arrow.prev{ left:28px; }
.arrow.next{ right:28px; }

.arrows .arrow{ display:none; }
#s1:checked ~ .arrows .a1,
#s2:checked ~ .arrows .a2,
#s3:checked ~ .arrows .a3,
#s4:checked ~ .arrows .a4,
#s5:checked ~ .arrows .a5{ display:block; }

.arrows .arrow:hover{ background:rgba(255,255,255,.45); transform:translateY(-50%) scale(1.08); }

/*  텍스트 박스  */
.hero .text_box{
  position:absolute; right:4vw; bottom:18vh; z-index:3; text-align:right;
  max-width:960px;
}
.hero .text_box .hero_title{ font-size:100px; font-weight:600; color:#fff; opacity:.5; line-height:1.05; }
.hero .text_box .hero_sub_title{ font-size:30px; font-weight:300; color:#fff; opacity:.5; margin-top:12px; }

/*  하단 인디케이터  */
.hero .indicator{ position:absolute; right:4vw; bottom:50px; z-index:3; color:var(--muted); }
.hero .hero_pagecount{ font-size:12px; text-align:right; margin-bottom:6px; }
.hero .hero_pagecount .pc{ display:none; }

#s1:checked ~ .indicator .pc1,
#s2:checked ~ .indicator .pc2,
#s3:checked ~ .indicator .pc3,
#s4:checked ~ .indicator .pc4,
#s5:checked ~ .indicator .pc5{ display:inline; }

/* 진행바 */
.hero .hero_progress{ display:flex; align-items:center; gap:16px; justify-content:flex-end; }
.hero .hero_progress-bar{ position:relative; width:400px; height:6px; background:rgba(255,255,255,.15); border-radius:999px; overflow:hidden; }
.hero .hero_progress-fill{ position:absolute; left:0; top:0; height:100%; background:var(--accent); border-radius:999px; display:none; }

.pf1{ width:20%; } .pf2{ width:40%; } .pf3{ width:60%; } .pf4{ width:80%; } .pf5{ width:100%; }
#s1:checked ~ .indicator .pf1,
#s2:checked ~ .indicator .pf2,
#s3:checked ~ .indicator .pf3,
#s4:checked ~ .indicator .pf4,
#s5:checked ~ .indicator .pf5{ display:block; }

/* 점 네비 */
.hero .hero_dots .dot{
  width:8px; height:8px; border-radius:50%;
  background:#c9cdd1; opacity:.6; margin-left:6px; display:inline-block; cursor:pointer;
}

#s1:checked ~ .indicator .d1,
#s2:checked ~ .indicator .d2,
#s3:checked ~ .indicator .d3,
#s4:checked ~ .indicator .d4,
#s5:checked ~ .indicator .d5{
  opacity:1; background:#fff; box-shadow:0 0 0 2px rgba(255,255,255,.3);
}

/* N Story 섹션 */
.N_story{
  position: relative;
  padding: 100px 0 520px;
  min-height: 2800px;

}
.N_story .inner { position: relative; }
.N_story .sub_title {
  font-size: 20px;
  font-weight: 500;
  color: #8A9DBD;
  transform: translateY(20px);
}

.N_story .title{
  font-size: 60px;
  font-weight: 600;
  color: #2d2d2d;
}

.N_story .desc{
  font-size: 18px;
  font-weight: 400;
  color: #5A5A5A;
  margin-top: 20px;
}

.N_story .N{
  font-size: 30px;
  font-weight: 300;
  margin-top: 100px;
  color: #2d2d2d;
}

.N_story .highlight{
  font-size: 50px;
  font-weight: 700;
}

.N_story .text_box{
  max-width: 700px; height: auto;
  margin-top: 80px;
  text-align: right;
  font-size: 18px;
  font-weight: 300;
  color: #5A5A5A;
}

.N_story .img_box1{ width:735px; margin-top: 150px;}
.N_story .img_box1 img{
  width:100%; height:auto; display:block;
  }

  .N_story .pair{
  display:grid;
  grid-template-columns: 1fr 1fr;
  column-gap:60px;
  align-items: start;
}

.N_story .img_box2{
  width: 530px; height: auto;
}
.N_story .img_box2 img{
  margin-top: 100px; margin-left: 140px;
}

.N_story .text_box2{
  width: 600px; height: auto;

}
.N_story .text_box2 p{
  position: absolute;
  right: 5%; top: 50%; bottom: 0;
  transform: translateY(20%);
  font-size: 18px;
  font-weight: 300;
  color: #5A5A5A;
}
.N_story .img_box3{
  width: 770px; height: auto;
}
.N_story .img_box3 img{
  position: absolute;
  right: 0; bottom: 5%;
  transform: translateY(30%)
}

.N_story .text_box3{
  position: absolute;
  top: 65%; left: 48%;
  transform: translate(-50%, -50%) rotate(90deg);
  font-family: "Montserrat";
  text-align: center;
  display: flex;
  align-items: center;
  gap: 60px;
}

.N_story .text_box3 h3{
  font-size: 50px;
  font-weight: 700;
  color: #BE2F33;
}

.N_story .text_box3 p{
  font-size: 8px;
  font-weight: 100;
  color: #BE2F33;
  letter-spacing: 3px;
}

.N_story .text_box4{
  position: absolute;
  bottom: 0; left: 8%;
  transform: translateY(180%);
}

.N_story .text_box4 h4{
  font-size: 50px;
  font-weight: 700;
  font-family: "Montserrat";
  color: #2D2D2D;
}

.N_story .text_box4 p{
  font-size: 18px;
  font-weight: 300;
  color: #5a5a5a;
}
.N_story .text_box4 p span{font-weight: 400}
.N_story .img_box4{
width: 367px; height: auto;
}

.N_story .img_box4 img{
  position: absolute;
  bottom: 0; left: 45%;
  transform: translateY(130%);
}

.N_story_logo{
  position: absolute;
  right: 30px; bottom: 0;
  z-index: 2;
  transform: translateY(1000%);
}

.N_story_logo img{
  width: 156px;
  height: auto;
  
}


/* N_vision74 섹션 */

.n_vision{
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.n_vision .text_box{
  position:absolute; text-align:right;
  max-width:600px;
  right: 1%; bottom: 5%;
}

.n_vision .banner{
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* 영상: 섹션 꽉 채우기 */
.n_vision .banner video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;       /* 핵심 */
  object-position: center; /* 필요하면 bottom / top */
}
.n_vision .text_box .n_vision_title{ font-size:100px; font-weight:700; color:#fff; opacity:.5; line-height:1.05; font-family: "Montserrat";}
.n_vision .text_box .n_vision_sub_title{ font-size:30px; font-weight:300; color:#fff; opacity:.5; margin-top:12px; font-family: "Montserrat"; }

/* N_vision74 섹션 끝 */


/* Models 섹션 */
.models{
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.models .row{
  display: flex;
}

.model{
  position: relative;
  flex: 1;
  overflow: hidden;
  cursor: pointer;
}

.model img{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.model:hover img{
  transform: scale(1.06);
}

.model .name{
  position: absolute;
  right: 18px; bottom: 12px;
  font-size: 30px; font-weight: 400;
  color: #BCBCBC;
  letter-spacing: 0.1em;
}

/* Model 섹션 끝 */

/* N_drive 섹션 */
.n_drive .inner{
  display: grid;
  grid-template-columns: 1000px 760px;
  grid-template-rows: auto auto;
  column-gap: 25px;
  row-gap: 40px;
  align-items: start;
  padding: 100px 0;
}

.left_titlebox{ grid-column: 1; grid-row: 1; }       /* 왼쪽 1행(제목) */

.n_drive .collage{
  position: relative;
  grid-column: 1; grid-row: 2;
  width: 800px; height: 1000px; top: 2%;}    /* 왼쪽 2행(이미지) */

.right_titlebox{ grid-column: 2; grid-row: 1 / span 2; } /* 오른쪽 전체(1~2행) */

.n_drive .main_title{
  font-family: "Montserrat", sans-serif;
  font-size: 60px;
  font-weight: 700;
  color: #2d2d2d;
  letter-spacing: -1px;
}
.n_drive .sub_title{
  margin-top: 10px;
  font-size: 20px;
  color: #8A9DBD;
}


.n_drive .collage .ph{
  position: absolute;
  display: block;
  outline: 8px solid #fff;
  object-fit: cover;
}
.n_drive .collage .ph1 { width: 357px; left: 90px; top: 5%; z-index: 3;}
.n_drive .collage .ph2 { width: 362px; left: 1%; top: 30%; z-index: 4;}
.n_drive .collage .ph3 { width: 360px; left: 10%; bottom: 28%; z-index: 2; }
.n_drive .collage .ph4 { width: 250px; left: 50%;  bottom: 20%; }
.n_drive .collage .ph5 { width: 456px; left: 45%; top: 7%; z-index: 0; }

.right_titlebox h3 {
  font-size: 30px;
  color: #23324a;
  margin-top: 120px;
  transform: translateX(-20%);
}
.right_titlebox .sub {
  font-size: 20px;
  font-weight: 500;
  color: #555;
  margin-bottom: 30px;
  transform: translateX(-20%);
}
.right_titlebox p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.9;
  color: #5a5a5a;
  margin-bottom: 50px;
  transform: translateX(-20%);
}

/* N_drive 섹션 끝 */

/* N_DNA 섹션 */

.N_dna{
  background:#000; color:#fff;
  margin:0 auto;
  padding:120px 0;
  font-family:"Montserrat",sans-serif;
}

/* N_DNA 상단박스 flex  */
.N_dna .top, .N_dna .bottom{
  display: flex;
}
.N_dna .img_box_1{
  width: 806px; height: 383px;
}
.N_dna .top .text_box{
  position: relative;
  margin-left: 30px;
  z-index: 100;
}
.N_dna .top .box{
width:40px; height:200px; background:#BE2F33;
position: absolute;
}
.N_dna .top .main_title{
    font-size:56px; font-weight:800; line-height:1.1;
    position: absolute; top: 30px; left: 10px;
}

/* N_DNA 하단 박스 flex */
.N_dna .bottom{
  gap: 100px;
}
.N_dna .bottom .text_box{
  margin-left: 200px;
  margin-top:100px;
}
.N_dna .bottom .img_box2{
  display: flex;
}

.N_dna .bottom .img_box_2 img{ width:100%; height:100%; object-fit:cover;}
.N_dna .bottom .text_box .sub_title{
  font-size:30px; font-weight:600; color:#e9eef3; margin-bottom: 10px;
}
.N_dna .bottom .text_box p:not(.sub_title){
  margin-top:2px; font-size:16px; color:#a9b3bd; line-height:1.8;
}
.N_dna .bottom .text_box .btn{
  grid-column:1; grid-row:2;
  margin-top:96px;
  display:inline-flex; align-items:center; gap:6px;
  font-size:15px; color:#cfe0ff; 
  cursor:pointer;
  transition: 1s;
}
.N_dna .bottom .text_box .btn:hover{ color:#BE2F33; transform: translateY(10px); }
/* N_DNA 끝 */

/* N_Owner 섹션 */
.N_Owner{
  width: 100%; height: 1100px;
  padding: 70px 60px 120px;
  position: relative;
  font-family: "Montserrat",sans-serif;
}

.N_Owner .header_box{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}


.N_Owner .main_title{font-size: 60px; font-weight: 700; color: #2d2d2d; margin-top: 80px; letter-spacing: -1px;}

.N_Owner .sub_title{font-size: 20px; font-weight: 400; color: #3e3e3e; margin-top: 100px; margin-left: 30px;}

.N_Owner .btn{
  font-size: 20px; font-weight: 600; color: #8A9DBD; position: absolute; right: 60px; top: 20%;
  text-decoration: none; display: inline-flex; align-items: center; gap: 4px; cursor: pointer;}

.N_Owner .btn:hover{ color: #BE2F33;}

.N_Owner .img_box{
  display: flex ;
  gap: 20px;
  margin-top: 40px;
  justify-content: center;}

.N_Owner .card{
  flex: 0 0 370px;
  width: 370px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.N_Owner .card img{
  width: 100%;
  height: 408px;
  object-fit: cover;
  display: block;
}

.N_Owner .title_box{
  display: flex; align-items: center; justify-content: space-between;
}

.N_Owner .card h5{
font-size: 30px;
font-weight: 600;
color: #111111;
}

.N_Owner .card .content{
  font-size: 15px;
  font-weight: 500;
  color: #222222;
}

.N_Owner .card .hashtag{
  font-size: 13px;
  font-weight: 500;
  color: #7D7D7D;
}

.N_Owner .card .comment_box{
  font-size: 13px;
  color: #2d2d2d;
}

.N_Owner .card span{
  font-size: 20px;
  color: #2d2d2d;
}

.N_Owner .card .id{
  font-size: 13px;
  font-weight: 500;
  color: #2d2d2d;
}

.N_Owner .card:nth-child(1):hover {
  transform: translateY(60px);}
.N_Owner .card:nth-child(2):hover {
  transform: translateY(60px);}
.N_Owner .card:nth-child(3):hover {
  transform: translateY(60px);}
.N_Owner .card:nth-child(4):hover {
  transform: translateY(60px);}

/* N_Owner 섹션 끝 */


/* N_collection 섹션 */

.N_collection{
  width: 100%;
  background: #000;
  font-family: "Montserrat",sans-serif;
  text-align: center;
  padding: 100px 0 150px;
}

.N_collection .text_box{
  padding: 60px;
}
.N_collection .sub_title{
  font-size: 30px; font-weight: 400; color: #d9d9d9;
}
.N_collection .main_title{
  font-size: 100px; font-weight: 700; color: #dddddd;
  padding: 20px; line-height: 0.8;
}
.N_collection .sub_title2{
  font-size: 20px; font-weight: 200; color: #c8c8c8;
  margin-top: -10px;
}


/* N_COLLECTION 슬라이드 */
.N_collection .N_collection_slide{
  width: 100%; height: 700px; transform: translateX(80px);
}
.N_collection .N_collection_slide .img_box{width: 100%; height: 600px; transition-timing-function: linear;}
.N_collection .img_box .swiper-slide{
border-radius: 50px; overflow: hidden;
}
.N_collection .img_box .swiper-slide img{width: 100%; height: 100%; object-fit: cover;}
.N_collection .btn{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}

.N_collection .btn span{
  background:transparent;
  border:1.5px solid #606060;
  color:#606060;
  font-size:50px;
  display:flex;
  justify-content:center;
  align-items:center;
  cursor:pointer;
  transition:all 0.3s ease;
}

.N_collection .btn span:first-child{
  width: 90px; height: 90px;
  border-radius: 50%;
}


.N_collection .btn span:last-child{
  width:130px; height:90px;
  border-radius:100px;
  border-color:#606060;
  color:#606060;
}

.N_collection .btn span:hover{
  color:#8A9DBD;
  border-color:#8A9DBD;
}



/* History 섹션 */
.history{padding: 100px 0 120px;}

.history .title {
  font-size: 60px; font-weight: 700; color: #2d2d2d; margin-bottom: 60px; text-align: center;
  line-height: 1.2;
}

.timeline{
  position: relative;
  max-width: 1680px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline::before{
  content: "";
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 6px; background: #6a6a6a;
  transform: translateX(-50%);
}

.scroll-dot{
  position: sticky; top: 120px;
  left: 50%; transform: translateX(-50%);
  width: 30px; height: 30px; background: #BE2F33;
  display: block; z-index: 2;
}


.history .item {
  display: flex;
   margin: 200px 0;
  width: 100%; 
  justify-content: center;
  gap: 100px;
}



/* 홀수번째 item: 기본 (텍스트 왼쪽 / 이미지 오른쪽) */
.history .item:nth-of-type(even) .text {
  text-align: left; transform: translateX(100px);
  order: -1;
  transform: translateX(-100px);
}
.history .item:nth-of-type(odd) .text {
  text-align: left; transform: translateX(150px);  
}

/* item중에 영상 있는 박스flex */
.history .item_2023 .imgbox{
  width: 600px;
  display: flex;
  flex-direction: column;
}
.history .item_2023 .imgbox .img{
  width: 100%; height: 300px;
  overflow: hidden;
}
.history .item_2023 .imgbox .video{
  width: 100%; height: 300px;
}
.history .item_2023 .imgbox .img img{
  width: 100%; height: 100%;
  object-fit: cover;
}
.history .item_2023 .imgbox .video video{
  width: 100%; height: 100%;
  object-fit: cover;
}
.history .item_2023 .text{
  margin-top: 100px;
}
.history .item_2021 .img{
  transform: translateX(150px);
}
/* 텍스트가 grid 칸 안에서 줄바꿈 가능하도록 */
.history .item .text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* inline-block 폭 증가 문제 제거 */
.history .item .text ul {
  display: block;
}

.history .text .year{
  font-size: 80px; font-weight: 700; color: #BE2F33;
}

.history .text .headline{
  font-size: 30px; font-weight: 600; color: #2d2d2d;
}

.history .text ul{
  display: inline-block;
  text-align: left;
}

.history .text ul li{
  font-size: 20px; font-weight: 300; color: #5a5a5a;
}

.history .btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 20px;
  font-weight: 500;
  color: #8a9dbd;
  cursor: pointer;
  transition: all 0.3 ease;
     transform: translatey(200%);
}
.history .btn:hover{ color:#BE2F33; }

.history .btn .material-symbols-outlined { 
  font-size: 22px;
  transition: color 0.3s ease;
}

.history .btn:hover .material-symbols-outlined {
  color: #BE2F33;
}

/* history섹션 끝 */

/* NOTICE 섹션 */

.notice{
  background-color: #000;
  font-family: 'Spoqa Han Sans Neo', 'Montserrat', sans-serif;
  padding: 80px 100px;
  position: relative;
}

.notice .title{
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateX(-100%) rotate(90deg);
  font-size: 100px; font-weight: 700; color: #dddddd;
}

.notice .text_box{
  width: 75%;
  border-bottom: 1px solid #7c7c7c;
  padding: 30px 0;
  position: relative;
  left: 50%; transform: translateX(-50%);
}

.notice .date{
  font-size: 16px; font-weight: 300;
  color: #c8c8c8;
  margin-bottom: 10px;
}

.notice .sub_title{
  font-size: 25px; font-weight: 400;
  color: #e7e7e7;
  margin-bottom: 10px;
}

.notice .hashtag{
  font-size: 16px; font-weight: 300;
  color: #989898;
}

.notice .material-symbols-outlined{
  position: absolute;
  right: 0;
  top: 40%;
  font-size: 28px;
  color: #d0d0d0;
}

.notice .btn{
  color: #8A9DBD;
  font-size: 20px; font-weight: 400;
  text-align: end;
  cursor: pointer;
  padding: 20px;
  right: 50%;
  transform: translateX(-12%);
}

.notice .btn:hover{
  color: #d64a49;
}

/* slogan 섹션 */
.slogan{
  max-width: 1680px;
  margin: 140px auto;
  padding: 0 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  color: #2d2d2d;
}

.slogan .main_text{
  width: 800px;
  font-size: 60px;
  font-weight: 700;
  position: relative;
  color: #2d2d2d;
  font-family: 'Spoqa Han Sans Neo', sans-serif;


}
.slogan .main_text span{ color:#BE2F33; }

/* 큰 따옴표 */
.slogan .main_text::before{
  content: "“";
  position: absolute;
  left: -25px;
  top: -30px;
  font-size: 80px;
  line-height: 1;
  color:#2D2D2D;
  font-weight: 700;
  
}

.slogan .sub_text{
  grid-column: 1;
  margin-top: 40px;
  font-size: 30px;
  color:#4d4d4d;
  position: relative;
  left: 70%;
   font-family: 'Manrope', sans-serif;
}
.slogan .sub_text::before{
  content:"";
  position: absolute;
  left:-7%;
  top: 50%;
  width: 35px;
  height: 1px;
  background-color: #4d4d4d;
  transform: translateY(-50%);
}

/* 오른쪽 이미지 */
.slogan .img_box{
  flex-shrink: 0;
  width: 50%;
  max-width: 806px;
}
.slogan .img_box img{
  width: 100%;
  height: auto;
  
  object-fit: cover;
  top: 30%;
}

/* slogan 섹션 끝 */



/* footer */
.site-footer{
  background: #000;
  color: #f7f7f7;
  font-family: 'Montserrat', 'Spoqa Han Sans Neo', sans-serif;
}

.site-footer .inner{
  max-width: 1680px;
  margin: 0 auto;
  padding: 60px;
}

/* footer 상단 */
.top{
 display: grid;
 grid-template-columns: repeat(5, 1fr);
 
}

.top h4{
  font-size: 15px; font-weight: 600;
  margin-bottom: 18px;
}
.top ul{ list-style: none; margin: 0; padding: 0;}
.top li + li {margin-top: 10px;}
.top a{
  text-decoration: none;
  font-size: 15px;
}

.ft-sep{
  border: 0;
  height: 1px;
  background: #2c2c2c;
  margin: 50px 0;
}

/* footer 중간 */


.ft-mid-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 120px;
  row-gap: 40px;
  align-items: start;
}

.ft-brand .brand{
  margin: 0 0 30px;
  font-size: 15px;
  font-weight: 500;
  color: #f5f5f5;
  white-space: nowrap;
}

.ft-brand .icons{
  display: flex;
  align-items: center;
  gap: 20px;
}

.ft-brand .icons a{
  width: 24px; height: 24px;
  display: inline-flex; justify-content: center; align-items: center;
}

.ft-brand .icons img{
  width: 18px; height: 18px; object-fit: contain;
  opacity: .85; transition: opacity .2s;
}
.ft-brand .icons img:hover{ opacity: 1; }

.ft-brand.empty{ pointer-events:none; }


/* footer 하단 */
.bottom{
  display: contents;

  padding-bottom: 40px;

}

.bottom .links{
  font-size: 13px; font-weight: 500;
}

.bottom .links span{
  color: #595C5F;
  margin: 0 10px;
}

.bottom .copy{
  font-size: 13px; font-weight: 500;
  margin-top: 20px;
 
}



.bottom .mark img{
  height: 56px; width: auto; display: block;
   margin-top: 20px;
}

.site-footer .ft-sep{margin: 40px 0;}

.go-top{
  position:fixed; right:20px; bottom:20px;
  width:60px; height:60px; border-radius:999px;
  background:rgba(255,255,255,.95); color: #000000;
  box-shadow:0 10px 24px rgba(0,0,0,.28);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:2px;
  text-decoration:none; z-index:9999; transition:.2s ease;
}
.go-top .arr{
  width:10px; height:10px;
  border-left:2px solid #111; border-top:2px solid #111;
  transform:rotate(45deg); /* 위쪽 화살표 */
}
.go-top p{
  font-size:13px; color:#111; }


@media (max-width: 1024px) {
  /* N Story 섹션 글자 & 정렬 */
  .N_story .inner { padding: 0 40px; }
  .N_story .title { font-size: 50px; text-align: center; }
  .N_story .desc { font-size: 17px; text-align: center; margin-bottom: 50px; }
  
  .N_story .text_box { 
    text-align: left; /* 우측 정렬을 해제하여 가독성 확보 */
    margin-top: 30px; 
    width: 100%;
  }
  .N_story .highlight { font-size: 40px; }
  .N_story .N { font-size: 24px; margin-top: 40px; }

  /* N Drive 정렬 보정 */
  .right_titlebox { 
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center; /* 텍스트 박스 자체를 중앙으로 */
    text-align: center; 
  }
  .right_titlebox p { width: 100%; max-width: 600px; }

  /* N DNA 타이틀 */
  .N_dna .top .main_title { font-size: 42px; text-align: center; }
}

@media (max-width: 768px) {
  /* 히어로 섹션 */
  .hero .text_box { 
    right: 50% !important; 
    transform: translateX(50%); 
    width: 90%; 
    text-align: center; 
  }
  .hero .text_box .hero_title { font-size: 45px; letter-spacing: -1px; }

  /* N Story 세부 정렬 */
  .N_story .text_box2 p, 
  .N_story .text_box4 p { 
    font-size: 15px; 
    line-height: 1.6; 
    word-break: keep-all; /* 단어 단위 줄바꿈으로 깔끔하게 */
  }

  /* Notice 섹션 정렬 */
  .notice .text_box { 
    width: 100%; 
    padding: 20px 0; 
    text-align: left; 
  }
  .notice .sub_title { font-size: 18px; line-height: 1.4; }

  /* N Owner 카드 텍스트 */
  .N_Owner .card h5 { font-size: 22px; }
  .N_Owner .card .content { font-size: 14px; }

  /* Slogan 폰트 */
  .slogan .main_text { font-size: 28px; line-height: 1.3; }
  .slogan .main_text::before { font-size: 50px; left: -10px; top: -20px; }
}

@media (max-width: 430px) {
  /* 모든 섹션 제목 크기 통일 */
  .N_story .title, .models .name, .n_drive .main_title, .N_Owner .main_title, .history .title {
    font-size: 32px !important;
    text-align: center;
    word-break: keep-all;
  }

  /* N Story 중앙 정렬 강제 */
  .N_story .text_box, .N_story .text_box2, .N_story .text_box3, .N_story .text_box4 {
    text-align: center !important;
    padding: 0 10px;
  }
  .N_story .text_box3 { transform: none; position: static; margin: 40px auto; } /* 회전 해제 */

  /* History 타임라인 글자 조절 */
  .history .text .year { font-size: 32px; margin-bottom: 5px; }
  .history .text .headline { font-size: 18px; margin-bottom: 10px; }
  .history .text ul li { font-size: 13px; line-height: 1.5; margin-bottom: 8px; }

  /* Footer 링크 정렬 */
  .site-footer .bottom .links { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 10px; 
    font-size: 11px; 
  }
  .site-footer .bottom .links span { display: none; } /* 세로 구분선 숨김 */

  /* TOP 버튼 위치 최적화 */
  .go-top { width: 50px; height: 50px; right: 15px; bottom: 15px; }
  .go-top p { font-size: 10px; }
}