@charset "utf-8";
/* 초기화 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #faf9f6;
  color: #111;
}

/* =========================
   ROOT
========================= */

:root {
  --point: #da291c;
  --bg: #faf9f6;
  --white: #ffffff;
  --text: #111111;
  --line: #e5e0d9;
}

/* =========================
   WRAP
========================= */

#wrap {
  width: 100%;
  overflow-x: hidden;
  overflow-y: visible;
}

/* =========================
   HEADER
========================= */

#wrap .header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100px;
  padding: 0 140px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #faf9f6;
  z-index: 9999;
  transition: all 0.3s ease;
}
#wrap .header.scrolled {
  background: #fff;
  backdrop-filter: blur(10px);
  top: 0;
}
#wrap .header .logo {
  margin-left: 0;
}

#wrap .header .logo a {
  display: block;
  width: 160px;
  height: 150px;
}
#wrap .header .logo a img {
  width: 100%;
  height: 100%;
}

#wrap .header .gnb {
  display: flex;
  gap: 40px;
}

#wrap .header .gnb a {
  font-size: 18px;
  font-weight: 700;

  transition: 0.3s;
}

#wrap .header .gnb a span {
  color: var(--point);

  margin-right: 6px;
}

#wrap .header .gnb a:hover {
  color: var(--point);
}
#wrap .header .gnb a.active {
  color: var(--point);
}
/* =========================
   VISUAL
========================= */

#wrap .visual {
  height: 100vh;

  display: flex;
  align-items: center;

  padding: 0 60px;
  overflow: hidden;
  position: relative;
}

#wrap .visual .visual-inner {
  width: 100%;
  max-width: 1700px;

  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

#wrap .visual .visual-inner .visual-txt {
  width: 50%;
}

#wrap .visual .visual-inner .visual-txt .sub-title {
  font-size: 14px;
  font-weight: 700;

  letter-spacing: 6px;

  margin-bottom: 40px;
}

#wrap .visual .visual-inner .visual-txt h2 {
  font-size: 140px;
  line-height: 0.9;

  font-weight: 900;
}

#wrap .visual .visual-inner .visual-txt .visual-desc {
  margin-top: 50px;

  font-size: 24px;
  line-height: 1.3;
}
#wrap .visual .visual-inner .visual-txt .visual-desc span {
  font-weight: 500;
  font-size: 28px;
}
#wrap .visual .visual-inner .visual-sticker {
  width: 600px;
}

#wrap .visual .visual-inner .visual-sticker img {
  width: 100%;
}
#wrap .visual .visual-sticker-deco {
  position: absolute;
  right: 90px;
  bottom: 120px;
  width: 620px;
  height: 520px;
  pointer-events: none;
  z-index: 4;
}

#wrap .visual .visual-sticker-deco .deco-sticker {
  position: absolute;
  object-fit: contain;
  filter: drop-shadow(0 16px 16px rgba(0, 0, 0, 0.14));
  will-change: transform;
}

/* 큰 스티커 팔꿈치 밑 주변 */
#wrap .visual .visual-sticker-deco .deco01 {
  width: 160px;
  right: 76%;
  bottom: 80px;
  transform: rotate(-8deg);
}

#wrap .visual .visual-sticker-deco .deco02 {
  width: 125px;
  right: 6%;
  bottom: 60%;
  transform: rotate(9deg);
}

#wrap .visual .visual-sticker-deco .deco03 {
  width: 105px;
  right: 72%;
  bottom: 230px;
  transform: rotate(-6deg);
}

#wrap .visual .visual-sticker-deco .deco04 {
  width: 210px;
  right: 0;
  bottom: 10px;
  transform: rotate(5deg);
}

#wrap .visual .visual-sticker-deco .deco05 {
  width: 100px;
  right: 3%;
  bottom: 181px;
  transform: rotate(-7deg);
}
/* 빨간 포인트 라인 */
#wrap .visual::after {
  content: "";
  position: absolute;
  left: -10%;
  bottom: 25px;
  width: 120%;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--point) 0%,
    #ff4a3a 50%,
    var(--point) 100%
  );
  transform: rotate(-2deg);
  transform-origin: left center;
  z-index: 2;
}

/* 스티커 꿀렁 기본 */
#wrap .visual .visual-sticker-deco .deco-sticker {
  will-change: transform;
}
/* =========================
   TRACK COMMON
========================= */

#wrap .track {
  width: calc(100% - 80px);
  max-width: 1700px;
  border-top: 1px solid #e5e0d9;
  margin: 0 auto;

  padding: 60px 70px;
}

#wrap .track .track-head {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

#wrap .track .track-head .track-num {
  display: block;

  color: var(--point);

  font-size: 72px;
  font-weight: 900;

  margin-bottom: 15px;
}

#wrap .track .track-head h3 {
  font-size: 42px;
  font-weight: 800;

  letter-spacing: 2px;
}
/* =========================
   TRACK 01 ABOUT
========================= */

#wrap .track01 {
  border: none;
}

#wrap .track01 .about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* LEFT */

#wrap .track01 .about-intro {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;

  padding: 60px 50px 50px;

  background: #fff;
  border-radius: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);

  overflow: visible;
}

/* PROFILE LABEL */

#wrap .track01 .about-intro .profile-label {
  position: absolute;
  top: -16px;
  left: 40px;

  padding: 10px 20px;

  background: var(--point);
  color: #fff;

  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1px;

  border-radius: 8px;

  transform: rotate(-3deg);

  box-shadow: 5px 5px 0 #111;

  z-index: 10;
}

/* PHOTO */

#wrap .track01 .profile-photo {
  position: relative;
  width: 250px;
  flex-shrink: 0;
}

#wrap .track01 .profile-photo img {
  width: 100%;
  display: block;

  border-radius: 18px;

  transition: 0.35s;
}

#wrap .track01 .profile-photo:hover img {
  transform: scale(1.03);
}

/* TAPE */

#wrap .track01 .profile-photo .profile-tape {
  position: absolute;

  top: -14px;
  left: 50%;

  width: 120px;
  height: 28px;

  background: rgba(224, 198, 159, 0.55);

  transform: translateX(-50%) rotate(15deg);

  border-radius: 3px;

  backdrop-filter: blur(1px);

  z-index: 5;
}

