/*폰트 영역 */
@font-face {
  font-family: 'Pretendard';
  src: url('../fonts/Pretendard-Regular.woff2') format('woff2');
  font-weight: 400;
}

@font-face {
  font-family: 'Pretendard';
  src: url('../fonts/Pretendard-Medium.woff2') format('woff2');
  font-weight: 500;
}

@font-face {
  font-family: 'Pretendard';
  src: url('../fonts/Pretendard-SemiBold.woff2') format('woff2');
  font-weight: 600;
}

html {
  overflow-y: scroll;
}

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

/*폰트 영역 */

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

body {
  font-family: 'Pretendard', sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

/*인트로 영역 */
#intro {
 display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  transition: opacity 0.8s ease;
  overflow: hidden;
}

#intro video {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 100vw;
  height: 100vh;

  object-fit: cover;
  transform: translate(-50%, -50%);
}
/*인트로 영역 */


#main {
  display: block;
}

.hero-logo{
    width: 150px;
    max-width: 60%;
    height: auto;
    opacity: 0;
    animation: logoFade 2s ease forwards;
}

@media (max-width: 768px){
    .hero-logo{
        width: 100px;
    }
}

@keyframes logoFade{
    from{
        opacity: 0;
    }
    to{
        opacity: 0.5;
    }
}

/*헤더 영역 */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  padding: 0 18vw;

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

  z-index: 9999;
  background: transparent;

  transform: translateY(0);
  will-change: transform;

  transition:
    transform 0.35s ease,
    background-color 0.35s ease,
    box-shadow 0.35s ease,
    padding 0.35s ease;
}

.home .header:hover ,.home .header.show {
  
     background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);

  backdrop-filter: none;
  -webkit-backdrop-filter: none;
 
}


.header.hide {
   transform: translateY(-110%);
  pointer-events: none;
}

.header.show {
  transform: translateY(0);
  pointer-events: auto;
}
/*헤더 영역 */


/*로고 영역 */
.logo {
  width: auto;
  height: 60px;
}

.logo a {
  display: flex;
   align-items: center;
  gap: 8px;
  height: 100%;
  text-decoration: none;
}

.logo-image {
  position: relative;
  width: 75px;
  height: 50px;
  flex-shrink: 0;
}

.logo-image img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 50px;
  width: auto;
  transition: opacity 0.3s ease;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  justify-content: center;
  white-space: nowrap;
  margin-left: -40px;
  transform: translateY(11px);
}

.logo-text .ko {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

.logo-text .en {
  margin-top: 4px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.8px;
  color: rgba(255,255,255,0.7);
}

.logo-color {
  opacity: 0;
}

.home .header:hover .logo-white,
.home .header.show .logo-white {
  opacity: 0;
}

.home .header:hover .logo-color,
.home .header.show .logo-color {
  opacity: 1;
}

.home .header:hover .logo-text .ko,
.home .header.show .logo-text .ko {
  color: #111;
}

.home .header:hover .logo-text .en,
.home .header.show .logo-text .en {
  color: #555;
}

.home .header:hover .nav-item > a,
.home .header.show .nav-item > a {
  color: #111;
}

.home .header:hover .menu-btn,
.home .header.show .menu-btn {
  color: #111;
}

.header:hover .logo-color ,.home .header.show .logo-color  {
  opacity: 1;
}

.header:hover .logo-text .ko ,.home .header.show .logo-text .ko {
  color: #111;
}

.header:hover .logo-text .en ,.home .header.show .logo-text .en  {
  color: #555;
}

.logo-text span {
  transition: color 0.3s ease;
}
/*로고 영역 */


/*내비게이션 영역 */
.nav {
  position: absolute;
  left: 70%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 50px;
  align-items: center;
}

.nav-item {
  position: relative;
  height: 90px;
  display: flex;
  align-items: center;
}

.nav-item > a {
  font-family: "Pretendard", sans-serif;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: color 0.3s ease;
 margin-top: 10px;
  letter-spacing: -0.3px;
  text-transform: uppercase;
}

.header:hover .nav-item > a ,.home .header.show .nav-item > a {
  color: #111;
}

.sub-menu {
 position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(12px);

  min-width: 190px;
  padding: 10px 0;

  background: rgba(18, 18, 18, 0.92);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;

  box-shadow: 0 18px 45px rgba(0,0,0,0.28);

  opacity: 0;
  visibility: hidden;

  transform: translateX(-50%) translateY(12px);

  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    visibility 0.28s;
}

.sub-menu a {
  display: block;

  padding: 12px 22px;

  color: rgba(255,255,255,0.65);

  text-decoration: none;

  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.2px;
  white-space: nowrap;

  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    padding-left 0.25s ease;}

.sub-menu a:hover {
   color: #ffffff;
  background: rgba(255,255,255,0.05);
  padding-left: 28px;
}

.nav-item:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.menu-btn {
  display: none;
  position: relative;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 32px;
  cursor: pointer;
  z-index: 10001;
}

.home .header:hover .menu-btn,
.home .header.show .menu-btn {
  color: #111;
}

/*내비게이션 영역 */

/*모바일 메뉴 영역 */
/* =========================
   모바일 메뉴 영역
========================= */

.mobile-menu {
  display: block;

  position: fixed;
  top: 70px;
  left: 0;

  width: 100%;
  max-height: calc(100dvh - 70px);
  overflow-y: auto;

  background: rgba(20, 20, 20, 0.96);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateY(-15px);

  transition: none;

  z-index: 9999;
}

/* 초기화가 끝난 후에만 애니메이션 적용 */
html.mobile-menu-ready .mobile-menu {
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0s linear 0.3s;
}

/* 메뉴 열림 */
html.mobile-menu-ready .mobile-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transform: translateY(0);

  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0s;
}

/* 모바일 메뉴 항목 */
.mobile-item {
  opacity: 0;
  transform: translateY(-8px);

  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.mobile-menu.active .mobile-item {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.active .mobile-item:nth-child(1) {
  transition-delay: 0.05s;
}

.mobile-menu.active .mobile-item:nth-child(2) {
  transition-delay: 0.1s;
}

.mobile-menu.active .mobile-item:nth-child(3) {
  transition-delay: 0.15s;
}

.mobile-menu.active .mobile-item:nth-child(4) {
  transition-delay: 0.2s;
}

/* 1차 메뉴 제목 */
.mobile-title {
  width: 100%;
  height: 48px;
  padding: 0 20px;

  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;

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

  color: #fff;
  font-family: "Pretendard", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: left;

  cursor: pointer;

  transition:
    color 0.3s ease,
    background-color 0.3s ease;
}

.mobile-title:hover {
  color: #bdbdbd;
  background: rgba(255, 255, 255, 0.05);
}

/* 하위 메뉴 */
.mobile-sub {
  display: none;
  flex-direction: column;
  gap: 8px;

  padding: 10px 20px 14px;

  background: rgba(35, 35, 35, 0.98);
}

.mobile-item.active .mobile-sub {
  display: flex;
}

.mobile-sub a {
  display: block;

  padding: 5px 0;

  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 14px;

  transition:
    color 0.3s ease,
    padding-left 0.3s ease;
}

.mobile-sub a:hover {
  color: #fff;
  padding-left: 8px;
}

/* 모바일 메뉴가 열렸을 때 배경 스크롤 방지 */
body.menu-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .header {
    height: 70px;
    padding: 0 20px;
  }

  .nav {
    display: none;
  }

  .menu-btn {
    display: block;
  }
}

@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
}
/*모바일 메뉴 영역 */

/*히어로 영역 */
.hero {
  position: relative;
  width: 100%; 
  height: 100svh;
  min-height: 520px; 
  overflow: hidden;
  background: #000;
}

.hero video {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  display: block;
  pointer-events: none;  
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content h1 {
  font-size: 64px;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.hero-content p {
   font-size: 26px;
  font-weight: 600;
  letter-spacing: -1px;
}

.hero-content span {
   display: block;
  margin-top: 10px;
  margin-bottom: 35px;

  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.5px;

  color: rgba(255,255,255,0.55);
}
/*히어로 영역 */

/*섹션 영역 */
.section {
  background: #fff;
  color: #111;
  padding: 100px 10%;
}

.section h2 {
  font-size: 36px;
  margin-bottom: 25px;
}

.section p {
  font-size: 18px;
  line-height: 1.8;
}
/*섹션 영역 */
 
/* 푸터 영역 */
.footer{
  background:
  linear-gradient(
    180deg,
    #0b0f14 0%,
    #070707 100%
  );
  border-top:1px solid rgba(255,255,255,0.1);
  padding:80px 8% 30px;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
   align-items:flex-start;
  gap:10px;
  flex-wrap:wrap;
}

.footer-brand{
  flex:1.5;
  min-width:300px;
}

.footer-info,
.footer-contact{
  flex:1;
  min-width:220px;
}

.footer-logo {
  display: flex;
  align-items: flex-end;
  gap: 15px;
}

.footer-logo img {
  width: 60px;
  height: auto;
}

.footer-logo p{
  color:#888;
  line-height:1.8;
}

.footer h4{
  color:#fff;
  margin-bottom:20px;
  font-size:14px;
  letter-spacing:2px;
}

.footer p{
  color:#999;
  line-height:2;
  font-size:14px;
}

.footer-copy{
  margin-top:50px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,0.08);
  text-align:center;
  color:#666;
  font-size:13px;
}

.footer-title {
  display: flex;
  flex-direction: column;
}

.footer-name{
  font-size:30px;
  font-weight:700;
  letter-spacing:3px;
  color:#fff;
}

.footer-sub{
  font-size:10px;
  letter-spacing:4px;
  text-transform:uppercase;
  color:rgba(255,255,255,.55);
}

.footer-slogan{
  margin-top:18px;
  color:#777;
  font-size:14px;
  line-height:1.9;
  font-weight:300;
}

.logo-divider{
  width:1px;
  height:48px;
  background:rgba(255,255,255,.15);
}
/* 푸터 영역 */

/* 서브페이지 */
.sub-page .header {
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.sub-page .logo-white {
  display: none;
}

.sub-page .logo-color {
  display: block;
}

body.sub-page .header {
  background: rgba(255,255,255,0.92) !important;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

body.sub-page .logo-white {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

body.sub-page .logo-color {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

body.sub-page .logo-text .ko,
body.sub-page .logo-text .en {
  color: #111 !important;
}

body.sub-page .nav > a {
  color: #111 !important;
}

body.sub-page .nav-item:hover {
  background: none !important;
}

body.sub-page .nav-item:hover > a {
  color: #b7b6b6 !important;
}

/* 서브페이지 상위 메뉴 기본 검정 */
body.sub-page .nav-item > a {
  color: #111 !important;
}

.sub-page .menu-btn,
.sub-page .header:hover .menu-btn,
.sub-page .header.show .menu-btn {
  color: #111;
}




/*히어로 영역 */


/* 가운데 제목 영역 */
.hero1 {
  position: relative;
  height: 500px;

  background:
    linear-gradient(
      rgba(0,0,0,0.55),
      rgba(0,0,0,0.55)
    ),
    url('/images/company/con1.jpg') center center / cover no-repeat;

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

  color: #fff;
  padding-top: 90px;
  box-sizing: border-box;
}

/* Breadcrumb */
.hero1-breadcrumb {
  position: absolute;
  top: 120px;
  left: 4vw;

  display: flex;
  align-items: center;
  gap: 8px;

  font-size: 14px;
  color: rgb(255, 255, 255 , 0.8);
  z-index: 10;
}

.hero1-breadcrumb span {
  opacity: 0.8;
}

/* 메인 컨텐츠 */
.hero1-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

/* 제목 */
.hero1-title {
  font-size: 70px;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;

  margin-bottom: 24px;

  color: #fff;

  text-shadow:
    0 2px 15px rgba(0,0,0,.35);
}

/* 설명 */
.hero1-desc {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.9;
  color: rgba(255,255,255,0.8);
}

.vision-hero{
     background: linear-gradient(
      rgba(0,0,0,0.55),
      rgba(0,0,0,0.55)
    ),
 url("../images/company/vision-bg.jpg") center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  padding-top: 90px;
  box-sizing: border-box;
}

.organization-hero{
     background: linear-gradient(
      rgba(0,0,0,0.55),
      rgba(0,0,0,0.55)
    ),
 url("../images/company/organization-bg.jpg") center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  padding-top: 90px;
  box-sizing: border-box;
}

.location-hero{
     background: linear-gradient(
      rgba(0,0,0,0.55),
      rgba(0,0,0,0.55)
    ),
 url("../images/company/location-bg.jpg") center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  padding-top: 90px;
  box-sizing: border-box;
}

.structural-hero{
     background: linear-gradient(
      rgba(0,0,0,0.55),
      rgba(0,0,0,0.55)
    ),
 url("../images/structural/STRUCTURAL-bg.jpg") center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  padding-top: 90px;
  box-sizing: border-box;
}

.construction-hero{
     background: linear-gradient(
      rgba(0,0,0,0.55),
      rgba(0,0,0,0.55)
    ),
 url("../images/projects/GENERAL1.jpg") center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  padding-top: 90px;
  box-sizing: border-box;
}

.contact-hero{
     background: linear-gradient(
      rgba(0,0,0,0.55),
      rgba(0,0,0,0.55)
    ),
 url("../images/contact/conhero.jpg") center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  padding-top: 90px;
  box-sizing: border-box;
}

/*히어로 영역 */

/* =========================
   CEO MESSAGE
========================= */

.about {
  position: relative;
  min-height: 800px;
  padding: 140px 10vw;
  overflow: hidden;

  background: #fff;
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: url("../images/company/about-bg.png");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;

  opacity: 0.35;
  z-index: 0;
}

.about-inner {
  position: relative;
  z-index: 1;
}

.about-text {
  flex: 1;
  color: #111;
}

.about-subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #999;
  margin-bottom: 20px;
}

.about-text h2 {
  font-size: 56px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 35px;
}

.about-line {
  width: 80px;
  height: 2px;
  background: #c59d5f;
  margin-bottom: 40px;
}

.about-text p {
  font-size: 18px;
  line-height: 2;
  color: #555;
  margin-bottom: 24px;
}

.ceo-sign {
  text-align: right;
  margin-top: 70px;
  padding-top: 25px;
  border-top: 1px solid #ddd;
}

.ceo-sign span {
   position: relative;
  right: 8px;
  font-size: 16px;
  color: #777;
}

.ceo-sign strong {
  display: block;
  margin-top: 10px;

  font-size: 38px;
  font-weight: 700;
  letter-spacing: 8px;
  color: #111;
}

.about-image {
  flex: 0 0 500px;
}

.about-image img {
  width: 100%;
  display: block;
  filter: grayscale(100%);
}

/* =========================
   MANAGEMENT VISION
========================= */

.vision {
  position: relative;
  padding: 100px 10vw;
  background: #fff;
   overflow: hidden;
}

/* 배경 로고 */
.vision-logo-bg {
  position: absolute;

  width: 300px;
  left: 50%;
  top: 50%;

 transform: translate(-50%, -50%) scale(0.8);

  opacity: 0.1;

  pointer-events: none;

  transition:
    opacity 2s ease,
    transform 2.5s ease;

  z-index: 1;
}

@keyframes floatLogo {

  0% {
    transform: translateY(-50%) translateX(0);
  }

  50% {
    transform: translateY(calc(-50% - 12px));
  }

  100% {
    transform: translateY(-50%) translateX(0);
  }

}

.vision.active .vision-logo-bg {
  opacity: 0.1;
  }

.vision-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.vision-subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 5px;
  color:#b08a4a;
  margin-bottom: 24px;
}

.vision h2 {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.35;
  color: #111;
}

.vision-line {
  width: 80px;
  height: 2px;
  background: #c59d5f;
  margin: 40px auto;
}

.vision p {
  font-size: 20px;
  line-height: 1.9;
  color: #666;
}

.interactive-vision {
  position: relative;
  overflow: hidden;
}

.interactive-vision::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  top: 80px;
  background: rgba(197, 157, 95, 0.12);
  border-radius: 50%;
  transition: 0.8s ease;
}

.interactive-vision::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  left: -80px;
  bottom: 60px;
  border: 1px solid rgba(197, 157, 95, 0.35);
  border-radius: 50%;
}

.interactive-vision .vision-inner {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(60px);
  transition: 1s ease;
}

.interactive-vision.active .vision-inner {
  opacity: 1;
  transform: translateY(0);
}

.interactive-vision.active::before {
  transform: scale(1.2);
}

.interactive-vision h2 {
  transition: 0.5s ease;
}

.interactive-vision:hover h2 {
  letter-spacing: 2px;
}

.interactive-vision:hover .vision-line {
  width: 140px;
}

/* =========================
   policy
========================= */

.policy {
  padding: 100px 10vw;
  background: #f8f8f8;
}

.policy-inner {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

.policy-subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 5px;
  color: #b08a4a;
  margin-bottom: 20px;
}

.policy h2 {
  font-size: 48px;
  color: #111;
  margin-bottom: 70px;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.policy-card {
  background: #fff;
  padding: 50px 38px;
  text-align: left;
  border-top: 3px solid #c59d5f;
  transition: 0.4s ease;
}

.policy-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.08);
}

.policy-card strong {
  display: block;
  font-size: 18px;
  color: #c59d5f;
  margin-bottom: 28px;
}

.policy-card h3 {
  font-size: 28px;
  color: #111;
  margin-bottom: 24px;
}

.policy-card p {
  font-size: 17px;
  line-height: 1.9;
  color: #666;
}

.policy-card.tech {
  background:
    linear-gradient(rgba(255,255,255,0.85), rgba(255,255,255,0.85)),
    url('/images/company/policy-tech.jpg');
  background-size: cover;
  background-position: center;
}

.policy-card.customer {
  background:
    linear-gradient(rgba(255,255,255,0.85), rgba(255,255,255,0.85)),
    url('/images/company/policy-customer.jpg');
  background-size: cover;
  background-position: center;
}

