@import url("./fonts/pretendard/pretendard.css");
@import url("./fonts/bagerich/bagerich.css");
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  line-height: 1.4;
}

body {
  font-family: "Pretendard", sans-serif;
  color: #111;
  background: #fff;
  -webkit-text-size-adjust: 100%;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  font-weight: inherit;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
}

img, picture, svg, video {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
  background: transparent;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button, [role="button"], a {
  cursor: pointer;
}
button:disabled,
[disabled] {
  cursor: default;
  opacity: 0.6;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}

:focus {
  outline: 2px solid Highlight;
  outline-offset: 2px;
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

img, svg {
  user-select: none;
  -webkit-user-drag: none;
}

html {
  font-size: clamp(12px, 0.833333vw, 16px);
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.125rem; }


header {
  display:flex; 
  align-items:center; 
  justify-content:space-between; 
  position:relative; 
  top:0; 
  left:0; 
  width:100%; 
  height:auto; 
  z-index:5000; 
  padding:40px 80px; 
  font-family: 'Bagerich', sans-serif;
  background-color:#f7f6f2;
  overflow-x:hidden;
}
header .logo {
  font-size:3.5em; 
  font-weight:400; 
  color:#1A1A1A; 
  letter-spacing:-0.02em;
}
header .menu_nav ul {
  position:relative; 
  display:flex; 
  width:auto; 
  gap:10px; 
  align-items:center;
}
header .menu_nav ul li {
  width:auto; 
  white-space:nowrap;}
header .menu_nav ul li a {
  font-size: 1.5em;
  line-height: 1;
  color: #1A1A1A;
  font-weight: 400;
  transition: all 0.3s;
  
  padding:5px 15px;
}
header .menu_nav ul li a.active,
header .menu_nav ul li a:hover {
  color: #fff;
  background:#1a1a1a;
  border-radius:5em;
  padding:5px 15px;
}

section.section {
  width:100%;
  overflow:hidden;
}

section.hero {
  width:100%;
  height:auto;
  min-height:100vh;
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  background-color:#161f2c;
  z-index:1;
}

section.hero .slogan {
    position:relative;
    font-size:4.5em;
    font-weight:400;
    color:#fff;
    letter-spacing: 1px;
    font-family: 'Bagerich', sans-serif;
}
section.hero .desc {
  position:relative;
  font-size:1.5em;
  font-weight:100;
  color:#fff;

}
section.hero .desc strong {
    font-weight:900;
}
/* 스크롤 안내용 컨테이너 */
section.hero .scroll-down {
  position: absolute;
  bottom: 20px; /* 섹션 하단에서 20px 위 */
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 50px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  border:2px solid rgba(255,255,255,0.8);
  border-radius:30px;
  padding-top:0.5em;
  z-index: 10;
}

/* 화살표 모양 */
section.hero .scroll-down span {
  display: block;
  width: 4px;
  height: 20px;
  border-radius: 2px;
  background-color: #fff;
  animation: scroll 1.5s infinite;
  position: relative;
}

/* 화살표 끝 삼각형 */
section.hero .scroll-down span::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

/* 애니메이션 */
@keyframes scroll {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(10px);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

section.info {
  position:relative; 
  width:100%; 
  height:auto; 
  background-color:#f7f6f2; 
  padding: 160px 0 100px 0;
  z-index:1;
}
section.info .info_text {
  position:relative;
  width:100%;
  text-align:center;
  font-weight:100;
  font-size:3.125em;
  color:#373737;
}
section.info .info_text strong {
    font-weight:900;
}

section.info .info_text .icon_more {
  flex-direction: column;
  display:flex;
  align-items:center;
  justify-content: center;
  gap:10px;
  padding-top:50px;
}

section.info .info_text .dot-blur {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  filter: blur(1px); /* 값 조절: 0.5 ~ 2px */
  display: inline-block;
}

section.collection {
  width: 100%;
    height:auto;
  position: relative;
  background-color: #f7f6f2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  border-radius: 12px;
  padding: 1em 0;
}

section.collection ul.track {
width:100%;
max-width:1200px;
margin:0 auto;
padding: 0;
display:flex;
flex-wrap:wrap;
justify-content:space-between;
}


section.collection ul.track li {
  width: calc(25% - 1.5em);
  height: 8vw;           /* li 높이 고정 */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 2em 0;
  background-color: #fff;
  border-radius: 0.75em;
  overflow: hidden;
  border:2px solid #161f2c;
  padding:2em;
  box-shadow: 0 5px 6px rgba(0,0,0,0.15);
}

section.collection ul.track li img {
  width: 100%;            /* li 너비에 맞춤 */
  height: 100%;           /* li 높이에 맞춤 */
  object-fit: contain;    /* 비율 유지하며 맞춤 */
  display: block;
  margin: 0;
  padding: 0;
}



section.service {position:relative; display:flex;  align-items:center;  justify-content: flex-start;  overflow-x:hidden; background:#f7f6f2; padding-top:200px; display:none;}
.gsap-cards {position: relative; width: 50%; margin-left:50%; height: 500vh; } 
.gsap-cards .card {position: fixed; top: 0; left: 0; width: 100%; height: auto;}
.gsap-cards .card .desc {
  position:absolute; 
  top:50%; 
  left:-100%; 
  width:90%; 
  height:auto; 
  background-color:#f7f6f2; 
  opacity: 1; 
  transition: opacity 0.5s ease; 
  transform:translateY(-50%);
  padding:80px 25% 80px 80px;;
}
.gsap-cards .card .desc .title {font-size:3em; font-weight:700; line-height:2; color:#373737; padding:0; height:auto;}
.gsap-cards .card .desc .title span {display:block;color:#B7A582; font-weight:400; font-size:0.5em; font-family: "bagerich", serif;
  font-optical-sizing: auto;}
.gsap-cards .card .desc p {font-size:1.5em; font-weight:500; color:#373737; line-height:2; overflow-wrap:break-word; word-break:keep-all;}
.gsap-cards .card .img, 
.gsap-cards .card .img img { transform-origin: 50% 50%; -webkit-transform-origin:50% 50%; }


section.approach {
  position:relative; 
  width:100%; 
  height:auto; 
  background-color:#1E1E1E;
  padding:80px;
}
section.approach .title {
  display:block;
  color:#B7A582;
  font-size:1.5em;
  font-family: "bagerich", serif;
  font-optical-sizing: auto;
}
section.approach .content {
  padding:80px 0;
  width:100%;
}
section.approach .content ul {
  display:flex; 
  align-items:flex-start;
  gap:110px;
}
section.approach .content ul li {
  width:calc(100% / 3);
  text-align:left;
}
section.approach .content ul li p {
  margin-top:65px;
  font-size:1.5em;
  font-weight:400;
  line-height:2;
  color:#929292;
}
section.approach .content ul li p span {
  color:#fff;
  font-weight:700;
  line-height:1.8;
  font-size:1.167em;
  display:block;
  border-bottom:1px solid #A2A2A2;
  padding-bottom:50px;
  margin-bottom:50px;
}

section.insight {
  position:relative; 
  width:100%; 
  height:auto; 
  background-color:#1E1E1E;
  padding:80px;
}
section.insight .title {
  display:block;
  color:#B7A582;
  font-size:1.5em;
  font-family: "bagerich", serif;
  font-optical-sizing: auto;
}
section.insight .content {
  padding:80px 0;
  width:100%;
  display:flex;
}
section.insight .content .subImg {
  position:relative;
  width:50%;
  padding-right:80px;
  z-index:1;
}
section.insight .content .subImg img {
  width:100%;
  height:auto;
  display:block;
  position:relative;
  z-index:2;
}
section.insight .content .subImg img.shadow {
  position:absolute;
  top:15%;
  left:15%;
  width:80%;
  height:auto;
  filter:blur(15px);
  opacity:0.5;  
  transform:rotate(-15deg);
  z-index:1;
}


section.insight .content ul {
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction: column;
  width:50%;
  z-index:2;
}
section.insight .content ul li {
  width:100%;
  padding:20px 0;
  border-top:1px solid #A2A2A2;
}
section.insight .content ul li:first-child {
  border-top:none;
}
section.insight .content ul li a {
  display:block;
  color:#5A5A5A;
  font-size:2em;
  font-weight:500;
  padding-left:0;
  width:100%;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  transition: all 0.3s;
}
section.insight .content ul li a span {
  display:block;
  font-size:0.5em;
}
section.insight .content ul li a:hover {
  color:#fff;
  padding-left:40px;
}

section.contact {
  position:relative; 
  width:100%; 
  height:auto; 
  background-color:#fff;
}

section.contact .bg {
  position:relative;
  width:100%;
  height:auto;
  overflow:hidden;
}
section.contact .bg img {
  width:100%;
  height:auto;
  display:block;
}
section.contact .ctt {
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  text-align:center;
  font-size:3.5em;
  font-weight:700;
  line-height:2;
  color:#1A1A1A;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction: column
}
section.contact .ctt .btn-contact {
  display:inline-block;
  width:350px;
  height:auto;
  padding:25px;
  background:#1A1A1A;
  color:#fff;
  text-align:left;
  position:relative;
  font-weight:800;
  font-size:0.5375em;
  border-radius:5em;
  overflow:hidden;
  line-height:1;
  margin-top:0.5em;
}
section.contact .ctt .btn-contact:before {
  content:'';
  display:inline-block;
  width:calc(100% - 1em);
  height:0.75em;
  position:absolute;
  top:50%;
  left:0;
  transform:translateY(-50%);
  background-image: url("/img/btn_contact_arrow.png?1");
  background-size:contain;
  background-position:right center;
  background-repeat:no-repeat;
}