/* INFO */

#wrap .track01 .profile-info {
  flex: 1;
}

#wrap .track01 .info-row {
  position: relative;

  display: grid;
  grid-template-columns: 120px 1fr;

  align-items: center;

  padding: 18px 0;

  border-bottom: 1px solid #ececec;

  transition: 0.3s;
}

#wrap .track01 .info-row:last-child {
  border: none;
}

#wrap .track01 .info-row strong {
  font-size: 18px;
  font-weight: 800;
}

#wrap .track01 .info-row span {
  color: #666;
  font-size: 17px;
}

/* hover line */

#wrap .track01 .info-row::after {
  content: "";

  position: absolute;

  left: 120px;
  bottom: -1px;

  width: calc(100% - 120px);
  height: 2px;

  background: var(--point);

  transform: scaleX(0);

  transform-origin: left;

  transition: 0.35s;
}

#wrap .track01 .info-row:hover::after {
  transform: scaleX(1);
}

#wrap .track01 .info-row:hover span {
  color: #111;
}

/* RIGHT */

#wrap .track01 .about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

#wrap .track01 .about-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px;

  transition: 0.35s;

  border: 1px solid transparent;
}

#wrap .track01 .about-card:hover {
  transform: translateY(-8px);

  border-color: var(--point);

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

#wrap .track01 .about-card h5 {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 28px;

  font-size: 20px;
  font-weight: 800;
}

#wrap .track01 .about-card h5 i {
  color: var(--point);
  font-size: 24px;
}

/* SKILL */

#wrap .track01 .skill-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

#wrap .track01 .skill-tag span {
  padding: 10px 18px;

  background: #fff;

  border: 1px solid #111;

  border-radius: 999px;

  font-size: 14px;
  font-weight: 700;

  box-shadow: 3px 3px 0 #111;

  transition: 0.3s;
}

#wrap .track01 .skill-tag span:hover {
  background: var(--point);

  color: #fff;

  border-color: var(--point);

  box-shadow: none;

  transform: translate(3px, 3px);
}

/* LIST */

#wrap .track01 .about-card ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#wrap .track01 .about-card ul li {
  font-size: 16px;
  line-height: 1.6;
}

/* EDUCATION */

#wrap .track01 .education-card {
  grid-column: 1/3;
}

#wrap .track01 .education-card .education-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px 50px;
}

#wrap .track01 .education-card .education-list li {
  position: relative;

  padding-left: 26px;
}

#wrap .track01 .education-card .education-list li::before {
  content: "";

  position: absolute;

  left: 0;
  top: 6px;

  width: 12px;
  height: 12px;

  border-radius: 50%;

  background: var(--point);
}

#wrap .track01 .education-card .education-list li::after {
  content: "";

  position: absolute;

  left: 5px;
  top: 18px;

  width: 2px;
  height: calc(100% + 20px);

  background: #e5e0d9;
}

#wrap
  .track01
  .education-card
  .education-list
  li:nth-last-child(-n + 2)::after {
  display: none;
}

#wrap .track01 .education-card .education-list li strong {
  display: block;

  margin-bottom: 10px;

  font-size: 17px;
  font-weight: 800;
}

#wrap .track01 .education-card .education-list li span {
  display: block;

  font-size: 14px;

  color: #777;
}
/* =========================
   CERTIFICATIONS
========================= */

#wrap .track01 .certification-card {
  position: relative;
}

/* VERIFIED */

#wrap .track01 .certification-card .verified {
  position: absolute;
  border: 1px solid var(--point);
  top: 26px;
  right: 28px;
  padding: 2px;
  color: var(--point);

  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;

  transform: rotate(10deg);

  opacity: 0.7;
}

/* LIST */

#wrap .track01 .certification-card ul {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

#wrap .track01 .certification-card li {
  display: flex;
  align-items: center;
  gap: 14px;

  font-size: 17px;
  font-weight: 600;

  transition: 0.35s;
}

/* RED DOT */

#wrap .track01 .certification-card li .dot {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: var(--point);

  flex-shrink: 0;

  transition: 0.35s;
}
/* watermark */
#wrap .track01 .certification-card .cert-watermark {
  position: absolute;
  right: 22px;
  bottom: 12px;

  font-size: 58px;
  font-weight: 900;

  color: rgba(218, 41, 28, 0.05);

  pointer-events: none;
}
/* HOVER */

#wrap .track01 .certification-card li:hover {
  transform: translateX(8px);
  color: var(--point);
}

#wrap .track01 .certification-card li:hover .dot {
  transform: scale(1.8);
}
/* =========================
   TRACK 02 WORKS
========================= */

#wrap .track02 {
  position: relative;
  overflow: hidden;
}

#wrap .track02 .works-prev,
#wrap .track02 .works-next {
  position: absolute;
  top: 150px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  z-index: 100;
}

#wrap .track02 .works-prev {
  right: 10%;
}

#wrap .track02 .works-next {
  right: 5%;
}

#wrap .track02 .works-prev:hover,
#wrap .track02 .works-next:hover {
  color: var(--point);
}

#wrap .track02 .worksSwiper {
  width: 100%;
  overflow: hidden;
  padding: 30px 0;
}

#wrap .track02 .worksSwiper .swiper-wrapper {
  align-items: center;
}

#wrap .track02 .worksSwiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  overflow: hidden;
}

/* album = cover + record 전체 영역 */
#wrap .track02 .worksSwiper .swiper-slide .album {
  position: relative;
  width: 100%;
  max-width: clamp(180px, 22vw, 340px);
  aspect-ratio: 1.35 / 1;
  margin: 0 auto;
  transition: 0.4s ease;
}

/* cover */
#wrap .track02 .worksSwiper .swiper-slide .cover {
  position: absolute;
  top: 50%;
  left: 0;
  width: 62%;
  aspect-ratio: 1 / 1;
  transform: translateY(-50%);
  border-radius: 12px;
  overflow: hidden;
  z-index: 2;
  background: #fff;
}

#wrap .track02 .worksSwiper .swiper-slide .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* record */
#wrap .track02 .worksSwiper .swiper-slide .record {
  position: absolute;
  top: 50%;
  right: 8%;
  width: 62%;
  aspect-ratio: 1 / 1;
  transform: translateY(-50%);
  z-index: 1;
  transition: right 0.45s ease;
}