.policy-card.safety {
  background:
    linear-gradient(rgba(255,255,255,0.85), rgba(255,255,255,0.85)),
    url('/images/company/policy-safety.jpg');
  background-size: cover;
  background-position: center;
}

/* =========================
   CORE VALUES
========================= */

.philosophy {
  padding: 100px 10vw;
  background: #fff;
  color: #111;
}

.philo-title {
  text-align: center;
  margin-bottom: 80px;
}

.philo-title span {
  font-size: 14px;
  letter-spacing: 4px;
  color: #b08a4a;
  font-weight: 700;
}

.philo-title h2 {
  font-size: 48px;
  margin: 18px 0 20px;
}

.philo-title p {
  font-size: 18px;
  color: #666;
}

.philo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.philo-card {
  position: relative;
  padding: 48px 34px;
  min-height: 300px;
  background: #f8f8f8;
  border-radius: 24px;
  overflow: hidden;
  transition: 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
}

.philo-card::before {
    content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(197,157,95,0.08),
    rgba(197,157,95,0.18)
  );
  opacity: 0;
  transition: 0.4s ease;
  z-index: 0;
}

.philo-card * {
  position: relative;
  z-index: 1;
}

.philo-card strong {
  font-size: 18px;
  color: #b08a4a;
}

.philo-card h3 {
  font-size: 32px;
  margin: 40px 0 20px;
}

.philo-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
}

.philo-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

.philo-card:hover::before {
  opacity: 1;
}

.philo-card:hover h3 {
  color: #111;
}

.philo-card:hover p {
  color: #666;
}

.philo-card.show {
  opacity: 1;
  transform: translateY(0);
}

 .philo-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
  opacity: 0.9;
  transition: 0.4s ease;
}

.philo-card {
  text-align: center;
}

.philo-card strong {
  display: block;
  margin-bottom: 12px;
}

.philo-card h3 {
  margin-bottom: 15px;
}

.philo-card:hover .philo-icon {
  transform: scale(1.08);
}

/* 조직도 */
/* =========================
   Organization
========================= */

.organization {
  padding: 100px 10vw;
  background: #fff;
  text-align: center;
}

/*.vision-subtitle {
  font-size: 14px;
  letter-spacing: 3px;
  color: #999;
  font-weight: 600;
}*/

.organization h2 {
  font-size: 56px;
  color: #111;
  margin-top: 15px;
}

.vision-line {
  width: 80px;
  height: 2px;
  background: #c59d5f;
  margin: 30px auto;
}

.organization p {
  font-size: 18px;
  line-height: 1.9;
  color: #666;
}

/* 조직도 */
.org-chart {
  position: relative;
  max-width: 1400px;
  min-height: 780px;
  margin: 90px auto 0;
  font-family: 'Pretendard', sans-serif;
  color: #111;
}

/* SVG 연결선 */
.org-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.org-lines line {
  stroke: #d8d8d8;
  stroke-width: 2;
  stroke-linecap: round;
}

/* 박스 공통 */
.org-ceo,
.org-branches {
  position: relative;
  z-index: 2;
}

.org-ceo {
  width: 420px;
  margin: 0 auto 80px;
  padding: 28px 20px;
  background: #76B1BE;
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.org-ceo strong {
  display: block;
  font-size: 48px;
  font-weight: 700;
}

.org-ceo span {
  font-size: 24px;
}

.org-branches {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 70px;
  align-items: start;
}

.org-head {
  background: #70605B;
  color: #fff;
  border-radius: 12px;
  padding: 28px 20px;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 55px;
}

.org-head span,
.org-box span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 400;
}

.org-box,
.org-small {
  background: #fff;
  border: 1px solid #C59D5F;
  border-radius: 8px;
  padding: 24px 16px;
  margin-bottom: 28px;
  font-size: 24px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.org-box.large {
  width: 210px;
  min-height: 125px;
}


.org-sub-row {
  display: flex;
  justify-content: center;
  gap: 35px;
}

.org-small {
  width: 210px;
}

/* 조직도 인터랙션 */
.org-ceo,
.org-head,
.org-box,
.org-small {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.org-ceo:hover,
.org-head:hover,
.org-box:hover,
.org-small:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.12);
}

/* 처음 등장 애니메이션 */
.org-ceo,
.org-column,
.business-group,
.org-box,
.org-small {
  animation: orgFadeUp 0.8s ease both;
}

.org-ceo {
  animation-delay: 0.1s;
}

.org-column:nth-child(1) {
  animation-delay: 0.25s;
}

.org-column:nth-child(2) {
  animation-delay: 0.4s;
}

.org-column:nth-child(3) {
  animation-delay: 0.55s;
}

@keyframes orgFadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   Organization Animation
========================= */

/* 조직도 박스 기본 상태 */
.org-ceo,
.org-head,
.org-box,
.org-small {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

/* 화면에 나타날 때 */
.org-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 박스 Hover 효과 */
.org-box:hover,
.org-small:hover,
.org-head:hover,
.org-ceo:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.org-box:hover,
.org-small:hover {
  border-color: #76B1BE;
}

/* SVG 선 */
.org-lines line {
  stroke: #d8d8d8;
  stroke-width: 2;
  stroke-linecap: round;

  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

/* 선 그려지는 효과 */
.org-lines.active line {
  animation: drawLine 2s ease forwards;
}

/* 순차적으로 선 그리기 */
.org-lines.active line:nth-child(1) {
  animation-delay: 0s;
}

.org-lines.active line:nth-child(2),
.org-lines.active line:nth-child(3),
.org-lines.active line:nth-child(4),
.org-lines.active line:nth-child(5) {
  animation-delay: 0.15s;
}

.org-lines.active line:nth-child(n+6) {
  animation-delay: 0.4s;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}


/* 모바일 */
@media (max-width: 900px) {
  .organization {
    padding: 90px 24px;
  }

  .organization h2 {
    font-size: 40px;
  }

  .organization p {
    font-size: 16px;
  }

  .org-chart {
    min-height: auto;
    margin-top: 60px;
  }

  .org-lines {
    display: none;
  }

  .org-ceo {
    width: 100%;
  }

  .org-branches {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .org-sub-row {
    flex-direction: column;
    align-items: center;
  }

  .org-box.large,
  .org-small {
    width: 100%;
  }
}

.org-chart {
  position: relative;
  max-width: 1400px;
  min-height: 820px;
  margin: 90px auto 0;
}

.org-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.org-lines line {
  stroke: #d8d8d8;
  stroke-width: 2;
  stroke-linecap: round;
}

.org-ceo,
.org-branches {
  position: relative;
  z-index: 2;
}


/* 모바일 */

@media (max-width: 1024px) {

  .about-inner {
    flex-direction: column-reverse;
    gap: 50px;
  }

  .about-text h2 {
    font-size: 38px;
  }

  .about-text p {
    font-size: 16px;
  }

  .about-image {
    flex: auto;
    width: 100%;
    max-width: 500px;
  }

   .vision {
    padding: 100px 30px;
  }

  .vision h2 {
    font-size: 36px;
  }

  .vision p {
    font-size: 16px;
    line-height: 1.8;
  }

}

/* 기본 */
.org-mobile-image {
  display: none;
}

/* 모바일 */
@media (max-width: 768px) {

  .org-chart {
    display: none;
  }

  .org-mobile-image {
    display: block;
    margin-top: 50px;
  }

  .org-mobile-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
  }

  .image-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  inset: 0;
  background: rgba(0,0,0,0.9);
  padding: 20px;
}

.modal-content {
  display: block;
  max-width: 95%;
  max-height: 90vh;
  margin: auto;
  position: absolute;
  inset: 0;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 25px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}

.org-mobile-image img {
  cursor: zoom-in;
}

}

/* =========================
  Location Page
========================= */

.location-section {
  padding: 100px 10vw;
  background: #fff;
}

.location-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.location-title-box {
  text-align: center;
  margin-bottom: 75px;
}

.location-title-box span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 5px;
  color: #b08a4a;
  margin-bottom: 16px;
}

.location-title-box h2 {
  font-size: 46px;
  font-weight: 700;
  color: #111;
  margin-bottom: 18px;
}

.location-title-box p {
  font-size: 18px;
  color: #666;
}

.location-block {
  display: grid;
  grid-template-columns: 1.55fr 0.85fr;
  gap: 42px;
  align-items: center;
  margin-bottom: 80px;
}

.location-block:last-child {
  margin-bottom: 0;
}

/* 지도 */
.location-map {
  width: 100%;
  height: 420px;
  border-radius: 26px;
  overflow: hidden;
  background: #eee;
  box-shadow: 0 24px 55px rgba(0,0,0,0.08);
}

.location-map .root_daum_roughmap {
  width: 100% !important;
  height: 100% !important;
}

.location-map .wrap_map {
  height: 420px !important;
}

/* 정보 박스 */
.location-info {
  position: relative;
  background: #f8f8f8;
  padding: 38px 36px;
  border-radius: 26px;
  border-top: 4px solid #c59d5f;
  box-shadow: 0 20px 45px rgba(0,0,0,0.06);
}

.location-info h3 {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin-bottom: 24px;
}

.info-item {
  padding: 18px 0;
  border-bottom: 1px solid #ddd;
}

.info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-item strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #b08a4a;
  margin-bottom: 8px;
}

.info-item p {
  font-size: 16px;
  color: #555;
  line-height: 1.65;
}

/* 모바일 */
@media (max-width: 768px) {
  .location-section {
    padding: 85px 24px;
  }

  .location-title-box {
    margin-bottom: 50px;
  }

  .location-title-box h2 {
    font-size: 32px;
  }

  .location-title-box p {
    font-size: 15px;
  }

  .location-block {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 65px;
  }

  .location-map {
    height: 320px;
    border-radius: 18px;
  }

  .location-map .wrap_map {
    height: 320px !important;
  }

  .location-info {
    padding: 30px 26px;
    border-radius: 18px;
  }

  .location-info h3 {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .info-item {
    padding: 15px 0;
  }

  .info-item p {
    font-size: 15px;
  }
}

/* =========================
   비즈니스 스트럭처
========================= */
html {
  scroll-behavior: smooth;
}

.business-section {
  min-height: 700px;
  padding: 120px 10vw;
  background: #fff;
  scroll-margin-top: 170px;
}

/* =========================
   Business Sub Link
========================= */

.sub-link-section {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
}

.sub-link-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.sub-link-card {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222;
  text-decoration: none;
  border-left: 1px solid #e5e5e5;
  transition: 0.3s ease;
}

.sub-link-card:last-child {
  border-right: 1px solid #e5e5e5;
}

.sub-link-card h3 {
  font-size: 18px;
  font-weight: 600;
}

.sub-link-card:hover,
.sub-link-card.active {
  background: #fff;
  color: #111;
}

.sub-link-card.active::after {
  width: 100%;
}

/* =========================
  BUILDING / HOUSING / PLANT / CONSTRUCTION
========================= */

.building-section {
  background: #fff;
  overflow: hidden;
  scroll-margin-top: 120px;
}

.apple-hero {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
  background: #000;
}

.apple-bg {
  position: absolute;
  inset: 0;
  background: url("../images/structural/building.jpg") no-repeat center center;
  background-size: cover;
  opacity: 0;
  transform: none;
  scale: 1;
  animation: appleBgIn 2.8s ease forwards;
  animation-delay: .6s;
}

.building-hero .apple-bg {
  background-image: url("../images/structural/building.jpg");
}

.housing-hero .apple-bg {
  background-image: url("../images/structural/housing.jpg");
}

.plant-hero .apple-bg {
  background-image: url("../images/structural/plant.jpg");
}

.construction-hero .apple-bg {
  background-image: url("../images/structural/CivilWorks.jpg")
}

.apple-dim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.25), rgba(0,0,0,.55)),
    linear-gradient(to right, rgba(0,0,0,.25), rgba(0,0,0,.05));
  opacity: 0;
  animation: dimIn 2s ease forwards;
  animation-delay: 1s;
}

.apple-content {
  position: relative;
    flex-direction: column; /* 추가 */
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.apple-content h1 {
  color: rgba(255,255,255,.62);
  font-size: clamp(60px, 10vw, 180px);
  font-weight: 800;
  letter-spacing: 8px;
  line-height: 1;
  opacity: 0;
  transform: translateY(50px) scale(.96);
  animation:
    titleIn 1.3s cubic-bezier(.22, 1, .36, 1) forwards,
    titleFloat 1.6s cubic-bezier(.22, 1, .36, 1) forwards;
  animation-delay: 0s, 1.5s;
}

.building-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 110px 10vw;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 120px;
  align-items: start;
  background: #fff;
}

.building-left {
  opacity: 0;
  transform: translateX(-70px);
  transition: opacity 1s ease, transform 1s ease;
}

.building-right {
  opacity: 0;
  transform: translateY(70px);
  transition: opacity 1s ease, transform 1s ease;
}

.building-left.show,
.building-right.show {
  opacity: 1;
  transform: translate(0, 0);
}

.building-left span {
  display: block;
  margin-bottom: 25px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 5px;
  color: #C59D5F;
}

.building-left h2 {
  font-size: clamp(32px, 3vw, 72px);
  line-height: 1.25;
  font-weight: 800;
  color: #111;
  letter-spacing: -2px;
}

.building-right p {
  margin-bottom: 32px;
  font-size: 18px;
  line-height: 2;
  color: #555;
  opacity: 0;
  transform: translateY(35px);
  transition: opacity .8s ease, transform .8s ease;
}

.building-right p:last-child {
  margin-bottom: 0;
}

.building-right.show p {
  opacity: 1;
  transform: translateY(0);
}

.building-right.show p:nth-child(1) {
  transition-delay: .15s;
}

.building-right.show p:nth-child(2) {
  transition-delay: .35s;
}

.building-right.show p:nth-child(3) {
  transition-delay: .55s;
}

.apple-bg,
.apple-dim,
.apple-content h1,
.apple-content span {
  animation: none;
}

.building-section.play .apple-bg {
  animation: appleBgIn 2.8s ease forwards;
  animation-delay: .6s;
}

.building-section.play .apple-dim {
  animation: dimIn 2s ease forwards;
  animation-delay: 1s;
}

.building-section.play .apple-content h1 {
  animation:
    titleIn 1.3s cubic-bezier(.22,1,.36,1) forwards,
    titleFloat 1.6s cubic-bezier(.22,1,.36,1) forwards;
  animation-delay: 0s, 1.5s;
}


@keyframes appleBgIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes dimIn {
  to {
    opacity: 1;
  }
}

@keyframes titleIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes titleFloat {
  to {
    transform: translateY(-35px) scale(.94);
  }
}

