@media (max-width: 1429px) {
  main {
    margin-top: 70px;
  }
}

.company-wrap {
  max-width: 1440px;
  margin: 0px auto;
  padding: 0px 75px;
}

/* ── Hero + Intro: 스크롤로 고정되는 크로스페이드 (JS로 위치 계산, position:fixed 사용) ── */
.planet-pin-wrap {
  position: relative;
  height: 130vh;
}

.planet-section {
  width: 100%;
  height: calc(100vh - 80px);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.planet-section.is-fixed {
  position: fixed;
  top: 80px;
  left: 0;
}

.planet-wrap {
  position: relative;
  text-align: center;
  padding: 0 24px;
}

.planet-en,
.planet-desc {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}

.planet-en {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  white-space: nowrap;
  width: max-content;
  max-width: 90vw;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--navy);
}

.planet-desc {
  opacity: 0;
  transform: translate(-50%, -30%);
  transition: opacity 0.6s ease, transform 0.6s ease;
  width: min(900px, 90vw);
  font-size: 2rem;
  line-height: 1.9;
  color: #333;
}

.planet-section.switched .planet-en {
  opacity: 0;
  transform: translate(-50%, -70%);
}

.planet-section.switched .planet-desc {
  opacity: 1;
  transform: translate(-50%, -50%);
}

@media (max-width: 1429px) {
  .planet-section {
    height: calc(100vh - 70px);
  }
  .planet-section.is-fixed {
    top: 70px;
  }
}

@media (max-width: 768px) {
  .planet-section {
    height: calc(100vh - 45px);
  }
  .planet-section.is-fixed {
    top: 45px;
  }
  .planet-wrap {
    padding: 0 8%;
  }
  .planet-desc {
    font-size: 1.1rem;
    line-height: 1.7;
  }
}

/* ── Our Origins ── */
.company-origins {
  padding: 120px 0;
  background: #fff;
}

.origins-grid {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 160px;
  align-items: start;
}

.origins-grid.reverse {
  grid-template-columns: 1fr 500px;
}

.more-view {
  display: inline-block;
  margin-top: 70px;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--navy);
  padding-bottom: 2px;
}

.more-view .plus {
  color: #C82929;
  margin-right: 4px;
}

.origins-img {
  width: 500px;
  height: 560px;
  overflow: hidden;
  background: #e9e9e9;
}

.origins-img img,
.origins-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.origins-text h2 {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 35px;
}

.origins-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin: 0 0 20px;
}

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

.core-value-row {
  margin-bottom: 24px;
}

.core-value-row:last-child {
  margin-bottom: 0;
}

.core-value-label {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  color: #888;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .company-wrap {
    padding: 0 6%;
  }

  .company-origins {
    padding: 60px 0;
  }

  .origins-grid,
  .origins-grid.reverse {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .origins-img {
    width: 100%;
    max-width: 340px;
    height: 400px;
  }

  .origins-text h2 {
    font-size: 1.35rem;
    margin: 0 0 20px;
  }

  .more-view {
    margin-top: 40px;
    font-size: 1rem;
  }

  .core-value-label {
    font-size: 1rem;
  }
}
