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

body {
  background: #e8e0cc;
  font-family: 'Plus Jakarta Sans', sans-serif;
  min-height: 100vh;
}

.navbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 18px 60px;
  border-bottom: 2px solid #1a1a1a;
}

.nav-links { display: flex; align-items: center; gap: 32px; }

.nav-links a {
  text-decoration: none;
  color: #1a1a1a;
  font-size: 17px;
  font-weight: 600;
}

.nav-links a.btn-talk {
  background: #1a1a1a;
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 80px 60px 80px;
  min-height: calc(100vh - 70px);
}

.hero-text {
  display: block;
  max-width: 580px;
}

.sticker-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 4px;
  width: fit-content;
  margin-left: -12px;
  margin-bottom: 8px;
}

.sticker-row svg {
  transition: transform 0.2s ease, filter 0.2s ease;
  cursor: pointer;
}

.sticker-row svg:hover {
  transform: translateY(6px);
  filter: drop-shadow(0 8px 6px rgba(0,0,0,0.3));
}

.hero-role {
  font-size: 42px;
  font-weight: 800;
  color: #1a1a1a;
  margin-top: 8px;
}

.hero-tags {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.tag {
  text-decoration: none;
  background: #1a1a1a;
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s;
}

.tag:hover { background: #333; }

.photo-card {
  width: 380px;
  height: 460px;
  flex-shrink: 0;
  border-radius: 60px;
  overflow: hidden;
  background: transparent;
  position: relative;
}

.photo-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  border-radius: 100px;
}

@media (max-width: 1024px) {
  .hero { padding: 60px 40px; }
  .photo-card { width: 320px; height: 390px; }
}

@media (max-width: 768px) {
  .navbar { padding: 16px 24px; }
  .hero { flex-direction: column; align-items: flex-start; padding: 40px 24px; gap: 40px; min-height: unset; }
  .hero-text { max-width: 100%; }
  .photo-card { width: 100%; height: 380px; }
  .hero-role { font-size: 28px; }
  .hero-tags { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .navbar { padding: 14px 20px; }
  .nav-links { gap: 12px; }
  .nav-links a { font-size: 13px; }

  .hero { padding: 30px 20px; gap: 30px; }

  .sticker-row {
    margin-left: 0px;
    gap: 1px;
    overflow: hidden;
    width: 100%;
  }

  .sticker-row svg {
    transition: none;
    cursor: default;
    flex-shrink: 1;
    width: auto;
    height: 45px;
  }

  /* disable hover on mobile */
  .sticker-row svg:hover {
    transform: none;
    filter: none;
  }
 
  .sticker-row {
  margin-left: -6px;
}
  .hero-role { font-size: 22px; margin-top: 6px; }
  .hero-tags { flex-wrap: wrap; gap: 10px; margin-top: 14px; }
  .tag { padding: 8px 16px; font-size: 13px; }
  .photo-card { width: 100%; height: 340px; }
}