#wrap .track02 .worksSwiper .swiper-slide .record img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* active */
#wrap .track02 .worksSwiper .swiper-slide.active .album {
  transform: scale(1.04);
}

#wrap .track02 .worksSwiper .swiper-slide.active .cover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

#wrap .track02 .worksSwiper .swiper-slide.active .record {
  right: 0;
  animation: recordSpin 5s linear infinite;
}

/* DETAIL */

#wrap .track02 .work-detail {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  padding: 85px 90px;
  border-radius: 34px;
  background: #fff;
}

#wrap .track02 .work-detail .detail-thumb {
  position: relative;
  width: 100%;
  height: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

#wrap .track02 .work-detail .detail-thumb .lp-bg {
  display: none;
}

/* 홈페이지 전체 캡처 박스 */
#wrap .track02 .work-detail .detail-thumb .project-thumb {
  position: relative;
  width: 360px;
  height: 500px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
  z-index: 2;
  background: #f3f3f3;
  flex-shrink: 0;
}
#wrap .track02 .work-detail .detail-thumb .project-thumb img {
  width: 100%;
  height: auto;
  min-height: 100%;
  object-fit: cover;
  object-position: top center;
}

#wrap .track02 .work-detail .detail-thumb .project-thumb img,
#wrap .track02 .work-detail .detail-thumb img.project-thumb {
  width: 100%;
  height: auto;
  max-width: none;
  display: block;
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
}

#wrap .track02 .work-detail .work-detail-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#wrap .track02 .work-detail .detail-badge {
  display: flex;
  gap: 10px;
  margin-bottom: 34px;
}

#wrap .track02 .work-detail .detail-badge span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 16px;
  border-radius: 10px;
  background: #eee;
  color: #555;
  font-size: 14px;
  font-weight: 900;
}

#wrap .track02 .work-detail .detail-badge span:first-child {
  background: var(--point);
  color: #fff;
}

#wrap .track02 .work-detail .work-detail-info h4 {
  position: relative;
  font-size: clamp(32px, 3.2vw, 50px);
  line-height: 1.15;
  font-weight: 900;
  margin-bottom: 66px;
}

#wrap .track02 .work-detail .work-detail-info h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -26px;
  width: 82px;
  height: 5px;
  border-radius: 999px;
  background: var(--point);
}

#wrap .track02 .work-detail .project-meta {
  margin: 0;
}

#wrap .track02 .work-detail .project-meta li {
  display: grid;
  grid-template-columns: 130px 1fr;
  padding: 24px 0;
  border-top: 1px solid #ddd;
}

#wrap .track02 .work-detail .project-meta li:last-child {
  border-bottom: 1px solid #ddd;
}

#wrap .track02 .work-detail .project-meta li strong {
  font-size: 15px;
  font-weight: 900;
  color: #111;
}

#wrap .track02 .work-detail .project-meta li span {
  font-size: 17px;
  line-height: 1.8;
  color: #666;
}

#wrap .track02 .work-detail .work-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
}

#wrap .track02 .work-detail .work-stack span {
  padding: 13px 20px;
  border-radius: 999px;
  background: #f1f1f1;
  font-size: 15px;
  font-weight: 800;
  color: #555;
}

#wrap .track02 .work-detail .work-btn-wrap {
  display: flex;
  gap: 16px;
  margin-top: 52px;
}

#wrap .track02 .work-detail .work-btn-wrap a {
  flex: 1;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #111;
  border-radius: 8px;
  gap: 14px;
  background: #fff;
  color: #111;
  font-size: 16px;
  font-weight: 800;
  transition: 0.3s;
}

#wrap .track02 .work-detail .work-btn-wrap a i {
  font-size: 14px;
  transition: 0.3s;
}

#wrap .track02 .work-detail .work-btn-wrap a:first-child {
  background: var(--point);
  border-color: var(--point);
  color: #fff;
}

#wrap .track02 .work-detail .work-btn-wrap a:hover {
  background: #111;
  border-color: #111;
  color: #fff;
}

/* =========================
   TRACK 03 DESIGN
========================= */

#wrap .track03 .design-filter {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: nowrap;
  margin-bottom: 34px;
}

#wrap .track03 .design-filter button {
  height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
  transition: 0.3s;
}

#wrap .track03 .design-filter button.active {
  background: var(--point);
  border-color: var(--point);
  color: #fff;
}

#wrap .track03 .design-filter button:hover {
  background: var(--point);
  border-color: var(--point);
  color: #fff;
}

#wrap .track03 .design-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

#wrap .track03 .design-item {
  border: 1px solid #e5e0d9;
  border-radius: 24px;
  background: #fff;
  padding: 18px;
  cursor: pointer;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

#wrap .track03 .design-item:hover {
  transform: scale(1.03);
  border-color: var(--point);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

#wrap .track03 .design-thumb {
  position: relative;
  aspect-ratio: 1/1;
  background: #faf9f6;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

#wrap .track03 .design-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
}

#wrap .track03 .design-label {
  position: absolute;
  left: 14px;
  top: 14px;
  display: flex;
  align-items: center;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--point);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.8px;
  box-shadow: 3px 3px 0 #111;
}

#wrap .track03 .design-item.detail .design-label {
  background: #111;
}

#wrap .track03 .design-item.cardnews .design-label {
  background: #fff;
  color: var(--point);
  border: 1px solid var(--point);
}

#wrap .track03 .design-info {
  padding: 18px 4px 4px;
}

#wrap .track03 .design-info h4 {
  min-height: 54px;
  display: flex;
  align-items: flex-end;
}

#wrap .track03 .design-info p {
  font-size: 14px;
  color: #777;
}
/* =========================
   TRACK 04 CONTACT
========================= */

#wrap .track04 {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 80px;
}

#wrap .track04 .contact-left span {
  display: block;

  color: var(--point);

  font-size: 72px;
  font-weight: 900;

  margin-bottom: 20px;
}

#wrap .track04 .contact-left h3 {
  font-size: 90px;
  line-height: 0.9;

  font-weight: 900;
}
/* CONTACT FORM */