@media (max-width: 768px) {
  .apple-hero {
    height: 60vh;
    min-height: 420px;
  }

  .apple-content h1 {
    font-size: clamp(48px, 16vw, 100px);
    letter-spacing: 4px;
  }

  .building-content {
    padding: 90px 24px;
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .building-left h2 {
    font-size: 34px;
  }

  .building-right p {
    font-size: 16px;
    line-height: 1.85;
  }
}

/*=================
   Mobile
========================= */

@media (max-width: 768px) {
  .sub-link-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .sub-link-card {
    height: 64px;
  }

  .sub-link-card h3 {
    font-size: 16px;
  }

  .business-section {
    padding: 80px 24px;
  }

  .business-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .business-image img {
    height: 300px;
  }

  .business-text h2 {
    font-size: 34px;
  }

  .business-text p {
    font-size: 16px;
    line-height: 1.8;
  }
}

/* =========================
   CEO 인사말 인터랙션
========================= */

.ceo-animate .reveal-up {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.ceo-animate .reveal-line {
  width: 0;
  opacity: 0;
  transition: width 0.9s ease, opacity 0.9s ease;
}

.ceo-animate.show .reveal-up {
  opacity: 1;
  transform: translateY(0);
}

.ceo-animate.show .reveal-line {
  width: 80px;
  opacity: 1;
}

.ceo-animate.show .delay-1 { transition-delay: 0.1s; }
.ceo-animate.show .delay-2 { transition-delay: 0.2s; }
.ceo-animate.show .delay-3 { transition-delay: 0.3s; }
.ceo-animate.show .delay-4 { transition-delay: 0.4s; }
.ceo-animate.show .delay-5 { transition-delay: 0.5s; }
.ceo-animate.show .delay-6 { transition-delay: 0.6s; }
.ceo-animate.show .delay-7 { transition-delay: 0.7s; }
/*인사말 */

/*반은형 영역 */
@media (max-width: 768px) {
  .header {
    height: 70px;
    padding: 0 20px;
  }

  .nav {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .logo-image {
    width: 65px;
    height: 44px;
  }

  .logo-image img {
    height: 44px;
  }

  .logo-text {
    margin-left: -34px;
    transform: translateY(11px);
  }

  .logo-text .ko {
    font-size: 22px;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .hero-content p {
    font-size: 18px;
  }
 
   .footer {    
    padding: 60px 24px 28px;
  }

  .footer-inner {
    flex-direction: column;
     align-items: center;
    gap: 15px; 
    text-align: center;
  }

  .footer-brand,
  .footer-info,
  .footer-contact {
    width: 100%;
    min-width: 100%;
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:5px;
  }

  .footer-logo {
     display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
  }

.footer-logo img {
    width: 60px;
    margin-bottom: 4px;
  }

  .logo-divider {
     display: none;
  }

  .footer-name {
    font-size: 26px;
    letter-spacing: 3px;
  }
 
 .footer-title {
     display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

 .footer-info h4,
  .footer-contact h4 {
    margin-top: 10px;
  }

  .footer-sub {
    font-size: 9px;
    letter-spacing: 2.5px;
  }

  .footer-slogan {
    text-align: center;
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.8;
  }

  .footer h4 {
    margin-bottom: 12px;
  }

.footer p {
  line-height: 1.6;
}

  .info-item {
    margin-bottom: 14px;
  }

  .info-item p {
    font-size: 13px;
    line-height: 1.7;
  }

  .footer-copy {
    margin-top: 25px;
    font-size: 11px;
    line-height: 1.6;
  }
  
   .philosophy {
    padding: 90px 24px;
  }

  .philo-title h2 {
    font-size: 36px;
  }

  .philo-title p {
    font-size: 16px;
    line-height: 1.7;
  }

  .philo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

 .philo-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
  opacity: 0.9;
}

.philo-card {
  text-align: center;
}

.philo-card strong {
  display: block;
  margin-bottom: 12px;
}

.philo-card h3 {
  margin-bottom: 15px;
}

  .policy {
    padding: 90px 24px;
  }

  .policy h2 {
    font-size: 36px;
    margin-bottom: 45px;
  }

  .policy-grid {
    grid-template-columns: 1fr;
  }

  .policy-card {
    padding: 38px 28px;
  }

}

/* =========================
   CEO 모바일
========================= */

@media (max-width: 768px) {

  .about {
    padding: 80px 24px;
    min-height: auto;
  }

  .about-inner {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .about-image {
    width: 100%;
  }

  .about-image img {
    width: 100%;
    max-width: 320px;
    border-radius: 16px;
  }

  .about-subtitle {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .about-text h2 {
    font-size: 34px;
    line-height: 1.4;
    margin-bottom: 20px;
  }

  .about-line {
    margin: 0 auto 30px;
    width: 60px;
  }

  .about-text p {
    font-size: 16px;
    line-height: 1.9;
    text-align: left;
    word-break: keep-all;
  }

}

@media (min-width: 769px) {
  .menu-btn {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }
}
/*반은형 영역 */

.sub-link-section {
  position: relative;
  z-index: 5;
  background: #fff;
  padding: 0;
}

.sub-link-inner {
  max-width: 1180px;
  margin: -26px auto 0;
  display: flex;
  background: #fff;
  border: 1px solid #e1e1e1;
}

.sub-link-card {
  flex: 1;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;

  color: #777;
  background: #fff;
  border-right: 1px solid #e1e1e1;
}

.sub-link-card:last-child {
  border-right: none;
}

.sub-link-card h3 {
  font-size: 15px;
  font-weight: 500;
}

.sub-link-card.active {
  color: #b08a4a;
  background: #faf8f3;
}

.animate-target.show {
  animation: fadeUp 1s ease forwards;
}

/* =========================
   structural.html Mobile Fix
========================= */

@media (max-width: 768px) {

  body.sub-page {
    background: #fff;
  }

  .structural-hero {
    height: 360px;
    padding-top: 70px;
    background-position: center center;
  }

  .hero1-title {
    font-size: 42px;
    letter-spacing: 3px;
  }

  .hero1-desc {
    font-size: 15px;
    line-height: 1.7;
  }

  .hero1-breadcrumb {
    top: 90px;
    left: 24px;
    font-size: 12px;
  }

  .sub-link-section {
    position: sticky;
    top: 70px;
    z-index: 100;
    background: #fff;
  }

  .sub-link-inner {
    max-width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-left: 0;
    border-right: 0;
  }

  .sub-link-card {
    height: 56px;
    border-right: 1px solid #e5e5e5;
    color: #555;
    background: #fff;
  }

  .sub-link-card h3 {
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
  }

  .sub-link-card.active {
    background: #faf8f3;
  }

  .sub-link-card.active h3 {
    color: #c59d5f;
    font-weight: 700;
  }

 

  .sub-link-card.active::after {
    width: 100%;
  }

  .apple-hero {
    height: 52vh;
    min-height: 360px;
  }

  .apple-content h1 {
    font-size: 52px;
    letter-spacing: 3px;
  }

 .apple-content {
  flex-direction: column;
}

.apple-content span {
  display: block;
  margin-top: 22px;

  font-size: clamp(14px, 1.4vw, 22px);
  font-weight: 600;
  letter-spacing: 6px;
  color: rgba(255,255,255,.72);

  opacity: 0;
  transform: translateY(30px) scale(.96);
}

/* play 될 때 h1과 같은 느낌으로 실행 */
.building-section.play .apple-content span {
  animation:
    titleIn 1.3s cubic-bezier(.22,1,.36,1) forwards,
    subTitleFloat 1.6s cubic-bezier(.22,1,.36,1) forwards;

  animation-delay: .15s, 1.6s;
}

@keyframes subTitleFloat {
  to {
    transform: translateY(-28px) scale(.96);
  }
}

  .building-content {
    padding: 70px 24px;
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .building-left span {
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 16px;
  }

  .building-left h2 {
    font-size: 30px;
    line-height: 1.35;
    letter-spacing: -1px;
  }

  .building-right p {
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 22px;
    word-break: keep-all;
  }
}

/* =========================
   CPB HERO SLIDER
========================= */

.cpb-hero-section {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 650px;
  overflow: hidden;
  background: #000;
}

/* 슬라이드 전체 */
.cpb-hero-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* 개별 슬라이드 */
.cpb-hero-slide {
  position: absolute;
  inset: 0;

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  opacity: 0;
  transform: scale(1.12);

  animation: cpbHeroSlide 20s infinite;
}

/* 사진 5장 */
.cpb-hero-slide:nth-child(1) {
  background-image: url("../images/cpb/cpb1.jpg");
  animation-delay: 0s;
    background-position: center center;
  }

.cpb-hero-slide:nth-child(2) {
  background-image: url("../images/cpb/cpb2.jpg");
  animation-delay: 4s;
    background-position: 50% 45%;
}

.cpb-hero-slide:nth-child(3) {
  background-image: url("../images/cpb/cpb3.jpg");
  animation-delay: 8s;
    background-position: top 20% ;
}

.cpb-hero-slide:nth-child(4) {
  background-image: url("../images/cpb/cpb4.jpg");
  animation-delay: 12s;
    background-position: 65% center;
}

.cpb-hero-slide:nth-child(5) {
  background-image: url("../images/cpb/cpb5.jpg");
  animation-delay: 16s;
    background-position: center 40%;

}

/* 어두운 오버레이 */
.cpb-hero-dim {
  position: absolute;
  inset: 0;
  z-index: 2;

  background:
    linear-gradient(to bottom, rgba(0,0,0,.25), rgba(0,0,0,.62)),
    linear-gradient(to right, rgba(0,0,0,.35), rgba(0,0,0,.05));
}

/* 중앙 텍스트 */
.cpb-hero-content {
  position: relative;
  z-index: 3;
  height: 100%;

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

  text-align: center;
  color: #fff;
}

.cpb-hero-content span {
  margin-bottom: 22px;

  font-size: 14px;
  font-weight: 700;
  letter-spacing: 6px;
  color: #c59d5f;

  opacity: 0;
  animation: cpbTextUp 1.1s ease forwards;
}

.cpb-hero-content h1 {
  font-size: clamp(80px, 12vw, 190px);
  font-weight: 800;
  letter-spacing: 12px;
  line-height: 1;

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

  opacity: 0;
  animation: cpbTextUp 1.2s ease forwards;
  animation-delay: .15s;
}

.cpb-hero-content p {
  margin-top: 24px;

  font-size: clamp(15px, 1.5vw, 24px);
  font-weight: 600;
  letter-spacing: 7px;
  text-transform: uppercase;

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

  opacity: 0;
  animation: cpbTextUp 1.2s ease forwards;
  animation-delay: .3s;
}

/* 슬라이드 애니메이션 */
@keyframes cpbHeroSlide {
  0% {
    opacity: 0;
    transform: scale(1.12);
  }

  6% {
    opacity: 1;
    transform: scale(1.07);
  }

  20% {
    opacity: 1;
    transform: scale(1);
  }

  26% {
    opacity: 0;
    transform: scale(1.03);
  }

  100% {
    opacity: 0;
    transform: scale(1.03);
  }
}

/* 텍스트 애니메이션 */
@keyframes cpbTextUp {
  from {
    opacity: 0;
    transform: translateY(45px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 모바일 */
@media (max-width: 768px) {
  .cpb-hero-section {
    height: 72vh;
    min-height: 520px;
  }

  .cpb-hero-content span {
    font-size: 12px;
    letter-spacing: 4px;
  }

  .cpb-hero-content h1 {
    font-size: 64px;
    letter-spacing: 6px;
  }

  .cpb-hero-content p {
    font-size: 13px;
    letter-spacing: 4px;
    line-height: 1.6;
  }
}

@media (max-width: 768px) {

  .cpb-sub-link .sub-link-inner {
       display: grid;
    grid-template-columns: repeat(5, 1fr);
    max-width: 100%;
    margin: 0;
  }

  .cpb-sub-link .sub-link-inner::-webkit-scrollbar {
      height: 56px;
    min-width: 0;
    padding: 0;
  }
.cpb-sub-link .sub-link-card h3 {
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
  }

  .cpb-sub-link .sub-link-card h3 {
  font-size: 12.5px;
  letter-spacing: -0.3px;
}


}

/* =========================
   CPB SYSTEM
========================= */

.cpb-system-section {
  max-width: 100%;  
  padding: 100px 10vw;

  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 90px;
  align-items: center;

  background: #fff;
}

.cpb-system-inner {
  max-width: 1400px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 90px;
  align-items: center;
}

.cpb-system-text span {
  display: inline-block;

  margin-bottom: 24px;

  font-size: 14px;
  font-weight: 700;
  letter-spacing: 5px;

  color: #C59D5F;
}

.cpb-system-text h2 {
  font-size: clamp(36px, 3vw, 68px);
  line-height: 1.25;
  font-weight: 800;

  color: #111;
  letter-spacing: -2px;

  margin-bottom: 40px;
}

.cpb-system-text p {
  margin-bottom: 24px;

  font-size: 18px;
  line-height: 2;

  color: #555;
}

.cpb-system-text p:last-child {
  margin-bottom: 0;
}

/* 이미지 */

.cpb-system-image {
  position: relative;

  height: 600px;
  overflow: hidden;

  border-radius: 30px;

  box-shadow:
    0 30px 60px rgba(0,0,0,.08);
}

.cpb-system-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: 25% center;
  
  transition: transform 1.2s ease;
}

.cpb-system-image:hover img {
  transform: scale(1.05);
}

/* 모바일 */

@media (max-width: 768px) {

  .cpb-system-section {
    grid-template-columns: 1fr;
    gap: 45px;

    padding: 60px 24px;
  }

  .cpb-system-text {
    text-align: center;
  }

  .cpb-system-text span {
    margin-bottom: 18px;
    font-size: 12px;
    letter-spacing: 3px;
  }

  .cpb-system-text h2 {
    font-size: 32px;
    margin-bottom: 24px;
  }

  .cpb-system-text p {
    font-size: 15px;
    line-height: 1.9;
    text-align: left;
  }

  .cpb-system-image {
    height: 320px;
    border-radius: 20px;
  }

}

/* =========================
   EQUIPMENT
========================= */

.cpb-equipment-section {
  padding: 100px 10vw;
  background: #f7f5f0;
  color: #111;
}

.equipment-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.equipment-head .eyebrow {
  display: block;
  font-size: 14px;
  letter-spacing: 4px;
  color: #c6922e;
  font-weight: 700;
  margin-bottom: 14px;
}

.equipment-head h2 {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -2px;
}

.equipment-head p {
  font-size: 16px;
  color: #555;
}

.equipment-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 28px;
}

/* 큰 카드 */
.equipment-feature {
  position: relative;
  height: 620px;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
}

.equipment-feature img {
  width: 100%;
  height: 100%;
  object-fit: contain;
    transition: transform 0.6s ease;
}


.equipment-feature:hover img {
  transform: scale(1.03);
}

.equipment-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.05),
    rgba(0,0,0,0.25) 35%,
    rgba(0,0,0,0.9)
  );
}

.equipment-badges {
  position: absolute;
  top: 24px;
  left: 24px;
  display: flex;
  gap: 10px;
  z-index: 2;
}

.badge {
  padding: 9px 16px;
  border-radius: 999px;
  background: #f2a1005d;
  color: #000000;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.badge.on {
  background: #f2a000;
  color: #111;
}

.feature-text {
  position: absolute;
  left: 34px;
  bottom: 34px;
  z-index: 2;
  color: #fff;
  display: none;
}

.feature-text.active {
  display: block;
}

.feature-text span {
  color: #f2a000;
  font-size: 13px;
  letter-spacing: 5px;
  font-weight: 800;
}

.feature-text h3 {
  font-size: 58px;
  line-height: 1;
  margin: 16px 0 12px;
  font-weight: 900;
}

.feature-text p {
  font-size: 20px;
  margin-bottom: 26px;
}

.spec-boxes {
  display: flex;
  gap: 14px;
}

.spec-boxes div {
  width: 96px;
  padding: 15px 12px;
  border-radius: 6px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
}

.spec-boxes small {
  display: block;
  font-size: 12px;
  color: #ccc;
  margin-bottom: 6px;
}

.spec-boxes strong {
  font-size: 22px;
}

/* 오른쪽 카드 */
.equipment-card {
  background: #f0eee8;
  border-radius: 10px;
  overflow: hidden;
  min-height: 520px;
}

.card-img {
  position: relative;
  height: 155px;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
}

.card-img::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,0.08) 40%,
      rgba(0,0,0,0.65) 100%
    ),
    linear-gradient(
      90deg,
      rgba(197,157,95,0.08) 0%,
      rgba(197,157,95,0) 50%
    );

  pointer-events: none;
}


.card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  padding: 8px;
    transition: all 0.4s ease;
  filter: grayscale(20%);
}

.card-img:hover img {
  
   filter: grayscale(0%);
  transform: scale(1.05);
}

.card-img:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/*.card-img.junjincpb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top ;
}

.card-img.everdigmcpb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.card-img.putzmcpb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.card-img.schwingcpb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}*/

.status {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #e94747;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.card-info {
  padding: 26px 28px;
}

.card-info span {
  font-size: 13px;
  color: #999;
  letter-spacing: 1px;
}

.card-info h3 {
  font-size: 30px;
  margin-top: 12px;
  font-weight: 800;
}

.card-spec {
  margin-top: 240px;
  display: flex;
  gap: 10px;
}

.card-spec em {
  font-style: normal;
  padding: 8px 12px;
  border-radius: 6px;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
}

.feature-nav {
  position: absolute;
  right: 34px;
  bottom: 34px;
  z-index: 5;

  display: flex;
  align-items: center;
  gap: 14px;
}

.prev-btn,
.next-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.prev-btn:hover,
.next-btn:hover {
  background: #f2a000;
  color: #111;
}

.feature-count {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}




/* 모바일 */
@media (max-width: 768px) {
  .equipment-showcase {
    padding: 80px 20px;
  }

  .equipment-head {
    display: block;
  }

  .equipment-head h2 {
    font-size: 36px;
  }

  .equipment-head p {
    margin-top: 16px;
    font-size: 14px;
  }

  .equipment-layout {
    grid-template-columns: 1fr;
  }

  .equipment-feature {
    height: 460px;
  }

  .feature-text h3 {
    font-size: 42px;
  }

  .feature-text p {
    font-size: 16px;
  }

  .spec-boxes div {
    width: 86px;
  }

  .equipment-card {
    min-height: auto;
  }

  .card-spec {
    margin-top: 120px;
  }
}

  @media (max-width: 768px) {

  .cpb-equipment-section {
    padding: 60px 20px;
  }

  .equipment-feature {
    height: auto;
    min-height: 620px;
    border-radius: 14px;
  }

  .equipment-feature img {
    height: 300px;
    object-fit: contain;
    object-position: center top;
    padding: 20px 10px 0;
  }

  .feature-text {
    left: 24px;
    right: 24px;
    bottom: 110px;
  }

  .feature-text span {
    font-size: 11px;
    letter-spacing: 4px;
  }

  .feature-text h3 {
    font-size: 48px;
    margin: 18px 0 22px;
  }

  .spec-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .spec-boxes div {
    width: auto;
    padding: 14px 12px;
  }

  .spec-boxes small {
    font-size: 12px;
  }

  .spec-boxes strong {
    font-size: 28px;
  }

  .feature-nav {
    right: 24px;
    bottom: 28px;
    z-index: 10;
  }

  .prev-btn,
  .next-btn {
    width: 48px;
    height: 48px;
  }

  .feature-count {
    color: #fff;
  }

}

/* =========================
   CPB 설·해체
========================= */

.cpb-process-section {
  padding: 100px 10vw;
  background: #fff;
  color: #111;
}

#cpb-lifting{
    background:#f0eee8;
}

.process-title {
  text-align: center;
  margin-bottom: 60px;
}

.process-title span {
  display: block;
  font-size: 14px;
  letter-spacing: 4px;
  font-weight: 700;
  color: #c59d5f;
  margin-bottom: 18px;
}

.process-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.process-header h2 {
  font-size: 48px;
  font-weight: 800;
}

.process-tab {
  display: flex;
  gap: 10px;
}

.process-tab button {
  width: 90px;
  height: 42px;
  border: 1px solid #c59d5f;
  background: #fff;
  color: #8a6a32;
  border-radius: 50px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  transition: 0.3s ease;
}

.process-tab button.active,
.process-tab button:hover {
  background: #c59d5f;
  color: #fff;
  border-color: #c59d5f;
  box-shadow: 0 10px 24px rgba(197,157,95,0.25);
}

/* 사진 그리드 */
.process-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-photo {
  position: relative;
  height: 320px;
  overflow: hidden;
  cursor: pointer;
  background: #111;
  border-radius: 4px;
}

.process-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.process-photo:hover img {
  transform: scale(1.08);
}


.process-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.02),
    rgba(0,0,0,0.78)
  );
}

.process-photo span {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  color:  #c59d5f;
  font-size: 22px;
  font-weight: 800;
}

.process-photo div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  color: #fff;
}

.process-photo h4 {
  font-size: 22px;
  margin-bottom: 8px;
}

.process-photo p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
}

/* 확대 모달 */
.photo-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);

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

  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 99999;
}

.photo-modal.active {
  opacity: 1;
  visibility: visible;
}

.photo-modal-content {
  width: 90%;
  max-width: 1000px;
  position: relative;
  text-align: center;
}

.photo-modal-content img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
}

.photo-modal-close {
   position: absolute;
  top: -55px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 42px;
  cursor: pointer;
}

