/* ============================================================
   1. HERO
   ============================================================
   구조 변경 안내:
   - .hero-copy 와 .hero__bottom 을 같은 .wrap.hero__inner 안에
     형제로 배치해서 좌측 정렬 기준을 하나로 통일함.
   - .hero-visual__box 는 .hero__inner 밖, .hero 기준으로
     absolute 배치 (wrap의 padding 영향을 받지 않음).
   HTML 구조 예시:
   <section class="hero">
     <div class="hero-visual__box"><img ...></div>
     <div class="wrap hero__inner">
       <div class="hero-copy">...</div>
       <div class="hero__bottom">...</div>
     </div>
   </section>
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  /* overflow: hidden; */
  overflow: visible;
  font-size: 1em;
}
.hero-visual__box {
  position: absolute;
  /* inset: 0; */
  top: -650px;
  right: -1800px;
  width: 220%;
  height: 220%;
  z-index: 1;
  background: url("../images/hero_box_2.png") no-repeat center;
  background-size: contain;
}
.hero__inner {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 50px 0 70px 2%;
}

.hero-copy {
  max-width: 900px;
}

.hero__eyebrow {
  margin-bottom: 15px;
  font-family: var(--font-kr);
  font-size: 2em;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--white);
  white-space: nowrap;
}

.hero__title {
  font-family: var(--font-switzer);
  font-size: clamp(3.6em, 10vw, 10em);
  font-weight: 900;
  line-height: 0.75;
  letter-spacing: -0.01em;
  color: var(--orange);
  text-transform: uppercase;
}

.hero__sub {
  font-family: var(--font-switzer);
  font-size: clamp(1.3em, 5vw, 5em);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px var(--orange);
}

.hero__meta {
  margin-top: 40px;
  font-family: var(--font-kr);
  font-size: 1.5em;
  line-height: 1.85;
  color: rgba(247, 245, 240, 0.75);
}
.hero__meta strong {
  display: block;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 2px;
}
.hero__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-top: -150px; /* 여백 축소 + 이미지 영역 침범. 숫자 키우면 더 많이 파고듦 */
}

.hero__logos {
  display: flex;
  align-items: flex-end;
  gap: 36px;
}
.logo-museum {
  width: 250px;
}
.logo-sejong {
  width: 250px;
}
.hero__bottom .btn {
  color: var(--white);
  width: 350px;
  font-size: 1.875em;
  line-height: 60px;
  justify-content: center;
}

/* ---------- 반응형 ---------- */
@media (max-width: 1024px) {
  .hero-visual__box {
    position: relative;
    top: -200px;
    right: -350px;
    width: 100%;
    height: auto;
    aspect-ratio: 5/4.2;
  }
  .hero-visual__box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* object-position: 35% 40%; */
    display: block;
  }
  .hero__inner {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 0.7em;
  }
  .hero__sub {
    color: transparent;
    -webkit-text-stroke: 2px var(--orange);
  }
  .hero__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
    margin-top: 5%;
  }
}

@media (max-width: 560px) {
  .hero-visual__box {
    position: relative;
    top: -100px;
    right: -250px;
    width: 100%;
    height: auto;
    aspect-ratio: 5/4.2;
  }
  .hero__inner {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    font-size: 0.5em;
  }
  .hero__sub {
    color: transparent;
    -webkit-text-stroke: 1px var(--orange);
  }
  .hero__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
    margin-top: 5%;
  }
  .hero__logos {
    width: 50%;
  }
  .hero__bottom .btn {
    width: 40%;
    padding: 3px;
    line-height: 40px;
  }
}
@media (max-width: 480px) {
  .hero__inner {
    padding-top: 40px;
  }
  .hero__meta {
    font-size: 13.5px;
  }
}