#wrap .track04 .contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#wrap .track04 .contact-form input,
#wrap .track04 .contact-form textarea {
  width: 100%;
  border: none;
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  font-size: 18px;
  font-family: inherit;
  outline: none;
}

#wrap .track04 .contact-form textarea {
  height: 180px;
  resize: none;
}

#wrap .track04 .contact-form button {
  height: 64px;
  border-radius: 20px;
  background: var(--point);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  transition: 0.3s;
}

#wrap .track04 .contact-form button:hover {
  opacity: 0.9;
}
/* =========================
   FOOTER
========================= */

/* footer */

#wrap .footer {
  position: relative;
  overflow: hidden;
  background: #000;
  color: #fff;
}

/* watermark */

#wrap .footer .footer-watermark {
  position: absolute;
  top: 58%;
  left: 60%;

  transform: translate(-50%, -50%);

  font-size: 330px;
  font-weight: 900;
  line-height: 1;

  color: rgba(255, 255, 255, 0.08);

  white-space: nowrap;

  pointer-events: none;
  user-select: none;

  z-index: 0;
}

/* 내용 위로 */

#wrap .footer .footer-top,
#wrap .footer .footer-bottom {
  position: relative;
  z-index: 1;
}

/* TOP */

#wrap .footer .footer-top {
  display: flex;

  justify-content: space-between;

  align-items: flex-end;

  padding: 60px 70px;

  border-bottom: 1px solid #ddd;
}

#wrap .footer .footer-top span {
  display: block;

  color: var(--point);

  font-size: 14px;
  font-weight: 800;

  letter-spacing: 2px;

  margin-bottom: 20px;
}

#wrap .footer .footer-top h3 {
  font-size: 140px;
  line-height: 0.9;

  font-weight: 900;

  margin-bottom: 30px;
}

#wrap .footer .footer-top h3 span {
  display: inline;
  color: #da291c;
}
#wrap .footer .footer-left {
  max-width: 700px;
}
#wrap .footer .footer-desc {
  color: #666;

  font-size: 18px;
  line-height: 1.8;

  margin-bottom: 50px;
}

/* CONTACT */

#wrap .footer .footer-right {
  display: flex;
  flex-direction: column;

  gap: 30px;

  text-align: right;

  margin-top: 0;
}

#wrap .footer .footer-item strong {
  display: block;

  margin-bottom: 10px;

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 2px;

  color: var(--point);
}

#wrap .footer .footer-item a {
  font-size: 20px;
  font-weight: 600;

  color: #fff;

  transition: 0.3s;
}

#wrap .footer .footer-item a:hover {
  color: var(--point);
}

/* BOTTOM */

#wrap .footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 140px;
}

#wrap .footer .footer-logo {
  display: inline-block;

  background: var(--point);

  color: #fff;

  padding: 12px 18px;

  border-radius: 8px;

  font-size: 18px;
  font-weight: 800;
}

#wrap .footer .footer-menu {
  display: flex;
  gap: 40px;
}

#wrap .footer .footer-menu li a {
  font-size: 14px;
  font-weight: 700;

  transition: 0.3s;
}

#wrap .footer .footer-menu li a:hover {
  color: var(--point);
}

#wrap .footer .copyright {
  font-size: 14px;

  color: #888;
}
@keyframes recordSpin {
  from {
    transform: translateY(-50%) rotate(0deg);
  }

  to {
    transform: translateY(-50%) rotate(360deg);
  }
}
/* =========================
   HAMBURGER BASE
========================= */

#wrap .header .menu-btn {
  display: none;
  width: 34px;
  height: 30px;
  position: relative;
  z-index: 10001;
}

#wrap .header .menu-btn span {
  display: block;
  width: 100%;
  height: 3px;
  background: #111;
  border-radius: 999px;
  transition: 0.3s;
}

#wrap .header .menu-btn span + span {
  margin-top: 7px;
}

#wrap .header .menu-btn.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

#wrap .header .menu-btn.active span:nth-child(2) {
  opacity: 0;
}

#wrap .header .menu-btn.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}
#wrap .process-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 99999;

  display: none;
  align-items: center;
  justify-content: center;

  padding: 40px;
}

#wrap .process-modal.active {
  display: flex;
}

#wrap .process-modal-box {
  position: relative;

  width: 100%;
  max-width: 1000px;
  max-height: 85vh;

  overflow-y: auto;

  background: #fff;
  border-radius: 30px;

  padding: 60px;
}

#wrap .process-close {
  position: sticky;
  top: 0;
  margin-left: auto;
  right: 5px;

  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  z-index: 100;
}

#wrap .process-head span {
  color: var(--point);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
}

#wrap .process-head h3 {
  margin-top: 20px;
  font-size: 56px;
  font-weight: 900;
}

#wrap .process-head p {
  margin-top: 16px;
  color: #666;
  font-size: 18px;
}

#wrap .process-content {
  margin-top: 50px;
}

#wrap .process-content section {
  padding: 30px 0;
  border-top: 1px solid #e5e0d9;
}

#wrap .process-content h4 {
  color: var(--point);
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 16px;
}

#wrap .process-content p {
  color: #555;
  font-size: 17px;
  line-height: 1.8;
}
#wrap .process-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

#wrap .process-stack span {
  padding: 10px 16px;
  border-radius: 999px;
  background: #f3f3f3;
  font-weight: 700;
}
/* =========================
   DESIGN VIEW MODAL
========================= */

.design-view-modal {
  position: fixed;
  inset: 0;

  display: none;
  align-items: center;
  justify-content: center;

  padding: 40px;

  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 99999;
}

.design-view-modal.active {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.design-view-box {
  position: relative;
  width: 100%;
  max-width: 1000px;
  max-height: 88vh;
  overflow-y: hidden;
  background: #fff;
  border-radius: 30px;
  padding: 60px;
  transform: translateY(20px) scale(0.97);
  transition: 0.35s;
}
.design-view-modal.active .design-view-box {
  transform: translateY(0) scale(1);
}
.design-view-close {
  position: sticky;

  top: 0;

  margin-left: auto;

  width: 44px;
  height: 44px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #fff;

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);

  z-index: 10;
}

.design-view-head {
  margin-bottom: 40px;
}

.design-view-head span {
  color: var(--point);

  font-size: 13px;
  font-weight: 900;

  letter-spacing: 2px;
}