.photo-modal-text {
  margin-top: 18px;
  color: #fff;
}

.photo-modal-text h4 {
  font-size: 24px;
  margin-bottom: 8px;
   color: #fff;
}

.photo-modal-text p {
  font-size: 16px;
    color: rgba(255,255,255,0.7);
}


/* 모바일 */
@media (max-width: 768px) {
  .cpb-process-section {
    padding: 60px 24px;
  }

   .process-header h2 {
    font-size: 34px;
  }

  .process-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .process-photo {
    height: 230px;
  }

  .process-photo h4 {
    font-size: 17px;
  }

  .process-photo p {
    font-size: 13px;
  }
}

/* 이전 / 다음 버튼 */
.photo-prev,
.photo-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-size: 34px;
  cursor: pointer;
  z-index: 3;
  transition: 0.3s ease;
}

.photo-prev:hover,
.photo-next:hover {
  background: #c59d5f;
  border-color: #c59d5f;
}

.photo-prev {
  left: -70px;
}

.photo-next {
  right: -70px;
}

@media (max-width: 768px) {
  .photo-prev {
    left: 10px;
  }

  .photo-next {
    right: 10px;
  }

  .photo-prev,
  .photo-next {
    width: 42px;
    height: 42px;
    font-size: 26px;
  }
}

/* ==================================================
   CPB 타설 갤러리
   10장 Editorial Bento Grid
================================================== */

/* 갤러리 전체 */
.pouring-gallery {
  width: calc(100% - 80px);
  max-width: 1600px;
  margin: 38px auto 0;

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(4, 255px);
  gap: 7px;

  overflow: hidden;
}

/* 개별 갤러리 아이템 */
.pouring-gallery > * {
  position: relative;

  width: 100%;
  height: 100%;
  min-width: 0;

  padding: 0;
  margin: 0;

  overflow: hidden;
  background: #e9e9e9;

  border: 0;
  border-radius: 0;
  box-shadow: none;

  cursor: pointer;
  appearance: none;
}

/* ==================================================
   10장 배치
================================================== */

/*
┌──────────────────┬─────────┬─────────┐
│                  │    2    │         │
│        1         ├─────────┤    4    │
│       2×2        │    3    │   1×2   │
├─────────┬────────┼─────────┴─────────┤
│    5    │    6   │         7         │
├─────────┴────────┼─────────┬─────────┤
│        8         │    9    │   10    │
└──────────────────┴─────────┴─────────┘
*/

/* 1번: 메인 대형 */
.pouring-gallery > :nth-child(1) {
  grid-column: 1 / span 2;
  grid-row: 1 / span 2;
}

/* 2번 */
.pouring-gallery > :nth-child(2) {
  grid-column: 3;
  grid-row: 1;
}

/* 3번 */
.pouring-gallery > :nth-child(3) {
  grid-column: 3;
  grid-row: 2;
}

/* 4번: 세로형 */
.pouring-gallery > :nth-child(4) {
  grid-column: 4;
  grid-row: 1 / span 2;
}

/* 5번 */
.pouring-gallery > :nth-child(5) {
  grid-column: 1;
  grid-row: 3;
}

/* 6번 */
.pouring-gallery > :nth-child(6) {
  grid-column: 2;
  grid-row: 3;
}

/* 7번: 오른쪽 가로형 */
.pouring-gallery > :nth-child(7) {
  grid-column: 3 / span 2;
  grid-row: 3;
}

/* 8번: 왼쪽 가로형 */
.pouring-gallery > :nth-child(8) {
  grid-column: 1 / span 2;
  grid-row: 4;
}

/* 9번 */
.pouring-gallery > :nth-child(9) {
  grid-column: 3;
  grid-row: 4;
}

/* 10번 */
.pouring-gallery > :nth-child(10) {
  grid-column: 4;
  grid-row: 4;
}

/* ==================================================
   이미지
================================================== */

.pouring-gallery > * img {
  position: absolute;
  inset: 0;

  display: block;
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  border: 0;
  border-radius: 0;

  transition:
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.5s ease;
}

/* 밝은 오버레이 */
.pouring-gallery > *::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;

  pointer-events: none;

  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.10) 0%,
      rgba(255, 255, 255, 0.02) 55%,
      rgba(0, 0, 0, 0.10) 100%
    );

  transition: opacity 0.45s ease;
}

/* 안쪽 라인 효과 */
.pouring-gallery > *::before {
  content: "";
  position: absolute;
  inset: 11px;
  z-index: 3;

  pointer-events: none;

  border: 1px solid rgba(255, 255, 255, 0.4);

  opacity: 0;
  transform: scale(0.98);

  transition:
    opacity 0.4s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

/* 호버 */
.pouring-gallery > *:hover img {
  transform: scale(1.045);
  filter: brightness(1.06) contrast(1.02);
}

.pouring-gallery > *:hover::after {
  opacity: 0.35;
}

.pouring-gallery > *:hover::before {
  opacity: 1;
  transform: scale(1);
}

/* ==================================================
   기존 번호·제목·설명 제거
================================================== */

.pouring-gallery .number,
.pouring-gallery .num,
.pouring-gallery .gallery-number,
.pouring-gallery .pouring-number,
.pouring-gallery .caption,
.pouring-gallery .gallery-caption,
.pouring-gallery .pouring-caption,
.pouring-gallery .content,
.pouring-gallery .info,
.pouring-gallery h3,
.pouring-gallery h4,
.pouring-gallery p,
.pouring-gallery span {
  display: none !important;
}

/* 기존 카드 스타일 초기화 */
.pouring-gallery .pouring-item,
.pouring-gallery .gallery-item,
.pouring-gallery .process-photo,
.pouring-gallery article,
.pouring-gallery figure,
.pouring-gallery button {
  background: #e9e9e9 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* 키보드 접근성 */
.pouring-gallery > *:focus-visible {
  outline: 3px solid #c59d5f;
  outline-offset: -3px;
}

/* ==================================================
   태블릿
================================================== */

@media (max-width: 1100px) {
  .pouring-gallery {
    width: calc(100% - 50px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(5, 215px);
    gap: 6px;
    margin-top: 34px;
  }

  .pouring-gallery > :nth-child(1) {
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
  }

  .pouring-gallery > :nth-child(2) {
    grid-column: 3;
    grid-row: 1;
  }

  .pouring-gallery > :nth-child(3) {
    grid-column: 3;
    grid-row: 2;
  }

  .pouring-gallery > :nth-child(4) {
    grid-column: 1;
    grid-row: 3 / span 2;
  }

  .pouring-gallery > :nth-child(5) {
    grid-column: 2;
    grid-row: 3;
  }

  .pouring-gallery > :nth-child(6) {
    grid-column: 3;
    grid-row: 3;
  }

  .pouring-gallery > :nth-child(7) {
    grid-column: 2 / span 2;
    grid-row: 4;
  }

  .pouring-gallery > :nth-child(8) {
    grid-column: 1;
    grid-row: 5;
  }

  .pouring-gallery > :nth-child(9) {
    grid-column: 2;
    grid-row: 5;
  }

  .pouring-gallery > :nth-child(10) {
    grid-column: 3;
    grid-row: 5;
  }
}

/* ==================================================
   모바일
================================================== */

@media (max-width: 767px) {
  .pouring-gallery {
    width: calc(100% - 28px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows:
      170px
      170px
      165px
      165px
      180px
      165px;
    gap: 4px;
    margin-top: 28px;
  }

  /* 메인 이미지 */
  .pouring-gallery > :nth-child(1) {
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
  }

  .pouring-gallery > :nth-child(2) {
    grid-column: 1;
    grid-row: 3;
  }

  .pouring-gallery > :nth-child(3) {
    grid-column: 2;
    grid-row: 3;
  }

  .pouring-gallery > :nth-child(4) {
    grid-column: 1;
    grid-row: 4;
  }

  .pouring-gallery > :nth-child(5) {
    grid-column: 2;
    grid-row: 4;
  }

  /* 모바일 중간 와이드 */
  .pouring-gallery > :nth-child(6) {
    grid-column: 1 / span 2;
    grid-row: 5;
  }

  .pouring-gallery > :nth-child(7) {
    grid-column: 1;
    grid-row: 6;
  }

  .pouring-gallery > :nth-child(8) {
    grid-column: 2;
    grid-row: 6;
  }

  .pouring-gallery > :nth-child(9) {
    grid-column: 1;
    grid-row: 7;
  }

  .pouring-gallery > :nth-child(10) {
    grid-column: 2;
    grid-row: 7;
  }

  .pouring-gallery {
    grid-template-rows:
      170px
      170px
      165px
      165px
      180px
      165px
      165px;
  }

  .pouring-gallery > *::before {
    display: none;
  }

  .pouring-gallery > *:hover img {
    transform: none;
    filter: none;
  }
}

/* 작은 모바일 */
@media (max-width: 420px) {
  .pouring-gallery {
    width: calc(100% - 20px);
    grid-template-rows:
      145px
      145px
      145px
      145px
      160px
      145px
      145px;
    gap: 3px;
  }
}

/* 움직임 최소화 설정 */
@media (prefers-reduced-motion: reduce) {
  .pouring-gallery > * img,
  .pouring-gallery > *::before,
  .pouring-gallery > *::after {
    transition: none;
  }
}

#cpb-pouring{
    background:#f5f5f5;
}

.pouring-gallery{

    background:#fff;

    padding:30px;

    box-shadow:0 20px 60px rgba(0,0,0,.05);
}

.gallery-item{
    height:300px;
}

/* ========================================
   PUMP CAR PAGE
======================================== */

/* CPB 히어로 구조를 재사용한 펌프카 히어로 */
.pumpcar-hero-section
.pumpcar-hero-slide:nth-child(1) {
  background-image:
    url("/images/pumpcar/car1.PNG");
}

.pumpcar-hero-section
.pumpcar-hero-slide:nth-child(2) {
  background-image:
    url("/images/pumpcar/car2.PNG");
}

.pumpcar-hero-section
.pumpcar-hero-slide:nth-child(3) {
  background-image:
    url("/images/pumpcar/car3.PNG");
}

.pumpcar-hero-section
.pumpcar-hero-slide:nth-child(4) {
  background-image:
    url("/images/pumpcar/car4.PNG");
}

.pumpcar-hero-section
.pumpcar-hero-slide:nth-child(5) {
  background-image:
    url("/images/pumpcar/car5.PNG");
     background-position: center 80%;
}


/* 펌프카 히어로 이미지 초점 */
.pumpcar-hero-slide {
  background-position: center 60%;
  background-repeat: no-repeat;
  background-size: cover;
}

.pumpcar-system-image{
   width: 100%;
   height: 100%;
     object-fit: cover;
    object-position: left center;
}

/* 영문 라벨 */
.pumpcar-hero-label {
  display: block;
  margin-bottom: 20px;

  color: rgba(255, 255, 255, 0.78);

  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.28em;
}


/* 히어로 설명 */
.pumpcar-hero-content p {
  margin-top: 20px;

  color: rgba(255, 255, 255, 0.82);

  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;
}


/* =====================================
   펌프카 보유 장비
===================================== */


/* 전체 레이아웃 */
.pumpcar-equipment-section .equipment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(320px, 0.9fr);
  gap: 10px;

  width: 100%;
  max-width: 1400px;
  height: 680px;
  margin: 0 auto;
}


/* =====================================
   왼쪽 대표 장비
===================================== */

.pumpcar-equipment-feature {
  position: relative;

  width: 100%;
  height: 100%;
  min-width: 0;
  overflow: hidden;
}


/* 대표 이미지 공통 */
#main-pumpcar-img {
  display: block;

  width: 100%;
  height: 100%;

  object-position: center;
  box-sizing: border-box;

  transition:
    opacity 0.35s ease,
    transform 0.5s ease;
}


/* JUNJIN 실제 사진 */
#main-pumpcar-img.fit-cover {
  object-fit: cover;
  padding: 0;

  background: transparent;
}


/* EVERDIGM, KCP 제품 이미지 */
#main-pumpcar-img.fit-contain {
  object-fit: contain;
  padding: 35px 45px;

  background: #f4f4f1;
}


/* 이미지 전환 효과 */
#main-pumpcar-img.is-changing {
  opacity: 0;
  transform: scale(1.01);
}


/* =====================================
   오른쪽 장비 카드
===================================== */

.pumpcar-equipment-card {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 10px;

  width: 100%;
  height: 100%;
  min-width: 0;
}


/* button 기본 스타일 제거 */
.pumpcar-card-img {
  position: relative;
  display: block;

  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0;
  overflow: hidden;

  appearance: none;
  border: 0;
  background: #f4f4f1;

  cursor: pointer;
  text-align: left;
}


/* 오른쪽 카드 이미지 */
.pumpcar-card-img > img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center;

  padding: 14px 20px;
  box-sizing: border-box;

  transition: transform 0.45s ease;
}


/* 카드 hover */
.pumpcar-card-img:hover > img {
  transform: scale(1.03);
}


/* =====================================
   작업 이미지
===================================== */

.pumpcar-work-section {
  padding: 130px 6vw;
  background: #fff;
}

.pumpcar-work-image {
  width: 100%;
  max-width: 1400px;
  height: 650px;
  margin: 55px auto 0;
  overflow: hidden;
}

.pumpcar-work-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}


/* 포터블 섹션 배경 */
.pumpcar-portable-section {
  background: #f4f4f1;
}


/* =====================================
   모바일
===================================== */

@media (max-width: 768px) {

  /* 히어로 */
  .pumpcar-hero-slide {
    background-position: 60% center;
  }

  .pumpcar-hero-label {
    margin-bottom: 14px;

    font-size: 10px;
    letter-spacing: 0.2em;
  }

  .pumpcar-hero-content p {
    margin-top: 14px;
    font-size: 13px;
  }


  /* 보유 장비 세로 배치 */
  .pumpcar-equipment-section .equipment-layout {
    display: flex;
    flex-direction: column;
    gap: 10px;

    height: auto;
  }


  /* 대표 장비 */
  .pumpcar-equipment-feature {
    height: 560px;
  }


  /* 제품 이미지 여백 축소 */
  #main-pumpcar-img.fit-contain {
    padding: 24px 20px;
  }


  /* 오른쪽 카드 2개 가로 배치 */
  .pumpcar-equipment-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 200px;
    gap: 10px;

    height: 200px;
  }

  .pumpcar-card-img {
    height: 200px;
  }

  .pumpcar-card-img > img {
    padding: 10px;
  }


  /* 작업 이미지 */
  .pumpcar-work-section {
    padding: 80px 20px;
  }

  .pumpcar-work-image {
    height: 420px;
    margin-top: 35px;
  }

}

/*=====================================
  이전 다음 버튼
=====================================*/

.feature-nav{

    position:absolute;

    right:28px;
    bottom:26px;

    display:flex;
    align-items:center;
    gap:18px;

    z-index:20;

}


.feature-nav button{

    width:42px;
    height:42px;

    border:1px solid rgba(255,255,255,.2);
    border-radius:50%;

    background:rgba(255,255,255,.08);
    backdrop-filter:blur(8px);

    color:#fff;
    font-size:18px;

    cursor:pointer;

    transition:.3s;

}


.feature-nav button:hover{

    background:#c59d5f;
    border-color:#c59d5f;

    transform:translateY(-2px);

}


.feature-count{

    color:#fff;
    font-size:15px;
    font-weight:600;

    letter-spacing:.08em;

}

#main-pumpcar-img{

    transition:
        opacity .35s,
        transform .6s;

}

#main-pumpcar-img.is-changing{

    opacity:0;
    transform:scale(1.04);

}

@media (max-width:768px){

  .pumpcar-sub-link .sub-link-inner{
      display:flex;
      width:100%;
  }

  .pumpcar-sub-link .sub-link-card{
      flex:1;
      min-width:0;
      height:56px;
  }

  .pumpcar-sub-link .sub-link-card h3{
      font-size:12px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
  }

}

/* =========================================================
   MOLLY / PORTABLE 장비 카드 및 상세스펙 모달
   중복 선택자 제거 및 공통 스타일 통합본
========================================================= */

.molly-section{
  position: relative;
  padding: 100px 10vw;
  overflow: hidden;
  background: #f4f5f7;
  color: #111;
}

.portable-section {
  position: relative;
  padding: 100px 10vw;
  overflow: hidden;
  background: #f0eee8; 
  color: #111;
}

.molly-heading,
.portable-heading {
  max-width: 1200px;
  margin: 0 auto 30px;
  text-align: center;
}

.molly-heading > span,
.portable-heading > span {
  display: block;
  margin-bottom: 16px;
  color: #c59d5f;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 5px;
}

.molly-heading h2,
.portable-heading h2 {
  margin-bottom: 20px;
  color: #111;
  font-size: clamp(38px, 4vw, 60px);
  font-weight: 800;
}

.molly-heading p,
.portable-heading p {
  color: #777;
  font-size: 17px;
  line-height: 1.8;
}

.molly-slider,
.portable-slider {
  width: 100%;
  max-width: 1720px;
  margin: 0 auto;
}

.molly-track,
.portable-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  align-items: center;
  min-height: 560px;
}

.molly-card,
.portable-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid transparent;
  border-radius: 9px;
  opacity: 0.96;
  transform: translateY(34px);
  transition:
    transform 0.65s cubic-bezier(.22, 1, .36, 1),
    opacity 0.45s ease,
    border-color 0.45s ease,
    box-shadow 0.45s ease;
}

.molly-card.active,
.portable-card.active {
  z-index: 2;
  border-color: rgba(118, 142, 220, 0.38);
  opacity: 1;
  transform: translateY(-28px);
  box-shadow: 0 28px 60px rgba(20, 32, 65, 0.11);
}

.molly-card-image,
.portable-card-image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: #fff;
}

.molly-card-image img,
.portable-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 18px;
}

.molly-label,
.portable-label {
  position: absolute;
  top: 22px;
  left: 22px;
  padding: 10px 19px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  color: #555;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
}

.molly-card-content,
.portable-card-content {
  position: relative;
  min-height: 210px;
  padding: 28px 30px;
}

