/* HERO */

.index-hero {
  width: 100%;
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

.index-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

hero-proj-right .index-hero-logo {
  display: none;
}

.index-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.25) 100%);
  pointer-events: none;
}

/* ABOUT */

.hero-about {
  padding: 160px 0;
  background: #f6f6f6;
}

.hero-about .container {
  position: relative;
}

.hero-about-top {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}

.hero-proj-right {
  position: absolute;
  right: 2vw;
  bottom: -160px;
}

.hero-about-label {
  font-size: 12px;
  letter-spacing: 3px;
  color: #e29a85;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-about h1 {
  max-width: 700px;
  font-size: 40px;
  line-height: 1.22;
  font-weight: 400;
}

.hero-about-works-link {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 20px;
  margin-bottom: 14px;
}

.hero-about-works-link span {
  font-size: 32px;
}

/* 1024 */

@media (max-width: 1024px) {

  .index-hero {
    min-height: calc(70vh - 72px);
  }

  .hero-about {
    padding: 50px 0;
  }

  .hero-about-top {
    gap: 30px;
  }

  .hero-proj-right {
    right: 0;
    bottom: -80px;
    transform: scale(0.8);
    transform-origin: bottom right;
  }

  .hero-about-label {
    font-size: 0.85rem;
    margin-bottom: 18px;
    letter-spacing: 2px;
  }

  .hero-about h1 {
    max-width: 620px;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 400;
  }

  .hero-about-works-link {
    gap: 10px;
    font-size: 15px;
    padding: 14px 18px;
    margin-bottom: 10px;
  }

  .hero-about-works-link span {
    font-size: 24px;
  }

  .index-projects-grid {
    gap: 18px;
  }
}


/* 768 */

@media (max-width: 768px) {

  .index-hero {
    min-height: calc(60vh - 72px);
  }

  .hero-about {
    padding: 50px 0;
  }

  .hero-about-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .hero-about-text {
    max-width: 100%;
  }

  .hero-about-text p {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
  }

  .hero-about-label {
    font-size: 0.85rem;
    margin-bottom: 18px;
    letter-spacing: 2px;
  }

  .hero-about h1 {
    max-width: 100%;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 400;
  }

  .hero-proj-right {
    right: -40px;
    bottom: -40px;
    transform: scale(0.65);
    transform-origin: bottom right;
    opacity: 0.9;
  }

  .hero-about-works-link {
    width: 100%;
    gap: 10px;
    font-size: 15px;
    padding: 14px 18px;
    margin-bottom: 10px;
  }

  .hero-about-works-link span {
    font-size: 22px;
  }

  .index-projects-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
}

@media (max-width: 430px) {

  .hero-about-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .hero-about-text {
    max-width: 100%;
  }

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

  .index-hero {
    min-height: calc(50vh - 72px);
  }

  .hero-about {
    padding: 50px 0;
  }

  .hero-about h1 {
    font-size: 22px;
  }

  .hero-about-label {
    font-size: 0.85rem;
    margin-bottom: 18px;
  }

  .hero-proj-right {
    display: none;
  }

  .hero-about-works-link {
    width: 100%;
    gap: 10px;
    font-size: 15px;
    padding: 14px 18px;
  }

  .index-projects-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
}