.design-view-head h3 {
  margin-top: 18px;

  font-size: 42px;
  font-weight: 900;
}

.design-view-head p {
  margin-top: 14px;

  color: #666;

  line-height: 1.8;
}

.design-view-image {
  max-height: 60vh;
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: 18px;
  background: #faf9f6;
}

#wrap .design-view-image::-webkit-scrollbar {
  width: 8px;
}

#wrap .design-view-image::-webkit-scrollbar-track {
  background: #ececec;
  border-radius: 999px;
}

#wrap .design-view-image::-webkit-scrollbar-thumb {
  background: var(--point);
  border-radius: 999px;
}

#wrap .design-view-image img {
  width: 100%;
  height: auto;
  display: block;
}
/* =========================================================
   TRACK 02 FINAL OVERRIDE
   중복 반응형 덮어쓰기 방지용 - 항상 파일 맨 아래 유지
========================================================= */

#wrap .track02 .work-detail .detail-thumb .lp-bg {
  display: none !important;
}

#wrap .track02 .work-detail .detail-thumb .project-thumb {
  position: relative;
  overflow: hidden;
  z-index: 2;
  flex-shrink: 0;
}

#wrap .track02 .work-detail .detail-thumb .project-thumb img {
  width: 100%;
  height: auto;
  display: block;
  max-width: none;
}

/* =========================================================
   RESPONSIVE AREA
   반응형 수정은 아래 영역에서만 관리하기
   순서: 1400 → 1024 → 768 → 480
========================================================= */

/* =========================
   1400
========================= */

@media (max-width: 1400px) {
  #wrap .visual .visual-sticker-deco {
    right: 0;
  }
  #wrap .track02 .work-detail {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 50px;
  }

  #wrap .track02 .work-detail .detail-thumb {
    height: 460px;
    min-height: auto;
  }

  #wrap .track02 .work-detail .detail-thumb .project-thumb {
    width: 410px;
    height: 460px;
  }

  #wrap .header {
    padding: 0 60px;
  }

  #wrap .visual {
    padding: 0 40px;
  }

  #wrap .visual .visual-inner .visual-txt h2 {
    font-size: 100px;
  }

  #wrap .visual .visual-inner .visual-sticker {
    width: 430px;
  }

  #wrap .track {
    width: calc(100% - 40px);
    padding: 60px 40px;
  }

  #wrap .track01 .about-wrap {
    grid-template-columns: 1fr;
  }

  #wrap .track02 .work-detail {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 50px;
  }

  #wrap .track02 .work-detail .detail-thumb {
    min-height: 460px;
  }

  #wrap .track02 .work-detail .detail-thumb .lp-bg {
    width: 520px;
  }

  #wrap .track02 .work-detail .detail-thumb .project-thumb {
    width: 410px;
  }

  #wrap .footer .footer-top h3 {
    font-size: 100px;
  }

  #wrap .track02 .work-detail {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 50px;
  }

  #wrap .track02 .work-detail .detail-thumb {
    height: 460px;
    min-height: auto;
  }

  #wrap .track02 .work-detail .detail-thumb .project-thumb {
    width: 410px;
    height: 460px;
  }
}

/* =========================
   1024
========================= */

@media (max-width: 1024px) {
  #wrap .header {
    height: 80px;
    padding: 0 30px;
  }

  #wrap .header .logo a {
    width: 110px;
    height: auto;
  }

  #wrap .header .gnb {
    gap: 20px;
  }

  #wrap .header .gnb a {
    font-size: 16px;
  }

  #wrap .visual {
    height: auto;
    min-height: 100vh;
    padding: 130px 30px 80px;
  }

  #wrap .visual .visual-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  #wrap .visual .visual-inner .visual-txt {
    width: 100%;
  }

  #wrap .visual .visual-inner .visual-txt h2 {
    font-size: 82px;
  }

  #wrap .visual .visual-inner .visual-txt .visual-desc {
    font-size: 20px;
  }

  #wrap .visual .visual-inner .visual-sticker {
    width: 300px;
    align-self: flex-end;
    margin-right: 50px;
    margin-top: -30px;
    position: relative;
    z-index: 5;
  }

  #wrap .visual .visual-sticker-deco {
    display: block;
    position: absolute;
    width: 320px;
    height: 300px;

    right: 95px;
    bottom: 170px;

    z-index: 6;
    pointer-events: none;
  }

  #wrap .visual .visual-sticker-deco .deco01 {
    width: 60px;
    right: 210px;
    bottom: 185px;
  }

  #wrap .visual .visual-sticker-deco .deco02 {
    width: 48px;
    right: 25px;
    bottom: 205px;
  }

  #wrap .visual .visual-sticker-deco .deco03 {
    width: 46px;
    right: 215px;
    bottom: 60px;
  }

  #wrap .visual .visual-sticker-deco .deco04 {
    width: 62px;
    right: 20px;
    bottom: 40px;
  }

  #wrap .visual .visual-sticker-deco .deco05 {
    width: 48px;
    right: 135px;
    bottom: 235px;
  }

  #wrap .track01 .about-intro {
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
    flex-direction: column;
    align-items: center;
    padding: 60px 50px 45px;
  }

  #wrap .track01 .profile-photo {
    width: 260px;
  }

  #wrap .track01 .profile-info {
    width: 100%;
  }

  #wrap .track01 .about-intro .profile-label {
    left: 50%;
    transform: translateX(-50%) rotate(-3deg);
  }

  #wrap .track02 .worksSwiper {
    overflow: hidden;
  }

  #wrap .track03 .design-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #wrap .track04 {
    grid-template-columns: 1fr;
  }

  #wrap .footer .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    padding: 60px 40px;
  }

  #wrap .footer .footer-right {
    text-align: left;
  }

  #wrap .footer .footer-bottom {
    padding: 35px 40px;
  }
  /* 모달창 */
  #wrap .process-modal {
    padding: 30px;
  }

  #wrap .process-modal-box {
    max-width: 760px;
    padding: 50px 40px;
    border-radius: 26px;
  }

  #wrap .process-head h3 {
    font-size: 44px;
  }

  #wrap .process-head p {
    font-size: 16px;
  }

  #wrap .process-content {
    margin-top: 40px;
  }
}

/* =========================
   768 MOBILE
========================= */