.molly-number,
.portable-number {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #c59d5f;
  font-size: 13px;
  font-weight: 700;
}

.molly-card h3,
.portable-card h3 {
  max-width: calc(100% - 55px);
  color: #111;
  font-size: clamp(27px, 2.1vw, 36px);
  font-weight: 800;
}

.molly-card-bottom,
.portable-card-bottom {
  position: absolute;
  right: 30px;
  bottom: 28px;
  left: 30px;
}

.molly-line,
.portable-line {
  display: block;
  width: 135px;
  height: 3px;
  background: #76b1be;
}

.molly-button,
.portable-button {
  display: none;
  width: 100%;
  height: 56px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  appearance: none;
  border: 0;
  border-radius: 7px;
  background: #70605b;
  color: #fff;
  font-family: "Pretendard", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 5px;
  cursor: pointer;
}

.molly-card.active .molly-line,
.portable-card.active .portable-line {
  display: none;
}

.molly-card.active .molly-button,
.portable-card.active .portable-button {
  display: flex;
}

.molly-pagination,
.portable-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
}

.molly-pagination button,
.portable-pagination button {
  width: 30px;
  height: 4px;
  padding: 0;
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: #d4d4d4;
  cursor: pointer;
}

.molly-pagination button.active,
.portable-pagination button.active {
  width: 62px;
  background: #70605b;
}

@media (max-width: 768px) {

  .molly-section,
  .portable-section {
    padding: 60px 20px;
  }

  .molly-track,
  .portable-track {
    display: flex;
    align-items: stretch;
    gap: 16px;
    min-height: 0;
    transition: transform 0.55s cubic-bezier(.22, 1, .36, 1);
  }

  .molly-card,
  .portable-card {
    flex: 0 0 88%;
    opacity: 1;
    transform: none;
  }

  .molly-card.active,
  .portable-card.active {
    transform: none;
  }

  .molly-card-image,
  .portable-card-image {
    height: 220px;
  }

  .molly-card-content,
  .portable-card-content {
    min-height: 170px;
    padding: 22px;
  }

  .molly-card-bottom,
  .portable-card-bottom {
    position: static;
    margin-top: 20px;
  }
}

/* =====================================
   MOLLY SPEC MODAL
===================================== */

body.molly-modal-open {
  overflow: hidden;
}

.molly-spec-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;

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

  padding: 30px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.molly-spec-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.molly-spec-backdrop {
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.88);

  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.molly-spec-dialog {
  position: relative;
  z-index: 2;

  width: min(1450px, 96vw);
  max-height: 92vh;
  overflow-y: auto;

  padding: 45px 45px 35px;

  background: #f4f5f7;
  border-radius: 16px;

  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.45);

  opacity: 0;
  transform: translateY(25px) scale(0.97);

  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.molly-spec-modal.active .molly-spec-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}


/* X 닫기 버튼 */
.molly-spec-close {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 10;

  width: 46px;
  height: 46px;

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

  padding: 0;

  appearance: none;
  border: 0;
  border-radius: 50%;

  background: #111;
  color: #fff;

  font-family: Arial, sans-serif;
  font-size: 31px;
  font-weight: 300;
  line-height: 1;

  cursor: pointer;
}

.molly-spec-close:hover {
  background: #c59d5f;
}


/* 모달 제목 */
.molly-spec-header {
  margin-bottom: 28px;
  padding-right: 60px;
}

.molly-spec-header span {
  display: block;
  margin-bottom: 8px;

  color: #c59d5f;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
}

.molly-spec-header h2 {
  color: #111;

  font-size: clamp(32px, 3vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
}


/* 사진 2개 나란히 */
.molly-spec-images {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}

.molly-spec-item {
  min-width: 0;
  margin: 0;
}

.molly-spec-image-box {
  width: 100%;
  height: 630px;

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

  overflow: hidden;

  background: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 12px;
}

.molly-spec-image-box img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center;
}

.molly-main-image-box img {
  padding: 30px;
}

.molly-data-image-box img {
  padding: 8px;
}

.molly-spec-item figcaption {
  margin-top: 10px;

  color: #666;

  font-size: 13px;
  font-weight: 600;
  text-align: center;
}


/* 모바일 */
@media (max-width: 768px) {

  .molly-spec-modal {
    align-items: flex-start;
    padding: 10px;
  }

  .molly-spec-dialog {
    width: 100%;
    max-height: calc(100vh - 20px);

    padding: 58px 14px 24px;
    border-radius: 12px;
  }

  .molly-spec-close {
    top: 12px;
    right: 12px;

    width: 40px;
    height: 40px;

    font-size: 28px;
  }

  .molly-spec-header {
    margin-bottom: 20px;
  }

  .molly-spec-header h2 {
    font-size: 30px;
  }

  .molly-spec-images {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .molly-spec-image-box {
    height: auto;
    min-height: 230px;
  }

  .molly-spec-image-box img {
    width: 100%;
    height: auto;
    max-height: 75vh;
  }

  .molly-main-image-box img {
    padding: 15px;
  }

  .molly-data-image-box img {
    padding: 5px;
  }
}

/* =====================================
   PORTABLE SPEC MODAL
===================================== */

body.equipment-modal-open {
  overflow: hidden;
}

.portable-spec-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;

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

  padding: 24px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

/* 모달 열림 */
.portable-spec-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* 검은 배경 */
.portable-spec-backdrop {
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.88);

  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

/* 모달 본체 */
.portable-spec-dialog {
  position: relative;
  z-index: 2;

  width: min(1250px, 94vw);
  max-height: 90vh;
  overflow-y: auto;

  padding: 34px;

  background: #f4f5f7;
  border-radius: 16px;

  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.45);

  opacity: 0;
  transform: translateY(25px) scale(0.97);

  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.portable-spec-modal.active .portable-spec-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* 닫기 버튼 */
.portable-spec-close {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 10;

  width: 46px;
  height: 46px;

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

  padding: 0;

  appearance: none;
  -webkit-appearance: none;

  border: 0;
  border-radius: 50%;

  background: #111;
  color: #fff;

  font-family: Arial, sans-serif;
  font-size: 31px;
  line-height: 1;

  cursor: pointer;
}

.portable-spec-close:hover {
  background: #c59d5f;
}

/* 제목 */
.portable-spec-header {
  margin-bottom: 22px;
  padding-right: 60px;
}

.portable-spec-header span {
  display: block;
  margin-bottom: 8px;

  color: #c59d5f;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
}

.portable-spec-header h2 {
  color: #111;

  font-size: clamp(32px, 3vw, 42px);
  font-weight: 800;
  letter-spacing: -1.5px;
}

/* 메인사진 + 스펙사진 */
.portable-spec-images {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 20px;
  align-items: stretch;
}

.portable-spec-item {
  min-width: 0;
  margin: 0;
}

.portable-spec-image-box {
  width: 100%;
  height: 560px;

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

  overflow: hidden;

  background: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 12px;
}

.portable-spec-image-box img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center;
}

.portable-main-image-box img {
  padding: 15px;
}

.portable-data-image-box img {
  padding: 0;
}

.portable-spec-item figcaption {
  margin-top: 10px;

  color: #666;

  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

@media (max-width: 768px) {

  .portable-spec-modal {
    align-items: flex-start;
    padding: 10px;
  }

  .portable-spec-dialog {
    width: 100%;
    max-height: calc(100vh - 20px);

    padding: 58px 14px 24px;
    border-radius: 12px;
  }

  .portable-spec-close {
    top: 12px;
    right: 12px;

    width: 40px;
    height: 40px;

    font-size: 28px;
  }

  .portable-spec-header {
    margin-bottom: 20px;
  }

  .portable-spec-header h2 {
    font-size: 30px;
  }

  .portable-spec-images {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .portable-spec-image-box {
    height: auto;
    min-height: 230px;
  }

  .portable-spec-image-box img {
    width: 100%;
    height: auto;
    max-height: 75vh;
  }

}

/* ========================================
   PUMP CAR PAGE
======================================== */

/* CPB 히어로 구조를 재사용한 펌프카 히어로 */
.placement-hero-section
.placement-hero-slide:nth-child(1) {
  background-image:
    url("/images/placement/placehero1.jpg");
}

.placement-hero-section
.placement-hero-slide:nth-child(2) {
  background-image:
    url("/images/placement/placehero2.jpg");
}

.placement-hero-section
.placement-hero-slide:nth-child(3) {
  background-image:
    url("/images/placement/placehero3.jpg");
}

.placement-hero-section
.placement-hero-slide:nth-child(4) {
  background-image:
    url("/images/placement/placehero4.jpg");
}

.placement-hero-section
.placement-hero-slide:nth-child(5) {
  background-image:
    url("/images/placement/placehero5.jpg");
     background-position: center 80%;
}


/* 펌프카 히어로 이미지 초점 */
.placement-hero-slide {
  background-position: center 60%;
  background-repeat: no-repeat;
  background-size: cover;
}

.placement-system-image{
   width: 100%;
   height: 100%;
     object-fit: cover;
    object-position: left center;
}

/* 영문 라벨 */
.placement-hero-label {
  display: block;
  margin-bottom: 20px;

  color: rgba(255, 255, 255, 0.78);

  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.28em;
}


/* 히어로 설명 */
.placement-hero-content p {
  margin-top: 20px;

  color: rgba(255, 255, 255, 0.82);

  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

/* =====================================
   콘크리트 타설 액자형 갤러리
===================================== */

.placement-gallery-section {
  position: relative;
  padding: 100px 10vw;
  overflow: hidden;
  background: #f5f3ef;
}


/* =====================================
   전체 갤러리
===================================== */

.placement-frame-gallery {
      width: min(1280px, calc(100% - 60px));
    margin: 55px auto 0;
}


/* =====================================
   메인 액자
===================================== */

.placement-main-frame {
  position: relative;
  padding: 9px;

  background: #ffffff;
  border: 1px solid rgba(112, 96, 91, 0.16);

  box-shadow:
    0 20px 55px rgba(38, 33, 29, 0.09),
    0 3px 12px rgba(38, 33, 29, 0.04);
}


/* 액자 안쪽 골드 라인 */
.placement-main-frame::before {
  content: "";

  position: absolute;
  inset: 5px;

  border: 1px solid rgba(197, 157, 95, 0.28);

  pointer-events: none;
  z-index: 4;
}


/* =====================================
   메인 이미지 영역
===================================== */

.placement-frame-button {
  position: relative;

  display: block;

  width: 100%;
     height: clamp(540px, 50vw, 680px);

  padding: 0;
  overflow: hidden;

  appearance: none;
  border: 0;
  background: #d9d6d0;

  cursor: zoom-in;
}


/* 메인 이미지 */
.placement-frame-button img {
     width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        opacity .35s ease,
        transform .7s cubic-bezier(.22,1,.36,1);
}


/* 하단 가독성 오버레이 */
.placement-frame-button::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 48%,
      rgba(0, 0, 0, 0.24) 100%
    );

  pointer-events: none;
  z-index: 2;
}


.placement-frame-button:hover img {
  transform: scale(1.025);
}


/* 이미지 전환 효과 */
.placement-frame-button img.is-changing {
  opacity: 0;
  transform: scale(1.015);
}


/* =====================================
   이미지 번호
===================================== */

.placement-image-count {
  position: absolute;
  left: 32px;
  bottom: 28px;

  display: flex;
  align-items: baseline;
  gap: 6px;

  color: #ffffff;

  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);

  pointer-events: none;
  z-index: 5;
}


.placement-image-count strong {
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
}


.placement-image-count span {
  font-size: 13px;
  font-weight: 400;
  opacity: 0.72;
}


/* =====================================
   이전 / 다음 버튼
===================================== */

.placement-gallery-arrow {
  position: absolute;
  top: 50%;

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

  width: 50px;
  height: 50px;

  padding: 0;

  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;

  background: rgba(23, 22, 20, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  color: #ffffff;

  cursor: pointer;

  transform: translateY(-50%);

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;

  z-index: 5;
}


.placement-gallery-arrow:hover {
  background: rgba(197, 157, 95, 0.94);
  border-color: rgba(255, 255, 255, 0.72);

  transform:
    translateY(-50%)
    scale(1.05);
}


.placement-gallery-arrow:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}


.placement-gallery-arrow span {
  display: block;

  font-size: 22px;
  line-height: 1;

  transform: translateY(-1px);
}


.placement-gallery-prev {
  left: 28px;
}


.placement-gallery-next {
  right: 28px;
}


/* =====================================
   하단 썸네일 목록
===================================== */

.placement-thumbnail-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));

  gap: 10px;

  margin-top: 14px;
}


/* 썸네일 버튼 */
.placement-thumbnail {
  position: relative;

  display: block;

  width: 100%;
  height: 104px;

  padding: 0;
  overflow: hidden;

  appearance: none;
  border: 1px solid transparent;
  background: #d9d6d0;

  opacity: 0.64;

  cursor: pointer;

  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}


.placement-thumbnail img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transition: transform 0.5s ease;
}


/* 썸네일 오버레이 */
.placement-thumbnail::after {
  content: "";

  position: absolute;
  inset: 0;

  background: rgba(245, 243, 239, 0.15);

  transition: background 0.3s ease;

  pointer-events: none;
}


/* 썸네일 번호 */
.placement-thumbnail span {
  position: absolute;
  left: 9px;
  bottom: 8px;

  padding: 4px 6px;

  background: rgba(20, 20, 20, 0.48);

  color: #ffffff;

  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;

  z-index: 3;
}


/* 썸네일 호버 */
.placement-thumbnail:hover {
  opacity: 1;

  transform: translateY(-3px);
}


.placement-thumbnail:hover img {
  transform: scale(1.045);
}


.placement-thumbnail:hover::after {
  background: transparent;
}


/* 활성 썸네일 */
.placement-thumbnail.is-active {
  opacity: 1;

  border-color: #c59d5f;

  box-shadow:
    0 0 0 2px #f5f3ef,
    0 0 0 3px rgba(197, 157, 95, 0.68);
}


.placement-thumbnail.is-active::after {
  background: transparent;
}


.placement-thumbnail:focus-visible {
  outline: 2px solid #c59d5f;
  outline-offset: 3px;
}


/* =====================================
   태블릿
===================================== */

@media (max-width: 1024px) {

  .placement-gallery-section {
    padding: 100px 0 110px;
  }

  .placement-frame-gallery {
    width: calc(100% - 48px);
    margin-top: 42px;
  }

  .placement-frame-button {
    height: clamp(380px, 54vw, 500px);
  }

  .placement-thumbnail-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .placement-thumbnail {
    height: 120px;
  }

  .placement-gallery-prev {
    left: 22px;
  }

  .placement-gallery-next {
    right: 22px;
  }

}


/* =====================================
   모바일
===================================== */

@media (max-width: 768px) {

  .placement-gallery-section {
    padding: 80px 0 90px;
  }

  .placement-frame-gallery {
    width: calc(100% - 28px);
    margin-top: 34px;
  }

  .placement-main-frame {
    padding: 6px;
  }

  .placement-main-frame::before {
    inset: 3px;
  }

  .placement-frame-button {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .placement-gallery-arrow {
    width: 40px;
    height: 40px;
  }

  .placement-gallery-arrow span {
    font-size: 18px;
  }

  .placement-gallery-prev {
    left: 14px;
  }

  .placement-gallery-next {
    right: 14px;
  }

  .placement-image-count {
    left: 20px;
    bottom: 18px;
  }

  .placement-image-count strong {
    font-size: 25px;
  }

  .placement-image-count span {
    font-size: 12px;
  }

  .placement-thumbnail-list {
    display: flex;

    gap: 9px;

    margin-top: 12px;
    padding: 3px 2px 8px;

    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .placement-thumbnail-list::-webkit-scrollbar {
    display: none;
  }

  .placement-thumbnail {
    flex: 0 0 34%;
    height: 92px;

    scroll-snap-align: start;
  }

  .placement-thumbnail:hover {
    transform: none;
  }

}


/* =====================================
   작은 모바일
===================================== */

@media (max-width: 480px) {

  .placement-gallery-section {
    padding: 70px 0 80px;
  }

  .placement-frame-gallery {
    width: calc(100% - 20px);
    margin-top: 30px;
  }

  .placement-frame-button {
    aspect-ratio: 1 / 1;
  }

  .placement-thumbnail {
    flex-basis: 42%;
    height: 88px;
  }

  .placement-image-count {
    left: 17px;
    bottom: 15px;
  }

  .placement-gallery-prev {
    left: 11px;
  }

  .placement-gallery-next {
    right: 11px;
  }

}

/* =====================================
   모바일 서브 링크 전체 폭
===================================== */
@media (max-width: 768px) {

  .placement-sub-link {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .placement-sub-link .sub-link-inner {
    width: 100%;
    max-width: none;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .placement-sub-link .sub-link-card {
    width: 100%;
    min-width: 0;
    margin: 0;
    border-radius: 0;
    box-sizing: border-box;
  }
}

@media (max-width:768px){

  .hero1,
  .cpb-hero-section{
    height:420px;
    min-height:420px;
    padding-top:70px;
  }

}

/* =====================================
   프로젝트 섹션
===================================== */

.project-section {
  width: 100%;
  padding: 100px 0 160px;
  background: #fff;
}

.project-inner {
  width: min(100% - 80px, 1600px);
  margin: 0 auto;
}


/* =====================================
   프로젝트 제목
===================================== */

.project-section-title {
  margin-bottom: 70px;
}

.project-eyebrow {
  display: block;
  margin-bottom: 24px;

  color: #c59d5f;

  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16em;
}

.project-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  align-items: end;
  gap: 60px;

  padding-top: 28px;
  border-top: 1px solid #d9d7d3;
}

.project-title-left h2 {
  margin: 0;

  color: #252321;

  font-size: clamp(42px, 5vw, 76px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.project-title-right {
  display: flex;
  justify-content: flex-end;
}

.project-title-right p {
  margin: 0;

  color: #75716d;

  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: -0.025em;
}


/* =====================================
   프로젝트 필터
===================================== */

.project-filter {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 52px;
  padding-bottom: 18px;

  overflow-x: auto;
  border-bottom: 1px solid #e1dfdb;

  scrollbar-width: none;
}

.project-filter::-webkit-scrollbar {
  display: none;
}

.project-filter-btn {
  flex: 0 0 auto;

  padding: 11px 18px;

  border: 1px solid #d8d5d0;
  border-radius: 100px;
  background: transparent;

  color: #817c76;

  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;

  cursor: pointer;

  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    background-color 0.3s ease;
}

.project-filter-btn:hover,
.project-filter-btn.active {
  border-color: #70605b;
  background: #70605b;
  color: #fff;
}


/* =====================================
   프로젝트 그리드
   PC 4열
===================================== */

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 64px;
}


/* =====================================
   프로젝트 카드
===================================== */

.project-card {
  min-width: 0;
}

.project-card-link {
  display: block;
  width: 100%;
  padding: 0;

  border: 0;
  background: transparent;

  color: inherit;
  font-family: inherit;
  text-align: left;

  cursor: pointer;
}

.project-card-image {
  position: relative;

  width: 100%;
  aspect-ratio: 4 / 3;

  overflow: hidden;
  background: #eceae6;
}

.project-card-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}


/* 진행 상태 */

.project-status {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;

  display: inline-flex;
  align-items: center;

  min-height: 28px;
  padding: 0 11px;

  border-radius: 100px;
  background: #76b1be;

  color: #fff;

  font-size: 11px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.project-status.complete {
  background: rgba(36, 34, 32, 0.82);
}


/* 카드 오버레이 */

.project-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  padding: 22px;

  background:
    linear-gradient(
      to top,
      rgba(20, 20, 18, 0.72) 0%,
      rgba(20, 20, 18, 0.05) 55%,
      transparent 100%
    );

  color: #fff;

  opacity: 0;
  transition: opacity 0.35s ease;
}

.project-card-overlay span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
}


/* 카드 정보 */

.project-card-info {
  padding-top: 20px;
}

.project-category {
  display: block;
  margin-bottom: 10px;

  color: #c59d5f;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.project-card-info h3 {
  margin: 0 0 10px;

  color: #2b2927;

  font-size: 19px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.035em;

  transition: color 0.3s ease;
}

.project-card-info p {
  margin: 0;

  color: #96908a;

  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.02em;
}


/* =====================================
   카드 Hover
===================================== */

@media (hover: hover) {

  .project-card-link:hover
  .project-card-image img {
    transform: scale(1.055);
  }

  .project-card-link:hover
  .project-card-overlay {
    opacity: 1;
  }

  .project-card-link:hover
  .project-card-info h3 {
    color: #76b1be;
  }

}


/* =====================================
   태블릿
   2열
===================================== */

@media (max-width: 1100px) {

  .project-section {
    padding: 110px 0 130px;
  }

  .project-inner {
    width: min(100% - 56px, 1200px);
  }

  .project-title-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .project-title-right {
    justify-content: flex-start;
  }

  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 22px;
    row-gap: 54px;
  }

}


/* =====================================
   모바일
   1열
===================================== */

@media (max-width: 767px) {

  .project-section {
    padding: 82px 0 100px;
  }

  .project-inner {
    width: calc(100% - 36px);
  }

  .project-section-title {
    margin-bottom: 46px;
  }

  .project-eyebrow {
    margin-bottom: 18px;
    font-size: 11px;
  }

  .project-title-row {
    gap: 20px;
    padding-top: 22px;
  }

  .project-title-left h2 {
    font-size: 40px;
  }

  .project-title-right p {
    font-size: 14px;
    line-height: 1.75;
  }

  .project-title-right p br {
    display: none;
  }

  .project-filter {
    width: calc(100% + 18px);
    margin-bottom: 36px;
    padding-right: 18px;
  }

  .project-filter-btn {
    padding: 10px 15px;
    font-size: 10px;
  }

  .project-grid {
    grid-template-columns: 1fr;
    row-gap: 48px;
  }

  .project-card-image {
    aspect-ratio: 4 / 3;
  }

  .project-card-info {
    padding-top: 17px;
  }

  .project-card-info h3 {
    font-size: 18px;
  }

  .project-card-overlay {
    display: none;
  }

}


/* =====================================
   프로젝트 숨김
===================================== */

.project-card[hidden] {
  display: none !important;
}


/* =====================================
   프로젝트 페이지네이션
===================================== */

.project-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;

  gap: 8px;

  margin-top: 90px;
}

.project-pagination[hidden] {
  display: none !important;
}

.project-pagination-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 42px;
  height: 42px;
  padding: 0 12px;

  border: 1px solid #ddd8d3;
  border-radius: 50px;
  background: #fff;

  color: #70605b;

  font-family: inherit;
  font-size: 13px;
  font-weight: 600;

  cursor: pointer;

  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.project-pagination-btn:hover:not(:disabled) {
  border-color: #70605b;
  transform: translateY(-2px);
}

.project-pagination-number.active {
  border-color: #70605b;
  background: #70605b;
  color: #fff;
}

.project-pagination-arrow {
  min-width: 64px;
}

.project-pagination-btn:disabled {
  opacity: 0.35;
  cursor: default;
}


/* =====================================
   모바일 페이지네이션
===================================== */

@media (max-width: 767px) {

  .project-pagination {
    gap: 6px;
    margin-top: 60px;
  }

  .project-pagination-btn {
    min-width: 38px;
    height: 38px;
    padding: 0 10px;

    font-size: 12px;
  }

  .project-pagination-arrow {
    min-width: 54px;
  }

}

/* =====================================
   프로젝트 페이지 푸터 위 여백 조절
===================================== */

.project-section {
  margin-bottom: 0;
  padding-bottom: 60px;
}

.project-inner {
  margin-bottom: 0;
  padding-bottom: 0;
}

.project-pagination {
  margin-bottom: 0;
}

/* =====================================
   프로젝트 상세 모달
===================================== */

body.project-modal-open {
  overflow: hidden;
}

.project-modal {
  position: fixed;
  inset: 0;
  z-index: 20000;

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

  padding: 32px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.project-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* 배경 */
.project-modal-backdrop {
  position: absolute;
  inset: 0;

  background: rgba(3, 7, 12, 0.82);

  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);

  cursor: pointer;
}

/* 모달 본체 */
.project-modal-dialog {
  position: relative;
  z-index: 2;

  width: min(1180px, 100%);
  max-height: calc(100vh - 64px);

  overflow-y: auto;
  overscroll-behavior: contain;

  background: #fff;
  color: #111;

  border-radius: 4px;

  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.45);

  opacity: 0;
  transform: translateY(32px) scale(0.96);

  transition:
    opacity 0.45s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-modal.active .project-modal-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* 닫기 버튼 */
.project-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 10;

  width: 52px;
  height: 52px;

  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;

  background: rgba(0, 0, 0, 0.2);

  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);

  cursor: pointer;

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.project-modal-close:hover {
  background: rgba(0, 0, 0, 0.6);
  transform: rotate(90deg);
}

.project-modal-close span {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 20px;
  height: 1px;

  background: #fff;
}

.project-modal-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.project-modal-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* 이미지 영역 */
.project-modal-image-area {
  position: relative;
  height: clamp(360px, 57vw, 650px);
  overflow: hidden;
  background: #151515;
}

.project-modal-image {
  display: block;
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transform: scale(1.04);

  transition:
    opacity 0.25s ease,
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-modal.active .project-modal-image {
  transform: scale(1);
}

.project-modal-image-dim {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0.02) 42%,
      rgba(0, 0, 0, 0.72) 100%
    );

  pointer-events: none;
}

/* 이미지 상단 */
.project-modal-top-info {
  position: absolute;
  top: 28px;
  left: 32px;
  right: 100px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  color: #fff;
}

.project-modal-count {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.4px;
}

.project-modal-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 9px 15px;

  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 30px;

  background: rgba(0, 0, 0, 0.28);

  font-size: 12px;
  font-weight: 600;

  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.project-modal-status::before {
  content: "";

  width: 7px;
  height: 7px;

  border-radius: 50%;
  background: #a6a6a6;
}

.project-modal-status.progress::before {
  background: #40d583;
  box-shadow: 0 0 12px rgba(64, 213, 131, 0.8);
}

.project-modal-status.complete::before {
  background: #d4b06a;
}

/* 이미지 하단 제목 */
.project-modal-heading {
  position: absolute;
  left: 48px;
  right: 48px;
  bottom: 44px;

  color: #fff;
}

.project-modal-category {
  display: block;
  margin-bottom: 12px;

  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;

  color: rgba(255, 255, 255, 0.72);
}

.project-modal-heading h2 {
  margin: 0;

  font-size: clamp(34px, 4.2vw, 64px);
  line-height: 1.15;
  letter-spacing: -2px;

  color: #fff;
}

/* 정보 영역 */
.project-modal-content {
  padding: 48px;
  background: #fff;
}

.project-modal-spec {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));

  margin: 0;
}

.project-modal-spec-item {
  min-width: 0;
  padding: 5px 28px;

  border-right: 1px solid #e5e5e5;
}

.project-modal-spec-item:first-child {
  padding-left: 0;
}

.project-modal-spec-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.project-modal-spec-item dt {
  margin-bottom: 13px;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;

  color: #aaa;
}

.project-modal-spec-item dd {
  margin: 0;

  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;

  color: #222;
  word-break: keep-all;
}

/* 이전·다음 */
.project-modal-navigation {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  margin-top: 46px;

  border-top: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
}

.project-modal-nav {
  display: flex;
  align-items: center;
  gap: 22px;

  min-width: 0;
  padding: 27px 4px;

  border: 0;
  background: transparent;

  color: #111;
  text-align: left;

  cursor: pointer;

  transition:
    background 0.3s ease,
    padding 0.3s ease;
}

.project-modal-nav:first-child {
  border-right: 1px solid #e4e4e4;
}

.project-modal-nav:last-child {
  justify-content: flex-end;
  text-align: right;
}

.project-modal-prev:hover {
  padding-left: 15px;
  background: #f7f7f7;
}

.project-modal-next:hover {
  padding-right: 15px;
  background: #f7f7f7;
}

.project-modal-nav-arrow {
  flex-shrink: 0;

  font-size: 26px;
  font-weight: 300;
}

.project-modal-nav-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.project-modal-nav-text small {
  margin-bottom: 7px;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;

  color: #aaa;
}