@media (max-width: 768px) {
  #wrap .track02 .worksSwiper {
    height: 170px;
    padding: 18px 0;
    overflow: hidden;
  }

  #wrap .track02 .worksSwiper .swiper-slide {
    overflow: visible;
  }

  #wrap .track02 .worksSwiper .swiper-slide .album {
    width: 150px;
    max-width: 150px;
  }

  #wrap .track02 .works-prev,
  #wrap .track02 .works-next {
    top: 96px;
    width: 34px;
    height: 34px;
  }

  #wrap .track02 .works-prev {
    right: 58px;
  }

  #wrap .track02 .works-next {
    right: 18px;
  }

  #wrap .track02 .work-detail {
    display: block;
    height: calc(100vh - 300px);
    max-height: calc(100vh - 300px);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 24px 18px 80px;
    border-radius: 24px;
    scrollbar-width: thin;
    scrollbar-color: #da291c #ececec;
  }

  #wrap .track02 .work-detail::-webkit-scrollbar {
    width: 6px;
  }

  #wrap .track02 .work-detail::-webkit-scrollbar-track {
    background: #ececec;
    border-radius: 999px;
  }

  #wrap .track02 .work-detail::-webkit-scrollbar-thumb {
    background: #da291c;
    border-radius: 999px;
  }

  #wrap .track02 .work-detail::-webkit-scrollbar-thumb:hover {
    background: #b82015;
  }

  #wrap .track02 .work-detail .detail-thumb {
    height: 420px;
    min-height: auto;
    padding: 0;
    overflow: hidden;
  }

  #wrap .track02 .work-detail .detail-thumb .lp-bg {
    display: none !important;
  }

  #wrap .track02 .work-detail .detail-thumb .project-thumb {
    width: 100%;
    max-width: 320px;
    height: 420px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
  }

  #wrap .track02 .work-detail .detail-thumb .project-thumb img {
    width: 100%;
    height: auto;
    display: block;
  }

  #wrap .track02 .work-detail .work-detail-info {
    display: block;
    padding-top: 28px;
  }

  #wrap .track02 .work-detail .detail-badge {
    margin-bottom: 24px;
  }

  #wrap .track02 .work-detail .work-detail-info h4 {
    font-size: 28px;
    margin-bottom: 42px;
  }

  #wrap .track02 .work-detail .project-meta li {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px 0;
  }

  #wrap .track02 .work-detail .project-meta li span {
    font-size: 14px;
    line-height: 1.7;
  }

  #wrap .track02 .work-detail .work-stack {
    gap: 8px;
  }

  #wrap .track02 .work-detail .work-stack span {
    padding: 8px 14px;
    font-size: 12px;
  }

  #wrap .track02 .work-detail .work-btn-wrap {
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin-top: 28px;
  }

  #wrap .track02 .work-detail .work-btn-wrap a {
    flex: 1;
    height: 46px;
    font-size: 12px;
    gap: 6px;
    padding: 0 8px;
  }

  #wrap .header {
    height: 70px;
    padding: 0 20px;
  }

  #wrap .header .logo a {
    width: 90px;
    height: auto;
  }

  #wrap .header .menu-btn {
    display: block;
    margin-left: auto;
  }

  #wrap .header .gnb {
    position: fixed;
    top: 70px;
    right: 20px;
    width: 250px;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    gap: 42px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-15px);
    transition: 0.35s;
    z-index: 9999;
  }

  #wrap .header .gnb.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  #wrap .header .gnb a {
    font-size: 20px;
  }

  #wrap .header .gnb a span {
    display: inline;
  }

  #wrap .visual {
    height: auto;
    min-height: auto;
    padding: 100px 20px 60px;
  }

  #wrap .visual .visual-inner {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 28px;
  }

  #wrap .visual .visual-inner .visual-txt {
    width: 100%;
  }

  #wrap .visual .visual-inner .visual-txt .sub-title {
    font-size: 11px;
    letter-spacing: 4px;
    margin-bottom: 22px;
  }

  #wrap .visual .visual-inner .visual-txt h2 {
    font-size: 48px;
    line-height: 0.9;
  }

  #wrap .visual .visual-inner .visual-txt .visual-desc {
    margin-top: 24px;
    font-size: 15px;
  }

  #wrap .visual .visual-inner .visual-txt .visual-desc span {
    font-size: 21px;
  }

  /* 캐릭터 가운데 */
  #wrap .visual .visual-inner .visual-sticker {
    width: 240px;
    margin: 35px auto 0;
    align-self: center;
    position: relative;
    z-index: 10;
  }

  /* 모바일 스티커 */
  #wrap .visual .visual-sticker-deco {
    position: absolute;
    left: 50%;
    bottom: 65px;
    width: 308px;
    height: 274px;
    transform: translateX(-50%);
    z-index: 9;
  }

  /* 테이프 */
  .deco05 {
    width: 42px;
    top: -15px;
    left: 95px;
  }

  /* UBINEE */
  .deco01 {
    width: 50px;
    top: 10px;
    left: -10px;
  }

  /* CSS */
  .deco02 {
    width: 38px;
    top: 55px;
    right: -5px;
  }

  /* HTML */
  .deco03 {
    width: 40px;
    bottom: 20px;
    left: 5px;
  }

  /* JS */
  .deco04 {
    width: 45px;
    bottom: 15px;
    right: 5px;
  }
  #wrap .track {
    width: 100%;
    padding: 50px 20px;
  }

  #wrap .track .track-head {
    margin-bottom: 40px;
    gap: 16px;
  }

  #wrap .track .track-head .track-num {
    font-size: 46px;
  }

  #wrap .track .track-head h3 {
    font-size: 30px;
  }

  #wrap .track01 .about-wrap {
    grid-template-columns: 1fr;
  }

  #wrap .track01 .about-intro {
    max-width: 100%;
    padding: 55px 24px 34px;
  }

  #wrap .track01 .profile-photo {
    width: 100%;
    max-width: 280px;
  }

  #wrap .track01 .info-row {
    grid-template-columns: 95px 1fr;
  }

  #wrap .track01 .info-row strong,
  #wrap .track01 .info-row span {
    font-size: 15px;
  }

  #wrap .track01 .about-grid {
    grid-template-columns: 1fr;
  }

  #wrap .track01 .education-card {
    grid-column: auto;
  }

  #wrap .track01 .education-card .education-list {
    grid-template-columns: 1fr;
  }

  #wrap .track02 .works-prev,
  #wrap .track02 .works-next {
    top: 95px;
  }

  #wrap .track02 .works-prev {
    right: 70px;
  }

  #wrap .track02 .works-next {
    right: 20px;
  }

  #wrap .track02 .work-detail {
    grid-template-columns: 1fr;
    padding: 36px 20px;
    border-radius: 24px;
  }
  #wrap .track02 .work-detail .work-stack {
    gap: 8px;
  }

  #wrap .track02 .work-detail .work-stack span {
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 700;
  }
  #wrap .track02 .work-detail .detail-thumb {
    min-height: 320px;
  }

  #wrap .track02 .work-detail .detail-thumb .lp-bg {
    width: 330px;
  }

  #wrap .track02 .work-detail .detail-thumb .project-thumb {
    width: 250px;
  }

  #wrap .track02 .work-detail .work-detail-info h4 {
    font-size: 32px;
    margin-bottom: 50px;
  }

  #wrap .track02 .work-detail .project-meta li {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  #wrap .track02 .work-detail .work-btn-wrap {
    display: flex;
    flex-direction: row;
    gap: 8px;
  }

  #wrap .track02 .work-detail .work-btn-wrap a {
    flex: 1;
    height: 46px;
    font-size: 12px;
    gap: 6px;
    padding: 0 8px;
  }

  #wrap .track02 .work-detail .work-btn-wrap a i {
    font-size: 11px;
  }

  #wrap .track03 .design-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  #wrap .track04 {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  #wrap .track04 .contact-left h3 {
    font-size: 56px;
  }

  #wrap .footer .footer-watermark {
    font-size: 120px;
    left: 50%;
  }

  #wrap .footer .footer-top {
    flex-direction: column;
    gap: 40px;
    padding: 50px 20px;
  }

  #wrap .footer .footer-top h3 {
    font-size: 60px;
  }

  #wrap .footer .footer-right {
    text-align: left;
  }

  #wrap .footer .footer-bottom {
    flex-direction: column;
    gap: 20px;
    padding: 30px 20px;
  }
  /* 모달창 */
  #wrap .process-modal {
    padding: 18px;
    align-items: flex-start;
  }

  #wrap .process-modal-box {
    width: 100%;
    max-height: calc(100vh - 36px);
    margin-top: 18px;
    padding: 46px 24px 34px;
    border-radius: 22px;
  }

  #wrap .process-close {
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  #wrap .process-head span,
  #wrap .process-head .process-label {
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  #wrap .process-head h3 {
    margin-top: 18px;
    font-size: 34px;
    line-height: 1.1;
  }

  #wrap .process-head p {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.6;
  }

  #wrap .process-content {
    margin-top: 32px;
  }

  #wrap .process-content section,
  #wrap .process-content .process-section {
    padding: 24px 0;
  }

  #wrap .process-content h4 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  #wrap .process-content p {
    font-size: 15px;
    line-height: 1.7;
  }

  #wrap .process-stack {
    gap: 8px;
  }

  #wrap .process-stack span {
    padding: 8px 12px;
    font-size: 13px;
  }
  /* 모달창 */
  #wrap .process-modal {
    padding: 12px;
  }

  #wrap .process-modal-box {
    max-height: calc(100vh - 24px);
    margin-top: 12px;
    padding: 42px 18px 28px;
    border-radius: 18px;
  }

  #wrap .process-close {
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  #wrap .process-head h3 {
    font-size: 28px;
  }

  #wrap .process-head p {
    font-size: 14px;
  }

  #wrap .process-content {
    margin-top: 26px;
  }

  #wrap .process-content section,
  #wrap .process-content .process-section {
    padding: 20px 0;
  }

  #wrap .process-content h4 {
    font-size: 15px;
  }

  #wrap .process-content p {
    font-size: 14px;
  }

  #wrap .process-stack span {
    padding: 7px 10px;
    font-size: 12px;
  }

  #wrap .track02 .worksSwiper {
    height: 170px !important;
    padding: 18px 0 !important;
    overflow: hidden !important;
  }

  #wrap .track02 .worksSwiper .swiper-slide {
    overflow: visible !important;
  }

  #wrap .track02 .worksSwiper .swiper-slide .album {
    width: 150px !important;
    max-width: 150px !important;
  }

  #wrap .track02 .works-prev,
  #wrap .track02 .works-next {
    top: 96px !important;
    width: 34px !important;
    height: 34px !important;
  }

  #wrap .track02 .works-prev {
    right: 58px !important;
  }

  #wrap .track02 .works-next {
    right: 18px !important;
  }

  #wrap .track02 .work-detail {
    display: block !important;
    height: calc(100vh - 300px) !important;
    max-height: calc(100vh - 300px) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    padding: 24px 18px 80px !important;
    border-radius: 24px !important;
    scrollbar-width: thin;
    scrollbar-color: #da291c #ececec;
  }

  #wrap .track02 .work-detail::-webkit-scrollbar {
    width: 6px;
  }

  #wrap .track02 .work-detail::-webkit-scrollbar-track {
    background: #ececec;
    border-radius: 999px;
  }

  #wrap .track02 .work-detail::-webkit-scrollbar-thumb {
    background: #da291c;
    border-radius: 999px;
  }

  #wrap .track02 .work-detail .detail-thumb {
    height: 420px !important;
    min-height: auto !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  #wrap .track02 .work-detail .detail-thumb .project-thumb {
    width: 100% !important;
    max-width: 320px !important;
    height: 420px !important;
    margin: 0 auto !important;
    border-radius: 12px !important;
  }

  #wrap .track02 .work-detail .work-detail-info {
    display: block !important;
    padding-top: 28px !important;
  }

  #wrap .track02 .work-detail .detail-badge {
    margin-bottom: 24px !important;
  }

  #wrap .track02 .work-detail .work-detail-info h4 {
    font-size: 28px !important;
    margin-bottom: 42px !important;
  }

  #wrap .track02 .work-detail .project-meta li {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding: 18px 0 !important;
  }

  #wrap .track02 .work-detail .project-meta li span {
    font-size: 14px !important;
    line-height: 1.7 !important;
  }

  #wrap .track02 .work-detail .work-stack {
    gap: 8px !important;
  }

  #wrap .track02 .work-detail .work-stack span {
    padding: 8px 14px !important;
    font-size: 12px !important;
  }

  #wrap .track02 .work-detail .work-btn-wrap {
    display: flex !important;
    flex-direction: row !important;
    gap: 8px !important;
    margin-top: 28px !important;
  }

  #wrap .track02 .work-detail .work-btn-wrap a {
    flex: 1 !important;
    height: 46px !important;
    font-size: 12px !important;
    gap: 6px !important;
    padding: 0 8px !important;
  }
}