.project-modal-nav-text strong {
  overflow: hidden;

  font-size: 15px;
  font-weight: 600;

  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 프로젝트 전환 애니메이션 */
.project-modal-dialog.is-next .project-modal-image,
.project-modal-dialog.is-next .project-modal-heading {
  animation: projectModalNext 0.45s ease;
}

.project-modal-dialog.is-prev .project-modal-image,
.project-modal-dialog.is-prev .project-modal-heading {
  animation: projectModalPrev 0.45s ease;
}

@keyframes projectModalNext {
  from {
    opacity: 0;
    transform: translateX(28px) scale(1.03);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes projectModalPrev {
  from {
    opacity: 0;
    transform: translateX(-28px) scale(1.03);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

/* 태블릿 */
@media (max-width: 900px) {
  .project-modal {
    padding: 20px;
  }

  .project-modal-dialog {
    max-height: calc(100vh - 40px);
  }

  .project-modal-content {
    padding: 36px 30px;
  }

  .project-modal-spec {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .project-modal-spec-item {
    padding: 20px;
    border-bottom: 1px solid #e5e5e5;
  }

  .project-modal-spec-item:nth-child(2) {
    border-right: 0;
  }

  .project-modal-spec-item:nth-child(3),
  .project-modal-spec-item:nth-child(4) {
    border-bottom: 0;
  }

  .project-modal-spec-item:first-child {
    padding-left: 20px;
  }

  .project-modal-spec-item:last-child {
    padding-right: 20px;
  }
}

/* 모바일 */
@media (max-width: 600px) {
  .project-modal {
    align-items: flex-end;
    padding: 0;
  }

  .project-modal-dialog {
    width: 100%;
    max-height: 94vh;

    border-radius: 12px 12px 0 0;

    transform: translateY(100%);
  }

  .project-modal.active .project-modal-dialog {
    transform: translateY(0);
  }

  .project-modal-image-area {
    height: 380px;
  }

  .project-modal-close {
    top: 16px;
    right: 16px;

    width: 44px;
    height: 44px;
  }

  .project-modal-top-info {
    top: 20px;
    left: 20px;
    right: 74px;
  }

  .project-modal-count {
    font-size: 10px;
    letter-spacing: 1.5px;
  }

  .project-modal-status {
    padding: 7px 11px;
    font-size: 11px;
  }

  .project-modal-heading {
    left: 22px;
    right: 22px;
    bottom: 28px;
  }

  .project-modal-category {
    margin-bottom: 9px;
    font-size: 11px;
  }

  .project-modal-heading h2 {
    font-size: 32px;
    letter-spacing: -1px;
  }

  .project-modal-content {
    padding: 24px 20px 30px;
  }

  .project-modal-spec {
    grid-template-columns: 1fr;
  }

  .project-modal-spec-item,
  .project-modal-spec-item:first-child,
  .project-modal-spec-item:last-child {
    display: grid;
    grid-template-columns: 100px 1fr;
    align-items: center;

    padding: 14px 0;

    border-right: 0;
    border-bottom: 1px solid #e9e9e9;
  }

  .project-modal-spec-item:last-child {
    border-bottom: 0;
  }

  .project-modal-spec-item dt {
    margin: 0;
  }

  .project-modal-spec-item dd {
    font-size: 15px;
  }

  .project-modal-navigation {
    margin-top: 25px;
  }

  .project-modal-nav {
    gap: 9px;
    padding: 19px 6px;
  }

  .project-modal-nav-arrow {
    font-size: 20px;
  }

  .project-modal-nav-text small {
    font-size: 9px;
  }

  .project-modal-nav-text strong {
    max-width: 105px;
    font-size: 12px;
  }
}

/* ==================================================
   CONTACT 페이지 — contact.html 클래스 구조 전용
================================================== */

.contact-page {
  background: #ffffff;
  color: #222222;
}

.contact-page .contact-section {
  padding: 120px 0;
  background: #ffffff;
}

.contact-page .contact-inner {
  width: min(1280px, calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.45fr);
  gap: 60px;
  align-items: stretch;
}

/* ==================================================
   왼쪽 회사 정보
================================================== */

.contact-page .contact-info {
  padding: 54px 46px;
  color: #ffffff;
  background: linear-gradient(
    145deg,
    rgba(112, 96, 91, 0.98),
    rgba(76, 67, 64, 0.98)
  );
  border-radius: 2px;
}

.contact-page .contact-label {
  display: block;
  margin-bottom: 16px;
  color: #c59d5f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.contact-page .contact-info > h2 {
  margin: 0;
  color: #ffffff;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.04em;
  word-break: keep-all;
}

.contact-page .contact-info-description {
  margin: 22px 0 46px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.8;
  word-break: keep-all;
}

.contact-page .contact-info-list {
  display: flex;
  flex-direction: column;
}

.contact-page .contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-page .contact-info-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-page .contact-info-title {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.contact-page .contact-info-item strong,
.contact-page .contact-info-item a,
.contact-page .contact-info-item p {
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  text-decoration: none;
  word-break: keep-all;
}

.contact-page .contact-info-item a {
  transition: color 0.25s ease;
}

.contact-page .contact-info-item a:hover {
  color: #c59d5f;
}

/* ==================================================
   오른쪽 문의 폼
================================================== */

.contact-page .contact-form-wrap {
  padding: 54px 56px;
  background: #f7f7f5;
  border: 1px solid #ecebe7;
}

.contact-page .contact-form {
  width: 100%;
}

.contact-page .contact-form-heading {
  margin-bottom: 38px;
}

.contact-page .contact-form-heading > span {
  display: block;
  margin-bottom: 12px;
  color: #76b1be;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.contact-page .contact-form-heading h2 {
  margin: 0;
  color: #222222;
  font-size: 32px;
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: -0.04em;
}

.contact-page .contact-form-heading p {
  margin: 14px 0 0;
  color: #777777;
  font-size: 15px;
  line-height: 1.7;
}

.contact-page .contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.contact-page .contact-form-group {
  position: relative;
  margin-bottom: 26px;
}

.contact-page .contact-form-group label {
  display: block;
  margin-bottom: 11px;
  color: #333333;
  font-size: 14px;
  font-weight: 600;
}

.contact-page .contact-form-group label em,
.contact-page .contact-checkbox em {
  margin-left: 3px;
  color: #c59d5f;
  font-style: normal;
}

.contact-page .contact-form-group input,
.contact-page .contact-form-group select,
.contact-page .contact-form-group textarea {
  width: 100%;
  padding: 0 18px;
  color: #222222;
  font-family: inherit;
  font-size: 15px;
  background: #ffffff;
  border: 1px solid #ddddda;
  border-radius: 0;
  outline: none;
  box-sizing: border-box;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.contact-page .contact-form-group input,
.contact-page .contact-form-group select {
  height: 56px;
}

.contact-page .contact-form-group textarea {
  min-height: 190px;
  padding-top: 17px;
  padding-bottom: 44px;
  line-height: 1.7;
  resize: vertical;
}

.contact-page .contact-form-group input::placeholder,
.contact-page .contact-form-group textarea::placeholder {
  color: #aaaaaa;
}

.contact-page .contact-form-group input:focus,
.contact-page .contact-form-group select:focus,
.contact-page .contact-form-group textarea:focus {
  background: #ffffff;
  border-color: #76b1be;
  box-shadow: 0 0 0 3px rgba(118, 177, 190, 0.12);
}

.contact-page .contact-form-group select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 48px;
  background-image:
    linear-gradient(45deg, transparent 50%, #777777 50%),
    linear-gradient(135deg, #777777 50%, transparent 50%);
  background-position:
    calc(100% - 21px) 24px,
    calc(100% - 16px) 24px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.contact-page .contact-character-count {
  position: absolute;
  right: 14px;
  bottom: 13px;
  display: flex;
  color: #999999;
  font-size: 12px;
  pointer-events: none;
}

/* ==================================================
   개인정보 동의
================================================== */

.contact-page .contact-agreement {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 2px 0 30px;
  padding: 18px 20px;
  background: #ffffff;
  border: 1px solid #ddddda;
}

.contact-page .contact-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #555555;
  font-size: 14px;
  line-height: 1.5;
  cursor: pointer;
}

.contact-page .contact-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 1px;
  accent-color: #76b1be;
  cursor: pointer;
}

.contact-page .contact-policy-button {
  flex: 0 0 auto;
  padding: 0;
  color: #70605b;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #70605b;
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.contact-page .contact-policy-button:hover {
  color: #76b1be;
  border-color: #76b1be;
}

/* 허니팟은 화면과 레이아웃에서 완전히 숨김 */
.contact-page .contact-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ==================================================
   제출 버튼
================================================== */

.contact-page .contact-submit-button {
  position: relative;
  width: 100%;
  min-height: 58px;
  padding: 0 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #ffffff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: #70605b;
  border: 1px solid #70605b;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.contact-page .contact-submit-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #76b1be;
  transform: translateX(-101%);
  transition: transform 0.35s ease;
}

.contact-page .contact-submit-button span {
  position: relative;
  z-index: 1;
}

.contact-page .contact-submit-button:hover {
  border-color: #76b1be;
}

.contact-page .contact-submit-button:hover::before {
  transform: translateX(0);
}

.contact-page .contact-submit-button:active {
  transform: translateY(1px);
}

.contact-page .contact-submit-button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.contact-page .contact-submit-button:disabled::before {
  display: none;
}

/* ==================================================
   개인정보 안내 모달
================================================== */

.contact-policy-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.contact-policy-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.contact-policy-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.contact-policy-dialog {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 46px 44px 38px;
  color: #222222;
  background: #ffffff;
  border: 1px solid #e2dfd8;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.25s ease;
  outline: none;
}

.contact-policy-modal.active .contact-policy-dialog {
  transform: translateY(0) scale(1);
}

.contact-policy-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 38px;
  height: 38px;
  color: #555555;
  font-family: inherit;
  font-size: 28px;
  line-height: 1;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.contact-policy-label {
  display: block;
  margin-bottom: 12px;
  color: #76b1be;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.contact-policy-dialog > h2 {
  margin: 0 0 28px;
  color: #222222;
  font-size: 28px;
  line-height: 1.35;
  letter-spacing: -0.04em;
}

.contact-policy-content {
  color: #666666;
  font-size: 14px;
  line-height: 1.8;
}

.contact-policy-content > p {
  margin: 0 0 22px;
  word-break: keep-all;
}

.contact-policy-content dl {
  margin: 0 0 22px;
  border-top: 1px solid #dedbd4;
}

.contact-policy-content dl > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  border-bottom: 1px solid #dedbd4;
}

.contact-policy-content dt,
.contact-policy-content dd {
  margin: 0;
  padding: 15px 16px;
}

.contact-policy-content dt {
  color: #70605b;
  font-weight: 700;
  background: #f7f6f3;
}

.contact-policy-content dd {
  color: #555555;
}

.contact-policy-confirm {
  width: 100%;
  height: 52px;
  margin-top: 8px;
  color: #ffffff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  background: #70605b;
  border: 1px solid #70605b;
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.contact-policy-confirm:hover {
  background: #76b1be;
  border-color: #76b1be;
}

/* ==================================================
   태블릿
================================================== */

@media (max-width: 1024px) {
  .contact-page .contact-hero {
    height: 460px;
    min-height: 460px;
  }

  .contact-page .contact-section {
    padding: 90px 0;
  }

  .contact-page .contact-inner {
    width: calc(100% - 48px);
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-page .contact-info {
    padding: 46px 40px;
  }

  .contact-page .contact-info-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 30px;
  }

  .contact-page .contact-info-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .contact-page .contact-form-wrap {
    padding: 48px 42px;
  }
}

/* ==================================================
   모바일
================================================== */

@media (max-width: 768px) {
  .contact-page .contact-hero {
    height: 400px;
    min-height: 400px;
    background-position: center center;
  }

  .contact-page .hero1-breadcrumb {
    top: 88px;
    left: 18px;
    width: calc(100% - 36px);
    gap: 7px;
    font-size: 11px;
  }

  .contact-page .hero1-content {
    width: calc(100% - 36px);
  }

  .contact-page .hero1-title {
    font-size: 42px;
    letter-spacing: 0.06em;
  }

  .contact-page .hero1-desc {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.7;
  }

  .contact-page .contact-section {
    padding: 72px 0;
  }

  .contact-page .contact-inner {
    width: calc(100% - 36px);
    gap: 20px;
  }

  .contact-page .contact-info {
    padding: 38px 26px;
  }

  .contact-page .contact-info > h2 {
    font-size: 28px;
  }

  .contact-page .contact-info-description {
    margin-bottom: 34px;
  }

  .contact-page .contact-info-list {
    display: flex;
  }

  .contact-page .contact-info-item {
    padding: 22px 0;
  }

  .contact-page .contact-info-item strong,
  .contact-page .contact-info-item a,
  .contact-page .contact-info-item p {
    font-size: 15px;
  }

  .contact-page .contact-form-wrap {
    padding: 38px 24px;
  }

  .contact-page .contact-form-heading {
    margin-bottom: 30px;
  }

  .contact-page .contact-form-heading h2 {
    font-size: 27px;
  }

  .contact-page .contact-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-page .contact-form-group {
    margin-bottom: 22px;
  }

  .contact-page .contact-form-group input,
  .contact-page .contact-form-group select {
    height: 54px;
  }

  .contact-page .contact-form-group textarea {
    min-height: 170px;
  }

  .contact-page .contact-agreement {
    align-items: flex-start;
  }

  .contact-policy-dialog {
    padding: 42px 24px 28px;
  }

  .contact-policy-dialog > h2 {
    font-size: 24px;
  }
}

/* ==================================================
   작은 모바일
================================================== */

@media (max-width: 480px) {
  .contact-page .contact-hero {
    height: 370px;
    min-height: 370px;
  }

  .contact-page .hero1-title {
    font-size: 36px;
  }

  .contact-page .hero1-desc br {
    display: none;
  }

  .contact-page .contact-inner {
    width: calc(100% - 28px);
  }

  .contact-page .contact-info {
    padding: 34px 21px;
  }

  .contact-page .contact-form-wrap {
    padding: 34px 20px;
  }

  .contact-page .contact-form-heading h2 {
    font-size: 25px;
  }

  .contact-page .contact-agreement {
    flex-direction: column;
    gap: 12px;
  }

  .contact-page .contact-policy-button {
    align-self: flex-end;
  }

  .contact-policy-modal {
    padding: 14px;
  }

  .contact-policy-dialog {
    max-height: calc(100vh - 28px);
    padding: 40px 20px 24px;
  }

  .contact-policy-content dl > div {
    grid-template-columns: 1fr;
  }

  .contact-policy-content dt {
    padding-bottom: 8px;
  }

  .contact-policy-content dd {
    padding-top: 8px;
  }
}

/* =====================================
   HOME COMPANY INTRO
===================================== */

.home-company-section {
  position: relative;
  overflow: hidden;

  padding: 80px 40px;

  background: #f7f6f3;
}


.home-company-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;

  width: min(1400px, calc(100% - 100px));
  margin: 0 auto;

  gap: clamp(70px, 8vw, 140px);
}


/* =====================================
   왼쪽 텍스트
===================================== */

.home-company-content {
  position: relative;
  z-index: 2;
}


.home-company-eyebrow {
  display: inline-block;

  margin-bottom: 28px;

  color: #76b1be;

  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.22em;
}


.home-company-title {
  margin: 0;

  color: #252321;

  font-size: clamp(42px, 4.5vw, 72px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.045em;
}


.home-company-line {
  width: 64px;
  height: 2px;

  margin: 38px 0;

  background: #c59d5f;
}


.home-company-desc {
  max-width: 540px;
  margin: 0;

  color: #68635f;

  font-size: 17px;
  font-weight: 400;
  line-height: 1.9;

  word-break: keep-all;
}


/* =====================================
   버튼
===================================== */

.home-company-buttons {
     display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
    margin-top: 48px;
}


.home-company-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;

  
  min-width: 180px;
  height: 58px;

  padding: 0 23px;

  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;

  text-decoration: none;

  transition:
    color 0.35s ease,
    background-color 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s ease;
}


.home-company-btn-primary {
  border: 1px solid #70605b;

  color: #ffffff;
  background: #70605b;
}


.home-company-btn-primary:hover {
  border-color: #76b1be;
  background: #76b1be;

  transform: translateY(-3px);
}


.home-company-btn-outline {
  border: 1px solid rgba(112, 96, 91, 0.4);

  color: #4f4845;
  background: transparent;
}


.home-company-btn-outline:hover {
  border-color: #76b1be;

  color: #ffffff;
  background: #76b1be;

  transform: translateY(-3px);
}


.home-company-btn-arrow {
  margin-left: 24px;

  font-size: 18px;
  font-weight: 400;

  transition: transform 0.35s ease;
}


.home-company-btn:hover .home-company-btn-arrow {
  transform: translate(3px, -3px);
}


/* =====================================
   오른쪽 이미지
===================================== */

.home-company-visual {
  position: relative;

  padding: 0 0 65px 65px;
}


.home-company-image-wrap {
  position: relative;
  overflow: hidden;

  width: 100%;
  height: clamp(520px, 52vw, 720px);

  background: #ddddda;
}


.home-company-image {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}


.home-company-image-wrap:hover .home-company-image {
  transform: scale(1.045);
}


.home-company-image-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(20, 20, 20, 0.62) 0%,
      rgba(20, 20, 20, 0.08) 45%,
      rgba(20, 20, 20, 0) 70%
    );
}


.home-company-image-caption {
  position: absolute;
  right: 45px;
  bottom: 42px;
  left: 45px;

  color: #ffffff;
}


.home-company-image-caption span {
  display: block;

  margin-bottom: 12px;

  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;

  opacity: 0.78;
}


.home-company-image-caption strong {
  display: block;

  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
}


/* =====================================
   오른쪽 아래 장식
===================================== */

.home-company-deco {
  position: absolute;
  bottom: 0;
  left: 0;

  display: flex;
  align-items: center;

  color: #70605b;
}


.home-company-deco span {
  font-size: 14px;
  font-weight: 700;
}


.home-company-deco div {
  width: 70px;
  height: 1px;

  margin: 0 16px;

  background: rgba(112, 96, 91, 0.45);
}


.home-company-deco p {
  margin: 0;

  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
}


/* =====================================
   태블릿
===================================== */

@media (max-width: 1100px) {

  .home-company-section {
    padding: 120px 0;
  }


  .home-company-inner {
    width: min(100% - 60px, 1000px);

    gap: 60px;
  }


  .home-company-title {
    font-size: clamp(40px, 5vw, 58px);
  }


  .home-company-visual {
    padding-left: 40px;
  }


  .home-company-image-wrap {
    height: 580px;
  }

}


/* =====================================
   모바일
===================================== */

@media (max-width: 768px) {

  .home-company-section {
    padding: 60px 10px;
  }


  .home-company-inner {
    grid-template-columns: 1fr;

    width: calc(100% - 40px);

    gap: 60px;
  }


  .home-company-eyebrow {
    margin-bottom: 20px;

    font-size: 12px;
  }


  .home-company-title {
    font-size: clamp(38px, 11vw, 52px);
    line-height: 1.2;
  }


  .home-company-line {
    margin: 30px 0;
  }


  .home-company-desc {
    font-size: 15px;
    line-height: 1.85;
  }


  .home-company-buttons {
    margin-top: 36px;
  }


  .home-company-btn {
    flex: 1 1 calc(50% - 7px);

    min-width: 0;
    height: 54px;

    padding: 0 18px;

    font-size: 14px;
  }


  .home-company-btn-arrow {
    margin-left: 15px;
  }


  .home-company-visual {
    padding: 0 0 50px 22px;
  }


  .home-company-image-wrap {
    height: 500px;
  }


  .home-company-image-caption {
    right: 25px;
    bottom: 28px;
    left: 25px;
  }


  .home-company-deco div {
    width: 42px;
    margin: 0 10px;
  }


  .home-company-deco p {
    font-size: 9px;
    letter-spacing: 0.1em;
  }

}


/* =====================================
   작은 모바일
===================================== */

@media (max-width: 480px) {

  .home-company-section {
    padding: 60px 10px;
  }


  .home-company-inner {
    width: calc(100% - 32px);

    gap: 48px;
  }


  .home-company-title {
    font-size: 38px;
  }


  .home-company-buttons {
    flex-direction: column;
  }


  .home-company-btn {
    width: 100%;
    flex: none;
  }


  .home-company-visual {
    padding-left: 14px;
  }


  .home-company-image-wrap {
    height: 420px;
  }


  .home-company-image-caption strong {
    font-size: 22px;
  }

}


/* =====================================
   HOME BUSINESS
===================================== */

.home-business-section {
  position: relative;
  overflow: hidden;

  padding: 100px 20px;

  background: #f7f6f3;
}

.home-business-inner {
  width: min(1500px, calc(100% - 80px));
  margin: 0 auto;
}


/* =====================================
   BUSINESS HEADER
===================================== */

.home-business-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  margin-bottom: 70px;

  gap: 60px;
}

.home-business-heading {
  flex: 1;
}

.home-business-eyebrow {
  display: flex;
  align-items: center;

  margin-bottom: 24px;

  gap: 14px;

  color: #70605b;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.home-business-eyebrow i {
  display: block;

  width: 28px;
  height: 1px;

  background: #c59d5f;
}

.home-business-heading h2 {
  margin: 0;

  color: #252321;

  font-size: clamp(42px, 4.2vw, 68px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.045em;

  word-break: keep-all;
}

.home-business-summary {
  max-width: 440px;
  margin: 0 0 8px;

  color: #66615d;

  font-size: 16px;
  line-height: 1.85;

  word-break: keep-all;
}


/* =====================================
   BUSINESS ACCORDION
===================================== */

.business-accordion {
  display: flex;

  width: 100%;
  height: 520px;

  gap: 14px;
}


/* =====================================
   BUSINESS PANEL
===================================== */

.business-panel {
  position: relative;
  isolation: isolate;

  flex: 0.75;
  min-width: 0;

  overflow: hidden;

  border-radius: 22px;

  cursor: pointer;

  transition:
    flex 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.4s ease;
}

/* 마우스를 올린 카드 펼치기 */
.business-panel:hover {
  flex: 2.6;

  transform: translateY(-4px);
}

/* 아무 카드에도 마우스가 없을 때 첫 카드 펼치기 */
.business-accordion:not(:hover) .business-panel:first-child {
  flex: 2.6;
}

.business-panel:focus-visible {
  outline: 3px solid rgba(118, 177, 190, 0.65);
  outline-offset: 4px;
}


/* =====================================
   PANEL IMAGE
===================================== */

.business-panel > img {
  position: absolute;
  inset: 0;
  z-index: -3;

  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.business-panel:hover > img,
.business-accordion:not(:hover)
  .business-panel:first-child > img {
  transform: scale(1.045);
}


/* =====================================
   PANEL OVERLAY
===================================== */

.business-panel-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;

  background:
    linear-gradient(
      to top,
      rgba(15, 15, 15, 0.86) 0%,
      rgba(15, 15, 15, 0.42) 35%,
      rgba(15, 15, 15, 0.08) 75%,
      rgba(15, 15, 15, 0.04) 100%
    );

  transition: background 0.5s ease;
}


/* =====================================
   PANEL NUMBER
===================================== */

.business-panel-number {
  position: absolute;
  top: 30px;
  right: 30px;

  color: rgba(255, 255, 255, 0.75);

  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
}


/* =====================================
   PANEL ICON
===================================== */

.business-panel-icon {
  position: absolute;
  top: 30px;
  left: 30px;

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

  width: 52px;
  height: 52px;

  border-radius: 50%;

  color: #262321;
  background: rgba(255, 255, 255, 0.92);

  backdrop-filter: blur(8px);

  transition:
    color 0.4s ease,
    background-color 0.4s ease,
    transform 0.4s ease;
}

.business-panel:hover .business-panel-icon,
.business-accordion:not(:hover)
  .business-panel:first-child
  .business-panel-icon {
  color: #ffffff;
  background: #76b1be;

  transform: rotate(5deg);
}

.business-panel-icon svg {
  width: 22px;
  height: 22px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* =====================================
   PANEL CONTENT
===================================== */

.business-panel-content {
  position: absolute;
  right: 34px;
  bottom: 38px;
  left: 34px;

  color: #ffffff;
}


/* 사업 영문 분류 */

.business-panel-category {
  display: block;

  overflow: hidden;

  max-height: 0;
  margin-bottom: 0;

  opacity: 0;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;

  transform: translateY(15px);

  transition:
    max-height 0.45s ease,
    margin-bottom 0.45s ease,
    opacity 0.4s ease,
    transform 0.45s ease;
}


/* 사업 제목 */

.business-panel-content h3 {
  margin: 0;

  font-family: "Pretendard", sans-serif;
  font-size: clamp(22px, 2vw, 34px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.04em;

    white-space: nowrap;
  word-break: keep-all;
}


/* 사업 설명 */

.business-panel-content p {
  overflow: hidden;

  max-width: 490px;
  max-height: 0;
  margin: 0;

  opacity: 0;

  font-size: 15px;
  line-height: 1.75;

  word-break: keep-all;

  transform: translateY(18px);

  transition:
    max-height 0.55s ease,
    margin-top 0.55s ease,
    opacity 0.4s ease,
    transform 0.55s ease;
}


/* 자세히 보기 */

.business-panel-content a {
  display: inline-flex;
  align-items: center;

  overflow: hidden;

  max-height: 0;
  margin-top: 0;

  gap: 12px;

  color: #ffffff;

  opacity: 0;

  font-size: 14px;
  font-weight: 600;
  text-decoration: none;

  transform: translateY(18px);

  transition:
    max-height 0.55s ease,
    margin-top 0.55s ease,
    opacity 0.4s ease,
    transform 0.55s ease;
}

.business-panel-content a span {
  font-size: 17px;

  transition: transform 0.3s ease;
}

.business-panel-content a:hover span {
  transform: translate(3px, -3px);
}


/* =====================================
   HOVER CONTENT OPEN
===================================== */

.business-panel:hover .business-panel-category,
.business-accordion:not(:hover)
  .business-panel:first-child
  .business-panel-category {
  max-height: 30px;
  margin-bottom: 16px;

  opacity: 0.8;

  transform: translateY(0);
}

.business-panel:hover .business-panel-content p,
.business-accordion:not(:hover)
  .business-panel:first-child
  .business-panel-content p {
  max-height: 100px;
  margin-top: 18px;

  opacity: 0.9;

  transform: translateY(0);
}

.business-panel:hover .business-panel-content a,
.business-accordion:not(:hover)
  .business-panel:first-child
  .business-panel-content a {
  max-height: 40px;
  margin-top: 22px;

  opacity: 1;

  transform: translateY(0);
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 1100px) {

  .home-business-section {
    padding: 110px 0;
  }

  .home-business-inner {
    width: calc(100% - 50px);
  }

  .home-business-header {
    align-items: flex-start;

    margin-bottom: 55px;

    gap: 40px;
  }

  .home-business-heading h2 {
    font-size: 48px;
  }

  .home-business-summary {
    max-width: 360px;

    font-size: 15px;
  }

  .business-accordion {
    height: 380px;

    gap: 10px;
  }

  .business-panel {
    flex: 0.72;

    border-radius: 18px;
  }

  .business-panel:hover,
  .business-accordion:not(:hover)
    .business-panel:first-child {
    flex: 2.3;
  }

  .business-panel-content {
    right: 24px;
    bottom: 30px;
    left: 24px;
  }

  .business-panel-icon {
    top: 24px;
    left: 24px;

    width: 46px;
    height: 46px;
  }

  .business-panel-number {
    top: 26px;
    right: 24px;
  }

}


/* =====================================
   MOBILE
===================================== */

@media (max-width: 768px) {

  .home-business-section {
    padding: 60px 10px;
  }

  .home-business-inner {
    width: calc(100% - 32px);
  }

  .home-business-header {
    display: block;

    margin-bottom: 42px;
  }

  .home-business-eyebrow {
    margin-bottom: 18px;

    font-size: 11px;
  }

  .home-business-heading h2 {
    font-size: clamp(35px, 10vw, 47px);
    line-height: 1.2;
  }

  .home-business-summary {
    max-width: 100%;
    margin-top: 28px;

    font-size: 15px;
    line-height: 1.8;
  }

  .home-business-summary br {
    display: none;
  }


  /* 모바일에서는 세로 카드 목록 */

  .business-accordion {
    display: grid;
    grid-template-columns: 1fr;

    height: auto;

    gap: 12px;
  }

  .business-panel,
  .business-panel:hover,
  .business-accordion:not(:hover)
    .business-panel {
    width: 100%;
    height: 280px;
    flex: none;

    border-radius: 17px;

    transform: none;
  }

  /* 첫 번째 카드만 기본 확장 */
 

  .business-panel-icon {
    top: 20px;
    left: 20px;

    width: 46px;
    height: 46px;

    backdrop-filter: none;
  }

  .business-panel-number {
    top: 22px;
    right: 20px;
  }

  .business-panel-content {
    right: 22px;
    bottom: 25px;
    left: 22px;
  }

  .business-panel-content h3 {
    font-size: 29px;
  }


  /* 모바일에서는 첫 카드 상세 정보 표시 */

  .business-panel .business-panel-category {
    max-height: 30px;
    margin-bottom: 12px;

    opacity: 0.8;

    transform: none;
  }

  .business-panel .business-panel-content p {
    max-height: 100px;
    margin-top: 14px;

    opacity: 0.9;

    font-size: 14px;
    line-height: 1.65;

    transform: none;
  }

  .business-panel .business-panel-content a {
    max-height: 40px;
    margin-top: 16px;

    opacity: 1;

    transform: none;
  }
}
 

/* =====================================
   SMALL MOBILE
===================================== */

@media (max-width: 480px) {

  .home-business-section {
    padding: 75px 0;
  }

  .home-business-inner {
    width: calc(100% - 24px);
  }

  .home-business-heading h2 {
    font-size: 36px;
  }

  .business-panel,
  .business-panel:hover,
  .business-accordion:not(:hover)
    .business-panel:first-child {
    height: 270px;
  }



  .business-panel-content h3 {
    font-size: 27px;
  }

}


/* =====================================
   REDUCED MOTION
===================================== */

@media (prefers-reduced-motion: reduce) {

  .business-panel,
  .business-panel > img,
  .business-panel-icon,
  .business-panel-category,
  .business-panel-content p,
  .business-panel-content a {
    transition: none;
  }

}

#business-section2{
  background: #fff;
}

.business-panel-icon{
    width:64px;
    height:64px;

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

.business-panel-icon svg{
    width:36px;
    height:36px;
}


/* =====================================
   FEATURED PROJECT SECTION
===================================== */

.featured-project-section {
  padding: 90px 40px;
  overflow: hidden;
  background: #f5f3ef;
}

.featured-project-inner {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}


/* =====================================
   제목
===================================== */

.featured-project-header {
    width:100%;
    max-width:1500px;
    margin:0 auto 50px;
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
}

.featured-project-eyebrow {
  display: block;
  margin-bottom: 16px;
  color: #70605b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.featured-project-header h2 {
  margin: 0;
  color: #202020;
  font-size: clamp(42px, 4vw, 66px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.featured-project-header > p {
  margin: 0 0 5px;
  color: #787878;
  font-size: 15px;
  line-height: 1.8;
  text-align: right;
}


/* =====================================
   메인 프로젝트
===================================== */

.featured-project-stage {
  display: grid;
  grid-template-columns:
    minmax(0, 1.55fr)
    minmax(350px, 0.65fr);
  align-items: stretch;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 25px 70px rgba(26, 25, 23, 0.1);
}


/* =====================================
   1200 × 800 이미지
===================================== */

.featured-project-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: #d9d9d9;
}

.featured-project-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  transform: scale(1);
  transition:
    opacity 0.55s ease,
    transform 1.1s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.featured-project-visual img.is-changing {
  opacity: 0;
  transform: scale(1.025);
}

.featured-project-count {
  position: absolute;
  right: 28px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 17px;
  color: #ffffff;
  background: rgba(20, 20, 20, 0.72);
  backdrop-filter: blur(8px);
}

.featured-project-count b,
.featured-project-count em {
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.featured-project-count i {
  display: block;
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
}


/* =====================================
   프로젝트 정보
===================================== */

.featured-project-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 55px 48px;
  background: #ffffff;
}

.featured-project-label {
  display: block;
  margin-bottom: 21px;
  color: #c59d5f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.featured-project-content h3 {
  margin: 0;
  color: #252525;
  font-size: clamp(30px, 3vw, 47px);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.045em;
  word-break: keep-all;
}

.featured-project-description {
  margin: 25px 0 0;
  color: #787878;
  font-size: 15px;
  line-height: 1.8;
  word-break: keep-all;
}


/* =====================================
   프로젝트 정보 표
===================================== */

.featured-project-meta {
  margin: 43px 0 42px;
  padding: 0;
  border-top: 1px solid #e1dfdb;
}

.featured-project-meta > div {
  display: grid;
  grid-template-columns: 105px minmax(0, 1fr);
  align-items: center;
  min-height: 65px;
  border-bottom: 1px solid #e1dfdb;
}

.featured-project-meta dt {
  color: #aaa49d;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.featured-project-meta dd {
  margin: 0;
  color: #383838;
  font-size: 14px;
  font-weight: 600;
  text-align: right;
}


/* =====================================
   전체 보기 버튼
===================================== */

.featured-project-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  color: #252525;
  border-bottom: 2px solid #252525;
  text-decoration: none;
  transition:
    color 0.3s ease,
    border-color 0.3s ease;
}

.featured-project-link span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.featured-project-link svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}

.featured-project-link:hover {
  color: #c59d5f;
  border-color: #c59d5f;
}

.featured-project-link:hover svg {
  transform: translateX(6px);
}


/* =====================================
   프로젝트 목록
===================================== */

.featured-project-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 22px;
  border-top: 1px solid #d7d3cd;
  border-bottom: 1px solid #d7d3cd;
}

.featured-project-tabs button {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 105px;
  padding: 23px 20px;
  color: #89847d;
  background: transparent;
  border: 0;
  border-right: 1px solid #d7d3cd;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition:
    color 0.3s ease,
    background-color 0.3s ease;
}

.featured-project-tabs button:last-child {
  border-right: 0;
}

.featured-project-tabs button span {
  display: block;
  margin-bottom: 18px;
  color: #aaa49d;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.featured-project-tabs button strong {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  word-break: keep-all;
}

.featured-project-tabs button:hover {
  color: #252525;
  background: rgba(255, 255, 255, 0.65);
}

.featured-project-tabs button.active {
  color: #ffffff;
  background: #70605b;
}

.featured-project-tabs button.active span {
  color: rgba(255, 255, 255, 0.55);
}

.featured-project-tabs button.active::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: #c59d5f;
  content: "";
}


/* =====================================
   태블릿
===================================== */

@media (max-width: 1100px) {

  .featured-project-section {
    padding: 105px 30px;
  }

  .featured-project-stage {
    grid-template-columns:
      minmax(0, 1.25fr)
      minmax(320px, 0.75fr);
  }

  .featured-project-content {
    padding: 42px 35px;
  }

  .featured-project-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .featured-project-tabs button:nth-child(3) {
    border-right: 0;
  }

  .featured-project-tabs button:nth-child(-n + 3) {
    border-bottom: 1px solid #d7d3cd;
  }

}


/* =====================================
   모바일
===================================== */

@media (max-width: 768px) {

  .featured-project-section {
    padding: 60px 20px;
  }

  .featured-project-header {
    display: block;
    margin-bottom: 35px;
  }

  .featured-project-header h2 {
    font-size: 39px;
  }

  .featured-project-header > p {
    display: none;
  }

  .featured-project-stage {
    display: block;
  }

  .featured-project-visual {
    width: 100%;
    aspect-ratio: 3 / 2;
  }

  .featured-project-count {
    right: 16px;
    bottom: 15px;
  }

  .featured-project-content {
    padding: 35px 24px 31px;
  }

  .featured-project-content h3 {
    font-size: 30px;
  }

  .featured-project-description {
    margin-top: 18px;
    font-size: 14px;
  }

  .featured-project-meta {
    margin: 31px 0;
  }

  .featured-project-meta > div {
    min-height: 58px;
  }

  .featured-project-tabs {
    grid-template-columns: 1fr;
    margin-top: 15px;
  }

  .featured-project-tabs button {
    flex-direction: row;
    align-items: center;
    gap: 17px;
    min-height: 59px;
    padding: 17px 18px;
    border-right: 0;
    border-bottom: 1px solid #d7d3cd;
  }

  .featured-project-tabs button:nth-child(3) {
    border-right: 0;
  }

  .featured-project-tabs button span {
    width: 22px;
    margin: 0;
  }

  .featured-project-tabs button strong {
    font-size: 13px;
  }

  .featured-project-tabs button:last-child {
    border-bottom: 0;
  }

}

/* =====================================
   HOME CONTACT SPLIT
===================================== */

.home-contact-split-section {
  padding: 80px 40px;
  background: #ffffff;
}

.home-contact-split-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  width: 100%;
  max-width: 1500px;
  min-height: 620px;
  margin: 0 auto;
  border: 1px solid #dedede;
}


/* =====================================
   왼쪽 영역
===================================== */

.home-contact-left {
  display: flex;
  flex-direction: column;
  padding: 62px 60px 52px;
  color: #1f1f1f;
  background: #ffffff;
}


/* 상단 라벨 */

.home-contact-label {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 65px;
}

.home-contact-label span,
.home-contact-label strong {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.home-contact-label span {
  color: #9d9d9d;
}

.home-contact-label strong {
  color: #3a3a3a;
}

.home-contact-label i {
  display: block;
  width: 30px;
  height: 1px;
  background: #3a3a3a;
}


/* 메인 문구 */

.home-contact-copy {
  max-width: 680px;
}

.home-contact-copy h2 {
  margin: 0;
  color: #202020;
  font-size: clamp(42px, 4.3vw, 68px);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.055em;
  word-break: keep-all;
}

.home-contact-copy p {
  max-width: 580px;
  margin: 32px 0 0;
  color: #707070;
  font-size: 16px;
  line-height: 1.9;
  word-break: keep-all;
}


/* =====================================
   연락처
===================================== */

.home-contact-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: auto;
  padding-top: 55px;
}

.home-contact-detail {
  min-width: 0;
  padding: 0 25px;
  border-right: 1px solid #dedede;
}

.home-contact-detail:first-child {
  padding-left: 0;
}

.home-contact-detail:last-child {
  padding-right: 0;
  border-right: 0;
}

.home-contact-detail > span {
  display: block;
  margin-bottom: 14px;
  color: #a1a1a1;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.home-contact-detail a,
.home-contact-detail p {
  display: inline-block;
  margin: 0;
  color: #262626;
  font-size: clamp(13px, 1.2vw, 19px);
  font-weight: 600;
  line-height: 1.55;
  text-decoration: none;
  word-break: keep-all;
  transition: opacity 0.3s ease;
}

.home-contact-detail a:hover {
  opacity: 0.55;
}


/* =====================================
   오른쪽 큰 문의 버튼
===================================== */

.home-contact-right {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  padding: 48px 50px 43px;
  overflow: hidden;
  color: #ffffff;
  background: #222222;
  text-decoration: none;
  transition:
    background-color 0.45s ease,
    color 0.45s ease;
}

.home-contact-right::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
  transition:
    width 0.6s ease,
    height 0.6s ease,
    border-color 0.4s ease;
}

.home-contact-right::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 290px;
  height: 290px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
  transition:
    width 0.6s ease,
    height 0.6s ease;
}


/* 오른쪽 상단 */

.home-contact-button-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.home-contact-button-top span,
.home-contact-button-top em {
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.home-contact-button-top span {
  color: rgba(255, 255, 255, 0.75);
}

.home-contact-button-top em {
  color: rgba(255, 255, 255, 0.35);
}


/* 중앙 문의하기 */

.home-contact-button-center {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.home-contact-button-center strong {
  font-size: clamp(48px, 5.6vw, 84px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.06em;
}

.home-contact-button-center svg {
  flex: 0 0 auto;
  width: 70px;
  height: 70px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition:
    color 0.35s ease,
    background-color 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s ease;
}


/* 오른쪽 하단 */

.home-contact-button-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.home-contact-button-bottom span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.home-contact-button-bottom span:last-child {
  font-weight: 700;
  letter-spacing: 0.13em;
}


/* =====================================
   오른쪽 호버 효과
===================================== */

.home-contact-right:hover {
  color: #202020;
  background: #f0f0f0;
}

.home-contact-right:hover::before,
.home-contact-right:hover::after {
  border-color: rgba(32, 32, 32, 0.1);
}

.home-contact-right:hover::before {
  width: 540px;
  height: 540px;
}

.home-contact-right:hover::after {
  width: 360px;
  height: 360px;
}

.home-contact-right:hover .home-contact-button-top span,
.home-contact-right:hover .home-contact-button-top em,
.home-contact-right:hover .home-contact-button-bottom span {
  color: rgba(32, 32, 32, 0.58);
}

.home-contact-right:hover .home-contact-button-center svg {
  color: #ffffff;
  background: #202020;
  border-color: #202020;
  transform: translateX(8px);
}

.home-contact-right:hover .home-contact-button-bottom {
  border-color: rgba(32, 32, 32, 0.18);
}


/* =====================================
   태블릿
===================================== */

@media (max-width: 1100px) {

  .home-contact-split-section {
    padding: 70px 30px;
  }

  .home-contact-split-inner {
    grid-template-columns: 1fr 0.8fr;
    min-height: 580px;
  }

  .home-contact-left {
    padding: 50px 40px 42px;
  }

  .home-contact-label {
    margin-bottom: 48px;
  }

  .home-contact-details {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 45px;
  }

  .home-contact-detail {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid #dedede;
  }

  .home-contact-detail:first-child {
    padding-top: 0;
  }

  .home-contact-detail:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .home-contact-detail > span {
    margin-bottom: 8px;
  }

  .home-contact-right {
    padding: 42px 35px 38px;
  }

  .home-contact-button-center {
    display: block;
  }

  .home-contact-button-center svg {
    margin-top: 35px;
  }

}


/* =====================================
   모바일
===================================== */

@media (max-width: 768px) {

  .home-contact-split-section {
    padding: 60px 20px;
  }

  .home-contact-split-inner {
    display: block;
    min-height: 0;
  }

  .home-contact-left {
    padding: 38px 24px 34px;
  }

  .home-contact-label {
    margin-bottom: 38px;
  }

  .home-contact-copy h2 {
    font-size: 39px;
    line-height: 1.2;
  }

  .home-contact-copy p {
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.8;
  }

  .home-contact-details {
    padding-top: 38px;
  }

  .home-contact-detail a,
  .home-contact-detail p {
    font-size: 17px;
  }

  .home-contact-right {
    min-height: 390px;
    padding: 32px 24px 28px;
  }

  .home-contact-right::before {
    width: 340px;
    height: 340px;
  }

  .home-contact-right::after {
    width: 220px;
    height: 220px;
  }

  .home-contact-button-center {
    display: flex;
  }

  .home-contact-button-center strong {
    font-size: 48px;
  }

  .home-contact-button-center svg {
    width: 58px;
    height: 58px;
    margin-top: 0;
    padding: 14px;
  }

  .home-contact-button-bottom span:first-child {
    max-width: 120px;
  }

}