/* =========================
   480 SMALL MOBILE
========================= */

@media (max-width: 480px) {
  #wrap .track02 .worksSwiper {
    height: 155px;
    padding: 10px 0;
  }

  #wrap .track02 .worksSwiper .swiper-slide .album {
    width: 135px;
    max-width: 135px;
  }

  #wrap .track02 .work-detail {
    height: calc(100vh - 285px);
    max-height: calc(100vh - 285px);
    padding: 22px 16px 70px;
  }

  #wrap .track02 .work-detail .detail-thumb {
    height: 330px;
  }

  #wrap .track02 .work-detail .detail-thumb .project-thumb {
    max-width: 280px;
    height: 330px;
  }

  #wrap .track02 .work-detail .work-detail-info h4 {
    font-size: 26px;
    margin-bottom: 38px;
  }

  #wrap .track02 .work-detail .project-meta li span {
    font-size: 13px;
  }

  #wrap .track02 .work-detail .work-btn-wrap a {
    height: 42px;
    font-size: 11px;
  }

  #wrap .header {
    padding: 0 16px;
  }

  #wrap .header .logo a {
    width: 82px;
  }

  #wrap .visual {
    padding: 100px 18px;
  }

  #wrap .visual .visual-inner .visual-txt h2 {
    font-size: 46px;
  }

  #wrap .visual .visual-inner .visual-txt .visual-desc {
    font-size: 15px;
  }

  #wrap .visual .visual-inner .visual-sticker {
    width: 230px;
    left: 14%;
  }
  #wrap .visual .visual-sticker-deco {
    left: 64%;
    bottom: 47px;
  }
  #wrap .track {
    padding: 36px 16px;
  }
  #wrap .track .track-head {
    margin-bottom: 28px;
  }
  #wrap .track01 .about-wrap {
    gap: 20px;
  }
  #wrap .track01 .about-card {
    padding: 30px;
  }
  #wrap .track01 .profile-photo {
    width: 100%;
    max-width: 240px;
  }

  #wrap .track01 .info-row {
    grid-template-columns: 82px 1fr;
    padding: 10px 0;
  }

  #wrap .track01 .info-row strong,
  #wrap .track01 .info-row span {
    font-size: 13px;
  }
  #wrap .track01 .about-card h5 {
    margin-bottom: 17px;
  }
  #wrap .track01 .skill-tag span {
    padding: 7px 12px;
  }
  #wrap .track01 .education-card .education-list li strong {
    margin-bottom: none;
  }
  #wrap .track01 .education-card .education-list li::after {
    display: none;
  }
  #wrap .track01 .certification-card ul {
    gap: 10px;
  }
  /* track02 */
  #wrap .track02 .worksSwiper {
    padding: 0;
  }
  #wrap .track02 .work-detail .detail-thumb {
    min-height: 280px;
  }

  #wrap .track02 .work-detail .detail-thumb .lp-bg {
    width: 280px;
  }

  #wrap .track02 .work-detail .detail-thumb .project-thumb {
    width: 215px;
  }
  #wrap .track02 .work-detail .work-stack {
    gap: 6px;
  }

  #wrap .track02 .work-detail .work-stack span {
    padding: 6px 10px;
    font-size: 11px;
  }
  #wrap .track02 .work-detail .work-btn-wrap {
    display: flex;
    flex-direction: row;
    gap: 8px;
  }

  #wrap .track02 .work-detail .work-btn-wrap a {
    flex: 1;
    height: 42px;
    font-size: 11px;
    gap: 6px;
    padding: 0 8px;
  }

  #wrap .track02 .work-detail .work-btn-wrap a i {
    font-size: 11px;
  }
  #wrap .track02 .work-detail .detail-badge {
    margin-bottom: 24px;
  }
  #wrap .track02 .work-detail .work-detail-info h4 {
    font-size: 28px;
    margin-bottom: 40px;
  }
  #wrap .track02 .work-detail .project-meta li {
    padding: 14px 0;
  }
  #wrap .track02 .work-detail .work-btn-wrap {
    margin-top: 24px;
  }
  /* track03 */
  #wrap .track03 .design-filter {
    margin-bottom: 24px;
  }
  #wrap .track03 .design-filter button {
    height: 40px;

    padding: 0 14px;
  }
  #wrap .track03 .design-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  #wrap .track04 .contact-left h3 {
    font-size: 44px;
  }

  #wrap .footer .footer-top h3 {
    font-size: 46px;
  }

  #wrap .footer .footer-menu {
    flex-wrap: wrap;
    justify-content: center;
  }

  #wrap .track02 .worksSwiper {
    height: 155px !important;
    padding: 10px 0 !important;
  }

  #wrap .track02 .worksSwiper .swiper-slide .album {
    width: 135px !important;
    max-width: 135px !important;
  }

  #wrap .track02 .work-detail {
    height: calc(100vh - 285px) !important;
    max-height: calc(100vh - 285px) !important;
    padding: 22px 16px 70px !important;
  }

  #wrap .track02 .work-detail .detail-thumb {
    height: 330px !important;
  }

  #wrap .track02 .work-detail .detail-thumb .project-thumb {
    max-width: 280px !important;
    height: 330px !important;
  }

  #wrap .track02 .work-detail .work-detail-info h4 {
    font-size: 26px !important;
    margin-bottom: 38px !important;
  }

  #wrap .track02 .work-detail .project-meta li span {
    font-size: 13px !important;
  }

  #wrap .track02 .work-detail .work-btn-wrap a {
    height: 42px !important;
    font-size: 11px !important;
  }
}
